{
  "id": "132f35bc4e28ecbebea9fc34ee4808db",
  "_format": "hh-sol-build-info-1",
  "solcVersion": "0.8.6",
  "solcLongVersion": "0.8.6+commit.11564f7e",
  "input": {
    "language": "Solidity",
    "sources": {
      "@pooltogether/pooltogether-rng-contracts/contracts/RNGChainlinkV2.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"@chainlink/contracts/src/v0.8/interfaces/VRFCoordinatorV2Interface.sol\";\nimport \"@chainlink/contracts/src/v0.8/VRFConsumerBaseV2.sol\";\nimport \"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\";\n\nimport \"./RNGChainlinkV2Interface.sol\";\n\ncontract RNGChainlinkV2 is RNGChainlinkV2Interface, VRFConsumerBaseV2, Manageable {\n  /* ============ Global Variables ============ */\n\n  /// @dev Reference to the VRFCoordinatorV2 deployed contract\n  VRFCoordinatorV2Interface internal vrfCoordinator;\n\n  /// @dev A counter for the number of requests made used for request ids\n  uint32 internal requestCounter;\n\n  /// @dev Chainlink VRF subscription id\n  uint64 internal subscriptionId;\n\n  /// @dev Hash of the public key used to verify the VRF proof\n  bytes32 internal keyHash;\n\n  /// @dev A list of random numbers from past requests mapped by request id\n  mapping(uint32 => uint256) internal randomNumbers;\n\n  /// @dev A list of blocks to be locked at based on past requests mapped by request id\n  mapping(uint32 => uint32) internal requestLockBlock;\n\n  /// @dev A mapping from Chainlink request ids to internal request ids\n  mapping(uint256 => uint32) internal chainlinkRequestIds;\n\n  /* ============ Events ============ */\n\n  /**\n   * @notice Emitted when the Chainlink VRF keyHash is set\n   * @param keyHash Chainlink VRF keyHash\n   */\n  event KeyHashSet(bytes32 keyHash);\n\n  /**\n   * @notice Emitted when the Chainlink VRF subscription id is set\n   * @param subscriptionId Chainlink VRF subscription id\n   */\n  event SubscriptionIdSet(uint64 subscriptionId);\n\n  /**\n   * @notice Emitted when the Chainlink VRF Coordinator address is set\n   * @param vrfCoordinator Address of the VRF Coordinator\n   */\n  event VrfCoordinatorSet(VRFCoordinatorV2Interface indexed vrfCoordinator);\n\n  /* ============ Constructor ============ */\n\n  /**\n   * @notice Constructor of the contract\n   * @param _owner Owner of the contract\n   * @param _vrfCoordinator Address of the VRF Coordinator\n   * @param _subscriptionId Chainlink VRF subscription id\n   * @param _keyHash Hash of the public key used to verify the VRF proof\n   */\n  constructor(\n    address _owner,\n    VRFCoordinatorV2Interface _vrfCoordinator,\n    uint64 _subscriptionId,\n    bytes32 _keyHash\n  ) Ownable(_owner) VRFConsumerBaseV2(address(_vrfCoordinator)) {\n    _setVRFCoordinator(_vrfCoordinator);\n    _setSubscriptionId(_subscriptionId);\n    _setKeyhash(_keyHash);\n  }\n\n  /* ============ External Functions ============ */\n\n  /// @inheritdoc RNGInterface\n  function requestRandomNumber()\n    external\n    override\n    onlyManager\n    returns (uint32 requestId, uint32 lockBlock)\n  {\n    uint256 _vrfRequestId = vrfCoordinator.requestRandomWords(\n      keyHash,\n      subscriptionId,\n      3,\n      1000000,\n      1\n    );\n\n    requestCounter++;\n    uint32 _requestCounter = requestCounter;\n\n    requestId = _requestCounter;\n    chainlinkRequestIds[_vrfRequestId] = _requestCounter;\n\n    lockBlock = uint32(block.number);\n    requestLockBlock[_requestCounter] = lockBlock;\n\n    emit RandomNumberRequested(_requestCounter, msg.sender);\n  }\n\n  /// @inheritdoc RNGInterface\n  function isRequestComplete(uint32 _internalRequestId)\n    external\n    view\n    override\n    returns (bool isCompleted)\n  {\n    return randomNumbers[_internalRequestId] != 0;\n  }\n\n  /// @inheritdoc RNGInterface\n  function randomNumber(uint32 _internalRequestId)\n    external\n    view\n    override\n    returns (uint256 randomNum)\n  {\n    return randomNumbers[_internalRequestId];\n  }\n\n  /// @inheritdoc RNGInterface\n  function getLastRequestId() external view override returns (uint32 requestId) {\n    return requestCounter;\n  }\n\n  /// @inheritdoc RNGInterface\n  function getRequestFee() external pure override returns (address feeToken, uint256 requestFee) {\n    return (address(0), 0);\n  }\n\n  /// @inheritdoc RNGChainlinkV2Interface\n  function getKeyHash() external view override returns (bytes32) {\n    return keyHash;\n  }\n\n  /// @inheritdoc RNGChainlinkV2Interface\n  function getSubscriptionId() external view override returns (uint64) {\n    return subscriptionId;\n  }\n\n  /// @inheritdoc RNGChainlinkV2Interface\n  function getVrfCoordinator() external view override returns (VRFCoordinatorV2Interface) {\n    return vrfCoordinator;\n  }\n\n  /// @inheritdoc RNGChainlinkV2Interface\n  function setSubscriptionId(uint64 _subscriptionId) external override onlyOwner {\n    _setSubscriptionId(_subscriptionId);\n  }\n\n  /// @inheritdoc RNGChainlinkV2Interface\n  function setKeyhash(bytes32 _keyHash) external override onlyOwner {\n    _setKeyhash(_keyHash);\n  }\n\n  /* ============ Internal Functions ============ */\n\n  /**\n   * @notice Callback function called by VRF Coordinator\n   * @dev The VRF Coordinator will only call it once it has verified the proof associated with the randomness.\n   * @param _vrfRequestId Chainlink VRF request id\n   * @param _randomWords Chainlink VRF array of random words\n   */\n  function fulfillRandomWords(uint256 _vrfRequestId, uint256[] memory _randomWords)\n    internal\n    override\n  {\n    uint32 _internalRequestId = chainlinkRequestIds[_vrfRequestId];\n    require(_internalRequestId > 0, \"RNGChainLink/requestId-incorrect\");\n\n    uint256 _randomNumber = _randomWords[0];\n    randomNumbers[_internalRequestId] = _randomNumber;\n\n    emit RandomNumberCompleted(_internalRequestId, _randomNumber);\n  }\n\n  /**\n   * @notice Set Chainlink VRF coordinator contract address.\n   * @param _vrfCoordinator Chainlink VRF coordinator contract address\n   */\n  function _setVRFCoordinator(VRFCoordinatorV2Interface _vrfCoordinator) internal {\n    require(address(_vrfCoordinator) != address(0), \"RNGChainLink/vrf-not-zero-addr\");\n    vrfCoordinator = _vrfCoordinator;\n    emit VrfCoordinatorSet(_vrfCoordinator);\n  }\n\n  /**\n   * @notice Set Chainlink VRF subscription id associated with this contract.\n   * @param _subscriptionId Chainlink VRF subscription id\n   */\n  function _setSubscriptionId(uint64 _subscriptionId) internal {\n    require(_subscriptionId > 0, \"RNGChainLink/subId-gt-zero\");\n    subscriptionId = _subscriptionId;\n    emit SubscriptionIdSet(_subscriptionId);\n  }\n\n  /**\n   * @notice Set Chainlink VRF keyHash.\n   * @param _keyHash Chainlink VRF keyHash\n   */\n  function _setKeyhash(bytes32 _keyHash) internal {\n    require(_keyHash != bytes32(0), \"RNGChainLink/keyHash-not-empty\");\n    keyHash = _keyHash;\n    emit KeyHashSet(_keyHash);\n  }\n}\n"
      },
      "@chainlink/contracts/src/v0.8/interfaces/VRFCoordinatorV2Interface.sol": {
        "content": "// SPDX-License-Identifier: MIT\npragma solidity ^0.8.0;\n\ninterface VRFCoordinatorV2Interface {\n  /**\n   * @notice Get configuration relevant for making requests\n   * @return minimumRequestConfirmations global min for request confirmations\n   * @return maxGasLimit global max for request gas limit\n   * @return s_provingKeyHashes list of registered key hashes\n   */\n  function getRequestConfig()\n    external\n    view\n    returns (\n      uint16,\n      uint32,\n      bytes32[] memory\n    );\n\n  /**\n   * @notice Request a set of random words.\n   * @param keyHash - Corresponds to a particular oracle job which uses\n   * that key for generating the VRF proof. Different keyHash's have different gas price\n   * ceilings, so you can select a specific one to bound your maximum per request cost.\n   * @param subId  - The ID of the VRF subscription. Must be funded\n   * with the minimum subscription balance required for the selected keyHash.\n   * @param minimumRequestConfirmations - How many blocks you'd like the\n   * oracle to wait before responding to the request. See SECURITY CONSIDERATIONS\n   * for why you may want to request more. The acceptable range is\n   * [minimumRequestBlockConfirmations, 200].\n   * @param callbackGasLimit - How much gas you'd like to receive in your\n   * fulfillRandomWords callback. Note that gasleft() inside fulfillRandomWords\n   * may be slightly less than this amount because of gas used calling the function\n   * (argument decoding etc.), so you may need to request slightly more than you expect\n   * to have inside fulfillRandomWords. The acceptable range is\n   * [0, maxGasLimit]\n   * @param numWords - The number of uint256 random values you'd like to receive\n   * in your fulfillRandomWords callback. Note these numbers are expanded in a\n   * secure way by the VRFCoordinator from a single random value supplied by the oracle.\n   * @return requestId - A unique identifier of the request. Can be used to match\n   * a request to a response in fulfillRandomWords.\n   */\n  function requestRandomWords(\n    bytes32 keyHash,\n    uint64 subId,\n    uint16 minimumRequestConfirmations,\n    uint32 callbackGasLimit,\n    uint32 numWords\n  ) external returns (uint256 requestId);\n\n  /**\n   * @notice Create a VRF subscription.\n   * @return subId - A unique subscription id.\n   * @dev You can manage the consumer set dynamically with addConsumer/removeConsumer.\n   * @dev Note to fund the subscription, use transferAndCall. For example\n   * @dev  LINKTOKEN.transferAndCall(\n   * @dev    address(COORDINATOR),\n   * @dev    amount,\n   * @dev    abi.encode(subId));\n   */\n  function createSubscription() external returns (uint64 subId);\n\n  /**\n   * @notice Get a VRF subscription.\n   * @param subId - ID of the subscription\n   * @return balance - LINK balance of the subscription in juels.\n   * @return reqCount - number of requests for this subscription, determines fee tier.\n   * @return owner - owner of the subscription.\n   * @return consumers - list of consumer address which are able to use this subscription.\n   */\n  function getSubscription(uint64 subId)\n    external\n    view\n    returns (\n      uint96 balance,\n      uint64 reqCount,\n      address owner,\n      address[] memory consumers\n    );\n\n  /**\n   * @notice Request subscription owner transfer.\n   * @param subId - ID of the subscription\n   * @param newOwner - proposed new owner of the subscription\n   */\n  function requestSubscriptionOwnerTransfer(uint64 subId, address newOwner) external;\n\n  /**\n   * @notice Request subscription owner transfer.\n   * @param subId - ID of the subscription\n   * @dev will revert if original owner of subId has\n   * not requested that msg.sender become the new owner.\n   */\n  function acceptSubscriptionOwnerTransfer(uint64 subId) external;\n\n  /**\n   * @notice Add a consumer to a VRF subscription.\n   * @param subId - ID of the subscription\n   * @param consumer - New consumer which can use the subscription\n   */\n  function addConsumer(uint64 subId, address consumer) external;\n\n  /**\n   * @notice Remove a consumer from a VRF subscription.\n   * @param subId - ID of the subscription\n   * @param consumer - Consumer to remove from the subscription\n   */\n  function removeConsumer(uint64 subId, address consumer) external;\n\n  /**\n   * @notice Cancel a subscription\n   * @param subId - ID of the subscription\n   * @param to - Where to send the remaining LINK to\n   */\n  function cancelSubscription(uint64 subId, address to) external;\n}\n"
      },
      "@chainlink/contracts/src/v0.8/VRFConsumerBaseV2.sol": {
        "content": "// SPDX-License-Identifier: MIT\npragma solidity ^0.8.0;\n\n/** ****************************************************************************\n * @notice Interface for contracts using VRF randomness\n * *****************************************************************************\n * @dev PURPOSE\n *\n * @dev Reggie the Random Oracle (not his real job) wants to provide randomness\n * @dev to Vera the verifier in such a way that Vera can be sure he's not\n * @dev making his output up to suit himself. Reggie provides Vera a public key\n * @dev to which he knows the secret key. Each time Vera provides a seed to\n * @dev Reggie, he gives back a value which is computed completely\n * @dev deterministically from the seed and the secret key.\n *\n * @dev Reggie provides a proof by which Vera can verify that the output was\n * @dev correctly computed once Reggie tells it to her, but without that proof,\n * @dev the output is indistinguishable to her from a uniform random sample\n * @dev from the output space.\n *\n * @dev The purpose of this contract is to make it easy for unrelated contracts\n * @dev to talk to Vera the verifier about the work Reggie is doing, to provide\n * @dev simple access to a verifiable source of randomness. It ensures 2 things:\n * @dev 1. The fulfillment came from the VRFCoordinator\n * @dev 2. The consumer contract implements fulfillRandomWords.\n * *****************************************************************************\n * @dev USAGE\n *\n * @dev Calling contracts must inherit from VRFConsumerBase, and can\n * @dev initialize VRFConsumerBase's attributes in their constructor as\n * @dev shown:\n *\n * @dev   contract VRFConsumer {\n * @dev     constructor(<other arguments>, address _vrfCoordinator, address _link)\n * @dev       VRFConsumerBase(_vrfCoordinator) public {\n * @dev         <initialization with other arguments goes here>\n * @dev       }\n * @dev   }\n *\n * @dev The oracle will have given you an ID for the VRF keypair they have\n * @dev committed to (let's call it keyHash). Create subscription, fund it\n * @dev and your consumer contract as a consumer of it (see VRFCoordinatorInterface\n * @dev subscription management functions).\n * @dev Call requestRandomWords(keyHash, subId, minimumRequestConfirmations,\n * @dev callbackGasLimit, numWords),\n * @dev see (VRFCoordinatorInterface for a description of the arguments).\n *\n * @dev Once the VRFCoordinator has received and validated the oracle's response\n * @dev to your request, it will call your contract's fulfillRandomWords method.\n *\n * @dev The randomness argument to fulfillRandomWords is a set of random words\n * @dev generated from your requestId and the blockHash of the request.\n *\n * @dev If your contract could have concurrent requests open, you can use the\n * @dev requestId returned from requestRandomWords to track which response is associated\n * @dev with which randomness request.\n * @dev See \"SECURITY CONSIDERATIONS\" for principles to keep in mind,\n * @dev if your contract could have multiple requests in flight simultaneously.\n *\n * @dev Colliding `requestId`s are cryptographically impossible as long as seeds\n * @dev differ.\n *\n * *****************************************************************************\n * @dev SECURITY CONSIDERATIONS\n *\n * @dev A method with the ability to call your fulfillRandomness method directly\n * @dev could spoof a VRF response with any random value, so it's critical that\n * @dev it cannot be directly called by anything other than this base contract\n * @dev (specifically, by the VRFConsumerBase.rawFulfillRandomness method).\n *\n * @dev For your users to trust that your contract's random behavior is free\n * @dev from malicious interference, it's best if you can write it so that all\n * @dev behaviors implied by a VRF response are executed *during* your\n * @dev fulfillRandomness method. If your contract must store the response (or\n * @dev anything derived from it) and use it later, you must ensure that any\n * @dev user-significant behavior which depends on that stored value cannot be\n * @dev manipulated by a subsequent VRF request.\n *\n * @dev Similarly, both miners and the VRF oracle itself have some influence\n * @dev over the order in which VRF responses appear on the blockchain, so if\n * @dev your contract could have multiple VRF requests in flight simultaneously,\n * @dev you must ensure that the order in which the VRF responses arrive cannot\n * @dev be used to manipulate your contract's user-significant behavior.\n *\n * @dev Since the block hash of the block which contains the requestRandomness\n * @dev call is mixed into the input to the VRF *last*, a sufficiently powerful\n * @dev miner could, in principle, fork the blockchain to evict the block\n * @dev containing the request, forcing the request to be included in a\n * @dev different block with a different hash, and therefore a different input\n * @dev to the VRF. However, such an attack would incur a substantial economic\n * @dev cost. This cost scales with the number of blocks the VRF oracle waits\n * @dev until it calls responds to a request. It is for this reason that\n * @dev that you can signal to an oracle you'd like them to wait longer before\n * @dev responding to the request (however this is not enforced in the contract\n * @dev and so remains effective only in the case of unmodified oracle software).\n */\nabstract contract VRFConsumerBaseV2 {\n  error OnlyCoordinatorCanFulfill(address have, address want);\n  address private immutable vrfCoordinator;\n\n  /**\n   * @param _vrfCoordinator address of VRFCoordinator contract\n   */\n  constructor(address _vrfCoordinator) {\n    vrfCoordinator = _vrfCoordinator;\n  }\n\n  /**\n   * @notice fulfillRandomness handles the VRF response. Your contract must\n   * @notice implement it. See \"SECURITY CONSIDERATIONS\" above for important\n   * @notice principles to keep in mind when implementing your fulfillRandomness\n   * @notice method.\n   *\n   * @dev VRFConsumerBaseV2 expects its subcontracts to have a method with this\n   * @dev signature, and will call it once it has verified the proof\n   * @dev associated with the randomness. (It is triggered via a call to\n   * @dev rawFulfillRandomness, below.)\n   *\n   * @param requestId The Id initially returned by requestRandomness\n   * @param randomWords the VRF output expanded to the requested number of words\n   */\n  function fulfillRandomWords(uint256 requestId, uint256[] memory randomWords) internal virtual;\n\n  // rawFulfillRandomness is called by VRFCoordinator when it receives a valid VRF\n  // proof. rawFulfillRandomness then calls fulfillRandomness, after validating\n  // the origin of the call\n  function rawFulfillRandomWords(uint256 requestId, uint256[] memory randomWords) external {\n    if (msg.sender != vrfCoordinator) {\n      revert OnlyCoordinatorCanFulfill(msg.sender, vrfCoordinator);\n    }\n    fulfillRandomWords(requestId, randomWords);\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/pooltogether-rng-contracts/contracts/RNGChainlinkV2Interface.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"@chainlink/contracts/src/v0.8/interfaces/VRFCoordinatorV2Interface.sol\";\n\nimport \"./RNGInterface.sol\";\n\n/**\n * @title RNG Chainlink V2 Interface\n * @notice Provides an interface for requesting random numbers from Chainlink VRF V2.\n */\ninterface RNGChainlinkV2Interface is RNGInterface {\n  /**\n   * @notice Get Chainlink VRF keyHash associated with this contract.\n   * @return bytes32 Chainlink VRF keyHash\n   */\n  function getKeyHash() external view returns (bytes32);\n\n  /**\n   * @notice Get Chainlink VRF subscription id associated with this contract.\n   * @return uint64 Chainlink VRF subscription id\n   */\n  function getSubscriptionId() external view returns (uint64);\n\n  /**\n   * @notice Get Chainlink VRF coordinator contract address associated with this contract.\n   * @return address Chainlink VRF coordinator address\n   */\n  function getVrfCoordinator() external view returns (VRFCoordinatorV2Interface);\n\n  /**\n   * @notice Set Chainlink VRF keyHash.\n   * @dev This function is only callable by the owner.\n   * @param keyHash Chainlink VRF keyHash\n   */\n  function setKeyhash(bytes32 keyHash) external;\n\n  /**\n   * @notice Set Chainlink VRF subscription id associated with this contract.\n   * @dev This function is only callable by the owner.\n   * @param subscriptionId Chainlink VRF subscription id\n   */\n  function setSubscriptionId(uint64 subscriptionId) external;\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/pooltogether-rng-contracts/contracts/RNGInterface.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\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..)\n */\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   */\n  event RandomNumberRequested(uint32 indexed requestId, address indexed sender);\n\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   */\n  event RandomNumberCompleted(uint32 indexed requestId, uint256 randomNumber);\n\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   */\n  function getLastRequestId() external view returns (uint32 requestId);\n\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   */\n  function getRequestFee() external view returns (address feeToken, uint256 requestFee);\n\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.\n   * The calling contract should \"lock\" all activity until the result is available via the `requestId`\n   */\n  function requestRandomNumber() external returns (uint32 requestId, uint32 lockBlock);\n\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   */\n  function isRequestComplete(uint32 requestId) external view returns (bool isCompleted);\n\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   */\n  function randomNumber(uint32 requestId) external returns (uint256 randomNum);\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"
      },
      "@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 prizeDistributionBuffer variable.\n     * @return IPrizeDistributionBuffer\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 drawIds 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 IPrizeDistributionSource\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 buffer) 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 of 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 seven year minimum,\n                of accurate historical lookups with current estimates of 1 new block\n                every 15 seconds - assuming each block contains 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"
      },
      "@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"
      },
      "@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\nimport \"./IPrizeDistributionSource.sol\";\n\n/** @title  IPrizeDistributionBuffer\n * @author PoolTogether Inc Team\n * @notice The PrizeDistributionBuffer interface.\n */\ninterface IPrizeDistributionBuffer is IPrizeDistributionSource {\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 (\n            IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution,\n            uint32 drawId\n        );\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 (\n            IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution,\n            uint32 drawId\n        );\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(\n        uint32 drawId,\n        IPrizeDistributionBuffer.PrizeDistribution calldata draw\n    ) external returns (uint32);\n}\n"
      },
      "@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionSource.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\n/** @title IPrizeDistributionSource\n * @author PoolTogether Inc Team\n * @notice The PrizeDistributionSource interface.\n */\ninterface IPrizeDistributionSource {\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 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 (PrizeDistribution[] memory);\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/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 valid 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"
      },
      "@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-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/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/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"
      },
      "@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"
      },
      "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.\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"
      },
      "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"
      },
      "@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-twab-delegator/contracts/TWABDelegator.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"@openzeppelin/contracts/proxy/Clones.sol\";\nimport \"@openzeppelin/contracts/token/ERC20/IERC20.sol\";\nimport \"@openzeppelin/contracts/token/ERC20/ERC20.sol\";\nimport \"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\";\nimport \"@pooltogether/v4-core/contracts/interfaces/ITicket.sol\";\n\nimport \"./Delegation.sol\";\nimport \"./LowLevelDelegator.sol\";\nimport \"./PermitAndMulticall.sol\";\n\n/**\n * @title Delegate chances to win to multiple accounts.\n * @notice This contract allows accounts to easily delegate a portion of their tickets to multiple delegatees.\n  The delegatees chance of winning prizes is increased by the delegated amount.\n  If a delegator doesn't want to actively manage the delegations, then they can stake on the contract and appoint representatives.\n */\ncontract TWABDelegator is ERC20, LowLevelDelegator, PermitAndMulticall {\n  using Address for address;\n  using Clones for address;\n  using SafeERC20 for IERC20;\n\n  /* ============ Events ============ */\n\n  /**\n   * @notice Emitted when ticket associated with this contract has been set.\n   * @param ticket Address of the ticket\n   */\n  event TicketSet(ITicket indexed ticket);\n\n  /**\n   * @notice Emitted when tickets have been staked.\n   * @param delegator Address of the delegator\n   * @param amount Amount of tickets staked\n   */\n  event TicketsStaked(address indexed delegator, uint256 amount);\n\n  /**\n   * @notice Emitted when tickets have been unstaked.\n   * @param delegator Address of the delegator\n   * @param recipient Address of the recipient that will receive the tickets\n   * @param amount Amount of tickets unstaked\n   */\n  event TicketsUnstaked(address indexed delegator, address indexed recipient, uint256 amount);\n\n  /**\n   * @notice Emitted when a new delegation is created.\n   * @param delegator Delegator of the delegation\n   * @param slot Slot of the delegation\n   * @param lockUntil Timestamp until which the delegation is locked\n   * @param delegatee Address of the delegatee\n   * @param delegation Address of the delegation that was created\n   * @param user Address of the user who created the delegation\n   */\n  event DelegationCreated(\n    address indexed delegator,\n    uint256 indexed slot,\n    uint96 lockUntil,\n    address indexed delegatee,\n    Delegation delegation,\n    address user\n  );\n\n  /**\n   * @notice Emitted when a delegatee is updated.\n   * @param delegator Address of the delegator\n   * @param slot Slot of the delegation\n   * @param delegatee Address of the delegatee\n   * @param lockUntil Timestamp until which the delegation is locked\n   * @param user Address of the user who updated the delegatee\n   */\n  event DelegateeUpdated(\n    address indexed delegator,\n    uint256 indexed slot,\n    address indexed delegatee,\n    uint96 lockUntil,\n    address user\n  );\n\n  /**\n   * @notice Emitted when a delegation is funded.\n   * @param delegator Address of the delegator\n   * @param slot Slot of the delegation\n   * @param amount Amount of tickets that were sent to the delegation\n   * @param user Address of the user who funded the delegation\n   */\n  event DelegationFunded(\n    address indexed delegator,\n    uint256 indexed slot,\n    uint256 amount,\n    address indexed user\n  );\n\n  /**\n   * @notice Emitted when a delegation is funded from the staked amount.\n   * @param delegator Address of the delegator\n   * @param slot Slot of the delegation\n   * @param amount Amount of tickets that were sent to the delegation\n   * @param user Address of the user who pulled funds from the delegator stake to the delegation\n   */\n  event DelegationFundedFromStake(\n    address indexed delegator,\n    uint256 indexed slot,\n    uint256 amount,\n    address indexed user\n  );\n\n  /**\n   * @notice Emitted when an amount of tickets has been withdrawn from a delegation. The tickets are held by this contract and the delegator stake is increased.\n   * @param delegator Address of the delegator\n   * @param slot Slot of the delegation\n   * @param amount Amount of tickets withdrawn\n   * @param user Address of the user who withdrew the tickets\n   */\n  event WithdrewDelegationToStake(\n    address indexed delegator,\n    uint256 indexed slot,\n    uint256 amount,\n    address indexed user\n  );\n\n  /**\n   * @notice Emitted when a delegator withdraws an amount of tickets from a delegation to a specified wallet.\n   * @param delegator Address of the delegator\n   * @param slot  Slot of the delegation\n   * @param amount Amount of tickets withdrawn\n   * @param to Recipient address of withdrawn tickets\n   */\n  event TransferredDelegation(\n    address indexed delegator,\n    uint256 indexed slot,\n    uint256 amount,\n    address indexed to\n  );\n\n  /**\n   * @notice Emitted when a representative is set.\n   * @param delegator Address of the delegator\n   * @param representative Address of the representative\n   * @param set Boolean indicating if the representative was set or unset\n   */\n  event RepresentativeSet(address indexed delegator, address indexed representative, bool set);\n\n  /* ============ Variables ============ */\n\n  /// @notice Prize pool ticket to which this contract is tied to.\n  ITicket public immutable ticket;\n\n  /// @notice Max lock time during which a delegation cannot be updated.\n  uint256 public constant MAX_LOCK = 180 days;\n\n  /**\n   * @notice Representative elected by the delegator to handle delegation.\n   * @dev Representative can only handle delegation and cannot withdraw tickets to their wallet.\n   * @dev delegator => representative => bool allowing representative to represent the delegator\n   */\n  mapping(address => mapping(address => bool)) internal representatives;\n\n  /* ============ Constructor ============ */\n\n  /**\n   * @notice Creates a new TWAB Delegator that is bound to the given ticket contract.\n   * @param name_ The name for the staked ticket token\n   * @param symbol_ The symbol for the staked ticket token\n   * @param _ticket Address of the ticket contract\n   */\n  constructor(\n    string memory name_,\n    string memory symbol_,\n    ITicket _ticket\n  ) LowLevelDelegator() ERC20(name_, symbol_) {\n    require(address(_ticket) != address(0), \"TWABDelegator/tick-not-zero-addr\");\n    ticket = _ticket;\n\n    emit TicketSet(_ticket);\n  }\n\n  /* ============ External Functions ============ */\n\n  /**\n   * @notice Stake `_amount` of tickets in this contract.\n   * @dev Tickets can be staked on behalf of a `_to` user.\n   * @param _to Address to which the stake will be attributed\n   * @param _amount Amount of tickets to stake\n   */\n  function stake(address _to, uint256 _amount) external {\n    _requireAmountGtZero(_amount);\n\n    IERC20(ticket).safeTransferFrom(msg.sender, address(this), _amount);\n    _mint(_to, _amount);\n\n    emit TicketsStaked(_to, _amount);\n  }\n\n  /**\n   * @notice Unstake `_amount` of tickets from this contract. Transfers ticket to the passed `_to` address.\n   * @dev If delegator has delegated his whole stake, he will first have to withdraw from a delegation to be able to unstake.\n   * @param _to Address of the recipient that will receive the tickets\n   * @param _amount Amount of tickets to unstake\n   */\n  function unstake(address _to, uint256 _amount) external {\n    _requireRecipientNotZeroAddress(_to);\n    _requireAmountGtZero(_amount);\n\n    _burn(msg.sender, _amount);\n\n    IERC20(ticket).safeTransfer(_to, _amount);\n\n    emit TicketsUnstaked(msg.sender, _to, _amount);\n  }\n\n  /**\n   * @notice Creates a new delegation.\n   This will create a new Delegation contract for the given slot and have it delegate its tickets to the given delegatee.\n   If a non-zero lock duration is passed, then the delegatee cannot be changed, nor funding withdrawn, until the lock has expired.\n   * @dev The `_delegator` and `_slot` params are used to compute the salt of the delegation\n   * @param _delegator Address of the delegator that will be able to handle the delegation\n   * @param _slot Slot of the delegation\n   * @param _delegatee Address of the delegatee\n   * @param _lockDuration Duration of time for which the delegation is locked. Must be less than the max duration.\n   * @return Returns the address of the Delegation contract that will hold the tickets\n   */\n  function createDelegation(\n    address _delegator,\n    uint256 _slot,\n    address _delegatee,\n    uint96 _lockDuration\n  ) external returns (Delegation) {\n    _requireDelegatorOrRepresentative(_delegator);\n    _requireDelegateeNotZeroAddress(_delegatee);\n    _requireLockDuration(_lockDuration);\n\n    uint96 _lockUntil = _computeLockUntil(_lockDuration);\n\n    Delegation _delegation = _createDelegation(\n      _computeSalt(_delegator, bytes32(_slot)),\n      _lockUntil\n    );\n\n    _setDelegateeCall(_delegation, _delegatee);\n\n    emit DelegationCreated(_delegator, _slot, _lockUntil, _delegatee, _delegation, msg.sender);\n\n    return _delegation;\n  }\n\n  /**\n   * @notice Updates the delegatee and lock duration for a delegation slot.\n   * @dev Only callable by the `_delegator` or their representative.\n   * @dev Will revert if delegation is still locked.\n   * @param _delegator Address of the delegator\n   * @param _slot Slot of the delegation\n   * @param _delegatee Address of the delegatee\n   * @param _lockDuration Duration of time during which the delegatee cannot be changed nor withdrawn\n   * @return The address of the Delegation\n   */\n  function updateDelegatee(\n    address _delegator,\n    uint256 _slot,\n    address _delegatee,\n    uint96 _lockDuration\n  ) external returns (Delegation) {\n    _requireDelegatorOrRepresentative(_delegator);\n    _requireDelegateeNotZeroAddress(_delegatee);\n    _requireLockDuration(_lockDuration);\n\n    Delegation _delegation = Delegation(_computeAddress(_delegator, _slot));\n    _requireDelegationUnlocked(_delegation);\n\n    uint96 _lockUntil = _computeLockUntil(_lockDuration);\n\n    if (_lockDuration > 0) {\n      _delegation.setLockUntil(_lockUntil);\n    }\n\n    _setDelegateeCall(_delegation, _delegatee);\n\n    emit DelegateeUpdated(_delegator, _slot, _delegatee, _lockUntil, msg.sender);\n\n    return _delegation;\n  }\n\n  /**\n   * @notice Fund a delegation by transferring tickets from the caller to the delegation.\n   * @dev Callable by anyone.\n   * @dev Will revert if delegation does not exist.\n   * @param _delegator Address of the delegator\n   * @param _slot Slot of the delegation\n   * @param _amount Amount of tickets to transfer\n   * @return The address of the Delegation\n   */\n  function fundDelegation(\n    address _delegator,\n    uint256 _slot,\n    uint256 _amount\n  ) external returns (Delegation) {\n    require(_delegator != address(0), \"TWABDelegator/dlgtr-not-zero-adr\");\n    _requireAmountGtZero(_amount);\n\n    Delegation _delegation = Delegation(_computeAddress(_delegator, _slot));\n    IERC20(ticket).safeTransferFrom(msg.sender, address(_delegation), _amount);\n\n    emit DelegationFunded(_delegator, _slot, _amount, msg.sender);\n\n    return _delegation;\n  }\n\n  /**\n   * @notice Fund a delegation using the `_delegator` stake.\n   * @dev Callable only by the `_delegator` or a representative.\n   * @dev Will revert if delegation does not exist.\n   * @dev Will revert if `_amount` is greater than the staked amount.\n   * @param _delegator Address of the delegator\n   * @param _slot Slot of the delegation\n   * @param _amount Amount of tickets to send to the delegation from the staked amount\n   * @return The address of the Delegation\n   */\n  function fundDelegationFromStake(\n    address _delegator,\n    uint256 _slot,\n    uint256 _amount\n  ) external returns (Delegation) {\n    _requireDelegatorOrRepresentative(_delegator);\n    _requireAmountGtZero(_amount);\n\n    Delegation _delegation = Delegation(_computeAddress(_delegator, _slot));\n\n    _burn(_delegator, _amount);\n\n    IERC20(ticket).safeTransfer(address(_delegation), _amount);\n\n    emit DelegationFundedFromStake(_delegator, _slot, _amount, msg.sender);\n\n    return _delegation;\n  }\n\n  /**\n   * @notice Withdraw tickets from a delegation. The tickets will be held by this contract and the delegator's stake will increase.\n   * @dev Only callable by the `_delegator` or a representative.\n   * @dev Will send the tickets to this contract and increase the `_delegator` staked amount.\n   * @dev Will revert if delegation is still locked.\n   * @param _delegator Address of the delegator\n   * @param _slot Slot of the delegation\n   * @param _amount Amount of tickets to withdraw\n   * @return The address of the Delegation\n   */\n  function withdrawDelegationToStake(\n    address _delegator,\n    uint256 _slot,\n    uint256 _amount\n  ) external returns (Delegation) {\n    _requireDelegatorOrRepresentative(_delegator);\n\n    Delegation _delegation = Delegation(_computeAddress(_delegator, _slot));\n\n    _transfer(_delegation, address(this), _amount);\n\n    _mint(_delegator, _amount);\n\n    emit WithdrewDelegationToStake(_delegator, _slot, _amount, msg.sender);\n\n    return _delegation;\n  }\n\n  /**\n   * @notice Withdraw an `_amount` of tickets from a delegation. The delegator is assumed to be the caller.\n   * @dev Tickets are sent directly to the passed `_to` address.\n   * @dev Will revert if delegation is still locked.\n   * @param _slot Slot of the delegation\n   * @param _amount Amount to withdraw\n   * @param _to Account to transfer the withdrawn tickets to\n   * @return The address of the Delegation\n   */\n  function transferDelegationTo(\n    uint256 _slot,\n    uint256 _amount,\n    address _to\n  ) external returns (Delegation) {\n    _requireRecipientNotZeroAddress(_to);\n\n    Delegation _delegation = Delegation(_computeAddress(msg.sender, _slot));\n    _transfer(_delegation, _to, _amount);\n\n    emit TransferredDelegation(msg.sender, _slot, _amount, _to);\n\n    return _delegation;\n  }\n\n  /**\n   * @notice Allow an account to set or unset a `_representative` to handle delegation.\n   * @dev If `_set` is `true`, `_representative` will be set as representative of `msg.sender`.\n   * @dev If `_set` is `false`, `_representative` will be unset as representative of `msg.sender`.\n   * @param _representative Address of the representative\n   * @param _set Set or unset the representative\n   */\n  function setRepresentative(address _representative, bool _set) external {\n    require(_representative != address(0), \"TWABDelegator/rep-not-zero-addr\");\n\n    representatives[msg.sender][_representative] = _set;\n\n    emit RepresentativeSet(msg.sender, _representative, _set);\n  }\n\n  /**\n   * @notice Returns whether or not the given rep is a representative of the delegator.\n   * @param _delegator The delegator\n   * @param _representative The representative to check for\n   * @return True if the rep is a rep, false otherwise\n   */\n  function isRepresentativeOf(address _delegator, address _representative)\n    external\n    view\n    returns (bool)\n  {\n    return representatives[_delegator][_representative];\n  }\n\n  /**\n   * @notice Allows a user to call multiple functions on the same contract.  Useful for EOA who wants to batch transactions.\n   * @param _data An array of encoded function calls.  The calls must be abi-encoded calls to this contract.\n   * @return The results from each function call\n   */\n  function multicall(bytes[] calldata _data) external returns (bytes[] memory) {\n    return _multicall(_data);\n  }\n\n  /**\n   * @notice Alow a user to approve ticket and run various calls in one transaction.\n   * @param _amount Amount of tickets to approve\n   * @param _permitSignature Permit signature\n   * @param _data Datas to call with `functionDelegateCall`\n   */\n  function permitAndMulticall(\n    uint256 _amount,\n    Signature calldata _permitSignature,\n    bytes[] calldata _data\n  ) external {\n    _permitAndMulticall(IERC20Permit(address(ticket)), _amount, _permitSignature, _data);\n  }\n\n  /**\n   * @notice Allows the caller to easily get the details for a delegation.\n   * @param _delegator The delegator address\n   * @param _slot The delegation slot they are using\n   * @return delegation The address that holds tickets for the delegation\n   * @return delegatee The address that tickets are being delegated to\n   * @return balance The balance of tickets in the delegation\n   * @return lockUntil The timestamp at which the delegation unlocks\n   * @return wasCreated Whether or not the delegation has been created\n   */\n  function getDelegation(address _delegator, uint256 _slot)\n    external\n    view\n    returns (\n      Delegation delegation,\n      address delegatee,\n      uint256 balance,\n      uint256 lockUntil,\n      bool wasCreated\n    )\n  {\n    delegation = Delegation(_computeAddress(_delegator, _slot));\n    wasCreated = address(delegation).isContract();\n    delegatee = ticket.delegateOf(address(delegation));\n    balance = ticket.balanceOf(address(delegation));\n\n    if (wasCreated) {\n      lockUntil = delegation.lockUntil();\n    }\n  }\n\n  /**\n   * @notice Computes the address of the delegation for the delegator + slot combination.\n   * @param _delegator The user who is delegating tickets\n   * @param _slot The delegation slot\n   * @return The address of the delegation.  This is the address that holds the balance of tickets.\n   */\n  function computeDelegationAddress(address _delegator, uint256 _slot)\n    external\n    view\n    returns (address)\n  {\n    return _computeAddress(_delegator, _slot);\n  }\n\n  /**\n   * @notice Returns the ERC20 token decimals.\n   * @dev This value is equal to the decimals of the ticket being delegated.\n   * @return ERC20 token decimals\n   */\n  function decimals() public view virtual override returns (uint8) {\n    return ERC20(address(ticket)).decimals();\n  }\n\n  /* ============ Internal Functions ============ */\n\n  /**\n   * @notice Computes the address of a delegation contract using the delegator and slot as a salt.\n   The contract is a clone, also known as minimal proxy contract.\n   * @param _delegator Address of the delegator\n   * @param _slot Slot of the delegation\n   * @return Address at which the delegation contract will be deployed\n   */\n  function _computeAddress(address _delegator, uint256 _slot) internal view returns (address) {\n    return _computeAddress(_computeSalt(_delegator, bytes32(_slot)));\n  }\n\n  /**\n   * @notice Computes the timestamp at which the delegation unlocks, after which the delegatee can be changed and tickets withdrawn.\n   * @param _lockDuration The duration of the lock\n   * @return The lock expiration timestamp\n   */\n  function _computeLockUntil(uint96 _lockDuration) internal view returns (uint96) {\n    unchecked {\n      return uint96(block.timestamp) + _lockDuration;\n    }\n  }\n\n  /**\n   * @notice Delegates tickets from the `_delegation` contract to the `_delegatee` address.\n   * @param _delegation Address of the delegation contract\n   * @param _delegatee Address of the delegatee\n   */\n  function _setDelegateeCall(Delegation _delegation, address _delegatee) internal {\n    bytes4 _selector = ticket.delegate.selector;\n    bytes memory _data = abi.encodeWithSelector(_selector, _delegatee);\n\n    _executeCall(_delegation, _data);\n  }\n\n  /**\n   * @notice Tranfers tickets from the Delegation contract to the `_to` address.\n   * @param _delegation Address of the delegation contract\n   * @param _to Address of the recipient\n   * @param _amount Amount of tickets to transfer\n   */\n  function _transferCall(\n    Delegation _delegation,\n    address _to,\n    uint256 _amount\n  ) internal {\n    bytes4 _selector = ticket.transfer.selector;\n    bytes memory _data = abi.encodeWithSelector(_selector, _to, _amount);\n\n    _executeCall(_delegation, _data);\n  }\n\n  /**\n   * @notice Execute a function call on the delegation contract.\n   * @param _delegation Address of the delegation contract\n   * @param _data The call data that will be executed\n   * @return The return datas from the calls\n   */\n  function _executeCall(Delegation _delegation, bytes memory _data)\n    internal\n    returns (bytes[] memory)\n  {\n    Delegation.Call[] memory _calls = new Delegation.Call[](1);\n    _calls[0] = Delegation.Call({ to: address(ticket), data: _data });\n\n    return _delegation.executeCalls(_calls);\n  }\n\n  /**\n   * @notice Transfers tickets from a delegation contract to `_to`.\n   * @param _delegation Address of the delegation contract\n   * @param _to Address of the recipient\n   * @param _amount Amount of tickets to transfer\n   */\n  function _transfer(\n    Delegation _delegation,\n    address _to,\n    uint256 _amount\n  ) internal {\n    _requireAmountGtZero(_amount);\n    _requireDelegationUnlocked(_delegation);\n\n    _transferCall(_delegation, _to, _amount);\n  }\n\n  /* ============ Modifier/Require Functions ============ */\n\n  /**\n   * @notice Require to only allow the delegator or representative to call a function.\n   * @param _delegator Address of the delegator\n   */\n  function _requireDelegatorOrRepresentative(address _delegator) internal view {\n    require(\n      _delegator == msg.sender || representatives[_delegator][msg.sender],\n      \"TWABDelegator/not-dlgtr-or-rep\"\n    );\n  }\n\n  /**\n   * @notice Require to verify that `_delegatee` is not address zero.\n   * @param _delegatee Address of the delegatee\n   */\n  function _requireDelegateeNotZeroAddress(address _delegatee) internal pure {\n    require(_delegatee != address(0), \"TWABDelegator/dlgt-not-zero-addr\");\n  }\n\n  /**\n   * @notice Require to verify that `_amount` is greater than 0.\n   * @param _amount Amount to check\n   */\n  function _requireAmountGtZero(uint256 _amount) internal pure {\n    require(_amount > 0, \"TWABDelegator/amount-gt-zero\");\n  }\n\n  /**\n   * @notice Require to verify that `_to` is not address zero.\n   * @param _to Address to check\n   */\n  function _requireRecipientNotZeroAddress(address _to) internal pure {\n    require(_to != address(0), \"TWABDelegator/to-not-zero-addr\");\n  }\n\n  /**\n   * @notice Require to verify if a `_delegation` is locked.\n   * @param _delegation Delegation to check\n   */\n  function _requireDelegationUnlocked(Delegation _delegation) internal view {\n    require(block.timestamp >= _delegation.lockUntil(), \"TWABDelegator/delegation-locked\");\n  }\n\n  /**\n   * @notice Require to verify that a `_lockDuration` does not exceed the maximum lock duration.\n   * @param _lockDuration Lock duration to check\n   */\n  function _requireLockDuration(uint256 _lockDuration) internal pure {\n    require(_lockDuration <= MAX_LOCK, \"TWABDelegator/lock-too-long\");\n  }\n}\n"
      },
      "@openzeppelin/contracts/proxy/Clones.sol": {
        "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (proxy/Clones.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev https://eips.ethereum.org/EIPS/eip-1167[EIP 1167] is a standard for\n * deploying minimal proxy contracts, also known as \"clones\".\n *\n * > To simply and cheaply clone contract functionality in an immutable way, this standard specifies\n * > a minimal bytecode implementation that delegates all calls to a known, fixed address.\n *\n * The library includes functions to deploy a proxy using either `create` (traditional deployment) or `create2`\n * (salted deterministic deployment). It also includes functions to predict the addresses of clones deployed using the\n * deterministic method.\n *\n * _Available since v3.4._\n */\nlibrary Clones {\n    /**\n     * @dev Deploys and returns the address of a clone that mimics the behaviour of `implementation`.\n     *\n     * This function uses the create opcode, which should never revert.\n     */\n    function clone(address implementation) internal returns (address instance) {\n        assembly {\n            let ptr := mload(0x40)\n            mstore(ptr, 0x3d602d80600a3d3981f3363d3d373d3d3d363d73000000000000000000000000)\n            mstore(add(ptr, 0x14), shl(0x60, implementation))\n            mstore(add(ptr, 0x28), 0x5af43d82803e903d91602b57fd5bf30000000000000000000000000000000000)\n            instance := create(0, ptr, 0x37)\n        }\n        require(instance != address(0), \"ERC1167: create failed\");\n    }\n\n    /**\n     * @dev Deploys and returns the address of a clone that mimics the behaviour of `implementation`.\n     *\n     * This function uses the create2 opcode and a `salt` to deterministically deploy\n     * the clone. Using the same `implementation` and `salt` multiple time will revert, since\n     * the clones cannot be deployed twice at the same address.\n     */\n    function cloneDeterministic(address implementation, bytes32 salt) internal returns (address instance) {\n        assembly {\n            let ptr := mload(0x40)\n            mstore(ptr, 0x3d602d80600a3d3981f3363d3d373d3d3d363d73000000000000000000000000)\n            mstore(add(ptr, 0x14), shl(0x60, implementation))\n            mstore(add(ptr, 0x28), 0x5af43d82803e903d91602b57fd5bf30000000000000000000000000000000000)\n            instance := create2(0, ptr, 0x37, salt)\n        }\n        require(instance != address(0), \"ERC1167: create2 failed\");\n    }\n\n    /**\n     * @dev Computes the address of a clone deployed using {Clones-cloneDeterministic}.\n     */\n    function predictDeterministicAddress(\n        address implementation,\n        bytes32 salt,\n        address deployer\n    ) internal pure returns (address predicted) {\n        assembly {\n            let ptr := mload(0x40)\n            mstore(ptr, 0x3d602d80600a3d3981f3363d3d373d3d3d363d73000000000000000000000000)\n            mstore(add(ptr, 0x14), shl(0x60, implementation))\n            mstore(add(ptr, 0x28), 0x5af43d82803e903d91602b57fd5bf3ff00000000000000000000000000000000)\n            mstore(add(ptr, 0x38), shl(0x60, deployer))\n            mstore(add(ptr, 0x4c), salt)\n            mstore(add(ptr, 0x6c), keccak256(ptr, 0x37))\n            predicted := keccak256(add(ptr, 0x37), 0x55)\n        }\n    }\n\n    /**\n     * @dev Computes the address of a clone deployed using {Clones-cloneDeterministic}.\n     */\n    function predictDeterministicAddress(address implementation, bytes32 salt)\n        internal\n        view\n        returns (address predicted)\n    {\n        return predictDeterministicAddress(implementation, salt, address(this));\n    }\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"
      },
      "@pooltogether/v4-twab-delegator/contracts/Delegation.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\n/**\n * @title Contract instantiated via CREATE2 to handle a Delegation by a delegator to a delegatee.\n * @notice A Delegation allows his owner to execute calls on behalf of the contract.\n * @dev This contract is intended to be counterfactually instantiated via CREATE2 through the LowLevelDelegator contract.\n * @dev This contract will hold tickets that will be delegated to a chosen delegatee.\n */\ncontract Delegation {\n  /**\n   * @notice A structure to define arbitrary contract calls.\n   * @param to The address to call\n   * @param data The call data\n   */\n  struct Call {\n    address to;\n    bytes data;\n  }\n\n  /// @notice Contract owner.\n  address private _owner;\n\n  /// @notice Timestamp until which the delegation is locked.\n  uint96 public lockUntil;\n\n  /**\n   * @notice Initializes the delegation.\n   * @param _lockUntil Timestamp until which the delegation is locked\n   */\n  function initialize(uint96 _lockUntil) external {\n    require(_owner == address(0), \"Delegation/already-init\");\n    _owner = msg.sender;\n    lockUntil = _lockUntil;\n  }\n\n  /**\n   * @notice Executes calls on behalf of this contract.\n   * @param calls The array of calls to be executed\n   * @return An array of the return values for each of the calls\n   */\n  function executeCalls(Call[] calldata calls) external onlyOwner returns (bytes[] memory) {\n    uint256 _callsLength = calls.length;\n    bytes[] memory response = new bytes[](_callsLength);\n    Call memory call;\n\n    for (uint256 i; i < _callsLength; i++) {\n      call = calls[i];\n      response[i] = _executeCall(call.to, call.data);\n    }\n\n    return response;\n  }\n\n  /**\n   * @notice Set the timestamp until which the delegation is locked.\n   * @param _lockUntil The timestamp until which the delegation is locked\n   */\n  function setLockUntil(uint96 _lockUntil) external onlyOwner {\n    lockUntil = _lockUntil;\n  }\n\n  /**\n   * @notice Executes a call to another contract.\n   * @param to The address to call\n   * @param data The call data\n   * @return The return data from the call\n   */\n  function _executeCall(address to, bytes memory data) internal returns (bytes memory) {\n    (bool succeeded, bytes memory returnValue) = to.call{ value: 0 }(data);\n    require(succeeded, string(returnValue));\n    return returnValue;\n  }\n\n  /// @notice Modifier to only allow the contract owner to call a function\n  modifier onlyOwner() {\n    require(msg.sender == _owner, \"Delegation/only-owner\");\n    _;\n  }\n}\n"
      },
      "@pooltogether/v4-twab-delegator/contracts/LowLevelDelegator.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"@openzeppelin/contracts/proxy/Clones.sol\";\n\nimport \"./Delegation.sol\";\n\n/// @title The LowLevelDelegator allows users to create delegations very cheaply.\ncontract LowLevelDelegator {\n  using Clones for address;\n\n  /// @notice The instance to which all proxies will point.\n  Delegation public delegationInstance;\n\n  /// @notice Contract constructor.\n  constructor() {\n    delegationInstance = new Delegation();\n    delegationInstance.initialize(uint96(0));\n  }\n\n  /**\n   * @notice Creates a clone of the delegation.\n   * @param _salt Random number used to deterministically deploy the clone\n   * @param _lockUntil Timestamp until which the delegation is locked\n   * @return The newly created delegation\n   */\n  function _createDelegation(bytes32 _salt, uint96 _lockUntil) internal returns (Delegation) {\n    Delegation _delegation = Delegation(address(delegationInstance).cloneDeterministic(_salt));\n    _delegation.initialize(_lockUntil);\n    return _delegation;\n  }\n\n  /**\n   * @notice Computes the address of a clone, also known as minimal proxy contract.\n   * @param _salt Random number used to compute the address\n   * @return Address at which the clone will be deployed\n   */\n  function _computeAddress(bytes32 _salt) internal view returns (address) {\n    return address(delegationInstance).predictDeterministicAddress(_salt, address(this));\n  }\n\n  /**\n   * @notice Computes salt used to deterministically deploy a clone.\n   * @param _delegator Address of the delegator\n   * @param _slot Slot of the delegation\n   * @return Salt used to deterministically deploy a clone.\n   */\n  function _computeSalt(address _delegator, bytes32 _slot) internal pure returns (bytes32) {\n    return keccak256(abi.encodePacked(_delegator, _slot));\n  }\n}\n"
      },
      "@pooltogether/v4-twab-delegator/contracts/PermitAndMulticall.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"@openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol\";\nimport \"@openzeppelin/contracts/utils/Address.sol\";\n\n/**\n * @notice Allows a user to permit token spend and then call multiple functions on a contract.\n */\ncontract PermitAndMulticall {\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   */\n  struct Signature {\n    uint256 deadline;\n    uint8 v;\n    bytes32 r;\n    bytes32 s;\n  }\n\n  /**\n   * @notice Allows a user to call multiple functions on the same contract.  Useful for EOA who want to batch transactions.\n   * @param _data An array of encoded function calls.  The calls must be abi-encoded calls to this contract.\n   * @return The results from each function call\n   */\n  function _multicall(bytes[] calldata _data) internal virtual returns (bytes[] memory) {\n    uint256 _dataLength = _data.length;\n    bytes[] memory results = new bytes[](_dataLength);\n\n    for (uint256 i; i < _dataLength; i++) {\n      results[i] = Address.functionDelegateCall(address(this), _data[i]);\n    }\n\n    return results;\n  }\n\n  /**\n   * @notice Allow a user to approve an ERC20 token and run various calls in one transaction.\n   * @param _permitToken Address of the ERC20 token\n   * @param _amount Amount of tickets to approve\n   * @param _permitSignature Permit signature\n   * @param _data Datas to call with `functionDelegateCall`\n   */\n  function _permitAndMulticall(\n    IERC20Permit _permitToken,\n    uint256 _amount,\n    Signature calldata _permitSignature,\n    bytes[] calldata _data\n  ) internal {\n    _permitToken.permit(\n      msg.sender,\n      address(this),\n      _amount,\n      _permitSignature.deadline,\n      _permitSignature.v,\n      _permitSignature.r,\n      _permitSignature.s\n    );\n\n    _multicall(_data);\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/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"
      },
      "@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/aave-yield-source/contracts/external/aave/IProtocolYieldSource.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"@pooltogether/yield-source-interface/contracts/IYieldSource.sol\";\nimport \"@openzeppelin/contracts/token/ERC20/IERC20.sol\";\n\n/// @title The interface used for all Yield Sources for the PoolTogether protocol\n/// @dev There are two privileged roles: the owner and the asset manager.  The owner can configure the asset managers.\ninterface IProtocolYieldSource is IYieldSource {\n  /// @notice Allows the owner to transfer ERC20 tokens held by this contract to the target address.\n  /// @dev This function is callable by the owner or asset manager.\n  /// This function should not be able to transfer any tokens that represent user deposits.\n  /// @param token The ERC20 token to transfer\n  /// @param to The recipient of the tokens\n  /// @param amount The amount of tokens to transfer\n  function transferERC20(IERC20 token, address to, uint256 amount) external;\n\n  /// @notice Allows someone to deposit into the yield source without receiving any shares.  The deposited token will be the same as token()\n  /// This allows anyone to distribute tokens among the share holders.\n  function sponsor(uint256 amount) external;\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/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/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/aave-yield-source/contracts/yield-source/ATokenYieldSource.sol": {
        "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity 0.8.6;\n\nimport \"@openzeppelin/contracts/utils/math/SafeMath.sol\";\nimport \"@openzeppelin/contracts/token/ERC20/ERC20.sol\";\nimport \"@openzeppelin/contracts/token/ERC20/IERC20.sol\";\nimport \"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\";\nimport \"@openzeppelin/contracts/security/ReentrancyGuard.sol\";\nimport \"@pooltogether/fixed-point/contracts/FixedPoint.sol\";\nimport \"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\";\n\nimport \"../external/aave/ILendingPool.sol\";\nimport \"../external/aave/ILendingPoolAddressesProvider.sol\";\nimport \"../external/aave/ILendingPoolAddressesProviderRegistry.sol\";\nimport \"../external/aave/ATokenInterface.sol\";\nimport \"../external/aave/IAaveIncentivesController.sol\";\nimport \"../external/aave/IProtocolYieldSource.sol\";\n\n/// @title Aave Yield Source integration contract, implementing PoolTogether's generic yield source interface\n/// @dev This contract inherits from the ERC20 implementation to keep track of users deposits\n/// @dev This contract inherits AssetManager which extends OwnableUpgradable\n/// @notice Yield source for a PoolTogether prize pool that generates yield by depositing into Aave V2\ncontract ATokenYieldSource is ERC20, IProtocolYieldSource, Manageable, ReentrancyGuard {\n  using SafeMath for uint256;\n  using SafeERC20 for IERC20;\n\n  /// @notice Emitted when the yield source is initialized\n  event ATokenYieldSourceInitialized(\n    IAToken indexed aToken,\n    ILendingPoolAddressesProviderRegistry lendingPoolAddressesProviderRegistry,\n    uint8 decimals,\n    string name,\n    string symbol,\n    address owner\n  );\n\n  /// @notice Emitted when asset tokens are redeemed from the yield source\n  event RedeemedToken(\n    address indexed from,\n    uint256 shares,\n    uint256 amount\n  );\n\n  /// @notice Emitted when Aave rewards have been claimed\n  event Claimed(\n    address indexed user,\n    address indexed to,\n    uint256 amount\n  );\n\n  /// @notice Emitted when asset tokens are supplied to the yield source\n  event SuppliedTokenTo(\n    address indexed from,\n    uint256 shares,\n    uint256 amount,\n    address indexed to\n  );\n\n  /// @notice Emitted when asset tokens are supplied to sponsor the yield source\n  event Sponsored(\n    address indexed from,\n    uint256 amount\n  );\n\n  /// @notice Emitted when ERC20 tokens other than yield source's aToken are withdrawn from the yield source\n  event TransferredERC20(\n    address indexed from,\n    address indexed to,\n    uint256 amount,\n    IERC20 indexed token\n  );\n\n  /// @notice Interface for the yield-bearing Aave aToken\n  ATokenInterface public immutable aToken;\n\n  /// @notice Interface for Aave incentivesController\n  IAaveIncentivesController public immutable incentivesController;\n\n  /// @notice Interface for Aave lendingPoolAddressesProviderRegistry\n  ILendingPoolAddressesProviderRegistry public lendingPoolAddressesProviderRegistry;\n\n  /// @notice Underlying asset token address.\n  address private immutable _tokenAddress;\n\n  /// @notice ERC20 token decimals.\n  uint8 private immutable __decimals;\n\n  /// @dev Aave genesis market LendingPoolAddressesProvider's ID\n  /// @dev This variable could evolve in the future if we decide to support other markets\n  uint256 private constant ADDRESSES_PROVIDER_ID = uint256(0);\n\n  /// @dev PoolTogether's Aave Referral Code\n  uint16 private constant REFERRAL_CODE = uint16(188);\n\n  /// @notice Initializes the yield source with Aave aToken\n  /// @param _aToken Aave aToken address\n  /// @param _incentivesController Aave incentivesController address\n  /// @param _lendingPoolAddressesProviderRegistry Aave lendingPoolAddressesProviderRegistry address\n  /// @param _decimals Number of decimals the shares (inhereted ERC20) will have. Set as same as underlying asset to ensure sane ExchangeRates\n  /// @param _symbol Token symbol for the underlying shares ERC20\n  /// @param _name Token name for the underlying shares ERC20\n  constructor (\n    ATokenInterface _aToken,\n    IAaveIncentivesController _incentivesController,\n    ILendingPoolAddressesProviderRegistry _lendingPoolAddressesProviderRegistry,\n    uint8 _decimals,\n    string memory _symbol,\n    string memory _name,\n    address _owner\n  ) Ownable(_owner) ERC20(_name, _symbol) ReentrancyGuard()\n  {\n    require(address(_aToken) != address(0), \"ATokenYieldSource/aToken-not-zero-address\");\n    require(address(_incentivesController) != address(0), \"ATokenYieldSource/incentivesController-not-zero-address\");\n    require(address(_lendingPoolAddressesProviderRegistry) != address(0), \"ATokenYieldSource/lendingPoolRegistry-not-zero-address\");\n    require(_owner != address(0), \"ATokenYieldSource/owner-not-zero-address\");\n    require(_decimals > 0, \"ATokenYieldSource/decimals-gt-zero\");\n\n    aToken = _aToken;\n    incentivesController = _incentivesController;\n    lendingPoolAddressesProviderRegistry = _lendingPoolAddressesProviderRegistry;\n    __decimals = _decimals;\n\n    address tokenAddress = address(_aToken.UNDERLYING_ASSET_ADDRESS());\n    _tokenAddress = tokenAddress;\n\n    // Approve once for max amount\n    IERC20(tokenAddress).safeApprove(address(_lendingPool()), type(uint256).max);\n\n    emit ATokenYieldSourceInitialized (\n      _aToken,\n      _lendingPoolAddressesProviderRegistry,\n      _decimals,\n      _name,\n      _symbol,\n      _owner\n    );\n  }\n\n  /// @notice Returns the number of decimals that the token repesenting yield source shares has\n  /// @return The number of decimals\n  function decimals() public override view returns (uint8) {\n    return __decimals;\n  }\n\n  /// @notice Approve lending pool contract to spend max uint256 amount\n  /// @dev Emergency function to re-approve max amount if approval amount dropped too low\n  /// @return true if operation is successful\n  function approveMaxAmount() external onlyOwner returns (bool) {\n    address _lendingPoolAddress = address(_lendingPool());\n    IERC20 _underlyingAsset = IERC20(_tokenAddress);\n\n    _underlyingAsset.safeIncreaseAllowance(\n      _lendingPoolAddress,\n      type(uint256).max.sub(_underlyingAsset.allowance(address(this), _lendingPoolAddress))\n    );\n\n    return true;\n  }\n\n  /// @notice Returns the ERC20 asset token used for deposits\n  /// @return The ERC20 asset token address\n  function depositToken() public view override returns (address) {\n    return _tokenAddress;\n  }\n\n  /// @notice Returns user total balance (in asset tokens). This includes the deposits and interest.\n  /// @param addr User address\n  /// @return The underlying balance of asset tokens\n  function balanceOfToken(address addr) external override view returns (uint256) {\n    return _sharesToToken(balanceOf(addr));\n  }\n\n  /// @notice Calculates the number of shares that should be mint or burned when a user deposit or withdraw\n  /// @param _tokens Amount of tokens\n  /// @return Number of shares\n  function _tokenToShares(uint256 _tokens) internal view returns (uint256) {\n    uint256 _shares;\n    uint256 _totalSupply = totalSupply();\n\n    if (_totalSupply == 0) {\n      _shares = _tokens;\n    } else {\n      // rate = tokens / shares\n      // shares = tokens * (totalShares / yieldSourceTotalSupply)\n      uint256 _exchangeMantissa = FixedPoint.calculateMantissa(_totalSupply, aToken.balanceOf(address(this)));\n      _shares = FixedPoint.multiplyUintByMantissa(_tokens, _exchangeMantissa);\n    }\n\n    return _shares;\n  }\n\n  /// @notice Calculates the number of tokens a user has in the yield source\n  /// @param _shares Amount of shares\n  /// @return Number of tokens\n  function _sharesToToken(uint256 _shares) internal view returns (uint256) {\n    uint256 _tokens;\n    uint256 _totalSupply = totalSupply();\n\n    if (_totalSupply == 0) {\n      _tokens = _shares;\n    } else {\n      // tokens = (shares * yieldSourceTotalSupply) / totalShares\n      _tokens = _shares.mul(aToken.balanceOf(address(this))).div(_totalSupply);\n    }\n\n    return _tokens;\n  }\n\n  /// @notice Checks that the amount of shares is greater than zero.\n  /// @param _shares Amount of shares to check\n  function _requireSharesGTZero(uint256 _shares) internal pure {\n    require(_shares > 0, \"ATokenYieldSource/shares-gt-zero\");\n  }\n\n  /// @notice Deposit asset tokens to Aave\n  /// @param mintAmount The amount of asset tokens to be deposited\n  function _depositToAave(uint256 mintAmount) internal {\n    IERC20(_tokenAddress).safeTransferFrom(msg.sender, address(this), mintAmount);\n    _lendingPool().deposit(_tokenAddress, mintAmount, address(this), REFERRAL_CODE);\n  }\n\n  /// @notice Supplies asset tokens to the yield source\n  /// @dev Shares corresponding to the number of tokens supplied are mint to the user's balance\n  /// @dev Asset tokens are supplied to the yield source, then deposited into Aave\n  /// @param mintAmount The amount of asset tokens to be supplied\n  /// @param to The user whose balance will receive the tokens\n  function supplyTokenTo(uint256 mintAmount, address to) external override nonReentrant {\n    uint256 shares = _tokenToShares(mintAmount);\n    _requireSharesGTZero(shares);\n\n    _depositToAave(mintAmount);\n    _mint(to, shares);\n\n    emit SuppliedTokenTo(msg.sender, shares, mintAmount, to);\n  }\n\n  /// @notice Redeems asset tokens from the yield source\n  /// @dev Shares corresponding to the number of tokens withdrawn are burnt from the user's balance\n  /// @dev Asset tokens are withdrawn from Aave, then transferred from the yield source to the user's wallet\n  /// @param redeemAmount The amount of asset tokens to be redeemed\n  /// @return The actual amount of asset tokens that were redeemed\n  function redeemToken(uint256 redeemAmount) external override nonReentrant returns (uint256) {\n    uint256 shares = _tokenToShares(redeemAmount);\n    _requireSharesGTZero(shares);\n\n    _burn(msg.sender, shares);\n\n    IERC20 _depositToken = IERC20(_tokenAddress);\n    uint256 beforeBalance = _depositToken.balanceOf(address(this));\n    _lendingPool().withdraw(_tokenAddress, redeemAmount, address(this));\n    uint256 afterBalance = _depositToken.balanceOf(address(this));\n\n    uint256 balanceDiff = afterBalance.sub(beforeBalance);\n    _depositToken.safeTransfer(msg.sender, balanceDiff);\n\n    emit RedeemedToken(msg.sender, shares, redeemAmount);\n    return balanceDiff;\n  }\n\n  /// @notice Transfer ERC20 tokens other than the aTokens held by this contract to the recipient address\n  /// @dev This function is only callable by the owner or asset manager\n  /// @param erc20Token The ERC20 token to transfer\n  /// @param to The recipient of the tokens\n  /// @param amount The amount of tokens to transfer\n  function transferERC20(IERC20 erc20Token, address to, uint256 amount) external override onlyManagerOrOwner {\n    require(address(erc20Token) != address(aToken), \"ATokenYieldSource/aToken-transfer-not-allowed\");\n    erc20Token.safeTransfer(to, amount);\n    emit TransferredERC20(msg.sender, to, amount, erc20Token);\n  }\n\n  /// @notice Allows someone to deposit into the yield source without receiving any shares\n  /// @dev This allows anyone to distribute tokens among the share holders\n  /// @param amount The amount of tokens to deposit\n  function sponsor(uint256 amount) external override nonReentrant {\n    _depositToAave(amount);\n    emit Sponsored(msg.sender, amount);\n  }\n\n  /// @notice Claims the accrued rewards for the aToken, accumulating any pending rewards.\n  /// @param to Address where the claimed rewards will be sent.\n  /// @return True if operation was successful.\n  function claimRewards(address to) external onlyManagerOrOwner returns (bool) {\n    require(to != address(0), \"ATokenYieldSource/recipient-not-zero-address\");\n\n    IAaveIncentivesController _incentivesController = incentivesController;\n\n    address[] memory _assets = new address[](1);\n    _assets[0] = address(aToken);\n\n    uint256 _amount = _incentivesController.getRewardsBalance(_assets, address(this));\n    uint256 _amountClaimed = _incentivesController.claimRewards(_assets, _amount, to);\n\n    emit Claimed(msg.sender, to, _amountClaimed);\n    return true;\n  }\n\n  /// @notice Retrieves Aave LendingPool address\n  /// @return A reference to LendingPool interface\n  function _lendingPool() internal view returns (ILendingPool) {\n    return ILendingPool(\n      ILendingPoolAddressesProvider(\n        lendingPoolAddressesProviderRegistry.getAddressesProvidersList()[ADDRESSES_PROVIDER_ID]\n      ).getLendingPool()\n    );\n  }\n}\n"
      },
      "@openzeppelin/contracts/utils/math/SafeMath.sol": {
        "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)\n\npragma solidity ^0.8.0;\n\n// CAUTION\n// This version of SafeMath should only be used with Solidity 0.8 or later,\n// because it relies on the compiler's built in overflow checks.\n\n/**\n * @dev Wrappers over Solidity's arithmetic operations.\n *\n * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler\n * now has built in overflow checking.\n */\nlibrary SafeMath {\n    /**\n     * @dev Returns the addition of two unsigned integers, with an overflow flag.\n     *\n     * _Available since v3.4._\n     */\n    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {\n        unchecked {\n            uint256 c = a + b;\n            if (c < a) return (false, 0);\n            return (true, c);\n        }\n    }\n\n    /**\n     * @dev Returns the substraction of two unsigned integers, with an overflow flag.\n     *\n     * _Available since v3.4._\n     */\n    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {\n        unchecked {\n            if (b > a) return (false, 0);\n            return (true, a - b);\n        }\n    }\n\n    /**\n     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.\n     *\n     * _Available since v3.4._\n     */\n    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {\n        unchecked {\n            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the\n            // benefit is lost if 'b' is also tested.\n            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522\n            if (a == 0) return (true, 0);\n            uint256 c = a * b;\n            if (c / a != b) return (false, 0);\n            return (true, c);\n        }\n    }\n\n    /**\n     * @dev Returns the division of two unsigned integers, with a division by zero flag.\n     *\n     * _Available since v3.4._\n     */\n    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {\n        unchecked {\n            if (b == 0) return (false, 0);\n            return (true, a / b);\n        }\n    }\n\n    /**\n     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.\n     *\n     * _Available since v3.4._\n     */\n    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {\n        unchecked {\n            if (b == 0) return (false, 0);\n            return (true, a % b);\n        }\n    }\n\n    /**\n     * @dev Returns the addition of two unsigned integers, reverting on\n     * overflow.\n     *\n     * Counterpart to Solidity's `+` operator.\n     *\n     * Requirements:\n     *\n     * - Addition cannot overflow.\n     */\n    function add(uint256 a, uint256 b) internal pure returns (uint256) {\n        return a + b;\n    }\n\n    /**\n     * @dev Returns the subtraction of two unsigned integers, reverting on\n     * overflow (when the result is negative).\n     *\n     * Counterpart to Solidity's `-` operator.\n     *\n     * Requirements:\n     *\n     * - Subtraction cannot overflow.\n     */\n    function sub(uint256 a, uint256 b) internal pure returns (uint256) {\n        return a - b;\n    }\n\n    /**\n     * @dev Returns the multiplication of two unsigned integers, reverting on\n     * overflow.\n     *\n     * Counterpart to Solidity's `*` operator.\n     *\n     * Requirements:\n     *\n     * - Multiplication cannot overflow.\n     */\n    function mul(uint256 a, uint256 b) internal pure returns (uint256) {\n        return a * b;\n    }\n\n    /**\n     * @dev Returns the integer division of two unsigned integers, reverting on\n     * division by zero. The result is rounded towards zero.\n     *\n     * Counterpart to Solidity's `/` operator.\n     *\n     * Requirements:\n     *\n     * - The divisor cannot be zero.\n     */\n    function div(uint256 a, uint256 b) internal pure returns (uint256) {\n        return a / b;\n    }\n\n    /**\n     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),\n     * reverting when dividing by zero.\n     *\n     * Counterpart to Solidity's `%` operator. This function uses a `revert`\n     * opcode (which leaves remaining gas untouched) while Solidity uses an\n     * invalid opcode to revert (consuming all remaining gas).\n     *\n     * Requirements:\n     *\n     * - The divisor cannot be zero.\n     */\n    function mod(uint256 a, uint256 b) internal pure returns (uint256) {\n        return a % b;\n    }\n\n    /**\n     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on\n     * overflow (when the result is negative).\n     *\n     * CAUTION: This function is deprecated because it requires allocating memory for the error\n     * message unnecessarily. For custom revert reasons use {trySub}.\n     *\n     * Counterpart to Solidity's `-` operator.\n     *\n     * Requirements:\n     *\n     * - Subtraction cannot overflow.\n     */\n    function sub(\n        uint256 a,\n        uint256 b,\n        string memory errorMessage\n    ) internal pure returns (uint256) {\n        unchecked {\n            require(b <= a, errorMessage);\n            return a - b;\n        }\n    }\n\n    /**\n     * @dev Returns the integer division of two unsigned integers, reverting with custom message on\n     * division by zero. The result is rounded towards zero.\n     *\n     * Counterpart to Solidity's `/` operator. Note: this function uses a\n     * `revert` opcode (which leaves remaining gas untouched) while Solidity\n     * uses an invalid opcode to revert (consuming all remaining gas).\n     *\n     * Requirements:\n     *\n     * - The divisor cannot be zero.\n     */\n    function div(\n        uint256 a,\n        uint256 b,\n        string memory errorMessage\n    ) internal pure returns (uint256) {\n        unchecked {\n            require(b > 0, errorMessage);\n            return a / b;\n        }\n    }\n\n    /**\n     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),\n     * reverting with custom message when dividing by zero.\n     *\n     * CAUTION: This function is deprecated because it requires allocating memory for the error\n     * message unnecessarily. For custom revert reasons use {tryMod}.\n     *\n     * Counterpart to Solidity's `%` operator. This function uses a `revert`\n     * opcode (which leaves remaining gas untouched) while Solidity uses an\n     * invalid opcode to revert (consuming all remaining gas).\n     *\n     * Requirements:\n     *\n     * - The divisor cannot be zero.\n     */\n    function mod(\n        uint256 a,\n        uint256 b,\n        string memory errorMessage\n    ) internal pure returns (uint256) {\n        unchecked {\n            require(b > 0, errorMessage);\n            return a % b;\n        }\n    }\n}\n"
      },
      "@pooltogether/fixed-point/contracts/FixedPoint.sol": {
        "content": "/**\nCopyright 2020 PoolTogether Inc.\n\nThis file is part of PoolTogether.\n\nPoolTogether is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation under version 3 of the License.\n\nPoolTogether is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with PoolTogether.  If not, see <https://www.gnu.org/licenses/>.\n*/\n\npragma solidity >=0.4.0;\n\nimport \"./external/openzeppelin/OpenZeppelinSafeMath_V3_3_0.sol\";\n\n/**\n * @author Brendan Asselstine\n * @notice Provides basic fixed point math calculations.\n *\n * This library calculates integer fractions by scaling values by 1e18 then performing standard integer math.\n */\nlibrary FixedPoint {\n    using OpenZeppelinSafeMath_V3_3_0 for uint256;\n\n    // The scale to use for fixed point numbers.  Same as Ether for simplicity.\n    uint256 internal constant SCALE = 1e18;\n\n    /**\n        * Calculates a Fixed18 mantissa given the numerator and denominator\n        *\n        * The mantissa = (numerator * 1e18) / denominator\n        *\n        * @param numerator The mantissa numerator\n        * @param denominator The mantissa denominator\n        * @return The mantissa of the fraction\n        */\n    function calculateMantissa(uint256 numerator, uint256 denominator) internal pure returns (uint256) {\n        uint256 mantissa = numerator.mul(SCALE);\n        mantissa = mantissa.div(denominator);\n        return mantissa;\n    }\n\n    /**\n        * Multiplies a Fixed18 number by an integer.\n        *\n        * @param b The whole integer to multiply\n        * @param mantissa The Fixed18 number\n        * @return An integer that is the result of multiplying the params.\n        */\n    function multiplyUintByMantissa(uint256 b, uint256 mantissa) internal pure returns (uint256) {\n        uint256 result = mantissa.mul(b);\n        result = result.div(SCALE);\n        return result;\n    }\n\n    /**\n    * Divides an integer by a fixed point 18 mantissa\n    *\n    * @param dividend The integer to divide\n    * @param mantissa The fixed point 18 number to serve as the divisor\n    * @return An integer that is the result of dividing an integer by a fixed point 18 mantissa\n    */\n    function divideUintByMantissa(uint256 dividend, uint256 mantissa) internal pure returns (uint256) {\n        uint256 result = SCALE.mul(dividend);\n        result = result.div(mantissa);\n        return result;\n    }\n}\n"
      },
      "@pooltogether/aave-yield-source/contracts/external/aave/ILendingPool.sol": {
        "content": "// SPDX-License-Identifier: agpl-3.0\npragma solidity 0.8.6;\n\ninterface ILendingPool {\n\n  /**\n   * @dev Deposits an `amount` of underlying asset into the reserve, receiving in return overlying aTokens.\n   * - E.g. User deposits 100 USDC and gets in return 100 aUSDC\n   * @param asset The address of the underlying asset to deposit\n   * @param amount The amount to be deposited\n   * @param onBehalfOf The address that will receive the aTokens, same as msg.sender if the user\n   *   wants to receive them on his own wallet, or a different address if the beneficiary of aTokens\n   *   is a different wallet\n   * @param referralCode Code used to register the integrator originating the operation, for potential rewards.\n   *   0 if the action is executed directly by the user, without any middle-man\n   **/\n  function deposit(\n    address asset,\n    uint256 amount,\n    address onBehalfOf,\n    uint16 referralCode\n  ) external;\n\n  /**\n   * @dev Withdraws an `amount` of underlying asset from the reserve, burning the equivalent aTokens owned\n   * E.g. User has 100 aUSDC, calls withdraw() and receives 100 USDC, burning the 100 aUSDC\n   * @param asset The address of the underlying asset to withdraw\n   * @param amount The underlying amount to be withdrawn\n   *   - Send the value type(uint256).max in order to withdraw the whole aToken balance\n   * @param to Address that will receive the underlying, same as msg.sender if the user\n   *   wants to receive it on his own wallet, or a different address if the beneficiary is a\n   *   different wallet\n   * @return The final amount withdrawn\n   **/\n  function withdraw(\n    address asset,\n    uint256 amount,\n    address to\n  ) external returns (uint256);\n\n}\n"
      },
      "@pooltogether/aave-yield-source/contracts/external/aave/ILendingPoolAddressesProvider.sol": {
        "content": "// SPDX-License-Identifier: agpl-3.0\npragma solidity 0.8.6;\n\n/**\n * @title LendingPoolAddressesProvider contract\n * @dev Main registry of addresses part of or connected to the protocol, including permissioned roles\n * - Acting also as factory of proxies and admin of those, so with right to change its implementations\n * - Owned by the Aave Governance\n * @author Aave\n **/\ninterface ILendingPoolAddressesProvider {\n  event MarketIdSet(string newMarketId);\n  event LendingPoolUpdated(address indexed newAddress);\n  event ConfigurationAdminUpdated(address indexed newAddress);\n  event EmergencyAdminUpdated(address indexed newAddress);\n  event LendingPoolConfiguratorUpdated(address indexed newAddress);\n  event LendingPoolCollateralManagerUpdated(address indexed newAddress);\n  event PriceOracleUpdated(address indexed newAddress);\n  event LendingRateOracleUpdated(address indexed newAddress);\n  event ProxyCreated(bytes32 id, address indexed newAddress);\n  event AddressSet(bytes32 id, address indexed newAddress, bool hasProxy);\n\n  function getMarketId() external view returns (string memory);\n\n  function setMarketId(string calldata marketId) external;\n\n  function setAddress(bytes32 id, address newAddress) external;\n\n  function setAddressAsProxy(bytes32 id, address impl) external;\n\n  function getAddress(bytes32 id) external view returns (address);\n\n  function getLendingPool() external view returns (address);\n\n  function setLendingPoolImpl(address pool) external;\n\n  function getLendingPoolConfigurator() external view returns (address);\n\n  function setLendingPoolConfiguratorImpl(address configurator) external;\n\n  function getLendingPoolCollateralManager() external view returns (address);\n\n  function setLendingPoolCollateralManager(address manager) external;\n\n  function getPoolAdmin() external view returns (address);\n\n  function setPoolAdmin(address admin) external;\n\n  function getEmergencyAdmin() external view returns (address);\n\n  function setEmergencyAdmin(address admin) external;\n\n  function getPriceOracle() external view returns (address);\n\n  function setPriceOracle(address priceOracle) external;\n\n  function getLendingRateOracle() external view returns (address);\n\n  function setLendingRateOracle(address lendingRateOracle) external;\n}\n"
      },
      "@pooltogether/aave-yield-source/contracts/external/aave/ILendingPoolAddressesProviderRegistry.sol": {
        "content": "// SPDX-License-Identifier: agpl-3.0\npragma solidity 0.8.6;\n\n/**\n * @title LendingPoolAddressesProviderRegistry contract\n * @dev Main registry of LendingPoolAddressesProvider of multiple Aave protocol's markets\n * - Used for indexing purposes of Aave protocol's markets\n * - The id assigned to a LendingPoolAddressesProvider refers to the market it is connected with,\n *   for example with `0` for the Aave main market and `1` for the next created\n * @author Aave\n **/\ninterface ILendingPoolAddressesProviderRegistry {\n  event AddressesProviderRegistered(address indexed newAddress);\n  event AddressesProviderUnregistered(address indexed newAddress);\n\n  function getAddressesProvidersList() external view returns (address[] memory);\n\n  function getAddressesProviderIdByAddress(address addressesProvider)\n    external\n    view\n    returns (uint256);\n\n  function registerAddressesProvider(address provider, uint256 id) external;\n\n  function unregisterAddressesProvider(address provider) external;\n}\n"
      },
      "@pooltogether/aave-yield-source/contracts/external/aave/ATokenInterface.sol": {
        "content": "// SPDX-License-Identifier: agpl-3.0\n\npragma solidity 0.8.6;\n\nimport \"./IAToken.sol\";\n\ninterface ATokenInterface is IAToken {\n  /**\n   * @dev Returns the address of the underlying asset of this aToken (E.g. WETH for aWETH)\n   **/\n  /* solhint-disable-next-line func-name-mixedcase */\n  function UNDERLYING_ASSET_ADDRESS() external view returns (address);\n}\n"
      },
      "@pooltogether/aave-yield-source/contracts/external/aave/IAaveIncentivesController.sol": {
        "content": "// SPDX-License-Identifier: agpl-3.0\n\npragma solidity 0.8.6;\n\npragma experimental ABIEncoderV2;\n\ninterface IAaveIncentivesController {\n  event RewardsAccrued(address indexed user, uint256 amount);\n\n  event RewardsClaimed(address indexed user, address indexed to, uint256 amount);\n\n  // Commented out to avoid displaying warnings about duplicate definition\n  // event RewardsClaimed(\n  //   address indexed user,\n  //   address indexed to,\n  //   address indexed claimer,\n  //   uint256 amount\n  // );\n\n  event ClaimerSet(address indexed user, address indexed claimer);\n\n  /*\n   * @dev Returns the configuration of the distribution for a certain asset\n   * @param asset The address of the reference asset of the distribution\n   * @return The asset index, the emission per second and the last updated timestamp\n   **/\n  function getAssetData(address asset)\n    external\n    view\n    returns (\n      uint256,\n      uint256,\n      uint256\n    );\n\n  /**\n   * @dev Whitelists an address to claim the rewards on behalf of another address\n   * @param user The address of the user\n   * @param claimer The address of the claimer\n   */\n  function setClaimer(address user, address claimer) external;\n\n  /**\n   * @dev Returns the whitelisted claimer for a certain address (0x0 if not set)\n   * @param user The address of the user\n   * @return The claimer address\n   */\n  function getClaimer(address user) external view returns (address);\n\n  /**\n   * @dev Configure assets for a certain rewards emission\n   * @param assets The assets to incentivize\n   * @param emissionsPerSecond The emission for each asset\n   */\n  function configureAssets(address[] calldata assets, uint256[] calldata emissionsPerSecond)\n    external;\n\n  /**\n   * @dev Called by the corresponding asset on any update that affects the rewards distribution\n   * @param asset The address of the user\n   * @param userBalance The balance of the user of the asset in the lending pool\n   * @param totalSupply The total supply of the asset in the lending pool\n   **/\n  function handleAction(\n    address asset,\n    uint256 userBalance,\n    uint256 totalSupply\n  ) external;\n\n  /**\n   * @dev Returns the total of rewards of an user, already accrued + not yet accrued\n   * @param user The address of the user\n   * @return The rewards\n   **/\n  function getRewardsBalance(address[] calldata assets, address user)\n    external\n    view\n    returns (uint256);\n\n  /**\n   * @dev Claims reward for an user, on all the assets of the lending pool, accumulating the pending rewards\n   * @param amount Amount of rewards to claim\n   * @param to Address that will be receiving the rewards\n   * @return Rewards claimed\n   **/\n  function claimRewards(\n    address[] calldata assets,\n    uint256 amount,\n    address to\n  ) external returns (uint256);\n\n  /**\n   * @dev Claims reward for an user on behalf, on all the assets of the lending pool, accumulating the pending rewards. The caller must\n   * be whitelisted via \"allowClaimOnBehalf\" function by the RewardsAdmin role manager\n   * @param amount Amount of rewards to claim\n   * @param user Address to check and claim rewards\n   * @param to Address that will be receiving the rewards\n   * @return Rewards claimed\n   **/\n  function claimRewardsOnBehalf(\n    address[] calldata assets,\n    uint256 amount,\n    address user,\n    address to\n  ) external returns (uint256);\n\n  /**\n   * @dev returns the unclaimed rewards of the user\n   * @param user the address of the user\n   * @return the unclaimed user rewards\n   */\n  function getUserUnclaimedRewards(address user) external view returns (uint256);\n\n  /**\n   * @dev returns the unclaimed rewards of the user\n   * @param user the address of the user\n   * @param asset The asset to incentivize\n   * @return the user index for the asset\n   */\n  function getUserAssetData(address user, address asset) external view returns (uint256);\n\n  /**\n   * @dev for backward compatibility with previous implementation of the Incentives controller\n   */\n  function REWARD_TOKEN() external view returns (address);\n\n  /**\n   * @dev for backward compatibility with previous implementation of the Incentives controller\n   */\n  function PRECISION() external view returns (uint8);\n\n  /**\n   * @dev Gets the distribution end timestamp of the emissions\n   */\n  function DISTRIBUTION_END() external view returns (uint256);\n}\n"
      },
      "@pooltogether/fixed-point/contracts/external/openzeppelin/OpenZeppelinSafeMath_V3_3_0.sol": {
        "content": "// SPDX-License-Identifier: MIT\n\n// NOTE: Copied from OpenZeppelin Contracts version 3.3.0\n\npragma solidity >=0.4.0;\n\n/**\n * @dev Wrappers over Solidity's arithmetic operations with added overflow\n * checks.\n *\n * Arithmetic operations in Solidity wrap on overflow. This can easily result\n * in bugs, because programmers usually assume that an overflow raises an\n * error, which is the standard behavior in high level programming languages.\n * `SafeMath` restores this intuition by reverting the transaction when an\n * 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 */\nlibrary OpenZeppelinSafeMath_V3_3_0 {\n    /**\n     * @dev Returns the addition of two unsigned integers, reverting on\n     * overflow.\n     *\n     * Counterpart to Solidity's `+` operator.\n     *\n     * Requirements:\n     *\n     * - Addition cannot overflow.\n     */\n    function add(uint256 a, uint256 b) internal pure returns (uint256) {\n        uint256 c = a + b;\n        require(c >= a, \"SafeMath: addition overflow\");\n\n        return c;\n    }\n\n    /**\n     * @dev Returns the subtraction of two unsigned integers, reverting on\n     * overflow (when the result is negative).\n     *\n     * Counterpart to Solidity's `-` operator.\n     *\n     * Requirements:\n     *\n     * - Subtraction cannot overflow.\n     */\n    function sub(uint256 a, uint256 b) internal pure returns (uint256) {\n        return sub(a, b, \"SafeMath: subtraction overflow\");\n    }\n\n    /**\n     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on\n     * overflow (when the result is negative).\n     *\n     * Counterpart to Solidity's `-` operator.\n     *\n     * Requirements:\n     *\n     * - Subtraction cannot overflow.\n     */\n    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {\n        require(b <= a, errorMessage);\n        uint256 c = a - b;\n\n        return c;\n    }\n\n    /**\n     * @dev Returns the multiplication of two unsigned integers, reverting on\n     * overflow.\n     *\n     * Counterpart to Solidity's `*` operator.\n     *\n     * Requirements:\n     *\n     * - Multiplication cannot overflow.\n     */\n    function mul(uint256 a, uint256 b) internal pure returns (uint256) {\n        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the\n        // benefit is lost if 'b' is also tested.\n        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522\n        if (a == 0) {\n            return 0;\n        }\n\n        uint256 c = a * b;\n        require(c / a == b, \"SafeMath: multiplication overflow\");\n\n        return c;\n    }\n\n    /**\n     * @dev Returns the integer division of two unsigned integers. Reverts on\n     * division by zero. The result is rounded towards zero.\n     *\n     * Counterpart to Solidity's `/` operator. Note: this function uses a\n     * `revert` opcode (which leaves remaining gas untouched) while Solidity\n     * uses an invalid opcode to revert (consuming all remaining gas).\n     *\n     * Requirements:\n     *\n     * - The divisor cannot be zero.\n     */\n    function div(uint256 a, uint256 b) internal pure returns (uint256) {\n        return div(a, b, \"SafeMath: division by zero\");\n    }\n\n    /**\n     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on\n     * division by zero. The result is rounded towards zero.\n     *\n     * Counterpart to Solidity's `/` operator. Note: this function uses a\n     * `revert` opcode (which leaves remaining gas untouched) while Solidity\n     * uses an invalid opcode to revert (consuming all remaining gas).\n     *\n     * Requirements:\n     *\n     * - The divisor cannot be zero.\n     */\n    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {\n        require(b > 0, errorMessage);\n        uint256 c = a / b;\n        // assert(a == b * c + a % b); // There is no case in which this doesn't hold\n\n        return c;\n    }\n\n    /**\n     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),\n     * Reverts when dividing by zero.\n     *\n     * Counterpart to Solidity's `%` operator. This function uses a `revert`\n     * opcode (which leaves remaining gas untouched) while Solidity uses an\n     * invalid opcode to revert (consuming all remaining gas).\n     *\n     * Requirements:\n     *\n     * - The divisor cannot be zero.\n     */\n    function mod(uint256 a, uint256 b) internal pure returns (uint256) {\n        return mod(a, b, \"SafeMath: modulo by zero\");\n    }\n\n    /**\n     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),\n     * Reverts with custom message when dividing by zero.\n     *\n     * Counterpart to Solidity's `%` operator. This function uses a `revert`\n     * opcode (which leaves remaining gas untouched) while Solidity uses an\n     * invalid opcode to revert (consuming all remaining gas).\n     *\n     * Requirements:\n     *\n     * - The divisor cannot be zero.\n     */\n    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {\n        require(b != 0, errorMessage);\n        return a % b;\n    }\n}\n"
      },
      "@pooltogether/aave-yield-source/contracts/external/aave/IAToken.sol": {
        "content": "// SPDX-License-Identifier: agpl-3.0\npragma solidity 0.8.6;\n\nimport {IERC20} from \"@openzeppelin/contracts/token/ERC20/IERC20.sol\";\n\ninterface IAToken is IERC20 {\n  /**\n   * @dev Emitted after the mint action\n   * @param from The address performing the mint\n   * @param value The amount being\n   * @param index The new liquidity index of the reserve\n   **/\n  event Mint(address indexed from, uint256 value, uint256 index);\n\n  /**\n   * @dev Mints `amount` aTokens to `user`\n   * @param user The address receiving the minted tokens\n   * @param amount The amount of tokens getting minted\n   * @param index The new liquidity index of the reserve\n   * @return `true` if the the previous balance of the user was 0\n   */\n  function mint(\n    address user,\n    uint256 amount,\n    uint256 index\n  ) external returns (bool);\n\n  /**\n   * @dev Emitted after aTokens are burned\n   * @param from The owner of the aTokens, getting them burned\n   * @param target The address that will receive the underlying\n   * @param value The amount being burned\n   * @param index The new liquidity index of the reserve\n   **/\n  event Burn(address indexed from, address indexed target, uint256 value, uint256 index);\n\n  /**\n   * @dev Emitted during the transfer action\n   * @param from The user whose tokens are being transferred\n   * @param to The recipient\n   * @param value The amount being transferred\n   * @param index The new liquidity index of the reserve\n   **/\n  event BalanceTransfer(address indexed from, address indexed to, uint256 value, uint256 index);\n\n  /**\n   * @dev Burns aTokens from `user` and sends the equivalent amount of underlying to `receiverOfUnderlying`\n   * @param user The owner of the aTokens, getting them burned\n   * @param receiverOfUnderlying The address that will receive the underlying\n   * @param amount The amount being burned\n   * @param index The new liquidity index of the reserve\n   **/\n  function burn(\n    address user,\n    address receiverOfUnderlying,\n    uint256 amount,\n    uint256 index\n  ) external;\n\n  /**\n   * @dev Mints aTokens to the reserve treasury\n   * @param amount The amount of tokens getting minted\n   * @param index The new liquidity index of the reserve\n   */\n  function mintToTreasury(uint256 amount, uint256 index) external;\n\n  /**\n   * @dev Transfers aTokens in the event of a borrow being liquidated, in case the liquidators reclaims the aToken\n   * @param from The address getting liquidated, current owner of the aTokens\n   * @param to The recipient\n   * @param value The amount of tokens getting transferred\n   **/\n  function transferOnLiquidation(\n    address from,\n    address to,\n    uint256 value\n  ) external;\n\n  /**\n   * @dev Transfers the underlying asset to `target`. Used by the LendingPool to transfer\n   * assets in borrow(), withdraw() and flashLoan()\n   * @param user The recipient of the aTokens\n   * @param amount The amount getting transferred\n   * @return The amount transferred\n   **/\n  function transferUnderlyingTo(address user, uint256 amount) external returns (uint256);\n}\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-than-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/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-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 rngRequest 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"
      },
      "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"
      },
      "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-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"
      },
      "@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        // calculate prizes awardable for each Draw passed\n        for (uint32 drawIndex = 0; drawIndex < _draws.length; drawIndex++) {\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\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"
      },
      "@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"
      },
      "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/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"
      },
      "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/aave-yield-source/contracts/yield-source/ATokenYieldSource.sol": {
        "content": "// SPDX-License-Identifier: UNLICENSED\npragma solidity >0.0.0;\nimport '@pooltogether/aave-yield-source/contracts/yield-source/ATokenYieldSource.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/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-twab-delegator/contracts/TWABDelegator.sol": {
        "content": "// SPDX-License-Identifier: UNLICENSED\npragma solidity >0.0.0;\nimport '@pooltogether/v4-twab-delegator/contracts/TWABDelegator.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/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-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/pooltogether-rng-contracts/contracts/RNGChainlinkV2.sol": {
        "content": "// SPDX-License-Identifier: UNLICENSED\npragma solidity >0.0.0;\nimport '@pooltogether/pooltogether-rng-contracts/contracts/RNGChainlinkV2.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": {
      "@chainlink/contracts/src/v0.8/VRFConsumerBaseV2.sol": {
        "VRFConsumerBaseV2": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "have",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "want",
                  "type": "address"
                }
              ],
              "name": "OnlyCoordinatorCanFulfill",
              "type": "error"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "requestId",
                  "type": "uint256"
                },
                {
                  "internalType": "uint256[]",
                  "name": "randomWords",
                  "type": "uint256[]"
                }
              ],
              "name": "rawFulfillRandomWords",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "details": "PURPOSEReggie the Random Oracle (not his real job) wants to provide randomnessto Vera the verifier in such a way that Vera can be sure he's notmaking his output up to suit himself. Reggie provides Vera a public keyto which he knows the secret key. Each time Vera provides a seed toReggie, he gives back a value which is computed completelydeterministically from the seed and the secret key.Reggie provides a proof by which Vera can verify that the output wascorrectly computed once Reggie tells it to her, but without that proof,the output is indistinguishable to her from a uniform random samplefrom the output space.The purpose of this contract is to make it easy for unrelated contractsto talk to Vera the verifier about the work Reggie is doing, to providesimple access to a verifiable source of randomness. It ensures 2 things:1. The fulfillment came from the VRFCoordinator2. The consumer contract implements fulfillRandomWords. *****************************************************************************USAGECalling contracts must inherit from VRFConsumerBase, and caninitialize VRFConsumerBase's attributes in their constructor asshown:contract VRFConsumer {constructor(<other arguments>, address _vrfCoordinator, address _link)VRFConsumerBase(_vrfCoordinator) public {<initialization with other arguments goes here>}}The oracle will have given you an ID for the VRF keypair they havecommitted to (let's call it keyHash). Create subscription, fund itand your consumer contract as a consumer of it (see VRFCoordinatorInterfacesubscription management functions).Call requestRandomWords(keyHash, subId, minimumRequestConfirmations,callbackGasLimit, numWords),see (VRFCoordinatorInterface for a description of the arguments).Once the VRFCoordinator has received and validated the oracle's responseto your request, it will call your contract's fulfillRandomWords method.The randomness argument to fulfillRandomWords is a set of random wordsgenerated from your requestId and the blockHash of the request.If your contract could have concurrent requests open, you can use therequestId returned from requestRandomWords to track which response is associatedwith which randomness request.See \"SECURITY CONSIDERATIONS\" for principles to keep in mind,if your contract could have multiple requests in flight simultaneously.Colliding `requestId`s are cryptographically impossible as long as seedsdiffer. *****************************************************************************SECURITY CONSIDERATIONSA method with the ability to call your fulfillRandomness method directlycould spoof a VRF response with any random value, so it's critical thatit cannot be directly called by anything other than this base contract(specifically, by the VRFConsumerBase.rawFulfillRandomness method).For your users to trust that your contract's random behavior is freefrom malicious interference, it's best if you can write it so that allbehaviors implied by a VRF response are executed *during* yourfulfillRandomness method. If your contract must store the response (oranything derived from it) and use it later, you must ensure that anyuser-significant behavior which depends on that stored value cannot bemanipulated by a subsequent VRF request.Similarly, both miners and the VRF oracle itself have some influenceover the order in which VRF responses appear on the blockchain, so ifyour contract could have multiple VRF requests in flight simultaneously,you must ensure that the order in which the VRF responses arrive cannotbe used to manipulate your contract's user-significant behavior.Since the block hash of the block which contains the requestRandomnesscall is mixed into the input to the VRF *last*, a sufficiently powerfulminer could, in principle, fork the blockchain to evict the blockcontaining the request, forcing the request to be included in adifferent block with a different hash, and therefore a different inputto the VRF. However, such an attack would incur a substantial economiccost. This cost scales with the number of blocks the VRF oracle waitsuntil it calls responds to a request. It is for this reason thatthat you can signal to an oracle you'd like them to wait longer beforeresponding to the request (however this is not enforced in the contractand so remains effective only in the case of unmodified oracle software).",
            "kind": "dev",
            "methods": {
              "constructor": {
                "params": {
                  "_vrfCoordinator": "address of VRFCoordinator contract"
                }
              }
            },
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "rawFulfillRandomWords(uint256,uint256[])": "1fe543e3"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"have\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"want\",\"type\":\"address\"}],\"name\":\"OnlyCoordinatorCanFulfill\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"requestId\",\"type\":\"uint256\"},{\"internalType\":\"uint256[]\",\"name\":\"randomWords\",\"type\":\"uint256[]\"}],\"name\":\"rawFulfillRandomWords\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"PURPOSEReggie the Random Oracle (not his real job) wants to provide randomnessto Vera the verifier in such a way that Vera can be sure he's notmaking his output up to suit himself. Reggie provides Vera a public keyto which he knows the secret key. Each time Vera provides a seed toReggie, he gives back a value which is computed completelydeterministically from the seed and the secret key.Reggie provides a proof by which Vera can verify that the output wascorrectly computed once Reggie tells it to her, but without that proof,the output is indistinguishable to her from a uniform random samplefrom the output space.The purpose of this contract is to make it easy for unrelated contractsto talk to Vera the verifier about the work Reggie is doing, to providesimple access to a verifiable source of randomness. It ensures 2 things:1. The fulfillment came from the VRFCoordinator2. The consumer contract implements fulfillRandomWords. *****************************************************************************USAGECalling contracts must inherit from VRFConsumerBase, and caninitialize VRFConsumerBase's attributes in their constructor asshown:contract VRFConsumer {constructor(<other arguments>, address _vrfCoordinator, address _link)VRFConsumerBase(_vrfCoordinator) public {<initialization with other arguments goes here>}}The oracle will have given you an ID for the VRF keypair they havecommitted to (let's call it keyHash). Create subscription, fund itand your consumer contract as a consumer of it (see VRFCoordinatorInterfacesubscription management functions).Call requestRandomWords(keyHash, subId, minimumRequestConfirmations,callbackGasLimit, numWords),see (VRFCoordinatorInterface for a description of the arguments).Once the VRFCoordinator has received and validated the oracle's responseto your request, it will call your contract's fulfillRandomWords method.The randomness argument to fulfillRandomWords is a set of random wordsgenerated from your requestId and the blockHash of the request.If your contract could have concurrent requests open, you can use therequestId returned from requestRandomWords to track which response is associatedwith which randomness request.See \\\"SECURITY CONSIDERATIONS\\\" for principles to keep in mind,if your contract could have multiple requests in flight simultaneously.Colliding `requestId`s are cryptographically impossible as long as seedsdiffer. *****************************************************************************SECURITY CONSIDERATIONSA method with the ability to call your fulfillRandomness method directlycould spoof a VRF response with any random value, so it's critical thatit cannot be directly called by anything other than this base contract(specifically, by the VRFConsumerBase.rawFulfillRandomness method).For your users to trust that your contract's random behavior is freefrom malicious interference, it's best if you can write it so that allbehaviors implied by a VRF response are executed *during* yourfulfillRandomness method. If your contract must store the response (oranything derived from it) and use it later, you must ensure that anyuser-significant behavior which depends on that stored value cannot bemanipulated by a subsequent VRF request.Similarly, both miners and the VRF oracle itself have some influenceover the order in which VRF responses appear on the blockchain, so ifyour contract could have multiple VRF requests in flight simultaneously,you must ensure that the order in which the VRF responses arrive cannotbe used to manipulate your contract's user-significant behavior.Since the block hash of the block which contains the requestRandomnesscall is mixed into the input to the VRF *last*, a sufficiently powerfulminer could, in principle, fork the blockchain to evict the blockcontaining the request, forcing the request to be included in adifferent block with a different hash, and therefore a different inputto the VRF. However, such an attack would incur a substantial economiccost. This cost scales with the number of blocks the VRF oracle waitsuntil it calls responds to a request. It is for this reason thatthat you can signal to an oracle you'd like them to wait longer beforeresponding to the request (however this is not enforced in the contractand so remains effective only in the case of unmodified oracle software).\",\"kind\":\"dev\",\"methods\":{\"constructor\":{\"params\":{\"_vrfCoordinator\":\"address of VRFCoordinator contract\"}}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"notice\":\"****************************************************************************Interface for contracts using VRF randomness *****************************************************************************\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@chainlink/contracts/src/v0.8/VRFConsumerBaseV2.sol\":\"VRFConsumerBaseV2\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@chainlink/contracts/src/v0.8/VRFConsumerBaseV2.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\npragma solidity ^0.8.0;\\n\\n/** ****************************************************************************\\n * @notice Interface for contracts using VRF randomness\\n * *****************************************************************************\\n * @dev PURPOSE\\n *\\n * @dev Reggie the Random Oracle (not his real job) wants to provide randomness\\n * @dev to Vera the verifier in such a way that Vera can be sure he's not\\n * @dev making his output up to suit himself. Reggie provides Vera a public key\\n * @dev to which he knows the secret key. Each time Vera provides a seed to\\n * @dev Reggie, he gives back a value which is computed completely\\n * @dev deterministically from the seed and the secret key.\\n *\\n * @dev Reggie provides a proof by which Vera can verify that the output was\\n * @dev correctly computed once Reggie tells it to her, but without that proof,\\n * @dev the output is indistinguishable to her from a uniform random sample\\n * @dev from the output space.\\n *\\n * @dev The purpose of this contract is to make it easy for unrelated contracts\\n * @dev to talk to Vera the verifier about the work Reggie is doing, to provide\\n * @dev simple access to a verifiable source of randomness. It ensures 2 things:\\n * @dev 1. The fulfillment came from the VRFCoordinator\\n * @dev 2. The consumer contract implements fulfillRandomWords.\\n * *****************************************************************************\\n * @dev USAGE\\n *\\n * @dev Calling contracts must inherit from VRFConsumerBase, and can\\n * @dev initialize VRFConsumerBase's attributes in their constructor as\\n * @dev shown:\\n *\\n * @dev   contract VRFConsumer {\\n * @dev     constructor(<other arguments>, address _vrfCoordinator, address _link)\\n * @dev       VRFConsumerBase(_vrfCoordinator) public {\\n * @dev         <initialization with other arguments goes here>\\n * @dev       }\\n * @dev   }\\n *\\n * @dev The oracle will have given you an ID for the VRF keypair they have\\n * @dev committed to (let's call it keyHash). Create subscription, fund it\\n * @dev and your consumer contract as a consumer of it (see VRFCoordinatorInterface\\n * @dev subscription management functions).\\n * @dev Call requestRandomWords(keyHash, subId, minimumRequestConfirmations,\\n * @dev callbackGasLimit, numWords),\\n * @dev see (VRFCoordinatorInterface for a description of the arguments).\\n *\\n * @dev Once the VRFCoordinator has received and validated the oracle's response\\n * @dev to your request, it will call your contract's fulfillRandomWords method.\\n *\\n * @dev The randomness argument to fulfillRandomWords is a set of random words\\n * @dev generated from your requestId and the blockHash of the request.\\n *\\n * @dev If your contract could have concurrent requests open, you can use the\\n * @dev requestId returned from requestRandomWords to track which response is associated\\n * @dev with which randomness request.\\n * @dev See \\\"SECURITY CONSIDERATIONS\\\" for principles to keep in mind,\\n * @dev if your contract could have multiple requests in flight simultaneously.\\n *\\n * @dev Colliding `requestId`s are cryptographically impossible as long as seeds\\n * @dev differ.\\n *\\n * *****************************************************************************\\n * @dev SECURITY CONSIDERATIONS\\n *\\n * @dev A method with the ability to call your fulfillRandomness method directly\\n * @dev could spoof a VRF response with any random value, so it's critical that\\n * @dev it cannot be directly called by anything other than this base contract\\n * @dev (specifically, by the VRFConsumerBase.rawFulfillRandomness method).\\n *\\n * @dev For your users to trust that your contract's random behavior is free\\n * @dev from malicious interference, it's best if you can write it so that all\\n * @dev behaviors implied by a VRF response are executed *during* your\\n * @dev fulfillRandomness method. If your contract must store the response (or\\n * @dev anything derived from it) and use it later, you must ensure that any\\n * @dev user-significant behavior which depends on that stored value cannot be\\n * @dev manipulated by a subsequent VRF request.\\n *\\n * @dev Similarly, both miners and the VRF oracle itself have some influence\\n * @dev over the order in which VRF responses appear on the blockchain, so if\\n * @dev your contract could have multiple VRF requests in flight simultaneously,\\n * @dev you must ensure that the order in which the VRF responses arrive cannot\\n * @dev be used to manipulate your contract's user-significant behavior.\\n *\\n * @dev Since the block hash of the block which contains the requestRandomness\\n * @dev call is mixed into the input to the VRF *last*, a sufficiently powerful\\n * @dev miner could, in principle, fork the blockchain to evict the block\\n * @dev containing the request, forcing the request to be included in a\\n * @dev different block with a different hash, and therefore a different input\\n * @dev to the VRF. However, such an attack would incur a substantial economic\\n * @dev cost. This cost scales with the number of blocks the VRF oracle waits\\n * @dev until it calls responds to a request. It is for this reason that\\n * @dev that you can signal to an oracle you'd like them to wait longer before\\n * @dev responding to the request (however this is not enforced in the contract\\n * @dev and so remains effective only in the case of unmodified oracle software).\\n */\\nabstract contract VRFConsumerBaseV2 {\\n  error OnlyCoordinatorCanFulfill(address have, address want);\\n  address private immutable vrfCoordinator;\\n\\n  /**\\n   * @param _vrfCoordinator address of VRFCoordinator contract\\n   */\\n  constructor(address _vrfCoordinator) {\\n    vrfCoordinator = _vrfCoordinator;\\n  }\\n\\n  /**\\n   * @notice fulfillRandomness handles the VRF response. Your contract must\\n   * @notice implement it. See \\\"SECURITY CONSIDERATIONS\\\" above for important\\n   * @notice principles to keep in mind when implementing your fulfillRandomness\\n   * @notice method.\\n   *\\n   * @dev VRFConsumerBaseV2 expects its subcontracts to have a method with this\\n   * @dev signature, and will call it once it has verified the proof\\n   * @dev associated with the randomness. (It is triggered via a call to\\n   * @dev rawFulfillRandomness, below.)\\n   *\\n   * @param requestId The Id initially returned by requestRandomness\\n   * @param randomWords the VRF output expanded to the requested number of words\\n   */\\n  function fulfillRandomWords(uint256 requestId, uint256[] memory randomWords) internal virtual;\\n\\n  // rawFulfillRandomness is called by VRFCoordinator when it receives a valid VRF\\n  // proof. rawFulfillRandomness then calls fulfillRandomness, after validating\\n  // the origin of the call\\n  function rawFulfillRandomWords(uint256 requestId, uint256[] memory randomWords) external {\\n    if (msg.sender != vrfCoordinator) {\\n      revert OnlyCoordinatorCanFulfill(msg.sender, vrfCoordinator);\\n    }\\n    fulfillRandomWords(requestId, randomWords);\\n  }\\n}\\n\",\"keccak256\":\"0xec8b7e3032e887dd0732d2a5f8552ddce64a99a81b0008ef0bcf6cad68a535fc\",\"license\":\"MIT\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "notice": "****************************************************************************Interface for contracts using VRF randomness *****************************************************************************",
            "version": 1
          }
        }
      },
      "@chainlink/contracts/src/v0.8/interfaces/VRFCoordinatorV2Interface.sol": {
        "VRFCoordinatorV2Interface": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "uint64",
                  "name": "subId",
                  "type": "uint64"
                }
              ],
              "name": "acceptSubscriptionOwnerTransfer",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint64",
                  "name": "subId",
                  "type": "uint64"
                },
                {
                  "internalType": "address",
                  "name": "consumer",
                  "type": "address"
                }
              ],
              "name": "addConsumer",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint64",
                  "name": "subId",
                  "type": "uint64"
                },
                {
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                }
              ],
              "name": "cancelSubscription",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "createSubscription",
              "outputs": [
                {
                  "internalType": "uint64",
                  "name": "subId",
                  "type": "uint64"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getRequestConfig",
              "outputs": [
                {
                  "internalType": "uint16",
                  "name": "",
                  "type": "uint16"
                },
                {
                  "internalType": "uint32",
                  "name": "",
                  "type": "uint32"
                },
                {
                  "internalType": "bytes32[]",
                  "name": "",
                  "type": "bytes32[]"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint64",
                  "name": "subId",
                  "type": "uint64"
                }
              ],
              "name": "getSubscription",
              "outputs": [
                {
                  "internalType": "uint96",
                  "name": "balance",
                  "type": "uint96"
                },
                {
                  "internalType": "uint64",
                  "name": "reqCount",
                  "type": "uint64"
                },
                {
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                },
                {
                  "internalType": "address[]",
                  "name": "consumers",
                  "type": "address[]"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint64",
                  "name": "subId",
                  "type": "uint64"
                },
                {
                  "internalType": "address",
                  "name": "consumer",
                  "type": "address"
                }
              ],
              "name": "removeConsumer",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "bytes32",
                  "name": "keyHash",
                  "type": "bytes32"
                },
                {
                  "internalType": "uint64",
                  "name": "subId",
                  "type": "uint64"
                },
                {
                  "internalType": "uint16",
                  "name": "minimumRequestConfirmations",
                  "type": "uint16"
                },
                {
                  "internalType": "uint32",
                  "name": "callbackGasLimit",
                  "type": "uint32"
                },
                {
                  "internalType": "uint32",
                  "name": "numWords",
                  "type": "uint32"
                }
              ],
              "name": "requestRandomWords",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "requestId",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint64",
                  "name": "subId",
                  "type": "uint64"
                },
                {
                  "internalType": "address",
                  "name": "newOwner",
                  "type": "address"
                }
              ],
              "name": "requestSubscriptionOwnerTransfer",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "kind": "dev",
            "methods": {
              "acceptSubscriptionOwnerTransfer(uint64)": {
                "details": "will revert if original owner of subId has not requested that msg.sender become the new owner.",
                "params": {
                  "subId": "- ID of the subscription"
                }
              },
              "addConsumer(uint64,address)": {
                "params": {
                  "consumer": "- New consumer which can use the subscription",
                  "subId": "- ID of the subscription"
                }
              },
              "cancelSubscription(uint64,address)": {
                "params": {
                  "subId": "- ID of the subscription",
                  "to": "- Where to send the remaining LINK to"
                }
              },
              "createSubscription()": {
                "details": "You can manage the consumer set dynamically with addConsumer/removeConsumer.Note to fund the subscription, use transferAndCall. For exampleLINKTOKEN.transferAndCall(address(COORDINATOR),amount,abi.encode(subId));",
                "returns": {
                  "subId": "- A unique subscription id."
                }
              },
              "getRequestConfig()": {
                "returns": {
                  "_0": "minimumRequestConfirmations global min for request confirmations",
                  "_1": "maxGasLimit global max for request gas limit",
                  "_2": "s_provingKeyHashes list of registered key hashes"
                }
              },
              "getSubscription(uint64)": {
                "params": {
                  "subId": "- ID of the subscription"
                },
                "returns": {
                  "balance": "- LINK balance of the subscription in juels.",
                  "consumers": "- list of consumer address which are able to use this subscription.",
                  "owner": "- owner of the subscription.",
                  "reqCount": "- number of requests for this subscription, determines fee tier."
                }
              },
              "removeConsumer(uint64,address)": {
                "params": {
                  "consumer": "- Consumer to remove from the subscription",
                  "subId": "- ID of the subscription"
                }
              },
              "requestRandomWords(bytes32,uint64,uint16,uint32,uint32)": {
                "params": {
                  "callbackGasLimit": "- How much gas you'd like to receive in your fulfillRandomWords callback. Note that gasleft() inside fulfillRandomWords may be slightly less than this amount because of gas used calling the function (argument decoding etc.), so you may need to request slightly more than you expect to have inside fulfillRandomWords. The acceptable range is [0, maxGasLimit]",
                  "keyHash": "- Corresponds to a particular oracle job which uses that key for generating the VRF proof. Different keyHash's have different gas price ceilings, so you can select a specific one to bound your maximum per request cost.",
                  "minimumRequestConfirmations": "- How many blocks you'd like the oracle to wait before responding to the request. See SECURITY CONSIDERATIONS for why you may want to request more. The acceptable range is [minimumRequestBlockConfirmations, 200].",
                  "numWords": "- The number of uint256 random values you'd like to receive in your fulfillRandomWords callback. Note these numbers are expanded in a secure way by the VRFCoordinator from a single random value supplied by the oracle.",
                  "subId": "- The ID of the VRF subscription. Must be funded with the minimum subscription balance required for the selected keyHash."
                },
                "returns": {
                  "requestId": "- A unique identifier of the request. Can be used to match a request to a response in fulfillRandomWords."
                }
              },
              "requestSubscriptionOwnerTransfer(uint64,address)": {
                "params": {
                  "newOwner": "- proposed new owner of the subscription",
                  "subId": "- ID of the subscription"
                }
              }
            },
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "acceptSubscriptionOwnerTransfer(uint64)": "82359740",
              "addConsumer(uint64,address)": "7341c10c",
              "cancelSubscription(uint64,address)": "d7ae1d30",
              "createSubscription()": "a21a23e4",
              "getRequestConfig()": "00012291",
              "getSubscription(uint64)": "a47c7696",
              "removeConsumer(uint64,address)": "9f87fad7",
              "requestRandomWords(bytes32,uint64,uint16,uint32,uint32)": "5d3b1d30",
              "requestSubscriptionOwnerTransfer(uint64,address)": "04c357cb"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"subId\",\"type\":\"uint64\"}],\"name\":\"acceptSubscriptionOwnerTransfer\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"subId\",\"type\":\"uint64\"},{\"internalType\":\"address\",\"name\":\"consumer\",\"type\":\"address\"}],\"name\":\"addConsumer\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"subId\",\"type\":\"uint64\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"}],\"name\":\"cancelSubscription\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"createSubscription\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"subId\",\"type\":\"uint64\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getRequestConfig\",\"outputs\":[{\"internalType\":\"uint16\",\"name\":\"\",\"type\":\"uint16\"},{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"},{\"internalType\":\"bytes32[]\",\"name\":\"\",\"type\":\"bytes32[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"subId\",\"type\":\"uint64\"}],\"name\":\"getSubscription\",\"outputs\":[{\"internalType\":\"uint96\",\"name\":\"balance\",\"type\":\"uint96\"},{\"internalType\":\"uint64\",\"name\":\"reqCount\",\"type\":\"uint64\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address[]\",\"name\":\"consumers\",\"type\":\"address[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"subId\",\"type\":\"uint64\"},{\"internalType\":\"address\",\"name\":\"consumer\",\"type\":\"address\"}],\"name\":\"removeConsumer\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"keyHash\",\"type\":\"bytes32\"},{\"internalType\":\"uint64\",\"name\":\"subId\",\"type\":\"uint64\"},{\"internalType\":\"uint16\",\"name\":\"minimumRequestConfirmations\",\"type\":\"uint16\"},{\"internalType\":\"uint32\",\"name\":\"callbackGasLimit\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"numWords\",\"type\":\"uint32\"}],\"name\":\"requestRandomWords\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"requestId\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"subId\",\"type\":\"uint64\"},{\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"requestSubscriptionOwnerTransfer\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"acceptSubscriptionOwnerTransfer(uint64)\":{\"details\":\"will revert if original owner of subId has not requested that msg.sender become the new owner.\",\"params\":{\"subId\":\"- ID of the subscription\"}},\"addConsumer(uint64,address)\":{\"params\":{\"consumer\":\"- New consumer which can use the subscription\",\"subId\":\"- ID of the subscription\"}},\"cancelSubscription(uint64,address)\":{\"params\":{\"subId\":\"- ID of the subscription\",\"to\":\"- Where to send the remaining LINK to\"}},\"createSubscription()\":{\"details\":\"You can manage the consumer set dynamically with addConsumer/removeConsumer.Note to fund the subscription, use transferAndCall. For exampleLINKTOKEN.transferAndCall(address(COORDINATOR),amount,abi.encode(subId));\",\"returns\":{\"subId\":\"- A unique subscription id.\"}},\"getRequestConfig()\":{\"returns\":{\"_0\":\"minimumRequestConfirmations global min for request confirmations\",\"_1\":\"maxGasLimit global max for request gas limit\",\"_2\":\"s_provingKeyHashes list of registered key hashes\"}},\"getSubscription(uint64)\":{\"params\":{\"subId\":\"- ID of the subscription\"},\"returns\":{\"balance\":\"- LINK balance of the subscription in juels.\",\"consumers\":\"- list of consumer address which are able to use this subscription.\",\"owner\":\"- owner of the subscription.\",\"reqCount\":\"- number of requests for this subscription, determines fee tier.\"}},\"removeConsumer(uint64,address)\":{\"params\":{\"consumer\":\"- Consumer to remove from the subscription\",\"subId\":\"- ID of the subscription\"}},\"requestRandomWords(bytes32,uint64,uint16,uint32,uint32)\":{\"params\":{\"callbackGasLimit\":\"- How much gas you'd like to receive in your fulfillRandomWords callback. Note that gasleft() inside fulfillRandomWords may be slightly less than this amount because of gas used calling the function (argument decoding etc.), so you may need to request slightly more than you expect to have inside fulfillRandomWords. The acceptable range is [0, maxGasLimit]\",\"keyHash\":\"- Corresponds to a particular oracle job which uses that key for generating the VRF proof. Different keyHash's have different gas price ceilings, so you can select a specific one to bound your maximum per request cost.\",\"minimumRequestConfirmations\":\"- How many blocks you'd like the oracle to wait before responding to the request. See SECURITY CONSIDERATIONS for why you may want to request more. The acceptable range is [minimumRequestBlockConfirmations, 200].\",\"numWords\":\"- The number of uint256 random values you'd like to receive in your fulfillRandomWords callback. Note these numbers are expanded in a secure way by the VRFCoordinator from a single random value supplied by the oracle.\",\"subId\":\"- The ID of the VRF subscription. Must be funded with the minimum subscription balance required for the selected keyHash.\"},\"returns\":{\"requestId\":\"- A unique identifier of the request. Can be used to match a request to a response in fulfillRandomWords.\"}},\"requestSubscriptionOwnerTransfer(uint64,address)\":{\"params\":{\"newOwner\":\"- proposed new owner of the subscription\",\"subId\":\"- ID of the subscription\"}}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"acceptSubscriptionOwnerTransfer(uint64)\":{\"notice\":\"Request subscription owner transfer.\"},\"addConsumer(uint64,address)\":{\"notice\":\"Add a consumer to a VRF subscription.\"},\"cancelSubscription(uint64,address)\":{\"notice\":\"Cancel a subscription\"},\"createSubscription()\":{\"notice\":\"Create a VRF subscription.\"},\"getRequestConfig()\":{\"notice\":\"Get configuration relevant for making requests\"},\"getSubscription(uint64)\":{\"notice\":\"Get a VRF subscription.\"},\"removeConsumer(uint64,address)\":{\"notice\":\"Remove a consumer from a VRF subscription.\"},\"requestRandomWords(bytes32,uint64,uint16,uint32,uint32)\":{\"notice\":\"Request a set of random words.\"},\"requestSubscriptionOwnerTransfer(uint64,address)\":{\"notice\":\"Request subscription owner transfer.\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@chainlink/contracts/src/v0.8/interfaces/VRFCoordinatorV2Interface.sol\":\"VRFCoordinatorV2Interface\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@chainlink/contracts/src/v0.8/interfaces/VRFCoordinatorV2Interface.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\npragma solidity ^0.8.0;\\n\\ninterface VRFCoordinatorV2Interface {\\n  /**\\n   * @notice Get configuration relevant for making requests\\n   * @return minimumRequestConfirmations global min for request confirmations\\n   * @return maxGasLimit global max for request gas limit\\n   * @return s_provingKeyHashes list of registered key hashes\\n   */\\n  function getRequestConfig()\\n    external\\n    view\\n    returns (\\n      uint16,\\n      uint32,\\n      bytes32[] memory\\n    );\\n\\n  /**\\n   * @notice Request a set of random words.\\n   * @param keyHash - Corresponds to a particular oracle job which uses\\n   * that key for generating the VRF proof. Different keyHash's have different gas price\\n   * ceilings, so you can select a specific one to bound your maximum per request cost.\\n   * @param subId  - The ID of the VRF subscription. Must be funded\\n   * with the minimum subscription balance required for the selected keyHash.\\n   * @param minimumRequestConfirmations - How many blocks you'd like the\\n   * oracle to wait before responding to the request. See SECURITY CONSIDERATIONS\\n   * for why you may want to request more. The acceptable range is\\n   * [minimumRequestBlockConfirmations, 200].\\n   * @param callbackGasLimit - How much gas you'd like to receive in your\\n   * fulfillRandomWords callback. Note that gasleft() inside fulfillRandomWords\\n   * may be slightly less than this amount because of gas used calling the function\\n   * (argument decoding etc.), so you may need to request slightly more than you expect\\n   * to have inside fulfillRandomWords. The acceptable range is\\n   * [0, maxGasLimit]\\n   * @param numWords - The number of uint256 random values you'd like to receive\\n   * in your fulfillRandomWords callback. Note these numbers are expanded in a\\n   * secure way by the VRFCoordinator from a single random value supplied by the oracle.\\n   * @return requestId - A unique identifier of the request. Can be used to match\\n   * a request to a response in fulfillRandomWords.\\n   */\\n  function requestRandomWords(\\n    bytes32 keyHash,\\n    uint64 subId,\\n    uint16 minimumRequestConfirmations,\\n    uint32 callbackGasLimit,\\n    uint32 numWords\\n  ) external returns (uint256 requestId);\\n\\n  /**\\n   * @notice Create a VRF subscription.\\n   * @return subId - A unique subscription id.\\n   * @dev You can manage the consumer set dynamically with addConsumer/removeConsumer.\\n   * @dev Note to fund the subscription, use transferAndCall. For example\\n   * @dev  LINKTOKEN.transferAndCall(\\n   * @dev    address(COORDINATOR),\\n   * @dev    amount,\\n   * @dev    abi.encode(subId));\\n   */\\n  function createSubscription() external returns (uint64 subId);\\n\\n  /**\\n   * @notice Get a VRF subscription.\\n   * @param subId - ID of the subscription\\n   * @return balance - LINK balance of the subscription in juels.\\n   * @return reqCount - number of requests for this subscription, determines fee tier.\\n   * @return owner - owner of the subscription.\\n   * @return consumers - list of consumer address which are able to use this subscription.\\n   */\\n  function getSubscription(uint64 subId)\\n    external\\n    view\\n    returns (\\n      uint96 balance,\\n      uint64 reqCount,\\n      address owner,\\n      address[] memory consumers\\n    );\\n\\n  /**\\n   * @notice Request subscription owner transfer.\\n   * @param subId - ID of the subscription\\n   * @param newOwner - proposed new owner of the subscription\\n   */\\n  function requestSubscriptionOwnerTransfer(uint64 subId, address newOwner) external;\\n\\n  /**\\n   * @notice Request subscription owner transfer.\\n   * @param subId - ID of the subscription\\n   * @dev will revert if original owner of subId has\\n   * not requested that msg.sender become the new owner.\\n   */\\n  function acceptSubscriptionOwnerTransfer(uint64 subId) external;\\n\\n  /**\\n   * @notice Add a consumer to a VRF subscription.\\n   * @param subId - ID of the subscription\\n   * @param consumer - New consumer which can use the subscription\\n   */\\n  function addConsumer(uint64 subId, address consumer) external;\\n\\n  /**\\n   * @notice Remove a consumer from a VRF subscription.\\n   * @param subId - ID of the subscription\\n   * @param consumer - Consumer to remove from the subscription\\n   */\\n  function removeConsumer(uint64 subId, address consumer) external;\\n\\n  /**\\n   * @notice Cancel a subscription\\n   * @param subId - ID of the subscription\\n   * @param to - Where to send the remaining LINK to\\n   */\\n  function cancelSubscription(uint64 subId, address to) external;\\n}\\n\",\"keccak256\":\"0xcb29ee50ee2b05441e4deebf8b4756a0feec4f5497e36b6a1ca320f7ce561802\",\"license\":\"MIT\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {
              "acceptSubscriptionOwnerTransfer(uint64)": {
                "notice": "Request subscription owner transfer."
              },
              "addConsumer(uint64,address)": {
                "notice": "Add a consumer to a VRF subscription."
              },
              "cancelSubscription(uint64,address)": {
                "notice": "Cancel a subscription"
              },
              "createSubscription()": {
                "notice": "Create a VRF subscription."
              },
              "getRequestConfig()": {
                "notice": "Get configuration relevant for making requests"
              },
              "getSubscription(uint64)": {
                "notice": "Get a VRF subscription."
              },
              "removeConsumer(uint64,address)": {
                "notice": "Remove a consumer from a VRF subscription."
              },
              "requestRandomWords(bytes32,uint64,uint16,uint32,uint32)": {
                "notice": "Request a set of random words."
              },
              "requestSubscriptionOwnerTransfer(uint64,address)": {
                "notice": "Request subscription owner transfer."
              }
            },
            "version": 1
          }
        }
      },
      "@openzeppelin/contracts/proxy/Clones.sol": {
        "Clones": {
          "abi": [],
          "devdoc": {
            "details": "https://eips.ethereum.org/EIPS/eip-1167[EIP 1167] is a standard for deploying minimal proxy contracts, also known as \"clones\". > To simply and cheaply clone contract functionality in an immutable way, this standard specifies > a minimal bytecode implementation that delegates all calls to a known, fixed address. The library includes functions to deploy a proxy using either `create` (traditional deployment) or `create2` (salted deterministic deployment). It also includes functions to predict the addresses of clones deployed using the deterministic method. _Available since v3.4._",
            "kind": "dev",
            "methods": {},
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220c6ad688511f4beb31c05b87cfcd00735faf4a76149fec9a1725f0af55c58242f64736f6c63430008060033",
              "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 0xC6 0xAD PUSH9 0x8511F4BEB31C05B87C 0xFC 0xD0 SMOD CALLDATALOAD STATICCALL DELEGATECALL 0xA7 PUSH2 0x49FE 0xC9 LOG1 PUSH19 0x5F0AF55C58242F64736F6C6343000806003300 ",
              "sourceMap": "740:2817:2:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;740:2817:2;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220c6ad688511f4beb31c05b87cfcd00735faf4a76149fec9a1725f0af55c58242f64736f6c63430008060033",
              "opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xC6 0xAD PUSH9 0x8511F4BEB31C05B87C 0xFC 0xD0 SMOD CALLDATALOAD STATICCALL DELEGATECALL 0xA7 PUSH2 0x49FE 0xC9 LOG1 PUSH19 0x5F0AF55C58242F64736F6C6343000806003300 ",
              "sourceMap": "740:2817:2:-:0;;;;;;;;"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "17200",
                "executionCost": "103",
                "totalCost": "17303"
              },
              "internal": {
                "clone(address)": "infinite",
                "cloneDeterministic(address,bytes32)": "infinite",
                "predictDeterministicAddress(address,bytes32)": "infinite",
                "predictDeterministicAddress(address,bytes32,address)": "infinite"
              }
            },
            "methodIdentifiers": {}
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"https://eips.ethereum.org/EIPS/eip-1167[EIP 1167] is a standard for deploying minimal proxy contracts, also known as \\\"clones\\\". > To simply and cheaply clone contract functionality in an immutable way, this standard specifies > a minimal bytecode implementation that delegates all calls to a known, fixed address. The library includes functions to deploy a proxy using either `create` (traditional deployment) or `create2` (salted deterministic deployment). It also includes functions to predict the addresses of clones deployed using the deterministic method. _Available since v3.4._\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/proxy/Clones.sol\":\"Clones\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/proxy/Clones.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (proxy/Clones.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev https://eips.ethereum.org/EIPS/eip-1167[EIP 1167] is a standard for\\n * deploying minimal proxy contracts, also known as \\\"clones\\\".\\n *\\n * > To simply and cheaply clone contract functionality in an immutable way, this standard specifies\\n * > a minimal bytecode implementation that delegates all calls to a known, fixed address.\\n *\\n * The library includes functions to deploy a proxy using either `create` (traditional deployment) or `create2`\\n * (salted deterministic deployment). It also includes functions to predict the addresses of clones deployed using the\\n * deterministic method.\\n *\\n * _Available since v3.4._\\n */\\nlibrary Clones {\\n    /**\\n     * @dev Deploys and returns the address of a clone that mimics the behaviour of `implementation`.\\n     *\\n     * This function uses the create opcode, which should never revert.\\n     */\\n    function clone(address implementation) internal returns (address instance) {\\n        assembly {\\n            let ptr := mload(0x40)\\n            mstore(ptr, 0x3d602d80600a3d3981f3363d3d373d3d3d363d73000000000000000000000000)\\n            mstore(add(ptr, 0x14), shl(0x60, implementation))\\n            mstore(add(ptr, 0x28), 0x5af43d82803e903d91602b57fd5bf30000000000000000000000000000000000)\\n            instance := create(0, ptr, 0x37)\\n        }\\n        require(instance != address(0), \\\"ERC1167: create failed\\\");\\n    }\\n\\n    /**\\n     * @dev Deploys and returns the address of a clone that mimics the behaviour of `implementation`.\\n     *\\n     * This function uses the create2 opcode and a `salt` to deterministically deploy\\n     * the clone. Using the same `implementation` and `salt` multiple time will revert, since\\n     * the clones cannot be deployed twice at the same address.\\n     */\\n    function cloneDeterministic(address implementation, bytes32 salt) internal returns (address instance) {\\n        assembly {\\n            let ptr := mload(0x40)\\n            mstore(ptr, 0x3d602d80600a3d3981f3363d3d373d3d3d363d73000000000000000000000000)\\n            mstore(add(ptr, 0x14), shl(0x60, implementation))\\n            mstore(add(ptr, 0x28), 0x5af43d82803e903d91602b57fd5bf30000000000000000000000000000000000)\\n            instance := create2(0, ptr, 0x37, salt)\\n        }\\n        require(instance != address(0), \\\"ERC1167: create2 failed\\\");\\n    }\\n\\n    /**\\n     * @dev Computes the address of a clone deployed using {Clones-cloneDeterministic}.\\n     */\\n    function predictDeterministicAddress(\\n        address implementation,\\n        bytes32 salt,\\n        address deployer\\n    ) internal pure returns (address predicted) {\\n        assembly {\\n            let ptr := mload(0x40)\\n            mstore(ptr, 0x3d602d80600a3d3981f3363d3d373d3d3d363d73000000000000000000000000)\\n            mstore(add(ptr, 0x14), shl(0x60, implementation))\\n            mstore(add(ptr, 0x28), 0x5af43d82803e903d91602b57fd5bf3ff00000000000000000000000000000000)\\n            mstore(add(ptr, 0x38), shl(0x60, deployer))\\n            mstore(add(ptr, 0x4c), salt)\\n            mstore(add(ptr, 0x6c), keccak256(ptr, 0x37))\\n            predicted := keccak256(add(ptr, 0x37), 0x55)\\n        }\\n    }\\n\\n    /**\\n     * @dev Computes the address of a clone deployed using {Clones-cloneDeterministic}.\\n     */\\n    function predictDeterministicAddress(address implementation, bytes32 salt)\\n        internal\\n        view\\n        returns (address predicted)\\n    {\\n        return predictDeterministicAddress(implementation, salt, address(this));\\n    }\\n}\\n\",\"keccak256\":\"0x1cc0efb01cbf008b768fd7b334786a6e358809198bb7e67f1c530af4957c6a21\",\"license\":\"MIT\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "@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": 237,
                "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": {
                "@_311": {
                  "entryPoint": null,
                  "id": 311,
                  "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:101",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:101",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "78:821:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "127:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "136:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "139:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "129:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "129:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "129:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "106:6:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "114:4:101",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "102:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "102:17:101"
                                      },
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "121:3:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "98:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "98:27:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "91:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "91:35:101"
                              },
                              "nodeType": "YulIf",
                              "src": "88:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "152:23:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "168:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "162:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "162:13:101"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "156:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "184:28:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "202:2:101",
                                        "type": "",
                                        "value": "64"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "206:1:101",
                                        "type": "",
                                        "value": "1"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "198:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "198:10:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "210:1:101",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "194:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "194:18:101"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "188:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "235:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "237:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "237:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "237:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "227:2:101"
                                  },
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "231:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "224:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "224:10:101"
                              },
                              "nodeType": "YulIf",
                              "src": "221:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "266:17:101",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "280:2:101",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "not",
                                  "nodeType": "YulIdentifier",
                                  "src": "276:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "276:7:101"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "270:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "292:23:101",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "312:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "306:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "306:9:101"
                              },
                              "variables": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "296:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "324:71:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "346:6:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "name": "_1",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "370:2:101"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "374:4:101",
                                                    "type": "",
                                                    "value": "0x1f"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "add",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "366:3:101"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "366:13:101"
                                              },
                                              {
                                                "name": "_3",
                                                "nodeType": "YulIdentifier",
                                                "src": "381:2:101"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "and",
                                              "nodeType": "YulIdentifier",
                                              "src": "362:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "362:22:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "386:2:101",
                                            "type": "",
                                            "value": "63"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "358:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "358:31:101"
                                      },
                                      {
                                        "name": "_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "391:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "354:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "354:40:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "342:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "342:53:101"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "328:10:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "454:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "456:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "456:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "456:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "413:10:101"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "425:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "410:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "410:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "433:10:101"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "445:6:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "430:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "430:22:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "407:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "407:46:101"
                              },
                              "nodeType": "YulIf",
                              "src": "404:2:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "492:2:101",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "496:10:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "485:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "485:22:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "485:22:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "523:6:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "531:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "516:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "516:18:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "516:18:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "543:14:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "553:4:101",
                                "type": "",
                                "value": "0x20"
                              },
                              "variables": [
                                {
                                  "name": "_4",
                                  "nodeType": "YulTypedName",
                                  "src": "547:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "603:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "612:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "615:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "605:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "605:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "605:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "580:6:101"
                                          },
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "588:2:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "576:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "576:15:101"
                                      },
                                      {
                                        "name": "_4",
                                        "nodeType": "YulIdentifier",
                                        "src": "593:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "572:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "572:24:101"
                                  },
                                  {
                                    "name": "end",
                                    "nodeType": "YulIdentifier",
                                    "src": "598:3:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "569:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "569:33:101"
                              },
                              "nodeType": "YulIf",
                              "src": "566:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "628:10:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "637:1:101",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "632:1:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "693:87:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "memPtr",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "722:6:101"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "730:1:101"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "718:3:101"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "718:14:101"
                                            },
                                            {
                                              "name": "_4",
                                              "nodeType": "YulIdentifier",
                                              "src": "734:2:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "714:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "714:23:101"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "arguments": [
                                                    {
                                                      "name": "offset",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "753:6:101"
                                                    },
                                                    {
                                                      "name": "i",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "761:1:101"
                                                    }
                                                  ],
                                                  "functionName": {
                                                    "name": "add",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "749:3:101"
                                                  },
                                                  "nodeType": "YulFunctionCall",
                                                  "src": "749:14:101"
                                                },
                                                {
                                                  "name": "_4",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "765:2:101"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "745:3:101"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "745:23:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "739:5:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "739:30:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "707:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "707:63:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "707:63:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "658:1:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "661:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "655:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "655:9:101"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "665:19:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "667:15:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "676:1:101"
                                        },
                                        {
                                          "name": "_4",
                                          "nodeType": "YulIdentifier",
                                          "src": "679:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "672:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "672:10:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "667:1:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "651:3:101",
                                "statements": []
                              },
                              "src": "647:133:101"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "810:59:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "memPtr",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "839:6:101"
                                                },
                                                {
                                                  "name": "_1",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "847:2:101"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "835:3:101"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "835:15:101"
                                            },
                                            {
                                              "name": "_4",
                                              "nodeType": "YulIdentifier",
                                              "src": "852:2:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "831:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "831:24:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "857:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "824:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "824:35:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "824:35:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "795:1:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "798:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "792:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "792:9:101"
                              },
                              "nodeType": "YulIf",
                              "src": "789:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "878:15:101",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "887:6:101"
                              },
                              "variableNames": [
                                {
                                  "name": "array",
                                  "nodeType": "YulIdentifier",
                                  "src": "878:5:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_string_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "52:6:101",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "60:3:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "array",
                            "nodeType": "YulTypedName",
                            "src": "68:5:101",
                            "type": ""
                          }
                        ],
                        "src": "14:885:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1022:444:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1068:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1077:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1080:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1070:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1070:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1070:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1043:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1052:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1039:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1039:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1064:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1035:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1035:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1032:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1093:30:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1113:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1107:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1107:16:101"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "1097:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1132:28:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1150:2:101",
                                        "type": "",
                                        "value": "64"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1154:1:101",
                                        "type": "",
                                        "value": "1"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "1146:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1146:10:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1158:1:101",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "1142:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1142:18:101"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1136:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1187:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1196:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1199:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1189:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1189:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1189:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1175:6:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1183:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1172:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1172:14:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1169:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1212:71:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1255:9:101"
                                      },
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "1266:6:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1251:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1251:22:101"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1275:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_string_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1222:28:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1222:61:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1212:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1292:41:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1318:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1329:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1314:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1314:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1308:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1308:25:101"
                              },
                              "variables": [
                                {
                                  "name": "offset_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1296:8:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1362:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1371:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1374:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1364:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1364:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1364:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1348:8:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1358:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1345:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1345:16:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1342:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1387:73:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1430:9:101"
                                      },
                                      {
                                        "name": "offset_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1441:8:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1426:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1426:24:101"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1452:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_string_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1397:28:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1397:63:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1387:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "980:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "991:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1003:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1011:6:101",
                            "type": ""
                          }
                        ],
                        "src": "904:562:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1526:325:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1536:22:101",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1550:1:101",
                                    "type": "",
                                    "value": "1"
                                  },
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "1553:4:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "shr",
                                  "nodeType": "YulIdentifier",
                                  "src": "1546:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1546:12:101"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "1536:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1567:38:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "1597:4:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1603:1:101",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "1593:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1593:12:101"
                              },
                              "variables": [
                                {
                                  "name": "outOfPlaceEncoding",
                                  "nodeType": "YulTypedName",
                                  "src": "1571:18:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1644:31:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "1646:27:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "length",
                                          "nodeType": "YulIdentifier",
                                          "src": "1660:6:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1668:4:101",
                                          "type": "",
                                          "value": "0x7f"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "and",
                                        "nodeType": "YulIdentifier",
                                        "src": "1656:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1656:17:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "1646:6:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "1624:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1617:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1617:26:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1614:2:101"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1734:111:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1755:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "1762:3:101",
                                              "type": "",
                                              "value": "224"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "1767:10:101",
                                              "type": "",
                                              "value": "0x4e487b71"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "shl",
                                            "nodeType": "YulIdentifier",
                                            "src": "1758:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "1758:20:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1748:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1748:31:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1748:31:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1799:1:101",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1802:4:101",
                                          "type": "",
                                          "value": "0x22"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1792:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1792:15:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1792:15:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1827:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1830:4:101",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1820:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1820:15:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1820:15:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "1690:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "1713:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1721:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1710:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1710:14:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "1687:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1687:38:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1684:2:101"
                            }
                          ]
                        },
                        "name": "extract_byte_array_length",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "data",
                            "nodeType": "YulTypedName",
                            "src": "1506:4:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "1515:6:101",
                            "type": ""
                          }
                        ],
                        "src": "1471:380:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1888:95:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1905:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1912:3:101",
                                        "type": "",
                                        "value": "224"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1917:10:101",
                                        "type": "",
                                        "value": "0x4e487b71"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "1908:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1908:20:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1898:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1898:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1898:31:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1945:1:101",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1948:4:101",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1938:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1938:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1938:15:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1969:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1972:4:101",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "1962:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1962:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1962:15:101"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "1856:127:101"
                      }
                    ]
                  },
                  "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": 101,
                  "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:4:-:0;;;1963:113;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2029:13;;;;:5;;:13;;;;;:::i;:::-;-1:-1:-1;2052:17:4;;;;:7;;:17;;;;;:::i;:::-;;1963:113;;1388:10416;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1388:10416:4;;;-1:-1:-1;1388:10416:4;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:885:101;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:101;;;221:2;;;237:18;;:::i;:::-;312:2;306:9;280:2;366:13;;-1:-1:-1;;362:22:101;;;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:101: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:101;;;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:4;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@_afterTokenTransfer_811": {
                  "entryPoint": null,
                  "id": 811,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_approve_789": {
                  "entryPoint": 1115,
                  "id": 789,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_beforeTokenTransfer_800": {
                  "entryPoint": null,
                  "id": 800,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_msgSender_1787": {
                  "entryPoint": null,
                  "id": 1787,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_transfer_616": {
                  "entryPoint": 1459,
                  "id": 616,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@allowance_404": {
                  "entryPoint": null,
                  "id": 404,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@approve_425": {
                  "entryPoint": 632,
                  "id": 425,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@balanceOf_365": {
                  "entryPoint": null,
                  "id": 365,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@decimals_341": {
                  "entryPoint": null,
                  "id": 341,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@decreaseAllowance_539": {
                  "entryPoint": 925,
                  "id": 539,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@increaseAllowance_500": {
                  "entryPoint": 850,
                  "id": 500,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@name_321": {
                  "entryPoint": 486,
                  "id": 321,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@symbol_331": {
                  "entryPoint": 910,
                  "id": 331,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@totalSupply_351": {
                  "entryPoint": null,
                  "id": 351,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@transferFrom_473": {
                  "entryPoint": 654,
                  "id": 473,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@transfer_386": {
                  "entryPoint": 1102,
                  "id": 386,
                  "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:101",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:101",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "63:147:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "73:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "95:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "82:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "82:20:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "73:5:101"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "188:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "197:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "200:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "190:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "190:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "190:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "124:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "135:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "142:42:101",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "131:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "131:54:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "121:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "121:65:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "114:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "114:73:101"
                              },
                              "nodeType": "YulIf",
                              "src": "111:2:101"
                            }
                          ]
                        },
                        "name": "abi_decode_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "42:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "53:5:101",
                            "type": ""
                          }
                        ],
                        "src": "14:196:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "285:116:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "331:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "340:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "343:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "333:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "333:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "333:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "306:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "315:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "302:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "302:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "327:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "298:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "298:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "295:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "356:39:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "385:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "366:18:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "366:29:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "356:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "251:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "262:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "274:6:101",
                            "type": ""
                          }
                        ],
                        "src": "215:186:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "493:173:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "539:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "548:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "551:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "541:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "541:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "541:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "514:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "523:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "510:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "510:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "535:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "506:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "506:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "503:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "564:39:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "593:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "574:18:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "574:29:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "564:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "612:48:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "645:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "656:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "641:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "641:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "622:18:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "622:38:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "612:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "451:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "462:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "474:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "482:6:101",
                            "type": ""
                          }
                        ],
                        "src": "406:260:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "775:224:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "821:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "830:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "833:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "823:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "823:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "823:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "796:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "805:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "792:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "792:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "817:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "788:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "788:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "785:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "846:39:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "875:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "856:18:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "856:29:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "846:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "894:48:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "927:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "938:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "923:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "923:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "904:18:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "904:38:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "894:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "951:42:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "978:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "989:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "974:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "974:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "961:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "961:32:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "951:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "725:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "736:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "748:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "756:6:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "764:6:101",
                            "type": ""
                          }
                        ],
                        "src": "671:328:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1091:167:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1137:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1146:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1149:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1139:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1139:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1139:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1112:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1121:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1108:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1108:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1133:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1104:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1104:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1101:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1162:39:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1191:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1172:18:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1172:29:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1162:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1210:42:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1237:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1248:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1233:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1233:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1220:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1220:32:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1210:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1049:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1060:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1072:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1080:6:101",
                            "type": ""
                          }
                        ],
                        "src": "1004:254:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1358:92:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1368:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1380:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1391:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1376:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1376:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1368:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1410:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "1435:6:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "1428:6:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1428:14:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "1421:6:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1421:22:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1403:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1403:41:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1403:41:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1327:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1338:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1349:4:101",
                            "type": ""
                          }
                        ],
                        "src": "1263:187:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1576:535:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1586:12:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "1596:2:101",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1590:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1614:9:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1625:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1607:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1607:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1607:21:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1637:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "1657:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1651:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1651:13:101"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "1641:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1684:9:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1695:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1680:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1680:18:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1700:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1673:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1673:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1673:34:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1716:10:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "1725:1:101",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "1720:1:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1785:90:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "headStart",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1814:9:101"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1825:1:101"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "1810:3:101"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "1810:17:101"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "1829:2:101",
                                              "type": "",
                                              "value": "64"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "1806:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "1806:26:101"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "arguments": [
                                                    {
                                                      "name": "value0",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "1848:6:101"
                                                    },
                                                    {
                                                      "name": "i",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "1856:1:101"
                                                    }
                                                  ],
                                                  "functionName": {
                                                    "name": "add",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "1844:3:101"
                                                  },
                                                  "nodeType": "YulFunctionCall",
                                                  "src": "1844:14:101"
                                                },
                                                {
                                                  "name": "_1",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1860:2:101"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "1840:3:101"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "1840:23:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "1834:5:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "1834:30:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1799:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1799:66:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1799:66:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "1746:1:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1749:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1743:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1743:13:101"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "1757:19:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "1759:15:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "1768:1:101"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "1771:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "1764:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1764:10:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "1759:1:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "1739:3:101",
                                "statements": []
                              },
                              "src": "1735:140:101"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1909:66:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "headStart",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1938:9:101"
                                                },
                                                {
                                                  "name": "length",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1949:6:101"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "1934:3:101"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "1934:22:101"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "1958:2:101",
                                              "type": "",
                                              "value": "64"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "1930:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "1930:31:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1963:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1923:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1923:42:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1923:42:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "1890:1:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1893:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1887:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1887:13:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1884:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1984:121:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2000:9:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "2019:6:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "2027:2:101",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "2015:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "2015:15:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2032:66:101",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "2011:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2011:88:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1996:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1996:104:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2102:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1992:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1992:113:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1984:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "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:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1556:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1567:4:101",
                            "type": ""
                          }
                        ],
                        "src": "1455:656:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2290:225:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2307:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2318:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2300:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2300:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2300:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2341:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2352:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2337:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2337:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2357:2:101",
                                    "type": "",
                                    "value": "35"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2330:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2330:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2330:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2380:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2391:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2376:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2376:18:101"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220746f20746865207a65726f2061646472",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2396:34:101",
                                    "type": "",
                                    "value": "ERC20: transfer to the zero addr"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2369:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2369:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2369:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2451:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2462:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2447:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2447:18:101"
                                  },
                                  {
                                    "hexValue": "657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2467:5:101",
                                    "type": "",
                                    "value": "ess"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2440:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2440:33:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2440:33:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2482:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2494:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2505:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2490:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2490:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2482:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2267:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2281:4:101",
                            "type": ""
                          }
                        ],
                        "src": "2116:399:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2694:224:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2711:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2722:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2704:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2704:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2704:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2745:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2756:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2741:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2741:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2761:2:101",
                                    "type": "",
                                    "value": "34"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2734:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2734:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2734:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2784:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2795:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2780:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2780:18:101"
                                  },
                                  {
                                    "hexValue": "45524332303a20617070726f766520746f20746865207a65726f206164647265",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2800:34:101",
                                    "type": "",
                                    "value": "ERC20: approve to the zero addre"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2773:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2773:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2773:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2855:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2866:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2851:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2851:18:101"
                                  },
                                  {
                                    "hexValue": "7373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2871:4:101",
                                    "type": "",
                                    "value": "ss"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2844:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2844:32:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2844:32:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2885:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2897:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2908:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2893:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2893:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2885:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2671:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2685:4:101",
                            "type": ""
                          }
                        ],
                        "src": "2520:398:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3097:228:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3114:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3125:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3107:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3107:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3107:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3148:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3159:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3144:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3144:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3164:2:101",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3137:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3137:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3137:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3187:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3198:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3183:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3183:18:101"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732062",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3203:34:101",
                                    "type": "",
                                    "value": "ERC20: transfer amount exceeds b"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3176:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3176:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3176:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3258:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3269:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3254:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3254:18:101"
                                  },
                                  {
                                    "hexValue": "616c616e6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3274:8:101",
                                    "type": "",
                                    "value": "alance"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3247:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3247:36:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3247:36:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3292:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3304:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3315:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3300:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3300:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3292:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3074:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3088:4:101",
                            "type": ""
                          }
                        ],
                        "src": "2923:402:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3504:230:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3521:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3532:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3514:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3514:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3514:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3555:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3566:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3551:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3551:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3571:2:101",
                                    "type": "",
                                    "value": "40"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3544:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3544:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3544:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3594:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3605:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3590:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3590:18:101"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732061",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3610:34:101",
                                    "type": "",
                                    "value": "ERC20: transfer amount exceeds a"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3583:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3583:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3583:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3665:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3676:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3661:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3661:18:101"
                                  },
                                  {
                                    "hexValue": "6c6c6f77616e6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3681:10:101",
                                    "type": "",
                                    "value": "llowance"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3654:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3654:38:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3654:38:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3701:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3713:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3724:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3709:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3709:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3701:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3481:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3495:4:101",
                            "type": ""
                          }
                        ],
                        "src": "3330:404:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3913:227:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3930:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3941:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3923:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3923:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3923:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3964:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3975:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3960:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3960:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3980:2:101",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3953:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3953:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3953:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4003:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4014:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3999:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3999:18:101"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e736665722066726f6d20746865207a65726f206164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4019:34:101",
                                    "type": "",
                                    "value": "ERC20: transfer from the zero ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3992:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3992:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3992:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4074:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4085:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4070:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4070:18:101"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4090:7:101",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4063:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4063:35:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4063:35:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4107:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4119:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4130:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4115:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4115:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4107:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3890:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3904:4:101",
                            "type": ""
                          }
                        ],
                        "src": "3739:401:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4319:226:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4336:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4347:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4329:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4329:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4329:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4370:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4381:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4366:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4366:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4386:2:101",
                                    "type": "",
                                    "value": "36"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4359:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4359:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4359:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4409:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4420:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4405:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4405:18:101"
                                  },
                                  {
                                    "hexValue": "45524332303a20617070726f76652066726f6d20746865207a65726f20616464",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4425:34:101",
                                    "type": "",
                                    "value": "ERC20: approve from the zero add"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4398:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4398:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4398:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4480:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4491:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4476:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4476:18:101"
                                  },
                                  {
                                    "hexValue": "72657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4496:6:101",
                                    "type": "",
                                    "value": "ress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4469:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4469:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4469:34:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4512:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4524:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4535:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4520:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4520:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4512:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4296:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4310:4:101",
                            "type": ""
                          }
                        ],
                        "src": "4145:400:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4724:227:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4741:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4752:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4734:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4734:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4734:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4775:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4786:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4771:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4771:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4791:2:101",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4764:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4764:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4764:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4814:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4825:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4810:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4810:18:101"
                                  },
                                  {
                                    "hexValue": "45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4830:34:101",
                                    "type": "",
                                    "value": "ERC20: decreased allowance below"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4803:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4803:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4803:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4885:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4896:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4881:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4881:18:101"
                                  },
                                  {
                                    "hexValue": "207a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4901:7:101",
                                    "type": "",
                                    "value": " zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4874:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4874:35:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4874:35:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4918:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4930:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4941:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4926:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4926:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4918:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4701:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4715:4:101",
                            "type": ""
                          }
                        ],
                        "src": "4550:401:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5057:76:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "5067:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5079:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5090:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5075:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5075:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5067:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5109:9:101"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "5120:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5102:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5102:25:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5102:25:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5026:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5037:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5048:4:101",
                            "type": ""
                          }
                        ],
                        "src": "4956:177:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5235:87:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "5245:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5257:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5268:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5253:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5253:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5245:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5287:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "5302:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5310:4:101",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5298:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5298:17:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5280:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5280:36:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5280:36:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5204:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5215:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5226:4:101",
                            "type": ""
                          }
                        ],
                        "src": "5138:184:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5375:234:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5410:168:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5431:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5434:77:101",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "5424:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5424:88:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5424:88:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5532:1:101",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5535:4:101",
                                          "type": "",
                                          "value": "0x11"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "5525:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5525:15:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5525:15:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5560:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5563:4:101",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "5553:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5553:15:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5553:15:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "5391:1:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "5398:1:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "5394:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5394:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "5388:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5388:13:101"
                              },
                              "nodeType": "YulIf",
                              "src": "5385:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5587:16:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "5598:1:101"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "5601:1:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5594:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5594:9:101"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "5587:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "5358:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "5361:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "5367:3:101",
                            "type": ""
                          }
                        ],
                        "src": "5327:282:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5669:382:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "5679:22:101",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5693:1:101",
                                    "type": "",
                                    "value": "1"
                                  },
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "5696:4:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "shr",
                                  "nodeType": "YulIdentifier",
                                  "src": "5689:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5689:12:101"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "5679:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5710:38:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "5740:4:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5746:1:101",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "5736:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5736:12:101"
                              },
                              "variables": [
                                {
                                  "name": "outOfPlaceEncoding",
                                  "nodeType": "YulTypedName",
                                  "src": "5714:18:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5787:31:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "5789:27:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "length",
                                          "nodeType": "YulIdentifier",
                                          "src": "5803:6:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5811:4:101",
                                          "type": "",
                                          "value": "0x7f"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "and",
                                        "nodeType": "YulIdentifier",
                                        "src": "5799:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5799:17:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "5789:6:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "5767:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "5760:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5760:26:101"
                              },
                              "nodeType": "YulIf",
                              "src": "5757:2:101"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5877:168:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5898:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5901:77:101",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "5891:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5891:88:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5891:88:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5999:1:101",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6002:4:101",
                                          "type": "",
                                          "value": "0x22"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "5992:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5992:15:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5992:15:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6027:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6030:4:101",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "6020:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6020:15:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6020:15:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "5833:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "5856:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5864:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "5853:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5853:14:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "5830:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5830:38:101"
                              },
                              "nodeType": "YulIf",
                              "src": "5827:2:101"
                            }
                          ]
                        },
                        "name": "extract_byte_array_length",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "data",
                            "nodeType": "YulTypedName",
                            "src": "5649:4:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "5658:6:101",
                            "type": ""
                          }
                        ],
                        "src": "5614:437:101"
                      }
                    ]
                  },
                  "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": 101,
                  "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:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2141:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4238:166;;;;;;:::i;:::-;;:::i;:::-;;;1428:14:101;;1421:22;1403:41;;1391:2;1376:18;4238:166:4;1358:92:101;3229:106:4;3316:12;;3229:106;;;5102:25:101;;;5090:2;5075:18;3229:106:4;5057:76:101;4871:478:4;;;;;;:::i;:::-;;:::i;3078:91::-;;;3160:2;5280:36:101;;5268:2;5253:18;3078:91:4;5235:87:101;5744:212:4;;;;;;:::i;:::-;;:::i;3393:125::-;;;;;;:::i;:::-;-1:-1:-1;;;;;3493:18:4;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:4;;;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:13;4360:7:4;4369:6;4337:8;:39::i;:::-;-1:-1:-1;4393:4:4;4238:166;;;;:::o;4871:478::-;5007:4;5023:36;5033:6;5041:9;5052:6;5023:9;:36::i;:::-;-1:-1:-1;;;;;5097:19:4;;5070:24;5097:19;;;:11;:19;;;;;;;;719:10:13;5097:33:4;;;;;;;;5148:26;;;;5140:79;;;;-1:-1:-1;;;5140:79:4;;3532:2:101;5140:79:4;;;3514:21:101;3571:2;3551:18;;;3544:30;3610:34;3590:18;;;3583:62;3681:10;3661:18;;;3654:38;3709:19;;5140:79:4;;;;;;;;;5253:57;5262:6;719:10:13;5303:6:4;5284:16;:25;5253:8;:57::i;:::-;-1:-1:-1;5338:4:4;;4871:478;-1:-1:-1;;;;4871:478:4:o;5744:212::-;719:10:13;5832:4:4;5880:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;5880:34:4;;;;;;;;;;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:13;6536:4:4;6579:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;6579:34:4;;;;;;;;;;6631:35;;;;6623:85;;;;-1:-1:-1;;;6623:85:4;;4752:2:101;6623:85:4;;;4734:21:101;4791:2;4771:18;;;4764:30;4830:34;4810:18;;;4803:62;4901:7;4881:18;;;4874:35;4926:19;;6623:85:4;4724:227:101;6623:85:4;6742:67;719:10:13;6765:7:4;6793:15;6774:16;:34;6742:8;:67::i;:::-;-1:-1:-1;6837:4:4;;6443:405;-1:-1:-1;;;6443:405:4:o;3721:172::-;3807:4;3823:42;719:10:13;3847:9:4;3858:6;3823:9;:42::i;10019:370::-;-1:-1:-1;;;;;10150:19:4;;10142:68;;;;-1:-1:-1;;;10142:68:4;;4347:2:101;10142:68:4;;;4329:21:101;4386:2;4366:18;;;4359:30;4425:34;4405:18;;;4398:62;4496:6;4476:18;;;4469:34;4520:19;;10142:68:4;4319:226:101;10142:68:4;-1:-1:-1;;;;;10228:21:4;;10220:68;;;;-1:-1:-1;;;10220:68:4;;2722:2:101;10220:68:4;;;2704:21:101;2761:2;2741:18;;;2734:30;2800:34;2780:18;;;2773:62;2871:4;2851:18;;;2844:32;2893:19;;10220:68:4;2694:224:101;10220:68:4;-1:-1:-1;;;;;10299:18:4;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10350:32;;5102:25:101;;;10350:32:4;;5075:18:101;10350:32:4;;;;;;;10019:370;;;:::o;7322:713::-;-1:-1:-1;;;;;7457:20:4;;7449:70;;;;-1:-1:-1;;;7449:70:4;;3941:2:101;7449:70:4;;;3923:21:101;3980:2;3960:18;;;3953:30;4019:34;3999:18;;;3992:62;4090:7;4070:18;;;4063:35;4115:19;;7449:70:4;3913:227:101;7449:70:4;-1:-1:-1;;;;;7537:23:4;;7529:71;;;;-1:-1:-1;;;7529:71:4;;2318:2:101;7529:71:4;;;2300:21:101;2357:2;2337:18;;;2330:30;2396:34;2376:18;;;2369:62;2467:5;2447:18;;;2440:33;2490:19;;7529:71:4;2290:225:101;7529:71:4;-1:-1:-1;;;;;7693:17:4;;7669:21;7693:17;;;;;;;;;;;7728:23;;;;7720:74;;;;-1:-1:-1;;;7720:74:4;;3125:2:101;7720:74:4;;;3107:21:101;3164:2;3144:18;;;3137:30;3203:34;3183:18;;;3176:62;3274:8;3254:18;;;3247:36;3300:19;;7720:74:4;3097:228:101;7720:74:4;-1:-1:-1;;;;;7828:17:4;;;: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:4;7945:6;-1:-1:-1;;;;;7936:35:4;;7964:6;7936:35;;;;5102:25:101;;5090:2;5075:18;;5057:76;7936:35:4;;;;;;;;7439:596;7322:713;;;:::o;14:196:101:-;82:20;;-1:-1:-1;;;;;131:54:101;;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:101: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:101: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:101;2015:15;2032:66;2011:88;1996:104;;;;2102:2;1992:113;;1576:535;-1:-1:-1;;;1576:535:101: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:101;;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": 282,
                "contract": "@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20",
                "label": "_balances",
                "offset": 0,
                "slot": "0",
                "type": "t_mapping(t_address,t_uint256)"
              },
              {
                "astId": 288,
                "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": 290,
                "contract": "@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20",
                "label": "_totalSupply",
                "offset": 0,
                "slot": "2",
                "type": "t_uint256"
              },
              {
                "astId": 292,
                "contract": "@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20",
                "label": "_name",
                "offset": 0,
                "slot": "3",
                "type": "t_string_storage"
              },
              {
                "astId": 294,
                "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": 282,
                "contract": "@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol:ERC20Permit",
                "label": "_balances",
                "offset": 0,
                "slot": "0",
                "type": "t_mapping(t_address,t_uint256)"
              },
              {
                "astId": 288,
                "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": 290,
                "contract": "@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol:ERC20Permit",
                "label": "_totalSupply",
                "offset": 0,
                "slot": "2",
                "type": "t_uint256"
              },
              {
                "astId": 292,
                "contract": "@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol:ERC20Permit",
                "label": "_name",
                "offset": 0,
                "slot": "3",
                "type": "t_string_storage"
              },
              {
                "astId": 294,
                "contract": "@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol:ERC20Permit",
                "label": "_symbol",
                "offset": 0,
                "slot": "4",
                "type": "t_string_storage"
              },
              {
                "astId": 938,
                "contract": "@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol:ERC20Permit",
                "label": "_nonces",
                "offset": 0,
                "slot": "5",
                "type": "t_mapping(t_address,t_struct(Counter)1803_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)1803_storage)": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => struct Counters.Counter)",
                "numberOfBytes": "32",
                "value": "t_struct(Counter)1803_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)1803_storage": {
                "encoding": "inplace",
                "label": "struct Counters.Counter",
                "members": [
                  {
                    "astId": 1802,
                    "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:9:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;645:3270:9;;;;;;;;;;;;;;;;;"
            },
            "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:9:-: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:12:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;179:7729:12;;;;;;;;;;;;;;;;;"
            },
            "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:12:-: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:14:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;424:971:14;;;;;;;;;;;;;;;;;"
            },
            "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:14:-: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:15:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;146:1885:15;;;;;;;;;;;;;;;;;"
            },
            "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:15:-: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:16:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;354:8967:16;;;;;;;;;;;;;;;;;"
            },
            "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:16:-: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:18:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;434:4185:18;;;;;;;;;;;;;;;;;"
            },
            "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:18:-: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:20:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;827:6990:20;;;;;;;;;;;;;;;;;"
            },
            "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:20:-: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
          }
        }
      },
      "@openzeppelin/contracts/utils/math/SafeMath.sol": {
        "SafeMath": {
          "abi": [],
          "devdoc": {
            "details": "Wrappers over Solidity's arithmetic operations. NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler now has built in overflow checking.",
            "kind": "dev",
            "methods": {},
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea264697066735822122079ba48ff93a92ac2109afc1c26db0165c49767a7e29d01b41454395f8dd8066564736f6c63430008060033",
              "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 PUSH26 0xBA48FF93A92AC2109AFC1C26DB0165C49767A7E29D01B4145439 0x5F DUP14 0xD8 MOD PUSH6 0x64736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "467:6301:21:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;467:6301:21;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "73000000000000000000000000000000000000000030146080604052600080fdfea264697066735822122079ba48ff93a92ac2109afc1c26db0165c49767a7e29d01b41454395f8dd8066564736f6c63430008060033",
              "opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH26 0xBA48FF93A92AC2109AFC1C26DB0165C49767A7E29D01B4145439 0x5F DUP14 0xD8 MOD PUSH6 0x64736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "467:6301:21:-:0;;;;;;;;"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "17200",
                "executionCost": "103",
                "totalCost": "17303"
              },
              "internal": {
                "add(uint256,uint256)": "infinite",
                "div(uint256,uint256)": "infinite",
                "div(uint256,uint256,string memory)": "infinite",
                "mod(uint256,uint256)": "infinite",
                "mod(uint256,uint256,string memory)": "infinite",
                "mul(uint256,uint256)": "infinite",
                "sub(uint256,uint256)": "infinite",
                "sub(uint256,uint256,string memory)": "infinite",
                "tryAdd(uint256,uint256)": "infinite",
                "tryDiv(uint256,uint256)": "infinite",
                "tryMod(uint256,uint256)": "infinite",
                "tryMul(uint256,uint256)": "infinite",
                "trySub(uint256,uint256)": "infinite"
              }
            },
            "methodIdentifiers": {}
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Wrappers over Solidity's arithmetic operations. NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler now has built in overflow checking.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/math/SafeMath.sol\":\"SafeMath\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/math/SafeMath.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)\\n\\npragma solidity ^0.8.0;\\n\\n// CAUTION\\n// This version of SafeMath should only be used with Solidity 0.8 or later,\\n// because it relies on the compiler's built in overflow checks.\\n\\n/**\\n * @dev Wrappers over Solidity's arithmetic operations.\\n *\\n * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler\\n * now has built in overflow checking.\\n */\\nlibrary SafeMath {\\n    /**\\n     * @dev Returns the addition of two unsigned integers, with an overflow flag.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {\\n        unchecked {\\n            uint256 c = a + b;\\n            if (c < a) return (false, 0);\\n            return (true, c);\\n        }\\n    }\\n\\n    /**\\n     * @dev Returns the substraction of two unsigned integers, with an overflow flag.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {\\n        unchecked {\\n            if (b > a) return (false, 0);\\n            return (true, a - b);\\n        }\\n    }\\n\\n    /**\\n     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {\\n        unchecked {\\n            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the\\n            // benefit is lost if 'b' is also tested.\\n            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522\\n            if (a == 0) return (true, 0);\\n            uint256 c = a * b;\\n            if (c / a != b) return (false, 0);\\n            return (true, c);\\n        }\\n    }\\n\\n    /**\\n     * @dev Returns the division of two unsigned integers, with a division by zero flag.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {\\n        unchecked {\\n            if (b == 0) return (false, 0);\\n            return (true, a / b);\\n        }\\n    }\\n\\n    /**\\n     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {\\n        unchecked {\\n            if (b == 0) return (false, 0);\\n            return (true, a % b);\\n        }\\n    }\\n\\n    /**\\n     * @dev Returns the addition of two unsigned integers, reverting on\\n     * overflow.\\n     *\\n     * Counterpart to Solidity's `+` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - Addition cannot overflow.\\n     */\\n    function add(uint256 a, uint256 b) internal pure returns (uint256) {\\n        return a + b;\\n    }\\n\\n    /**\\n     * @dev Returns the subtraction of two unsigned integers, reverting on\\n     * overflow (when the result is negative).\\n     *\\n     * Counterpart to Solidity's `-` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - Subtraction cannot overflow.\\n     */\\n    function sub(uint256 a, uint256 b) internal pure returns (uint256) {\\n        return a - b;\\n    }\\n\\n    /**\\n     * @dev Returns the multiplication of two unsigned integers, reverting on\\n     * overflow.\\n     *\\n     * Counterpart to Solidity's `*` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - Multiplication cannot overflow.\\n     */\\n    function mul(uint256 a, uint256 b) internal pure returns (uint256) {\\n        return a * b;\\n    }\\n\\n    /**\\n     * @dev Returns the integer division of two unsigned integers, reverting on\\n     * division by zero. The result is rounded towards zero.\\n     *\\n     * Counterpart to Solidity's `/` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - The divisor cannot be zero.\\n     */\\n    function div(uint256 a, uint256 b) internal pure returns (uint256) {\\n        return a / b;\\n    }\\n\\n    /**\\n     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),\\n     * reverting when dividing by zero.\\n     *\\n     * Counterpart to Solidity's `%` operator. This function uses a `revert`\\n     * opcode (which leaves remaining gas untouched) while Solidity uses an\\n     * invalid opcode to revert (consuming all remaining gas).\\n     *\\n     * Requirements:\\n     *\\n     * - The divisor cannot be zero.\\n     */\\n    function mod(uint256 a, uint256 b) internal pure returns (uint256) {\\n        return a % b;\\n    }\\n\\n    /**\\n     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on\\n     * overflow (when the result is negative).\\n     *\\n     * CAUTION: This function is deprecated because it requires allocating memory for the error\\n     * message unnecessarily. For custom revert reasons use {trySub}.\\n     *\\n     * Counterpart to Solidity's `-` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - Subtraction cannot overflow.\\n     */\\n    function sub(\\n        uint256 a,\\n        uint256 b,\\n        string memory errorMessage\\n    ) internal pure returns (uint256) {\\n        unchecked {\\n            require(b <= a, errorMessage);\\n            return a - b;\\n        }\\n    }\\n\\n    /**\\n     * @dev Returns the integer division of two unsigned integers, reverting with custom message on\\n     * division by zero. The result is rounded towards zero.\\n     *\\n     * Counterpart to Solidity's `/` operator. Note: this function uses a\\n     * `revert` opcode (which leaves remaining gas untouched) while Solidity\\n     * uses an invalid opcode to revert (consuming all remaining gas).\\n     *\\n     * Requirements:\\n     *\\n     * - The divisor cannot be zero.\\n     */\\n    function div(\\n        uint256 a,\\n        uint256 b,\\n        string memory errorMessage\\n    ) internal pure returns (uint256) {\\n        unchecked {\\n            require(b > 0, errorMessage);\\n            return a / b;\\n        }\\n    }\\n\\n    /**\\n     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),\\n     * reverting with custom message when dividing by zero.\\n     *\\n     * CAUTION: This function is deprecated because it requires allocating memory for the error\\n     * message unnecessarily. For custom revert reasons use {tryMod}.\\n     *\\n     * Counterpart to Solidity's `%` operator. This function uses a `revert`\\n     * opcode (which leaves remaining gas untouched) while Solidity uses an\\n     * invalid opcode to revert (consuming all remaining gas).\\n     *\\n     * Requirements:\\n     *\\n     * - The divisor cannot be zero.\\n     */\\n    function mod(\\n        uint256 a,\\n        uint256 b,\\n        string memory errorMessage\\n    ) internal pure returns (uint256) {\\n        unchecked {\\n            require(b > 0, errorMessage);\\n            return a % b;\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0xa2f576be637946f767aa56601c26d717f48a0aff44f82e46f13807eea1009a21\",\"license\":\"MIT\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "@pooltogether/aave-yield-source/contracts/external/aave/ATokenInterface.sol": {
        "ATokenInterface": {
          "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"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "index",
                  "type": "uint256"
                }
              ],
              "name": "BalanceTransfer",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "target",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "index",
                  "type": "uint256"
                }
              ],
              "name": "Burn",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "index",
                  "type": "uint256"
                }
              ],
              "name": "Mint",
              "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": "UNDERLYING_ASSET_ADDRESS",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "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": [
                {
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "receiverOfUnderlying",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                },
                {
                  "internalType": "uint256",
                  "name": "index",
                  "type": "uint256"
                }
              ],
              "name": "burn",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                },
                {
                  "internalType": "uint256",
                  "name": "index",
                  "type": "uint256"
                }
              ],
              "name": "mint",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                },
                {
                  "internalType": "uint256",
                  "name": "index",
                  "type": "uint256"
                }
              ],
              "name": "mintToTreasury",
              "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"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                }
              ],
              "name": "transferOnLiquidation",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "transferUnderlyingTo",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "kind": "dev",
            "methods": {
              "UNDERLYING_ASSET_ADDRESS()": {
                "details": "Returns the address of the underlying asset of this aToken (E.g. WETH for aWETH)*"
              },
              "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`."
              },
              "burn(address,address,uint256,uint256)": {
                "details": "Burns aTokens from `user` and sends the equivalent amount of underlying to `receiverOfUnderlying`",
                "params": {
                  "amount": "The amount being burned",
                  "index": "The new liquidity index of the reserve*",
                  "receiverOfUnderlying": "The address that will receive the underlying",
                  "user": "The owner of the aTokens, getting them burned"
                }
              },
              "mint(address,uint256,uint256)": {
                "details": "Mints `amount` aTokens to `user`",
                "params": {
                  "amount": "The amount of tokens getting minted",
                  "index": "The new liquidity index of the reserve",
                  "user": "The address receiving the minted tokens"
                },
                "returns": {
                  "_0": "`true` if the the previous balance of the user was 0"
                }
              },
              "mintToTreasury(uint256,uint256)": {
                "details": "Mints aTokens to the reserve treasury",
                "params": {
                  "amount": "The amount of tokens getting minted",
                  "index": "The new liquidity index of the reserve"
                }
              },
              "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."
              },
              "transferOnLiquidation(address,address,uint256)": {
                "details": "Transfers aTokens in the event of a borrow being liquidated, in case the liquidators reclaims the aToken",
                "params": {
                  "from": "The address getting liquidated, current owner of the aTokens",
                  "to": "The recipient",
                  "value": "The amount of tokens getting transferred*"
                }
              },
              "transferUnderlyingTo(address,uint256)": {
                "details": "Transfers the underlying asset to `target`. Used by the LendingPool to transfer assets in borrow(), withdraw() and flashLoan()",
                "params": {
                  "amount": "The amount getting transferred",
                  "user": "The recipient of the aTokens"
                },
                "returns": {
                  "_0": "The amount transferred*"
                }
              }
            },
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "UNDERLYING_ASSET_ADDRESS()": "b16a19de",
              "allowance(address,address)": "dd62ed3e",
              "approve(address,uint256)": "095ea7b3",
              "balanceOf(address)": "70a08231",
              "burn(address,address,uint256,uint256)": "d7020d0a",
              "mint(address,uint256,uint256)": "156e29f6",
              "mintToTreasury(uint256,uint256)": "7df5bd3b",
              "totalSupply()": "18160ddd",
              "transfer(address,uint256)": "a9059cbb",
              "transferFrom(address,address,uint256)": "23b872dd",
              "transferOnLiquidation(address,address,uint256)": "f866c319",
              "transferUnderlyingTo(address,uint256)": "4efecaa5"
            }
          },
          "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\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"index\",\"type\":\"uint256\"}],\"name\":\"BalanceTransfer\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"index\",\"type\":\"uint256\"}],\"name\":\"Burn\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"index\",\"type\":\"uint256\"}],\"name\":\"Mint\",\"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\":\"UNDERLYING_ASSET_ADDRESS\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"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\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"receiverOfUnderlying\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"index\",\"type\":\"uint256\"}],\"name\":\"burn\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"index\",\"type\":\"uint256\"}],\"name\":\"mint\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"index\",\"type\":\"uint256\"}],\"name\":\"mintToTreasury\",\"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\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"transferOnLiquidation\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transferUnderlyingTo\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"UNDERLYING_ASSET_ADDRESS()\":{\"details\":\"Returns the address of the underlying asset of this aToken (E.g. WETH for aWETH)*\"},\"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`.\"},\"burn(address,address,uint256,uint256)\":{\"details\":\"Burns aTokens from `user` and sends the equivalent amount of underlying to `receiverOfUnderlying`\",\"params\":{\"amount\":\"The amount being burned\",\"index\":\"The new liquidity index of the reserve*\",\"receiverOfUnderlying\":\"The address that will receive the underlying\",\"user\":\"The owner of the aTokens, getting them burned\"}},\"mint(address,uint256,uint256)\":{\"details\":\"Mints `amount` aTokens to `user`\",\"params\":{\"amount\":\"The amount of tokens getting minted\",\"index\":\"The new liquidity index of the reserve\",\"user\":\"The address receiving the minted tokens\"},\"returns\":{\"_0\":\"`true` if the the previous balance of the user was 0\"}},\"mintToTreasury(uint256,uint256)\":{\"details\":\"Mints aTokens to the reserve treasury\",\"params\":{\"amount\":\"The amount of tokens getting minted\",\"index\":\"The new liquidity index of the reserve\"}},\"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.\"},\"transferOnLiquidation(address,address,uint256)\":{\"details\":\"Transfers aTokens in the event of a borrow being liquidated, in case the liquidators reclaims the aToken\",\"params\":{\"from\":\"The address getting liquidated, current owner of the aTokens\",\"to\":\"The recipient\",\"value\":\"The amount of tokens getting transferred*\"}},\"transferUnderlyingTo(address,uint256)\":{\"details\":\"Transfers the underlying asset to `target`. Used by the LendingPool to transfer assets in borrow(), withdraw() and flashLoan()\",\"params\":{\"amount\":\"The amount getting transferred\",\"user\":\"The recipient of the aTokens\"},\"returns\":{\"_0\":\"The amount transferred*\"}}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/aave-yield-source/contracts/external/aave/ATokenInterface.sol\":\"ATokenInterface\"},\"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/aave-yield-source/contracts/external/aave/ATokenInterface.sol\":{\"content\":\"// SPDX-License-Identifier: agpl-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./IAToken.sol\\\";\\n\\ninterface ATokenInterface is IAToken {\\n  /**\\n   * @dev Returns the address of the underlying asset of this aToken (E.g. WETH for aWETH)\\n   **/\\n  /* solhint-disable-next-line func-name-mixedcase */\\n  function UNDERLYING_ASSET_ADDRESS() external view returns (address);\\n}\\n\",\"keccak256\":\"0x871b7f08ef0b5dd0e0f002fa8065b434d60ec300d3309741b7f22e8b7fdce9d4\",\"license\":\"agpl-3.0\"},\"@pooltogether/aave-yield-source/contracts/external/aave/IAToken.sol\":{\"content\":\"// SPDX-License-Identifier: agpl-3.0\\npragma solidity 0.8.6;\\n\\nimport {IERC20} from \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\ninterface IAToken is IERC20 {\\n  /**\\n   * @dev Emitted after the mint action\\n   * @param from The address performing the mint\\n   * @param value The amount being\\n   * @param index The new liquidity index of the reserve\\n   **/\\n  event Mint(address indexed from, uint256 value, uint256 index);\\n\\n  /**\\n   * @dev Mints `amount` aTokens to `user`\\n   * @param user The address receiving the minted tokens\\n   * @param amount The amount of tokens getting minted\\n   * @param index The new liquidity index of the reserve\\n   * @return `true` if the the previous balance of the user was 0\\n   */\\n  function mint(\\n    address user,\\n    uint256 amount,\\n    uint256 index\\n  ) external returns (bool);\\n\\n  /**\\n   * @dev Emitted after aTokens are burned\\n   * @param from The owner of the aTokens, getting them burned\\n   * @param target The address that will receive the underlying\\n   * @param value The amount being burned\\n   * @param index The new liquidity index of the reserve\\n   **/\\n  event Burn(address indexed from, address indexed target, uint256 value, uint256 index);\\n\\n  /**\\n   * @dev Emitted during the transfer action\\n   * @param from The user whose tokens are being transferred\\n   * @param to The recipient\\n   * @param value The amount being transferred\\n   * @param index The new liquidity index of the reserve\\n   **/\\n  event BalanceTransfer(address indexed from, address indexed to, uint256 value, uint256 index);\\n\\n  /**\\n   * @dev Burns aTokens from `user` and sends the equivalent amount of underlying to `receiverOfUnderlying`\\n   * @param user The owner of the aTokens, getting them burned\\n   * @param receiverOfUnderlying The address that will receive the underlying\\n   * @param amount The amount being burned\\n   * @param index The new liquidity index of the reserve\\n   **/\\n  function burn(\\n    address user,\\n    address receiverOfUnderlying,\\n    uint256 amount,\\n    uint256 index\\n  ) external;\\n\\n  /**\\n   * @dev Mints aTokens to the reserve treasury\\n   * @param amount The amount of tokens getting minted\\n   * @param index The new liquidity index of the reserve\\n   */\\n  function mintToTreasury(uint256 amount, uint256 index) external;\\n\\n  /**\\n   * @dev Transfers aTokens in the event of a borrow being liquidated, in case the liquidators reclaims the aToken\\n   * @param from The address getting liquidated, current owner of the aTokens\\n   * @param to The recipient\\n   * @param value The amount of tokens getting transferred\\n   **/\\n  function transferOnLiquidation(\\n    address from,\\n    address to,\\n    uint256 value\\n  ) external;\\n\\n  /**\\n   * @dev Transfers the underlying asset to `target`. Used by the LendingPool to transfer\\n   * assets in borrow(), withdraw() and flashLoan()\\n   * @param user The recipient of the aTokens\\n   * @param amount The amount getting transferred\\n   * @return The amount transferred\\n   **/\\n  function transferUnderlyingTo(address user, uint256 amount) external returns (uint256);\\n}\\n\",\"keccak256\":\"0x0341583b9f47e153002d86c66193ba1798a924148f4c64c0c11d55f514a6c642\",\"license\":\"agpl-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "@pooltogether/aave-yield-source/contracts/external/aave/IAToken.sol": {
        "IAToken": {
          "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"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "index",
                  "type": "uint256"
                }
              ],
              "name": "BalanceTransfer",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "target",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "index",
                  "type": "uint256"
                }
              ],
              "name": "Burn",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "index",
                  "type": "uint256"
                }
              ],
              "name": "Mint",
              "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": "user",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "receiverOfUnderlying",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                },
                {
                  "internalType": "uint256",
                  "name": "index",
                  "type": "uint256"
                }
              ],
              "name": "burn",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                },
                {
                  "internalType": "uint256",
                  "name": "index",
                  "type": "uint256"
                }
              ],
              "name": "mint",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                },
                {
                  "internalType": "uint256",
                  "name": "index",
                  "type": "uint256"
                }
              ],
              "name": "mintToTreasury",
              "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"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "value",
                  "type": "uint256"
                }
              ],
              "name": "transferOnLiquidation",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "transferUnderlyingTo",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "events": {
              "BalanceTransfer(address,address,uint256,uint256)": {
                "details": "Emitted during the transfer action",
                "params": {
                  "from": "The user whose tokens are being transferred",
                  "index": "The new liquidity index of the reserve*",
                  "to": "The recipient",
                  "value": "The amount being transferred"
                }
              },
              "Burn(address,address,uint256,uint256)": {
                "details": "Emitted after aTokens are burned",
                "params": {
                  "from": "The owner of the aTokens, getting them burned",
                  "index": "The new liquidity index of the reserve*",
                  "target": "The address that will receive the underlying",
                  "value": "The amount being burned"
                }
              },
              "Mint(address,uint256,uint256)": {
                "details": "Emitted after the mint action",
                "params": {
                  "from": "The address performing the mint",
                  "index": "The new liquidity index of the reserve*",
                  "value": "The amount being"
                }
              }
            },
            "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`."
              },
              "burn(address,address,uint256,uint256)": {
                "details": "Burns aTokens from `user` and sends the equivalent amount of underlying to `receiverOfUnderlying`",
                "params": {
                  "amount": "The amount being burned",
                  "index": "The new liquidity index of the reserve*",
                  "receiverOfUnderlying": "The address that will receive the underlying",
                  "user": "The owner of the aTokens, getting them burned"
                }
              },
              "mint(address,uint256,uint256)": {
                "details": "Mints `amount` aTokens to `user`",
                "params": {
                  "amount": "The amount of tokens getting minted",
                  "index": "The new liquidity index of the reserve",
                  "user": "The address receiving the minted tokens"
                },
                "returns": {
                  "_0": "`true` if the the previous balance of the user was 0"
                }
              },
              "mintToTreasury(uint256,uint256)": {
                "details": "Mints aTokens to the reserve treasury",
                "params": {
                  "amount": "The amount of tokens getting minted",
                  "index": "The new liquidity index of the reserve"
                }
              },
              "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."
              },
              "transferOnLiquidation(address,address,uint256)": {
                "details": "Transfers aTokens in the event of a borrow being liquidated, in case the liquidators reclaims the aToken",
                "params": {
                  "from": "The address getting liquidated, current owner of the aTokens",
                  "to": "The recipient",
                  "value": "The amount of tokens getting transferred*"
                }
              },
              "transferUnderlyingTo(address,uint256)": {
                "details": "Transfers the underlying asset to `target`. Used by the LendingPool to transfer assets in borrow(), withdraw() and flashLoan()",
                "params": {
                  "amount": "The amount getting transferred",
                  "user": "The recipient of the aTokens"
                },
                "returns": {
                  "_0": "The amount transferred*"
                }
              }
            },
            "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",
              "burn(address,address,uint256,uint256)": "d7020d0a",
              "mint(address,uint256,uint256)": "156e29f6",
              "mintToTreasury(uint256,uint256)": "7df5bd3b",
              "totalSupply()": "18160ddd",
              "transfer(address,uint256)": "a9059cbb",
              "transferFrom(address,address,uint256)": "23b872dd",
              "transferOnLiquidation(address,address,uint256)": "f866c319",
              "transferUnderlyingTo(address,uint256)": "4efecaa5"
            }
          },
          "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\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"index\",\"type\":\"uint256\"}],\"name\":\"BalanceTransfer\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"index\",\"type\":\"uint256\"}],\"name\":\"Burn\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"index\",\"type\":\"uint256\"}],\"name\":\"Mint\",\"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\":\"user\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"receiverOfUnderlying\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"index\",\"type\":\"uint256\"}],\"name\":\"burn\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"index\",\"type\":\"uint256\"}],\"name\":\"mint\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"index\",\"type\":\"uint256\"}],\"name\":\"mintToTreasury\",\"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\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"transferOnLiquidation\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transferUnderlyingTo\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"events\":{\"BalanceTransfer(address,address,uint256,uint256)\":{\"details\":\"Emitted during the transfer action\",\"params\":{\"from\":\"The user whose tokens are being transferred\",\"index\":\"The new liquidity index of the reserve*\",\"to\":\"The recipient\",\"value\":\"The amount being transferred\"}},\"Burn(address,address,uint256,uint256)\":{\"details\":\"Emitted after aTokens are burned\",\"params\":{\"from\":\"The owner of the aTokens, getting them burned\",\"index\":\"The new liquidity index of the reserve*\",\"target\":\"The address that will receive the underlying\",\"value\":\"The amount being burned\"}},\"Mint(address,uint256,uint256)\":{\"details\":\"Emitted after the mint action\",\"params\":{\"from\":\"The address performing the mint\",\"index\":\"The new liquidity index of the reserve*\",\"value\":\"The amount being\"}}},\"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`.\"},\"burn(address,address,uint256,uint256)\":{\"details\":\"Burns aTokens from `user` and sends the equivalent amount of underlying to `receiverOfUnderlying`\",\"params\":{\"amount\":\"The amount being burned\",\"index\":\"The new liquidity index of the reserve*\",\"receiverOfUnderlying\":\"The address that will receive the underlying\",\"user\":\"The owner of the aTokens, getting them burned\"}},\"mint(address,uint256,uint256)\":{\"details\":\"Mints `amount` aTokens to `user`\",\"params\":{\"amount\":\"The amount of tokens getting minted\",\"index\":\"The new liquidity index of the reserve\",\"user\":\"The address receiving the minted tokens\"},\"returns\":{\"_0\":\"`true` if the the previous balance of the user was 0\"}},\"mintToTreasury(uint256,uint256)\":{\"details\":\"Mints aTokens to the reserve treasury\",\"params\":{\"amount\":\"The amount of tokens getting minted\",\"index\":\"The new liquidity index of the reserve\"}},\"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.\"},\"transferOnLiquidation(address,address,uint256)\":{\"details\":\"Transfers aTokens in the event of a borrow being liquidated, in case the liquidators reclaims the aToken\",\"params\":{\"from\":\"The address getting liquidated, current owner of the aTokens\",\"to\":\"The recipient\",\"value\":\"The amount of tokens getting transferred*\"}},\"transferUnderlyingTo(address,uint256)\":{\"details\":\"Transfers the underlying asset to `target`. Used by the LendingPool to transfer assets in borrow(), withdraw() and flashLoan()\",\"params\":{\"amount\":\"The amount getting transferred\",\"user\":\"The recipient of the aTokens\"},\"returns\":{\"_0\":\"The amount transferred*\"}}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/aave-yield-source/contracts/external/aave/IAToken.sol\":\"IAToken\"},\"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/aave-yield-source/contracts/external/aave/IAToken.sol\":{\"content\":\"// SPDX-License-Identifier: agpl-3.0\\npragma solidity 0.8.6;\\n\\nimport {IERC20} from \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\ninterface IAToken is IERC20 {\\n  /**\\n   * @dev Emitted after the mint action\\n   * @param from The address performing the mint\\n   * @param value The amount being\\n   * @param index The new liquidity index of the reserve\\n   **/\\n  event Mint(address indexed from, uint256 value, uint256 index);\\n\\n  /**\\n   * @dev Mints `amount` aTokens to `user`\\n   * @param user The address receiving the minted tokens\\n   * @param amount The amount of tokens getting minted\\n   * @param index The new liquidity index of the reserve\\n   * @return `true` if the the previous balance of the user was 0\\n   */\\n  function mint(\\n    address user,\\n    uint256 amount,\\n    uint256 index\\n  ) external returns (bool);\\n\\n  /**\\n   * @dev Emitted after aTokens are burned\\n   * @param from The owner of the aTokens, getting them burned\\n   * @param target The address that will receive the underlying\\n   * @param value The amount being burned\\n   * @param index The new liquidity index of the reserve\\n   **/\\n  event Burn(address indexed from, address indexed target, uint256 value, uint256 index);\\n\\n  /**\\n   * @dev Emitted during the transfer action\\n   * @param from The user whose tokens are being transferred\\n   * @param to The recipient\\n   * @param value The amount being transferred\\n   * @param index The new liquidity index of the reserve\\n   **/\\n  event BalanceTransfer(address indexed from, address indexed to, uint256 value, uint256 index);\\n\\n  /**\\n   * @dev Burns aTokens from `user` and sends the equivalent amount of underlying to `receiverOfUnderlying`\\n   * @param user The owner of the aTokens, getting them burned\\n   * @param receiverOfUnderlying The address that will receive the underlying\\n   * @param amount The amount being burned\\n   * @param index The new liquidity index of the reserve\\n   **/\\n  function burn(\\n    address user,\\n    address receiverOfUnderlying,\\n    uint256 amount,\\n    uint256 index\\n  ) external;\\n\\n  /**\\n   * @dev Mints aTokens to the reserve treasury\\n   * @param amount The amount of tokens getting minted\\n   * @param index The new liquidity index of the reserve\\n   */\\n  function mintToTreasury(uint256 amount, uint256 index) external;\\n\\n  /**\\n   * @dev Transfers aTokens in the event of a borrow being liquidated, in case the liquidators reclaims the aToken\\n   * @param from The address getting liquidated, current owner of the aTokens\\n   * @param to The recipient\\n   * @param value The amount of tokens getting transferred\\n   **/\\n  function transferOnLiquidation(\\n    address from,\\n    address to,\\n    uint256 value\\n  ) external;\\n\\n  /**\\n   * @dev Transfers the underlying asset to `target`. Used by the LendingPool to transfer\\n   * assets in borrow(), withdraw() and flashLoan()\\n   * @param user The recipient of the aTokens\\n   * @param amount The amount getting transferred\\n   * @return The amount transferred\\n   **/\\n  function transferUnderlyingTo(address user, uint256 amount) external returns (uint256);\\n}\\n\",\"keccak256\":\"0x0341583b9f47e153002d86c66193ba1798a924148f4c64c0c11d55f514a6c642\",\"license\":\"agpl-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "@pooltogether/aave-yield-source/contracts/external/aave/IAaveIncentivesController.sol": {
        "IAaveIncentivesController": {
          "abi": [
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "claimer",
                  "type": "address"
                }
              ],
              "name": "ClaimerSet",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "RewardsAccrued",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "RewardsClaimed",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "DISTRIBUTION_END",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "PRECISION",
              "outputs": [
                {
                  "internalType": "uint8",
                  "name": "",
                  "type": "uint8"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "REWARD_TOKEN",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address[]",
                  "name": "assets",
                  "type": "address[]"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                },
                {
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                }
              ],
              "name": "claimRewards",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address[]",
                  "name": "assets",
                  "type": "address[]"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                },
                {
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                }
              ],
              "name": "claimRewardsOnBehalf",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address[]",
                  "name": "assets",
                  "type": "address[]"
                },
                {
                  "internalType": "uint256[]",
                  "name": "emissionsPerSecond",
                  "type": "uint256[]"
                }
              ],
              "name": "configureAssets",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "asset",
                  "type": "address"
                }
              ],
              "name": "getAssetData",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                },
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                },
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                }
              ],
              "name": "getClaimer",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address[]",
                  "name": "assets",
                  "type": "address[]"
                },
                {
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                }
              ],
              "name": "getRewardsBalance",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "asset",
                  "type": "address"
                }
              ],
              "name": "getUserAssetData",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                }
              ],
              "name": "getUserUnclaimedRewards",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "asset",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "userBalance",
                  "type": "uint256"
                },
                {
                  "internalType": "uint256",
                  "name": "totalSupply",
                  "type": "uint256"
                }
              ],
              "name": "handleAction",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "claimer",
                  "type": "address"
                }
              ],
              "name": "setClaimer",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "kind": "dev",
            "methods": {
              "DISTRIBUTION_END()": {
                "details": "Gets the distribution end timestamp of the emissions"
              },
              "PRECISION()": {
                "details": "for backward compatibility with previous implementation of the Incentives controller"
              },
              "REWARD_TOKEN()": {
                "details": "for backward compatibility with previous implementation of the Incentives controller"
              },
              "claimRewards(address[],uint256,address)": {
                "details": "Claims reward for an user, on all the assets of the lending pool, accumulating the pending rewards",
                "params": {
                  "amount": "Amount of rewards to claim",
                  "to": "Address that will be receiving the rewards"
                },
                "returns": {
                  "_0": "Rewards claimed*"
                }
              },
              "claimRewardsOnBehalf(address[],uint256,address,address)": {
                "details": "Claims reward for an user on behalf, on all the assets of the lending pool, accumulating the pending rewards. The caller must be whitelisted via \"allowClaimOnBehalf\" function by the RewardsAdmin role manager",
                "params": {
                  "amount": "Amount of rewards to claim",
                  "to": "Address that will be receiving the rewards",
                  "user": "Address to check and claim rewards"
                },
                "returns": {
                  "_0": "Rewards claimed*"
                }
              },
              "configureAssets(address[],uint256[])": {
                "details": "Configure assets for a certain rewards emission",
                "params": {
                  "assets": "The assets to incentivize",
                  "emissionsPerSecond": "The emission for each asset"
                }
              },
              "getClaimer(address)": {
                "details": "Returns the whitelisted claimer for a certain address (0x0 if not set)",
                "params": {
                  "user": "The address of the user"
                },
                "returns": {
                  "_0": "The claimer address"
                }
              },
              "getRewardsBalance(address[],address)": {
                "details": "Returns the total of rewards of an user, already accrued + not yet accrued",
                "params": {
                  "user": "The address of the user"
                },
                "returns": {
                  "_0": "The rewards*"
                }
              },
              "getUserAssetData(address,address)": {
                "details": "returns the unclaimed rewards of the user",
                "params": {
                  "asset": "The asset to incentivize",
                  "user": "the address of the user"
                },
                "returns": {
                  "_0": "the user index for the asset"
                }
              },
              "getUserUnclaimedRewards(address)": {
                "details": "returns the unclaimed rewards of the user",
                "params": {
                  "user": "the address of the user"
                },
                "returns": {
                  "_0": "the unclaimed user rewards"
                }
              },
              "handleAction(address,uint256,uint256)": {
                "details": "Called by the corresponding asset on any update that affects the rewards distribution",
                "params": {
                  "asset": "The address of the user",
                  "totalSupply": "The total supply of the asset in the lending pool*",
                  "userBalance": "The balance of the user of the asset in the lending pool"
                }
              },
              "setClaimer(address,address)": {
                "details": "Whitelists an address to claim the rewards on behalf of another address",
                "params": {
                  "claimer": "The address of the claimer",
                  "user": "The address of the user"
                }
              }
            },
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "DISTRIBUTION_END()": "919cd40f",
              "PRECISION()": "aaf5eb68",
              "REWARD_TOKEN()": "99248ea7",
              "claimRewards(address[],uint256,address)": "3111e7b3",
              "claimRewardsOnBehalf(address[],uint256,address,address)": "6d34b96e",
              "configureAssets(address[],uint256[])": "79f171b2",
              "getAssetData(address)": "1652e7b7",
              "getClaimer(address)": "74d945ec",
              "getRewardsBalance(address[],address)": "8b599f26",
              "getUserAssetData(address,address)": "3373ee4c",
              "getUserUnclaimedRewards(address)": "198fa81e",
              "handleAction(address,uint256,uint256)": "31873e2e",
              "setClaimer(address,address)": "f5cf673b"
            }
          },
          "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\":\"address\",\"name\":\"claimer\",\"type\":\"address\"}],\"name\":\"ClaimerSet\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"RewardsAccrued\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"RewardsClaimed\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"DISTRIBUTION_END\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"PRECISION\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"REWARD_TOKEN\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"assets\",\"type\":\"address[]\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"}],\"name\":\"claimRewards\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"assets\",\"type\":\"address[]\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"}],\"name\":\"claimRewardsOnBehalf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"assets\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"emissionsPerSecond\",\"type\":\"uint256[]\"}],\"name\":\"configureAssets\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"asset\",\"type\":\"address\"}],\"name\":\"getAssetData\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"}],\"name\":\"getClaimer\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"assets\",\"type\":\"address[]\"},{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"}],\"name\":\"getRewardsBalance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"asset\",\"type\":\"address\"}],\"name\":\"getUserAssetData\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"}],\"name\":\"getUserUnclaimedRewards\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"asset\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"userBalance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"totalSupply\",\"type\":\"uint256\"}],\"name\":\"handleAction\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"claimer\",\"type\":\"address\"}],\"name\":\"setClaimer\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"DISTRIBUTION_END()\":{\"details\":\"Gets the distribution end timestamp of the emissions\"},\"PRECISION()\":{\"details\":\"for backward compatibility with previous implementation of the Incentives controller\"},\"REWARD_TOKEN()\":{\"details\":\"for backward compatibility with previous implementation of the Incentives controller\"},\"claimRewards(address[],uint256,address)\":{\"details\":\"Claims reward for an user, on all the assets of the lending pool, accumulating the pending rewards\",\"params\":{\"amount\":\"Amount of rewards to claim\",\"to\":\"Address that will be receiving the rewards\"},\"returns\":{\"_0\":\"Rewards claimed*\"}},\"claimRewardsOnBehalf(address[],uint256,address,address)\":{\"details\":\"Claims reward for an user on behalf, on all the assets of the lending pool, accumulating the pending rewards. The caller must be whitelisted via \\\"allowClaimOnBehalf\\\" function by the RewardsAdmin role manager\",\"params\":{\"amount\":\"Amount of rewards to claim\",\"to\":\"Address that will be receiving the rewards\",\"user\":\"Address to check and claim rewards\"},\"returns\":{\"_0\":\"Rewards claimed*\"}},\"configureAssets(address[],uint256[])\":{\"details\":\"Configure assets for a certain rewards emission\",\"params\":{\"assets\":\"The assets to incentivize\",\"emissionsPerSecond\":\"The emission for each asset\"}},\"getClaimer(address)\":{\"details\":\"Returns the whitelisted claimer for a certain address (0x0 if not set)\",\"params\":{\"user\":\"The address of the user\"},\"returns\":{\"_0\":\"The claimer address\"}},\"getRewardsBalance(address[],address)\":{\"details\":\"Returns the total of rewards of an user, already accrued + not yet accrued\",\"params\":{\"user\":\"The address of the user\"},\"returns\":{\"_0\":\"The rewards*\"}},\"getUserAssetData(address,address)\":{\"details\":\"returns the unclaimed rewards of the user\",\"params\":{\"asset\":\"The asset to incentivize\",\"user\":\"the address of the user\"},\"returns\":{\"_0\":\"the user index for the asset\"}},\"getUserUnclaimedRewards(address)\":{\"details\":\"returns the unclaimed rewards of the user\",\"params\":{\"user\":\"the address of the user\"},\"returns\":{\"_0\":\"the unclaimed user rewards\"}},\"handleAction(address,uint256,uint256)\":{\"details\":\"Called by the corresponding asset on any update that affects the rewards distribution\",\"params\":{\"asset\":\"The address of the user\",\"totalSupply\":\"The total supply of the asset in the lending pool*\",\"userBalance\":\"The balance of the user of the asset in the lending pool\"}},\"setClaimer(address,address)\":{\"details\":\"Whitelists an address to claim the rewards on behalf of another address\",\"params\":{\"claimer\":\"The address of the claimer\",\"user\":\"The address of the user\"}}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/aave-yield-source/contracts/external/aave/IAaveIncentivesController.sol\":\"IAaveIncentivesController\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@pooltogether/aave-yield-source/contracts/external/aave/IAaveIncentivesController.sol\":{\"content\":\"// SPDX-License-Identifier: agpl-3.0\\n\\npragma solidity 0.8.6;\\n\\npragma experimental ABIEncoderV2;\\n\\ninterface IAaveIncentivesController {\\n  event RewardsAccrued(address indexed user, uint256 amount);\\n\\n  event RewardsClaimed(address indexed user, address indexed to, uint256 amount);\\n\\n  // Commented out to avoid displaying warnings about duplicate definition\\n  // event RewardsClaimed(\\n  //   address indexed user,\\n  //   address indexed to,\\n  //   address indexed claimer,\\n  //   uint256 amount\\n  // );\\n\\n  event ClaimerSet(address indexed user, address indexed claimer);\\n\\n  /*\\n   * @dev Returns the configuration of the distribution for a certain asset\\n   * @param asset The address of the reference asset of the distribution\\n   * @return The asset index, the emission per second and the last updated timestamp\\n   **/\\n  function getAssetData(address asset)\\n    external\\n    view\\n    returns (\\n      uint256,\\n      uint256,\\n      uint256\\n    );\\n\\n  /**\\n   * @dev Whitelists an address to claim the rewards on behalf of another address\\n   * @param user The address of the user\\n   * @param claimer The address of the claimer\\n   */\\n  function setClaimer(address user, address claimer) external;\\n\\n  /**\\n   * @dev Returns the whitelisted claimer for a certain address (0x0 if not set)\\n   * @param user The address of the user\\n   * @return The claimer address\\n   */\\n  function getClaimer(address user) external view returns (address);\\n\\n  /**\\n   * @dev Configure assets for a certain rewards emission\\n   * @param assets The assets to incentivize\\n   * @param emissionsPerSecond The emission for each asset\\n   */\\n  function configureAssets(address[] calldata assets, uint256[] calldata emissionsPerSecond)\\n    external;\\n\\n  /**\\n   * @dev Called by the corresponding asset on any update that affects the rewards distribution\\n   * @param asset The address of the user\\n   * @param userBalance The balance of the user of the asset in the lending pool\\n   * @param totalSupply The total supply of the asset in the lending pool\\n   **/\\n  function handleAction(\\n    address asset,\\n    uint256 userBalance,\\n    uint256 totalSupply\\n  ) external;\\n\\n  /**\\n   * @dev Returns the total of rewards of an user, already accrued + not yet accrued\\n   * @param user The address of the user\\n   * @return The rewards\\n   **/\\n  function getRewardsBalance(address[] calldata assets, address user)\\n    external\\n    view\\n    returns (uint256);\\n\\n  /**\\n   * @dev Claims reward for an user, on all the assets of the lending pool, accumulating the pending rewards\\n   * @param amount Amount of rewards to claim\\n   * @param to Address that will be receiving the rewards\\n   * @return Rewards claimed\\n   **/\\n  function claimRewards(\\n    address[] calldata assets,\\n    uint256 amount,\\n    address to\\n  ) external returns (uint256);\\n\\n  /**\\n   * @dev Claims reward for an user on behalf, on all the assets of the lending pool, accumulating the pending rewards. The caller must\\n   * be whitelisted via \\\"allowClaimOnBehalf\\\" function by the RewardsAdmin role manager\\n   * @param amount Amount of rewards to claim\\n   * @param user Address to check and claim rewards\\n   * @param to Address that will be receiving the rewards\\n   * @return Rewards claimed\\n   **/\\n  function claimRewardsOnBehalf(\\n    address[] calldata assets,\\n    uint256 amount,\\n    address user,\\n    address to\\n  ) external returns (uint256);\\n\\n  /**\\n   * @dev returns the unclaimed rewards of the user\\n   * @param user the address of the user\\n   * @return the unclaimed user rewards\\n   */\\n  function getUserUnclaimedRewards(address user) external view returns (uint256);\\n\\n  /**\\n   * @dev returns the unclaimed rewards of the user\\n   * @param user the address of the user\\n   * @param asset The asset to incentivize\\n   * @return the user index for the asset\\n   */\\n  function getUserAssetData(address user, address asset) external view returns (uint256);\\n\\n  /**\\n   * @dev for backward compatibility with previous implementation of the Incentives controller\\n   */\\n  function REWARD_TOKEN() external view returns (address);\\n\\n  /**\\n   * @dev for backward compatibility with previous implementation of the Incentives controller\\n   */\\n  function PRECISION() external view returns (uint8);\\n\\n  /**\\n   * @dev Gets the distribution end timestamp of the emissions\\n   */\\n  function DISTRIBUTION_END() external view returns (uint256);\\n}\\n\",\"keccak256\":\"0xbe939adc6c712bf9d377e472c38ee0ad24e852b00e4fdfc2521f66521985d539\",\"license\":\"agpl-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "@pooltogether/aave-yield-source/contracts/external/aave/ILendingPool.sol": {
        "ILendingPool": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "asset",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                },
                {
                  "internalType": "address",
                  "name": "onBehalfOf",
                  "type": "address"
                },
                {
                  "internalType": "uint16",
                  "name": "referralCode",
                  "type": "uint16"
                }
              ],
              "name": "deposit",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "asset",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                },
                {
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                }
              ],
              "name": "withdraw",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "kind": "dev",
            "methods": {
              "deposit(address,uint256,address,uint16)": {
                "details": "Deposits an `amount` of underlying asset into the reserve, receiving in return overlying aTokens. - E.g. User deposits 100 USDC and gets in return 100 aUSDC",
                "params": {
                  "amount": "The amount to be deposited",
                  "asset": "The address of the underlying asset to deposit",
                  "onBehalfOf": "The address that will receive the aTokens, same as msg.sender if the user   wants to receive them on his own wallet, or a different address if the beneficiary of aTokens   is a different wallet",
                  "referralCode": "Code used to register the integrator originating the operation, for potential rewards.   0 if the action is executed directly by the user, without any middle-man*"
                }
              },
              "withdraw(address,uint256,address)": {
                "details": "Withdraws an `amount` of underlying asset from the reserve, burning the equivalent aTokens owned E.g. User has 100 aUSDC, calls withdraw() and receives 100 USDC, burning the 100 aUSDC",
                "params": {
                  "amount": "The underlying amount to be withdrawn   - Send the value type(uint256).max in order to withdraw the whole aToken balance",
                  "asset": "The address of the underlying asset to withdraw",
                  "to": "Address that will receive the underlying, same as msg.sender if the user   wants to receive it on his own wallet, or a different address if the beneficiary is a   different wallet"
                },
                "returns": {
                  "_0": "The final amount withdrawn*"
                }
              }
            },
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "deposit(address,uint256,address,uint16)": "e8eda9df",
              "withdraw(address,uint256,address)": "69328dec"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"asset\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"onBehalfOf\",\"type\":\"address\"},{\"internalType\":\"uint16\",\"name\":\"referralCode\",\"type\":\"uint16\"}],\"name\":\"deposit\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"asset\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"}],\"name\":\"withdraw\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"deposit(address,uint256,address,uint16)\":{\"details\":\"Deposits an `amount` of underlying asset into the reserve, receiving in return overlying aTokens. - E.g. User deposits 100 USDC and gets in return 100 aUSDC\",\"params\":{\"amount\":\"The amount to be deposited\",\"asset\":\"The address of the underlying asset to deposit\",\"onBehalfOf\":\"The address that will receive the aTokens, same as msg.sender if the user   wants to receive them on his own wallet, or a different address if the beneficiary of aTokens   is a different wallet\",\"referralCode\":\"Code used to register the integrator originating the operation, for potential rewards.   0 if the action is executed directly by the user, without any middle-man*\"}},\"withdraw(address,uint256,address)\":{\"details\":\"Withdraws an `amount` of underlying asset from the reserve, burning the equivalent aTokens owned E.g. User has 100 aUSDC, calls withdraw() and receives 100 USDC, burning the 100 aUSDC\",\"params\":{\"amount\":\"The underlying amount to be withdrawn   - Send the value type(uint256).max in order to withdraw the whole aToken balance\",\"asset\":\"The address of the underlying asset to withdraw\",\"to\":\"Address that will receive the underlying, same as msg.sender if the user   wants to receive it on his own wallet, or a different address if the beneficiary is a   different wallet\"},\"returns\":{\"_0\":\"The final amount withdrawn*\"}}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/aave-yield-source/contracts/external/aave/ILendingPool.sol\":\"ILendingPool\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@pooltogether/aave-yield-source/contracts/external/aave/ILendingPool.sol\":{\"content\":\"// SPDX-License-Identifier: agpl-3.0\\npragma solidity 0.8.6;\\n\\ninterface ILendingPool {\\n\\n  /**\\n   * @dev Deposits an `amount` of underlying asset into the reserve, receiving in return overlying aTokens.\\n   * - E.g. User deposits 100 USDC and gets in return 100 aUSDC\\n   * @param asset The address of the underlying asset to deposit\\n   * @param amount The amount to be deposited\\n   * @param onBehalfOf The address that will receive the aTokens, same as msg.sender if the user\\n   *   wants to receive them on his own wallet, or a different address if the beneficiary of aTokens\\n   *   is a different wallet\\n   * @param referralCode Code used to register the integrator originating the operation, for potential rewards.\\n   *   0 if the action is executed directly by the user, without any middle-man\\n   **/\\n  function deposit(\\n    address asset,\\n    uint256 amount,\\n    address onBehalfOf,\\n    uint16 referralCode\\n  ) external;\\n\\n  /**\\n   * @dev Withdraws an `amount` of underlying asset from the reserve, burning the equivalent aTokens owned\\n   * E.g. User has 100 aUSDC, calls withdraw() and receives 100 USDC, burning the 100 aUSDC\\n   * @param asset The address of the underlying asset to withdraw\\n   * @param amount The underlying amount to be withdrawn\\n   *   - Send the value type(uint256).max in order to withdraw the whole aToken balance\\n   * @param to Address that will receive the underlying, same as msg.sender if the user\\n   *   wants to receive it on his own wallet, or a different address if the beneficiary is a\\n   *   different wallet\\n   * @return The final amount withdrawn\\n   **/\\n  function withdraw(\\n    address asset,\\n    uint256 amount,\\n    address to\\n  ) external returns (uint256);\\n\\n}\\n\",\"keccak256\":\"0x813e2714c8deaac5f8e0f2a5c17600d1fbaf592773ff40cc8360df61ebde44ff\",\"license\":\"agpl-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "@pooltogether/aave-yield-source/contracts/external/aave/ILendingPoolAddressesProvider.sol": {
        "ILendingPoolAddressesProvider": {
          "abi": [
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "bytes32",
                  "name": "id",
                  "type": "bytes32"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "newAddress",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "bool",
                  "name": "hasProxy",
                  "type": "bool"
                }
              ],
              "name": "AddressSet",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "newAddress",
                  "type": "address"
                }
              ],
              "name": "ConfigurationAdminUpdated",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "newAddress",
                  "type": "address"
                }
              ],
              "name": "EmergencyAdminUpdated",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "newAddress",
                  "type": "address"
                }
              ],
              "name": "LendingPoolCollateralManagerUpdated",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "newAddress",
                  "type": "address"
                }
              ],
              "name": "LendingPoolConfiguratorUpdated",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "newAddress",
                  "type": "address"
                }
              ],
              "name": "LendingPoolUpdated",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "newAddress",
                  "type": "address"
                }
              ],
              "name": "LendingRateOracleUpdated",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "string",
                  "name": "newMarketId",
                  "type": "string"
                }
              ],
              "name": "MarketIdSet",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "newAddress",
                  "type": "address"
                }
              ],
              "name": "PriceOracleUpdated",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "bytes32",
                  "name": "id",
                  "type": "bytes32"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "newAddress",
                  "type": "address"
                }
              ],
              "name": "ProxyCreated",
              "type": "event"
            },
            {
              "inputs": [
                {
                  "internalType": "bytes32",
                  "name": "id",
                  "type": "bytes32"
                }
              ],
              "name": "getAddress",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getEmergencyAdmin",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getLendingPool",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getLendingPoolCollateralManager",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getLendingPoolConfigurator",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getLendingRateOracle",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getMarketId",
              "outputs": [
                {
                  "internalType": "string",
                  "name": "",
                  "type": "string"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getPoolAdmin",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getPriceOracle",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "bytes32",
                  "name": "id",
                  "type": "bytes32"
                },
                {
                  "internalType": "address",
                  "name": "newAddress",
                  "type": "address"
                }
              ],
              "name": "setAddress",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "bytes32",
                  "name": "id",
                  "type": "bytes32"
                },
                {
                  "internalType": "address",
                  "name": "impl",
                  "type": "address"
                }
              ],
              "name": "setAddressAsProxy",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "admin",
                  "type": "address"
                }
              ],
              "name": "setEmergencyAdmin",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "manager",
                  "type": "address"
                }
              ],
              "name": "setLendingPoolCollateralManager",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "configurator",
                  "type": "address"
                }
              ],
              "name": "setLendingPoolConfiguratorImpl",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "pool",
                  "type": "address"
                }
              ],
              "name": "setLendingPoolImpl",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "lendingRateOracle",
                  "type": "address"
                }
              ],
              "name": "setLendingRateOracle",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "string",
                  "name": "marketId",
                  "type": "string"
                }
              ],
              "name": "setMarketId",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "admin",
                  "type": "address"
                }
              ],
              "name": "setPoolAdmin",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "priceOracle",
                  "type": "address"
                }
              ],
              "name": "setPriceOracle",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "Aave*",
            "details": "Main registry of addresses part of or connected to the protocol, including permissioned roles - Acting also as factory of proxies and admin of those, so with right to change its implementations - Owned by the Aave Governance",
            "kind": "dev",
            "methods": {},
            "title": "LendingPoolAddressesProvider contract",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "getAddress(bytes32)": "21f8a721",
              "getEmergencyAdmin()": "ddcaa9ea",
              "getLendingPool()": "0261bf8b",
              "getLendingPoolCollateralManager()": "712d9171",
              "getLendingPoolConfigurator()": "85c858b1",
              "getLendingRateOracle()": "3618abba",
              "getMarketId()": "568ef470",
              "getPoolAdmin()": "aecda378",
              "getPriceOracle()": "fca513a8",
              "setAddress(bytes32,address)": "ca446dd9",
              "setAddressAsProxy(bytes32,address)": "5dcc528c",
              "setEmergencyAdmin(address)": "35da3394",
              "setLendingPoolCollateralManager(address)": "398e5553",
              "setLendingPoolConfiguratorImpl(address)": "c12542df",
              "setLendingPoolImpl(address)": "5aef021f",
              "setLendingRateOracle(address)": "820d1274",
              "setMarketId(string)": "f67b1847",
              "setPoolAdmin(address)": "283d62ad",
              "setPriceOracle(address)": "530e784f"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newAddress\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"hasProxy\",\"type\":\"bool\"}],\"name\":\"AddressSet\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newAddress\",\"type\":\"address\"}],\"name\":\"ConfigurationAdminUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newAddress\",\"type\":\"address\"}],\"name\":\"EmergencyAdminUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newAddress\",\"type\":\"address\"}],\"name\":\"LendingPoolCollateralManagerUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newAddress\",\"type\":\"address\"}],\"name\":\"LendingPoolConfiguratorUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newAddress\",\"type\":\"address\"}],\"name\":\"LendingPoolUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newAddress\",\"type\":\"address\"}],\"name\":\"LendingRateOracleUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"string\",\"name\":\"newMarketId\",\"type\":\"string\"}],\"name\":\"MarketIdSet\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newAddress\",\"type\":\"address\"}],\"name\":\"PriceOracleUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newAddress\",\"type\":\"address\"}],\"name\":\"ProxyCreated\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"}],\"name\":\"getAddress\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getEmergencyAdmin\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getLendingPool\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getLendingPoolCollateralManager\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getLendingPoolConfigurator\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getLendingRateOracle\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getMarketId\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getPoolAdmin\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getPriceOracle\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"newAddress\",\"type\":\"address\"}],\"name\":\"setAddress\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"id\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"impl\",\"type\":\"address\"}],\"name\":\"setAddressAsProxy\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"admin\",\"type\":\"address\"}],\"name\":\"setEmergencyAdmin\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"manager\",\"type\":\"address\"}],\"name\":\"setLendingPoolCollateralManager\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"configurator\",\"type\":\"address\"}],\"name\":\"setLendingPoolConfiguratorImpl\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"pool\",\"type\":\"address\"}],\"name\":\"setLendingPoolImpl\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"lendingRateOracle\",\"type\":\"address\"}],\"name\":\"setLendingRateOracle\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"marketId\",\"type\":\"string\"}],\"name\":\"setMarketId\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"admin\",\"type\":\"address\"}],\"name\":\"setPoolAdmin\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"priceOracle\",\"type\":\"address\"}],\"name\":\"setPriceOracle\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"Aave*\",\"details\":\"Main registry of addresses part of or connected to the protocol, including permissioned roles - Acting also as factory of proxies and admin of those, so with right to change its implementations - Owned by the Aave Governance\",\"kind\":\"dev\",\"methods\":{},\"title\":\"LendingPoolAddressesProvider contract\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/aave-yield-source/contracts/external/aave/ILendingPoolAddressesProvider.sol\":\"ILendingPoolAddressesProvider\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@pooltogether/aave-yield-source/contracts/external/aave/ILendingPoolAddressesProvider.sol\":{\"content\":\"// SPDX-License-Identifier: agpl-3.0\\npragma solidity 0.8.6;\\n\\n/**\\n * @title LendingPoolAddressesProvider contract\\n * @dev Main registry of addresses part of or connected to the protocol, including permissioned roles\\n * - Acting also as factory of proxies and admin of those, so with right to change its implementations\\n * - Owned by the Aave Governance\\n * @author Aave\\n **/\\ninterface ILendingPoolAddressesProvider {\\n  event MarketIdSet(string newMarketId);\\n  event LendingPoolUpdated(address indexed newAddress);\\n  event ConfigurationAdminUpdated(address indexed newAddress);\\n  event EmergencyAdminUpdated(address indexed newAddress);\\n  event LendingPoolConfiguratorUpdated(address indexed newAddress);\\n  event LendingPoolCollateralManagerUpdated(address indexed newAddress);\\n  event PriceOracleUpdated(address indexed newAddress);\\n  event LendingRateOracleUpdated(address indexed newAddress);\\n  event ProxyCreated(bytes32 id, address indexed newAddress);\\n  event AddressSet(bytes32 id, address indexed newAddress, bool hasProxy);\\n\\n  function getMarketId() external view returns (string memory);\\n\\n  function setMarketId(string calldata marketId) external;\\n\\n  function setAddress(bytes32 id, address newAddress) external;\\n\\n  function setAddressAsProxy(bytes32 id, address impl) external;\\n\\n  function getAddress(bytes32 id) external view returns (address);\\n\\n  function getLendingPool() external view returns (address);\\n\\n  function setLendingPoolImpl(address pool) external;\\n\\n  function getLendingPoolConfigurator() external view returns (address);\\n\\n  function setLendingPoolConfiguratorImpl(address configurator) external;\\n\\n  function getLendingPoolCollateralManager() external view returns (address);\\n\\n  function setLendingPoolCollateralManager(address manager) external;\\n\\n  function getPoolAdmin() external view returns (address);\\n\\n  function setPoolAdmin(address admin) external;\\n\\n  function getEmergencyAdmin() external view returns (address);\\n\\n  function setEmergencyAdmin(address admin) external;\\n\\n  function getPriceOracle() external view returns (address);\\n\\n  function setPriceOracle(address priceOracle) external;\\n\\n  function getLendingRateOracle() external view returns (address);\\n\\n  function setLendingRateOracle(address lendingRateOracle) external;\\n}\\n\",\"keccak256\":\"0x3a829abb20080962e0730d0cc414b5f9d4c3933df610830ee71108caeb59f7cc\",\"license\":\"agpl-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "@pooltogether/aave-yield-source/contracts/external/aave/ILendingPoolAddressesProviderRegistry.sol": {
        "ILendingPoolAddressesProviderRegistry": {
          "abi": [
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "newAddress",
                  "type": "address"
                }
              ],
              "name": "AddressesProviderRegistered",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "newAddress",
                  "type": "address"
                }
              ],
              "name": "AddressesProviderUnregistered",
              "type": "event"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "addressesProvider",
                  "type": "address"
                }
              ],
              "name": "getAddressesProviderIdByAddress",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getAddressesProvidersList",
              "outputs": [
                {
                  "internalType": "address[]",
                  "name": "",
                  "type": "address[]"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "provider",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "id",
                  "type": "uint256"
                }
              ],
              "name": "registerAddressesProvider",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "provider",
                  "type": "address"
                }
              ],
              "name": "unregisterAddressesProvider",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "Aave*",
            "details": "Main registry of LendingPoolAddressesProvider of multiple Aave protocol's markets - Used for indexing purposes of Aave protocol's markets - The id assigned to a LendingPoolAddressesProvider refers to the market it is connected with,   for example with `0` for the Aave main market and `1` for the next created",
            "kind": "dev",
            "methods": {},
            "title": "LendingPoolAddressesProviderRegistry contract",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "getAddressesProviderIdByAddress(address)": "d0267be7",
              "getAddressesProvidersList()": "365ccbbf",
              "registerAddressesProvider(address,uint256)": "d258191e",
              "unregisterAddressesProvider(address)": "0de26707"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newAddress\",\"type\":\"address\"}],\"name\":\"AddressesProviderRegistered\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newAddress\",\"type\":\"address\"}],\"name\":\"AddressesProviderUnregistered\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"addressesProvider\",\"type\":\"address\"}],\"name\":\"getAddressesProviderIdByAddress\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getAddressesProvidersList\",\"outputs\":[{\"internalType\":\"address[]\",\"name\":\"\",\"type\":\"address[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"provider\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"}],\"name\":\"registerAddressesProvider\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"provider\",\"type\":\"address\"}],\"name\":\"unregisterAddressesProvider\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"Aave*\",\"details\":\"Main registry of LendingPoolAddressesProvider of multiple Aave protocol's markets - Used for indexing purposes of Aave protocol's markets - The id assigned to a LendingPoolAddressesProvider refers to the market it is connected with,   for example with `0` for the Aave main market and `1` for the next created\",\"kind\":\"dev\",\"methods\":{},\"title\":\"LendingPoolAddressesProviderRegistry contract\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/aave-yield-source/contracts/external/aave/ILendingPoolAddressesProviderRegistry.sol\":\"ILendingPoolAddressesProviderRegistry\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@pooltogether/aave-yield-source/contracts/external/aave/ILendingPoolAddressesProviderRegistry.sol\":{\"content\":\"// SPDX-License-Identifier: agpl-3.0\\npragma solidity 0.8.6;\\n\\n/**\\n * @title LendingPoolAddressesProviderRegistry contract\\n * @dev Main registry of LendingPoolAddressesProvider of multiple Aave protocol's markets\\n * - Used for indexing purposes of Aave protocol's markets\\n * - The id assigned to a LendingPoolAddressesProvider refers to the market it is connected with,\\n *   for example with `0` for the Aave main market and `1` for the next created\\n * @author Aave\\n **/\\ninterface ILendingPoolAddressesProviderRegistry {\\n  event AddressesProviderRegistered(address indexed newAddress);\\n  event AddressesProviderUnregistered(address indexed newAddress);\\n\\n  function getAddressesProvidersList() external view returns (address[] memory);\\n\\n  function getAddressesProviderIdByAddress(address addressesProvider)\\n    external\\n    view\\n    returns (uint256);\\n\\n  function registerAddressesProvider(address provider, uint256 id) external;\\n\\n  function unregisterAddressesProvider(address provider) external;\\n}\\n\",\"keccak256\":\"0xc25f67d1627d5528123436a3724624886a69112b9c999cdaf02c39ad83902745\",\"license\":\"agpl-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "version": 1
          }
        }
      },
      "@pooltogether/aave-yield-source/contracts/external/aave/IProtocolYieldSource.sol": {
        "IProtocolYieldSource": {
          "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"
                }
              ],
              "name": "sponsor",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                },
                {
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                }
              ],
              "name": "supplyTokenTo",
              "outputs": [],
              "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": "transferERC20",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "details": "There are two privileged roles: the owner and the asset manager.  The owner can configure the asset managers.",
            "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"
                }
              },
              "transferERC20(address,address,uint256)": {
                "details": "This function is callable by the owner or asset manager. This function should not be able to transfer any tokens that represent user deposits.",
                "params": {
                  "amount": "The amount of tokens to transfer",
                  "to": "The recipient of the tokens",
                  "token": "The ERC20 token to transfer"
                }
              }
            },
            "title": "The interface used for all Yield Sources for the PoolTogether protocol",
            "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",
              "sponsor(uint256)": "b6cce5e2",
              "supplyTokenTo(uint256,address)": "87a6eeef",
              "transferERC20(address,address,uint256)": "9db5dbe4"
            }
          },
          "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\"}],\"name\":\"sponsor\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"}],\"name\":\"supplyTokenTo\",\"outputs\":[],\"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\":\"transferERC20\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"There are two privileged roles: the owner and the asset manager.  The owner can configure the asset managers.\",\"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\"}},\"transferERC20(address,address,uint256)\":{\"details\":\"This function is callable by the owner or asset manager. This function should not be able to transfer any tokens that represent user deposits.\",\"params\":{\"amount\":\"The amount of tokens to transfer\",\"to\":\"The recipient of the tokens\",\"token\":\"The ERC20 token to transfer\"}}},\"title\":\"The interface used for all Yield Sources for the PoolTogether protocol\",\"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.\"},\"sponsor(uint256)\":{\"notice\":\"Allows someone to deposit into the yield source without receiving any shares.  The deposited token will be the same as token() This allows anyone to distribute tokens among the share holders.\"},\"supplyTokenTo(uint256,address)\":{\"notice\":\"Supplies tokens to the yield source.  Allows assets to be supplied on other user's behalf using the `to` param.\"},\"transferERC20(address,address,uint256)\":{\"notice\":\"Allows the owner to transfer ERC20 tokens held by this contract to the target address.\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/aave-yield-source/contracts/external/aave/IProtocolYieldSource.sol\":\"IProtocolYieldSource\"},\"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/aave-yield-source/contracts/external/aave/IProtocolYieldSource.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/yield-source-interface/contracts/IYieldSource.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\n/// @title The interface used for all Yield Sources for the PoolTogether protocol\\n/// @dev There are two privileged roles: the owner and the asset manager.  The owner can configure the asset managers.\\ninterface IProtocolYieldSource is IYieldSource {\\n  /// @notice Allows the owner to transfer ERC20 tokens held by this contract to the target address.\\n  /// @dev This function is callable by the owner or asset manager.\\n  /// This function should not be able to transfer any tokens that represent user deposits.\\n  /// @param token The ERC20 token to transfer\\n  /// @param to The recipient of the tokens\\n  /// @param amount The amount of tokens to transfer\\n  function transferERC20(IERC20 token, address to, uint256 amount) external;\\n\\n  /// @notice Allows someone to deposit into the yield source without receiving any shares.  The deposited token will be the same as token()\\n  /// This allows anyone to distribute tokens among the share holders.\\n  function sponsor(uint256 amount) external;\\n}\\n\",\"keccak256\":\"0xe528dc5a23cee18141e17a1fa8febd14e2aba9db6d62e6d178029f467611c7e3\",\"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": [],
            "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."
              },
              "sponsor(uint256)": {
                "notice": "Allows someone to deposit into the yield source without receiving any shares.  The deposited token will be the same as token() This allows anyone to distribute tokens among the share holders."
              },
              "supplyTokenTo(uint256,address)": {
                "notice": "Supplies tokens to the yield source.  Allows assets to be supplied on other user's behalf using the `to` param."
              },
              "transferERC20(address,address,uint256)": {
                "notice": "Allows the owner to transfer ERC20 tokens held by this contract to the target address."
              }
            },
            "version": 1
          }
        }
      },
      "@pooltogether/aave-yield-source/contracts/yield-source/ATokenYieldSource.sol": {
        "ATokenYieldSource": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "contract ATokenInterface",
                  "name": "_aToken",
                  "type": "address"
                },
                {
                  "internalType": "contract IAaveIncentivesController",
                  "name": "_incentivesController",
                  "type": "address"
                },
                {
                  "internalType": "contract ILendingPoolAddressesProviderRegistry",
                  "name": "_lendingPoolAddressesProviderRegistry",
                  "type": "address"
                },
                {
                  "internalType": "uint8",
                  "name": "_decimals",
                  "type": "uint8"
                },
                {
                  "internalType": "string",
                  "name": "_symbol",
                  "type": "string"
                },
                {
                  "internalType": "string",
                  "name": "_name",
                  "type": "string"
                },
                {
                  "internalType": "address",
                  "name": "_owner",
                  "type": "address"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "constructor"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract IAToken",
                  "name": "aToken",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "contract ILendingPoolAddressesProviderRegistry",
                  "name": "lendingPoolAddressesProviderRegistry",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint8",
                  "name": "decimals",
                  "type": "uint8"
                },
                {
                  "indexed": false,
                  "internalType": "string",
                  "name": "name",
                  "type": "string"
                },
                {
                  "indexed": false,
                  "internalType": "string",
                  "name": "symbol",
                  "type": "string"
                },
                {
                  "indexed": false,
                  "internalType": "address",
                  "name": "owner",
                  "type": "address"
                }
              ],
              "name": "ATokenYieldSourceInitialized",
              "type": "event"
            },
            {
              "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": "user",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "Claimed",
              "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": "from",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "shares",
                  "type": "uint256"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "RedeemedToken",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "Sponsored",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "shares",
                  "type": "uint256"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                }
              ],
              "name": "SuppliedTokenTo",
              "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"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "from",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                },
                {
                  "indexed": true,
                  "internalType": "contract IERC20",
                  "name": "token",
                  "type": "address"
                }
              ],
              "name": "TransferredERC20",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "aToken",
              "outputs": [
                {
                  "internalType": "contract ATokenInterface",
                  "name": "",
                  "type": "address"
                }
              ],
              "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": [],
              "name": "approveMaxAmount",
              "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": "claimOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                }
              ],
              "name": "claimRewards",
              "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": [],
              "name": "depositToken",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "incentivesController",
              "outputs": [
                {
                  "internalType": "contract IAaveIncentivesController",
                  "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": "lendingPoolAddressesProviderRegistry",
              "outputs": [
                {
                  "internalType": "contract ILendingPoolAddressesProviderRegistry",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "manager",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "name",
              "outputs": [
                {
                  "internalType": "string",
                  "name": "",
                  "type": "string"
                }
              ],
              "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": "uint256",
                  "name": "redeemAmount",
                  "type": "uint256"
                }
              ],
              "name": "redeemToken",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "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": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "sponsor",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "mintAmount",
                  "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": "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": "contract IERC20",
                  "name": "erc20Token",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "transferERC20",
              "outputs": [],
              "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": "address",
                  "name": "_newOwner",
                  "type": "address"
                }
              ],
              "name": "transferOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "details": "This contract inherits from the ERC20 implementation to keep track of users depositsThis contract inherits AssetManager which extends OwnableUpgradable",
            "kind": "dev",
            "methods": {
              "allowance(address,address)": {
                "details": "See {IERC20-allowance}."
              },
              "approve(address,uint256)": {
                "details": "See {IERC20-approve}. Requirements: - `spender` cannot be the zero address."
              },
              "approveMaxAmount()": {
                "details": "Emergency function to re-approve max amount if approval amount dropped too low",
                "returns": {
                  "_0": "true if operation is successful"
                }
              },
              "balanceOf(address)": {
                "details": "See {IERC20-balanceOf}."
              },
              "balanceOfToken(address)": {
                "params": {
                  "addr": "User address"
                },
                "returns": {
                  "_0": "The underlying balance of asset tokens"
                }
              },
              "claimOwnership()": {
                "details": "This function is only callable by the `_pendingOwner`."
              },
              "claimRewards(address)": {
                "params": {
                  "to": "Address where the claimed rewards will be sent."
                },
                "returns": {
                  "_0": "True if operation was successful."
                }
              },
              "constructor": {
                "params": {
                  "_aToken": "Aave aToken address",
                  "_decimals": "Number of decimals the shares (inhereted ERC20) will have. Set as same as underlying asset to ensure sane ExchangeRates",
                  "_incentivesController": "Aave incentivesController address",
                  "_lendingPoolAddressesProviderRegistry": "Aave lendingPoolAddressesProviderRegistry address",
                  "_name": "Token name for the underlying shares ERC20",
                  "_symbol": "Token symbol for the underlying shares ERC20"
                }
              },
              "decimals()": {
                "returns": {
                  "_0": "The number of 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`."
              },
              "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."
              },
              "manager()": {
                "returns": {
                  "_0": "Current `_manager` address."
                }
              },
              "name()": {
                "details": "Returns the name of the token."
              },
              "pendingOwner()": {
                "returns": {
                  "_0": "Current `_pendingOwner` address."
                }
              },
              "redeemToken(uint256)": {
                "details": "Shares corresponding to the number of tokens withdrawn are burnt from the user's balanceAsset tokens are withdrawn from Aave, then transferred from the yield source to the user's wallet",
                "params": {
                  "redeemAmount": "The amount of asset tokens to be redeemed"
                },
                "returns": {
                  "_0": "The actual amount of asset tokens that were redeemed"
                }
              },
              "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."
                }
              },
              "sponsor(uint256)": {
                "details": "This allows anyone to distribute tokens among the share holders",
                "params": {
                  "amount": "The amount of tokens to deposit"
                }
              },
              "supplyTokenTo(uint256,address)": {
                "details": "Shares corresponding to the number of tokens supplied are mint to the user's balanceAsset tokens are supplied to the yield source, then deposited into Aave",
                "params": {
                  "mintAmount": "The amount of asset tokens to be supplied",
                  "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`."
              },
              "transferERC20(address,address,uint256)": {
                "details": "This function is only callable by the owner or asset manager",
                "params": {
                  "amount": "The amount of tokens to transfer",
                  "erc20Token": "The ERC20 token to transfer",
                  "to": "The recipient of the tokens"
                }
              },
              "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`."
              },
              "transferOwnership(address)": {
                "params": {
                  "_newOwner": "Address to transfer ownership to."
                }
              }
            },
            "stateVariables": {
              "ADDRESSES_PROVIDER_ID": {
                "details": "Aave genesis market LendingPoolAddressesProvider's IDThis variable could evolve in the future if we decide to support other markets"
              },
              "REFERRAL_CODE": {
                "details": "PoolTogether's Aave Referral Code"
              }
            },
            "title": "Aave Yield Source integration contract, implementing PoolTogether's generic yield source interface",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_245": {
                  "entryPoint": null,
                  "id": 245,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@_311": {
                  "entryPoint": null,
                  "id": 311,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_4294": {
                  "entryPoint": null,
                  "id": 4294,
                  "parameterSlots": 7,
                  "returnSlots": 0
                },
                "@_5230": {
                  "entryPoint": null,
                  "id": 5230,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_callOptionalReturn_1343": {
                  "entryPoint": 1784,
                  "id": 1343,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_lendingPool_4806": {
                  "entryPoint": 1151,
                  "id": 4806,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_setOwner_5327": {
                  "entryPoint": 1069,
                  "id": 5327,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@functionCallWithValue_1639": {
                  "entryPoint": 2033,
                  "id": 1639,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "@functionCall_1569": {
                  "entryPoint": 2006,
                  "id": 1569,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@isContract_1498": {
                  "entryPoint": null,
                  "id": 1498,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@safeApprove_1221": {
                  "entryPoint": 1433,
                  "id": 1221,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@verifyCallResult_1774": {
                  "entryPoint": 2340,
                  "id": 1774,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_decode_address_fromMemory": {
                  "entryPoint": 2568,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_string_fromMemory": {
                  "entryPoint": 2586,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_address_fromMemory": {
                  "entryPoint": 2702,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_array$_t_address_$dyn_memory_ptr_fromMemory": {
                  "entryPoint": 2734,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_bool_fromMemory": {
                  "entryPoint": 2931,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_contract$_ATokenInterface_$3549t_contract$_IAaveIncentivesController_$3785t_contract$_ILendingPoolAddressesProviderRegistry_$4000t_uint8t_string_memory_ptrt_string_memory_ptrt_address_fromMemory": {
                  "entryPoint": 2967,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 7
                },
                "abi_decode_tuple_t_uint256_fromMemory": {
                  "entryPoint": 3183,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_string": {
                  "entryPoint": 3209,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed": {
                  "entryPoint": 3255,
                  "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_contract$_ILendingPoolAddressesProviderRegistry_$4000_t_uint8_t_string_memory_ptr_t_string_memory_ptr_t_address__to_t_address_t_uint8_t_string_memory_ptr_t_string_memory_ptr_t_address__fromStack_reversed": {
                  "entryPoint": 3285,
                  "id": null,
                  "parameterSlots": 6,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": 3372,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_2b992e6c61293c4775dd812a5baf3b2f7a1cd955ddd0a3d8d4998f6b9cc5da44__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_2e346efdb0fab8d40ba5586f8fdf8d9dbf79134348affa7e84a5640fe36bac6e__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_3436cd3585bd0ff62d8f10d3f57d80ad638896d8287a008b2264e31604c967eb__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_4f61776603d15f02546812e32d767874e039b7fc515c9a02144de1df487ec0c5__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_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_cc67c645e12c4f46b6e43477d167452c25b4e627212d442acf5952d80241aaa8__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_ef945ddb1bfdc0da870feb4560d868b047642b4ac7f2fb7f8b7c51cb4a411e25__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "allocate_memory": {
                  "entryPoint": 3393,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "copy_memory_to_memory": {
                  "entryPoint": 3444,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "extract_byte_array_length": {
                  "entryPoint": 3495,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "panic_error_0x32": {
                  "entryPoint": 3556,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x41": {
                  "entryPoint": 3578,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "validator_revert_address": {
                  "entryPoint": 3600,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:10788:101",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:101",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "74:78:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "84:22:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "99:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "93:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "93:13:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "84:5:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "140:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "115:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "115:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "115:31:101"
                            }
                          ]
                        },
                        "name": "abi_decode_address_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "53:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "64:5:101",
                            "type": ""
                          }
                        ],
                        "src": "14:138:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "221:433:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "270:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "279:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "282:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "272:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "272:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "272:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "249:6:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "257:4:101",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "245:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "245:17:101"
                                      },
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "264:3:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "241:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "241:27:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "234:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "234:35:101"
                              },
                              "nodeType": "YulIf",
                              "src": "231:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "295:23:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "311:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "305:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "305:13:101"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "299:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "357:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "359:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "359:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "359:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "333:2:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "345:2:101",
                                            "type": "",
                                            "value": "64"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "349:1:101",
                                            "type": "",
                                            "value": "1"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "shl",
                                          "nodeType": "YulIdentifier",
                                          "src": "341:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "341:10:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "353:1:101",
                                        "type": "",
                                        "value": "1"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "337:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "337:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "330:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "330:26:101"
                              },
                              "nodeType": "YulIf",
                              "src": "327:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "388:70:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "_1",
                                                "nodeType": "YulIdentifier",
                                                "src": "431:2:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "435:4:101",
                                                "type": "",
                                                "value": "0x1f"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "427:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "427:13:101"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "446:2:101",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "not",
                                              "nodeType": "YulIdentifier",
                                              "src": "442:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "442:7:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "423:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "423:27:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "452:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "419:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "419:38:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "allocate_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "403:15:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "403:55:101"
                              },
                              "variables": [
                                {
                                  "name": "array_1",
                                  "nodeType": "YulTypedName",
                                  "src": "392:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "array_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "474:7:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "483:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "467:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "467:19:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "467:19:101"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "534:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "543:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "546:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "536:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "536:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "536:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "509:6:101"
                                          },
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "517:2:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "505:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "505:15:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "522:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "501:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "501:26:101"
                                  },
                                  {
                                    "name": "end",
                                    "nodeType": "YulIdentifier",
                                    "src": "529:3:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "498:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "498:35:101"
                              },
                              "nodeType": "YulIf",
                              "src": "495:2:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "585:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "593:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "581:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "581:17:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "array_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "604:7:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "613:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "600:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "600:18:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "620:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "559:21:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "559:64:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "559:64:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "632:16:101",
                              "value": {
                                "name": "array_1",
                                "nodeType": "YulIdentifier",
                                "src": "641:7:101"
                              },
                              "variableNames": [
                                {
                                  "name": "array",
                                  "nodeType": "YulIdentifier",
                                  "src": "632:5:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_string_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "195:6:101",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "203:3:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "array",
                            "nodeType": "YulTypedName",
                            "src": "211:5:101",
                            "type": ""
                          }
                        ],
                        "src": "157:497:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "740:170:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "786:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "795:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "798:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "788:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "788:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "788:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "761:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "770:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "757:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "757:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "782:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "753:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "753:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "750:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "811:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "830:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "824:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "824:16:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "815:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "874:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "849:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "849:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "849:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "889:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "899:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "889:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "706:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "717:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "729:6:101",
                            "type": ""
                          }
                        ],
                        "src": "659:251:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1021:916:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1031:12:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "1041:2:101",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1035:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1088:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1097:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1100:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1090:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1090:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1090:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1063:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1072:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1059:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1059:23:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1084:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1055:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1055:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1052:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1113:30:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1133:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1127:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1127:16:101"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "1117:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1152:28:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1170:2:101",
                                        "type": "",
                                        "value": "64"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1174:1:101",
                                        "type": "",
                                        "value": "1"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "1166:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1166:10:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1178:1:101",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "1162:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1162:18:101"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "1156:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1207:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1216:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1219:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1209:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1209:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1209:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1195:6:101"
                                  },
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "1203:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1192:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1192:14:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1189:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1232:32:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1246:9:101"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1257:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1242:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1242:22:101"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "1236:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1312:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1321:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1324:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1314:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1314:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1314:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_3",
                                            "nodeType": "YulIdentifier",
                                            "src": "1291:2:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1295:4:101",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1287:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1287:13:101"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1302:7:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1283:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1283:27:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1276:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1276:35:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1273:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1337:19:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "1353:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1347:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1347:9:101"
                              },
                              "variables": [
                                {
                                  "name": "_4",
                                  "nodeType": "YulTypedName",
                                  "src": "1341:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1379:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "1381:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1381:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1381:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "1371:2:101"
                                  },
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "1375:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1368:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1368:10:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1365:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1410:20:101",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1424:1:101",
                                    "type": "",
                                    "value": "5"
                                  },
                                  {
                                    "name": "_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "1427:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "shl",
                                  "nodeType": "YulIdentifier",
                                  "src": "1420:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1420:10:101"
                              },
                              "variables": [
                                {
                                  "name": "_5",
                                  "nodeType": "YulTypedName",
                                  "src": "1414:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1439:39:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "_5",
                                        "nodeType": "YulIdentifier",
                                        "src": "1470:2:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1474:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1466:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1466:11:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "allocate_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1450:15:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1450:28:101"
                              },
                              "variables": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulTypedName",
                                  "src": "1443:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1487:16:101",
                              "value": {
                                "name": "dst",
                                "nodeType": "YulIdentifier",
                                "src": "1500:3:101"
                              },
                              "variables": [
                                {
                                  "name": "dst_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1491:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "1519:3:101"
                                  },
                                  {
                                    "name": "_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "1524:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1512:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1512:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1512:15:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1536:19:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "1547:3:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1552:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1543:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1543:12:101"
                              },
                              "variableNames": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulIdentifier",
                                  "src": "1536:3:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1564:22:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "1579:2:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1583:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1575:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1575:11:101"
                              },
                              "variables": [
                                {
                                  "name": "src",
                                  "nodeType": "YulTypedName",
                                  "src": "1568:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1632:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1641:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1644:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1634:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1634:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1634:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_3",
                                            "nodeType": "YulIdentifier",
                                            "src": "1609:2:101"
                                          },
                                          {
                                            "name": "_5",
                                            "nodeType": "YulIdentifier",
                                            "src": "1613:2:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1605:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1605:11:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1618:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1601:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1601:20:101"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1623:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1598:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1598:33:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1595:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1657:10:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "1666:1:101",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "1661:1:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1721:186:101",
                                "statements": [
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "1735:23:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "1754:3:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mload",
                                        "nodeType": "YulIdentifier",
                                        "src": "1748:5:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1748:10:101"
                                    },
                                    "variables": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulTypedName",
                                        "src": "1739:5:101",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value",
                                          "nodeType": "YulIdentifier",
                                          "src": "1796:5:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "validator_revert_address",
                                        "nodeType": "YulIdentifier",
                                        "src": "1771:24:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1771:31:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1771:31:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "1822:3:101"
                                        },
                                        {
                                          "name": "value",
                                          "nodeType": "YulIdentifier",
                                          "src": "1827:5:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1815:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1815:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1815:18:101"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "1846:19:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "1857:3:101"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "1862:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "1853:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1853:12:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "dst",
                                        "nodeType": "YulIdentifier",
                                        "src": "1846:3:101"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "1878:19:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "1889:3:101"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "1894:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "1885:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1885:12:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "src",
                                        "nodeType": "YulIdentifier",
                                        "src": "1878:3:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "1687:1:101"
                                  },
                                  {
                                    "name": "_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "1690:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1684:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1684:9:101"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "1694:18:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "1696:14:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "1705:1:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1708:1:101",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "1701:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1701:9:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "1696:1:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "1680:3:101",
                                "statements": []
                              },
                              "src": "1676:231:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1916:15:101",
                              "value": {
                                "name": "dst_1",
                                "nodeType": "YulIdentifier",
                                "src": "1926:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1916:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_array$_t_address_$dyn_memory_ptr_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "987:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "998:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1010:6:101",
                            "type": ""
                          }
                        ],
                        "src": "915:1022:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2020:199:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2066:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2075:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2078:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2068:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2068:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2068:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2041:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2050:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2037:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2037:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2062:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2033:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2033:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2030:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2091:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2110:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2104:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2104:16:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2095:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2173:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2182:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2185:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2175:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2175:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2175:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2142:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "2163:5:101"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "iszero",
                                              "nodeType": "YulIdentifier",
                                              "src": "2156:6:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "2156:13:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "2149:6:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2149:21:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "2139:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2139:32:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "2132:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2132:40:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2129:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2198:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2208:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2198:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_bool_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1986:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1997:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2009:6:101",
                            "type": ""
                          }
                        ],
                        "src": "1942:277:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2529:1004:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2576:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2585:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2588:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2578:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2578:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2578:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2550:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2559:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2546:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2546:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2571:3:101",
                                    "type": "",
                                    "value": "224"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2542:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2542:33:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2539:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2601:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2620:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2614:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2614:16:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2605:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "2664:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "2639:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2639:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2639:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2679:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2689:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2679:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2703:40:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2728:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2739:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2724:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2724:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2718:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2718:25:101"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2707:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2777:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "2752:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2752:33:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2752:33:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2794:17:101",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "2804:7:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2794:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2820:40:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2845:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2856:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2841:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2841:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2835:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2835:25:101"
                              },
                              "variables": [
                                {
                                  "name": "value_2",
                                  "nodeType": "YulTypedName",
                                  "src": "2824:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "2894:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "2869:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2869:33:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2869:33:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2911:17:101",
                              "value": {
                                "name": "value_2",
                                "nodeType": "YulIdentifier",
                                "src": "2921:7:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "2911:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2937:40:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2962:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2973:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2958:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2958:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2952:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2952:25:101"
                              },
                              "variables": [
                                {
                                  "name": "value_3",
                                  "nodeType": "YulTypedName",
                                  "src": "2941:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3029:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3038:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3041:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3031:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3031:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3031:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "2999:7:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value_3",
                                            "nodeType": "YulIdentifier",
                                            "src": "3012:7:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "3021:4:101",
                                            "type": "",
                                            "value": "0xff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "3008:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3008:18:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "2996:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2996:31:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "2989:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2989:39:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2986:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3054:17:101",
                              "value": {
                                "name": "value_3",
                                "nodeType": "YulIdentifier",
                                "src": "3064:7:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "3054:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3080:40:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3104:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3115:3:101",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3100:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3100:19:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3094:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3094:26:101"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "3084:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3129:28:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3147:2:101",
                                        "type": "",
                                        "value": "64"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3151:1:101",
                                        "type": "",
                                        "value": "1"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "3143:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3143:10:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3155:1:101",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "3139:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3139:18:101"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3133:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3184:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3193:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3196:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3186:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3186:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3186:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "3172:6:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3180:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3169:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3169:14:101"
                              },
                              "nodeType": "YulIf",
                              "src": "3166:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3209:71:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3252:9:101"
                                      },
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "3263:6:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3248:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3248:22:101"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "3272:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_string_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "3219:28:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3219:61:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value4",
                                  "nodeType": "YulIdentifier",
                                  "src": "3209:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3289:42:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3315:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3326:3:101",
                                        "type": "",
                                        "value": "160"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3311:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3311:19:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3305:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3305:26:101"
                              },
                              "variables": [
                                {
                                  "name": "offset_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3293:8:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3360:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3369:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3372:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3362:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3362:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3362:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3346:8:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3356:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3343:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3343:16:101"
                              },
                              "nodeType": "YulIf",
                              "src": "3340:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3385:73:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3428:9:101"
                                      },
                                      {
                                        "name": "offset_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "3439:8:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3424:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3424:24:101"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "3450:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_string_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "3395:28:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3395:63:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value5",
                                  "nodeType": "YulIdentifier",
                                  "src": "3385:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3467:60:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3511:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3522:3:101",
                                        "type": "",
                                        "value": "192"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3507:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3507:19:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "3477:29:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3477:50:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value6",
                                  "nodeType": "YulIdentifier",
                                  "src": "3467:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_contract$_ATokenInterface_$3549t_contract$_IAaveIncentivesController_$3785t_contract$_ILendingPoolAddressesProviderRegistry_$4000t_uint8t_string_memory_ptrt_string_memory_ptrt_address_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2447:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2458:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2470:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2478:6:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "2486:6:101",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "2494:6:101",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "2502:6:101",
                            "type": ""
                          },
                          {
                            "name": "value5",
                            "nodeType": "YulTypedName",
                            "src": "2510:6:101",
                            "type": ""
                          },
                          {
                            "name": "value6",
                            "nodeType": "YulTypedName",
                            "src": "2518:6:101",
                            "type": ""
                          }
                        ],
                        "src": "2224:1309:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3619:103:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3665:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3674:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3677:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3667:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3667:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3667:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3640:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3649:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3636:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3636:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3661:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3632:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3632:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "3629:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3690:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3706:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3700:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3700:16:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3690:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3585:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "3596:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3608:6:101",
                            "type": ""
                          }
                        ],
                        "src": "3538:184:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3777:208:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3787:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "3807:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3801:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3801:12:101"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "3791:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "3829:3:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "3834:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3822:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3822:19:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3822:19:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "3876:5:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3883:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3872:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3872:16:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "3894:3:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3899:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3890:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3890:14:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "3906:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "3850:21:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3850:63:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3850:63:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3922:57:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "3937:3:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "3950:6:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "3958:2:101",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "3946:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "3946:15:101"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "3967:2:101",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "not",
                                              "nodeType": "YulIdentifier",
                                              "src": "3963:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "3963:7:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "3942:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3942:29:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3933:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3933:39:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3974:4:101",
                                    "type": "",
                                    "value": "0x20"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3929:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3929:50:101"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "3922:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_string",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "3754:5:101",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "3761:3:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "3769:3:101",
                            "type": ""
                          }
                        ],
                        "src": "3727:258:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4127:137:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4137:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "4157:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4151:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4151:13:101"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "4141:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "4199:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4207:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4195:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4195:17:101"
                                  },
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "4214:3:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "4219:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "4173:21:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4173:53:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4173:53:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4235:23:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "4246:3:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "4251:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4242:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4242:16:101"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "4235:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "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": "4103:3:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4108:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "4119:3:101",
                            "type": ""
                          }
                        ],
                        "src": "3990:274:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4398:175:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "4408:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4420:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4431:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4416:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4416:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4408:4:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4443:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4461:3:101",
                                        "type": "",
                                        "value": "160"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4466:1:101",
                                        "type": "",
                                        "value": "1"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "4457:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4457:11:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4470:1:101",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "4453:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4453:19:101"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4447:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4488:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "4503:6:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "4511:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4499:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4499:15:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4481:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4481:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4481:34:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4535:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4546:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4531:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4531:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "4555:6:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "4563:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4551:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4551:15:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4524:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4524:43:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4524:43:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4359:9:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "4370:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4378:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4389:4:101",
                            "type": ""
                          }
                        ],
                        "src": "4269:304:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4707:145:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "4717:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4729:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4740:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4725:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4725:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4717:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4759:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "4774:6:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "4790:3:101",
                                                "type": "",
                                                "value": "160"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "4795:1:101",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "4786:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4786:11:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "4799:1:101",
                                            "type": "",
                                            "value": "1"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "sub",
                                          "nodeType": "YulIdentifier",
                                          "src": "4782:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4782:19:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4770:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4770:32:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4752:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4752:51:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4752:51:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4823:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4834:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4819:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4819:18:101"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4839:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4812:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4812:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4812:34:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4668:9:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "4679:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4687:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4698:4:101",
                            "type": ""
                          }
                        ],
                        "src": "4578:274:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5152:413:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5162:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5180:3:101",
                                        "type": "",
                                        "value": "160"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5185:1:101",
                                        "type": "",
                                        "value": "1"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "5176:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5176:11:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5189:1:101",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "5172:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5172:19:101"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "5166:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5207:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "5222:6:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "5230:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5218:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5218:15:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5200:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5200:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5200:34:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5254:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5265:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5250:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5250:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "5274:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5282:4:101",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5270:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5270:17:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5243:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5243:45:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5243:45:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5308:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5319:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5304:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5304:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5324:3:101",
                                    "type": "",
                                    "value": "160"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5297:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5297:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5297:31:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5337:60:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "5369:6:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5381:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5392:3:101",
                                        "type": "",
                                        "value": "160"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5377:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5377:19:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_string",
                                  "nodeType": "YulIdentifier",
                                  "src": "5351:17:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5351:46:101"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "5341:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5417:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5428:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5413:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5413:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "tail_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "5437:6:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5445:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "5433:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5433:22:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5406:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5406:50:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5406:50:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5465:41:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value3",
                                    "nodeType": "YulIdentifier",
                                    "src": "5491:6:101"
                                  },
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "5499:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_string",
                                  "nodeType": "YulIdentifier",
                                  "src": "5473:17:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5473:33:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5465:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5526:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5537:3:101",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5522:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5522:19:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value4",
                                        "nodeType": "YulIdentifier",
                                        "src": "5547:6:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "5555:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5543:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5543:15:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5515:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5515:44:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5515:44:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_ILendingPoolAddressesProviderRegistry_$4000_t_uint8_t_string_memory_ptr_t_string_memory_ptr_t_address__to_t_address_t_uint8_t_string_memory_ptr_t_string_memory_ptr_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5089:9:101",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "5100:6:101",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "5108:6:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "5116:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "5124:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5132:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5143:4:101",
                            "type": ""
                          }
                        ],
                        "src": "4857:708:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5691:99:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5708:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5719:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5701:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5701:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5701:21:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5731:53:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "5757:6:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5769:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5780:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5765:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5765:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_string",
                                  "nodeType": "YulIdentifier",
                                  "src": "5739:17:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5739:45:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5731:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5660:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5671:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5682:4:101",
                            "type": ""
                          }
                        ],
                        "src": "5570:220:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5969:231:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5986:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5997:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5979:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5979:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5979:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6020:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6031:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6016:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6016:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6036:2:101",
                                    "type": "",
                                    "value": "41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6009:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6009:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6009:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6059:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6070:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6055:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6055:18:101"
                                  },
                                  {
                                    "hexValue": "41546f6b656e5969656c64536f757263652f61546f6b656e2d6e6f742d7a6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6075:34:101",
                                    "type": "",
                                    "value": "ATokenYieldSource/aToken-not-zer"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6048:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6048:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6048:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6130:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6141:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6126:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6126:18:101"
                                  },
                                  {
                                    "hexValue": "6f2d61646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6146:11:101",
                                    "type": "",
                                    "value": "o-address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6119:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6119:39:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6119:39:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6167:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6179:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6190:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6175:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6175:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6167:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_2b992e6c61293c4775dd812a5baf3b2f7a1cd955ddd0a3d8d4998f6b9cc5da44__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5946:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5960:4:101",
                            "type": ""
                          }
                        ],
                        "src": "5795:405:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6379:245:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6396:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6407:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6389:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6389:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6389:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6430:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6441:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6426:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6426:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6446:2:101",
                                    "type": "",
                                    "value": "55"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6419:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6419:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6419:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6469:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6480:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6465:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6465:18:101"
                                  },
                                  {
                                    "hexValue": "41546f6b656e5969656c64536f757263652f696e63656e7469766573436f6e74",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6485:34:101",
                                    "type": "",
                                    "value": "ATokenYieldSource/incentivesCont"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6458:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6458:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6458:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6540:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6551:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6536:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6536:18:101"
                                  },
                                  {
                                    "hexValue": "726f6c6c65722d6e6f742d7a65726f2d61646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6556:25:101",
                                    "type": "",
                                    "value": "roller-not-zero-address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6529:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6529:53:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6529:53:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6591:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6603:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6614:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6599:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6599:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6591:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_2e346efdb0fab8d40ba5586f8fdf8d9dbf79134348affa7e84a5640fe36bac6e__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6356:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6370:4:101",
                            "type": ""
                          }
                        ],
                        "src": "6205:419:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6803:230:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6820:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6831:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6813:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6813:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6813:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6854:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6865:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6850:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6850:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6870:2:101",
                                    "type": "",
                                    "value": "40"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6843:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6843:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6843:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6893:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6904:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6889:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6889:18:101"
                                  },
                                  {
                                    "hexValue": "41546f6b656e5969656c64536f757263652f6f776e65722d6e6f742d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6909:34:101",
                                    "type": "",
                                    "value": "ATokenYieldSource/owner-not-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6882:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6882:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6882:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6964:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6975:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6960:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6960:18:101"
                                  },
                                  {
                                    "hexValue": "2d61646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6980:10:101",
                                    "type": "",
                                    "value": "-address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6953:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6953:38:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6953:38:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7000:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7012:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7023:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7008:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7008:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7000:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_3436cd3585bd0ff62d8f10d3f57d80ad638896d8287a008b2264e31604c967eb__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6780:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6794:4:101",
                            "type": ""
                          }
                        ],
                        "src": "6629:404:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7212:244:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7229:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7240:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7222:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7222:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7222:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7263:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7274:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7259:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7259:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7279:2:101",
                                    "type": "",
                                    "value": "54"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7252:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7252:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7252:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7302:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7313:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7298:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7298:18:101"
                                  },
                                  {
                                    "hexValue": "41546f6b656e5969656c64536f757263652f6c656e64696e67506f6f6c526567",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7318:34:101",
                                    "type": "",
                                    "value": "ATokenYieldSource/lendingPoolReg"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7291:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7291:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7291:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7373:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7384:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7369:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7369:18:101"
                                  },
                                  {
                                    "hexValue": "69737472792d6e6f742d7a65726f2d61646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7389:24:101",
                                    "type": "",
                                    "value": "istry-not-zero-address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7362:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7362:52:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7362:52:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7423:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7435:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7446:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7431:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7431:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7423:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_4f61776603d15f02546812e32d767874e039b7fc515c9a02144de1df487ec0c5__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7189:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7203:4:101",
                            "type": ""
                          }
                        ],
                        "src": "7038:418:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7635:228:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7652:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7663:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7645:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7645:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7645:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7686:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7697:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7682:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7682:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7702:2:101",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7675:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7675:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7675:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7725:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7736:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7721:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7721:18:101"
                                  },
                                  {
                                    "hexValue": "416464726573733a20696e73756666696369656e742062616c616e636520666f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7741:34:101",
                                    "type": "",
                                    "value": "Address: insufficient balance fo"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7714:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7714:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7714:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7796:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7807:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7792:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7792:18:101"
                                  },
                                  {
                                    "hexValue": "722063616c6c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7812:8:101",
                                    "type": "",
                                    "value": "r call"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7785:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7785:36:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7785:36:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7830:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7842:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7853:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7838:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7838:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7830:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7612:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7626:4:101",
                            "type": ""
                          }
                        ],
                        "src": "7461:402:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8042:179:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8059:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8070:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8052:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8052:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8052:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8093:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8104:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8089:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8089:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8109:2:101",
                                    "type": "",
                                    "value": "29"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8082:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8082:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8082:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8132:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8143:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8128:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8128:18:101"
                                  },
                                  {
                                    "hexValue": "416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8148:31:101",
                                    "type": "",
                                    "value": "Address: call to non-contract"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8121:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8121:59:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8121:59:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8189:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8201:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8212:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8197:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8197:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8189:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8019:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8033:4:101",
                            "type": ""
                          }
                        ],
                        "src": "7868:353:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8400:224:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8417:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8428:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8410:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8410:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8410:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8451:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8462:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8447:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8447:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8467:2:101",
                                    "type": "",
                                    "value": "34"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8440:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8440:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8440:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8490:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8501:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8486:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8486:18:101"
                                  },
                                  {
                                    "hexValue": "41546f6b656e5969656c64536f757263652f646563696d616c732d67742d7a65",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8506:34:101",
                                    "type": "",
                                    "value": "ATokenYieldSource/decimals-gt-ze"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8479:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8479:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8479:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8561:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8572:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8557:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8557:18:101"
                                  },
                                  {
                                    "hexValue": "726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8577:4:101",
                                    "type": "",
                                    "value": "ro"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8550:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8550:32:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8550:32:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8591:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8603:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8614:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8599:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8599:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8591:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_cc67c645e12c4f46b6e43477d167452c25b4e627212d442acf5952d80241aaa8__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8377:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8391:4:101",
                            "type": ""
                          }
                        ],
                        "src": "8226:398:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8803:232:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8820:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8831:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8813:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8813:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8813:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8854:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8865:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8850:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8850:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8870:2:101",
                                    "type": "",
                                    "value": "42"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8843:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8843:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8843:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8893:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8904:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8889:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8889:18:101"
                                  },
                                  {
                                    "hexValue": "5361666545524332303a204552433230206f7065726174696f6e20646964206e",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8909:34:101",
                                    "type": "",
                                    "value": "SafeERC20: ERC20 operation did n"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8882:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8882:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8882:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8964:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8975:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8960:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8960:18:101"
                                  },
                                  {
                                    "hexValue": "6f742073756363656564",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8980:12:101",
                                    "type": "",
                                    "value": "ot succeed"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8953:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8953:40:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8953:40:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9002:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9014:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9025:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9010:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9010:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9002:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_e11ad79d1e4a7f2e5f376964cb99e8e8f7904e3fc16a109f7a7ecb9aa7956dcd__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8780:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8794:4:101",
                            "type": ""
                          }
                        ],
                        "src": "8629:406:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9214:244:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9231:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9242:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9224:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9224:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9224:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9265:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9276:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9261:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9261:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9281:2:101",
                                    "type": "",
                                    "value": "54"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9254:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9254:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9254:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9304:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9315:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9300:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9300:18:101"
                                  },
                                  {
                                    "hexValue": "5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9320:34:101",
                                    "type": "",
                                    "value": "SafeERC20: approve from non-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9293:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9293:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9293:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9375:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9386:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9371:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9371:18:101"
                                  },
                                  {
                                    "hexValue": "20746f206e6f6e2d7a65726f20616c6c6f77616e6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9391:24:101",
                                    "type": "",
                                    "value": " to non-zero allowance"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9364:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9364:52:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9364:52:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9425:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9437:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9448:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9433:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9433:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9425:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_ef945ddb1bfdc0da870feb4560d868b047642b4ac7f2fb7f8b7c51cb4a411e25__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9191:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9205:4:101",
                            "type": ""
                          }
                        ],
                        "src": "9040:418:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9508:230:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "9518:19:101",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9534:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "9528:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9528:9:101"
                              },
                              "variableNames": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulIdentifier",
                                  "src": "9518:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9546:58:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "9568:6:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "size",
                                            "nodeType": "YulIdentifier",
                                            "src": "9584:4:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "9590:2:101",
                                            "type": "",
                                            "value": "31"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "9580:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "9580:13:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "9599:2:101",
                                            "type": "",
                                            "value": "31"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "not",
                                          "nodeType": "YulIdentifier",
                                          "src": "9595:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "9595:7:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "9576:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9576:27:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9564:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9564:40:101"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "9550:10:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9679:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "9681:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9681:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9681:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "9622:10:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "9642:2:101",
                                                "type": "",
                                                "value": "64"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "9646:1:101",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "9638:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "9638:10:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "9650:1:101",
                                            "type": "",
                                            "value": "1"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "sub",
                                          "nodeType": "YulIdentifier",
                                          "src": "9634:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "9634:18:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "9619:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9619:34:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "9658:10:101"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "9670:6:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "9655:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9655:22:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "9616:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9616:62:101"
                              },
                              "nodeType": "YulIf",
                              "src": "9613:2:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9717:2:101",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "9721:10:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9710:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9710:22:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9710:22:101"
                            }
                          ]
                        },
                        "name": "allocate_memory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "size",
                            "nodeType": "YulTypedName",
                            "src": "9488:4:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "memPtr",
                            "nodeType": "YulTypedName",
                            "src": "9497:6:101",
                            "type": ""
                          }
                        ],
                        "src": "9463:275:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9796:205:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9806:10:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "9815:1:101",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "9810:1:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9875:63:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "9900:3:101"
                                            },
                                            {
                                              "name": "i",
                                              "nodeType": "YulIdentifier",
                                              "src": "9905:1:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "9896:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "9896:11:101"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "9919:3:101"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "9924:1:101"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "9915:3:101"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "9915:11:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "9909:5:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "9909:18:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "9889:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9889:39:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9889:39:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "9836:1:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "9839:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "9833:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9833:13:101"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "9847:19:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "9849:15:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "9858:1:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9861:2:101",
                                          "type": "",
                                          "value": "32"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "9854:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9854:10:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "9849:1:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "9829:3:101",
                                "statements": []
                              },
                              "src": "9825:113:101"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9964:31:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "9977:3:101"
                                            },
                                            {
                                              "name": "length",
                                              "nodeType": "YulIdentifier",
                                              "src": "9982:6:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "9973:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "9973:16:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9991:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "9966:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9966:27:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9966:27:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "9953:1:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "9956:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "9950:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9950:13:101"
                              },
                              "nodeType": "YulIf",
                              "src": "9947:2:101"
                            }
                          ]
                        },
                        "name": "copy_memory_to_memory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "src",
                            "nodeType": "YulTypedName",
                            "src": "9774:3:101",
                            "type": ""
                          },
                          {
                            "name": "dst",
                            "nodeType": "YulTypedName",
                            "src": "9779:3:101",
                            "type": ""
                          },
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "9784:6:101",
                            "type": ""
                          }
                        ],
                        "src": "9743:258:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10061:325:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "10071:22:101",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10085:1:101",
                                    "type": "",
                                    "value": "1"
                                  },
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "10088:4:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "shr",
                                  "nodeType": "YulIdentifier",
                                  "src": "10081:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10081:12:101"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "10071:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "10102:38:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "10132:4:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10138:1:101",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "10128:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10128:12:101"
                              },
                              "variables": [
                                {
                                  "name": "outOfPlaceEncoding",
                                  "nodeType": "YulTypedName",
                                  "src": "10106:18:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "10179:31:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "10181:27:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "length",
                                          "nodeType": "YulIdentifier",
                                          "src": "10195:6:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "10203:4:101",
                                          "type": "",
                                          "value": "0x7f"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "and",
                                        "nodeType": "YulIdentifier",
                                        "src": "10191:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10191:17:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "10181:6:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "10159:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "10152:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10152:26:101"
                              },
                              "nodeType": "YulIf",
                              "src": "10149:2:101"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "10269:111:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "10290:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "10297:3:101",
                                              "type": "",
                                              "value": "224"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "10302:10:101",
                                              "type": "",
                                              "value": "0x4e487b71"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "shl",
                                            "nodeType": "YulIdentifier",
                                            "src": "10293:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "10293:20:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "10283:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10283:31:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "10283:31:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "10334:1:101",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "10337:4:101",
                                          "type": "",
                                          "value": "0x22"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "10327:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10327:15:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "10327:15:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "10362:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "10365:4:101",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "10355:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10355:15:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "10355:15:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "10225:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "10248:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10256:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "10245:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10245:14:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "10222:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10222:38:101"
                              },
                              "nodeType": "YulIf",
                              "src": "10219:2:101"
                            }
                          ]
                        },
                        "name": "extract_byte_array_length",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "data",
                            "nodeType": "YulTypedName",
                            "src": "10041:4:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "10050:6:101",
                            "type": ""
                          }
                        ],
                        "src": "10006:380:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10423:95:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10440:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10447:3:101",
                                        "type": "",
                                        "value": "224"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10452:10:101",
                                        "type": "",
                                        "value": "0x4e487b71"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "10443:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10443:20:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10433:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10433:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10433:31:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10480:1:101",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10483:4:101",
                                    "type": "",
                                    "value": "0x32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10473:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10473:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10473:15:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10504:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10507:4:101",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "10497:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10497:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10497:15:101"
                            }
                          ]
                        },
                        "name": "panic_error_0x32",
                        "nodeType": "YulFunctionDefinition",
                        "src": "10391:127:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10555:95:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10572:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10579:3:101",
                                        "type": "",
                                        "value": "224"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10584:10:101",
                                        "type": "",
                                        "value": "0x4e487b71"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "10575:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10575:20:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10565:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10565:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10565:31:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10612:1:101",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10615:4:101",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10605:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10605:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10605:15:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10636:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10639:4:101",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "10629:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10629:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10629:15:101"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "10523:127:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10700:86:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "10764:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "10773:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "10776:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "10766:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10766:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "10766:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "10723:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "10734:5:101"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "10749:3:101",
                                                    "type": "",
                                                    "value": "160"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "10754:1:101",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "10745:3:101"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "10745:11:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "10758:1:101",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "10741:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "10741:19:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "10730:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "10730:31:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "10720:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10720:42:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "10713:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10713:50:101"
                              },
                              "nodeType": "YulIf",
                              "src": "10710:2:101"
                            }
                          ]
                        },
                        "name": "validator_revert_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "10689:5:101",
                            "type": ""
                          }
                        ],
                        "src": "10655:131:101"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_address_fromMemory(offset) -> value\n    {\n        value := mload(offset)\n        validator_revert_address(value)\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        if gt(_1, sub(shl(64, 1), 1)) { panic_error_0x41() }\n        let array_1 := allocate_memory(add(and(add(_1, 0x1f), not(31)), 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_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_array$_t_address_$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 := sub(shl(64, 1), 1)\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            let value := mload(src)\n            validator_revert_address(value)\n            mstore(dst, value)\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_contract$_ATokenInterface_$3549t_contract$_IAaveIncentivesController_$3785t_contract$_ILendingPoolAddressesProviderRegistry_$4000t_uint8t_string_memory_ptrt_string_memory_ptrt_address_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        let value_3 := mload(add(headStart, 96))\n        if iszero(eq(value_3, and(value_3, 0xff))) { revert(0, 0) }\n        value3 := value_3\n        let offset := mload(add(headStart, 128))\n        let _1 := sub(shl(64, 1), 1)\n        if gt(offset, _1) { revert(0, 0) }\n        value4 := abi_decode_string_fromMemory(add(headStart, offset), dataEnd)\n        let offset_1 := mload(add(headStart, 160))\n        if gt(offset_1, _1) { revert(0, 0) }\n        value5 := abi_decode_string_fromMemory(add(headStart, offset_1), dataEnd)\n        value6 := abi_decode_address_fromMemory(add(headStart, 192))\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_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_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 := sub(shl(160, 1), 1)\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, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_encode_tuple_t_contract$_ILendingPoolAddressesProviderRegistry_$4000_t_uint8_t_string_memory_ptr_t_string_memory_ptr_t_address__to_t_address_t_uint8_t_string_memory_ptr_t_string_memory_ptr_t_address__fromStack_reversed(headStart, value4, value3, value2, value1, value0) -> tail\n    {\n        let _1 := sub(shl(160, 1), 1)\n        mstore(headStart, and(value0, _1))\n        mstore(add(headStart, 32), and(value1, 0xff))\n        mstore(add(headStart, 64), 160)\n        let tail_1 := abi_encode_string(value2, add(headStart, 160))\n        mstore(add(headStart, 96), sub(tail_1, headStart))\n        tail := abi_encode_string(value3, tail_1)\n        mstore(add(headStart, 128), and(value4, _1))\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_string(value0, add(headStart, 32))\n    }\n    function abi_encode_tuple_t_stringliteral_2b992e6c61293c4775dd812a5baf3b2f7a1cd955ddd0a3d8d4998f6b9cc5da44__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), \"ATokenYieldSource/aToken-not-zer\")\n        mstore(add(headStart, 96), \"o-address\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_2e346efdb0fab8d40ba5586f8fdf8d9dbf79134348affa7e84a5640fe36bac6e__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 55)\n        mstore(add(headStart, 64), \"ATokenYieldSource/incentivesCont\")\n        mstore(add(headStart, 96), \"roller-not-zero-address\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_3436cd3585bd0ff62d8f10d3f57d80ad638896d8287a008b2264e31604c967eb__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), \"ATokenYieldSource/owner-not-zero\")\n        mstore(add(headStart, 96), \"-address\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_4f61776603d15f02546812e32d767874e039b7fc515c9a02144de1df487ec0c5__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 54)\n        mstore(add(headStart, 64), \"ATokenYieldSource/lendingPoolReg\")\n        mstore(add(headStart, 96), \"istry-not-zero-address\")\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_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_cc67c645e12c4f46b6e43477d167452c25b4e627212d442acf5952d80241aaa8__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), \"ATokenYieldSource/decimals-gt-ze\")\n        mstore(add(headStart, 96), \"ro\")\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_ef945ddb1bfdc0da870feb4560d868b047642b4ac7f2fb7f8b7c51cb4a411e25__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 54)\n        mstore(add(headStart, 64), \"SafeERC20: approve from non-zero\")\n        mstore(add(headStart, 96), \" to non-zero allowance\")\n        tail := add(headStart, 128)\n    }\n    function allocate_memory(size) -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(size, 31), not(31)))\n        if or(gt(newFreePtr, sub(shl(64, 1), 1)), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\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_0x32()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x32)\n        revert(0, 0x24)\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x41)\n        revert(0, 0x24)\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": 101,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "6101006040523480156200001257600080fd5b50604051620039c8380380620039c8833981016040819052620000359162000b97565b80828481600390805190602001906200005092919062000962565b5080516200006690600490602084019062000962565b5050506200007a816200042d60201b60201c565b5060016008556001600160a01b038716620000ee5760405162461bcd60e51b815260206004820152602960248201527f41546f6b656e5969656c64536f757263652f61546f6b656e2d6e6f742d7a65726044820152686f2d6164647265737360b81b60648201526084015b60405180910390fd5b6001600160a01b0386166200016c5760405162461bcd60e51b815260206004820152603760248201527f41546f6b656e5969656c64536f757263652f696e63656e7469766573436f6e7460448201527f726f6c6c65722d6e6f742d7a65726f2d616464726573730000000000000000006064820152608401620000e5565b6001600160a01b038516620001ea5760405162461bcd60e51b815260206004820152603660248201527f41546f6b656e5969656c64536f757263652f6c656e64696e67506f6f6c52656760448201527f69737472792d6e6f742d7a65726f2d61646472657373000000000000000000006064820152608401620000e5565b6001600160a01b038116620002535760405162461bcd60e51b815260206004820152602860248201527f41546f6b656e5969656c64536f757263652f6f776e65722d6e6f742d7a65726f6044820152672d6164647265737360c01b6064820152608401620000e5565b60008460ff1611620002b35760405162461bcd60e51b815260206004820152602260248201527f41546f6b656e5969656c64536f757263652f646563696d616c732d67742d7a65604482015261726f60f01b6064820152608401620000e5565b6001600160601b0319606088811b821660805287901b1660a052600980546001600160a01b038781166001600160a01b0319909216919091179091557fff0000000000000000000000000000000000000000000000000000000000000060f886901b1660e052604080516358b50cef60e11b815290516000928a169163b16a19de916004808301926020929190829003018186803b1580156200035557600080fd5b505afa1580156200036a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000390919062000a8e565b6001600160601b0319606082901b1660c0529050620003d4620003b26200047f565b600019836001600160a01b03166200059960201b62001460179092919060201c565b876001600160a01b03167ffba57dff735bfaf5226b0a6e4ea8161ce10896963a36f6db20759f10b0055b4087878688876040516200041795949392919062000cd5565b60405180910390a2505050505050505062000e29565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6009546040805163365ccbbf60e01b815290516000926001600160a01b03169163365ccbbf9160048083019286929190829003018186803b158015620004c457600080fd5b505afa158015620004d9573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405262000503919081019062000aae565b60008151811062000518576200051862000de4565b60200260200101516001600160a01b0316630261bf8b6040518163ffffffff1660e01b815260040160206040518083038186803b1580156200055957600080fd5b505afa1580156200056e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000594919062000a8e565b905090565b801580620006275750604051636eb1769f60e11b81523060048201526001600160a01b03838116602483015284169063dd62ed3e9060440160206040518083038186803b158015620005ea57600080fd5b505afa158015620005ff573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000625919062000c6f565b155b6200069b5760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527f20746f206e6f6e2d7a65726f20616c6c6f77616e6365000000000000000000006064820152608401620000e5565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b0390811663095ea7b360e01b17909152620006f3918591620006f816565b505050565b600062000754826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316620007d660201b62001609179092919060201c565b805190915015620006f3578080602001905181019062000775919062000b73565b620006f35760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401620000e5565b6060620007e78484600085620007f1565b90505b9392505050565b606082471015620008545760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401620000e5565b843b620008a45760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401620000e5565b600080866001600160a01b03168587604051620008c2919062000cb7565b60006040518083038185875af1925050503d806000811462000901576040519150601f19603f3d011682016040523d82523d6000602084013e62000906565b606091505b5090925090506200091982828662000924565b979650505050505050565b6060831562000935575081620007ea565b825115620009465782518084602001fd5b8160405162461bcd60e51b8152600401620000e5919062000d2c565b828054620009709062000da7565b90600052602060002090601f016020900481019282620009945760008555620009df565b82601f10620009af57805160ff1916838001178555620009df565b82800160010185558215620009df579182015b82811115620009df578251825591602001919060010190620009c2565b50620009ed929150620009f1565b5090565b5b80821115620009ed5760008155600101620009f2565b805162000a158162000e10565b919050565b600082601f83011262000a2c57600080fd5b81516001600160401b0381111562000a485762000a4862000dfa565b62000a5d601f8201601f191660200162000d41565b81815284602083860101111562000a7357600080fd5b62000a8682602083016020870162000d74565b949350505050565b60006020828403121562000aa157600080fd5b8151620007ea8162000e10565b6000602080838503121562000ac257600080fd5b82516001600160401b038082111562000ada57600080fd5b818501915085601f83011262000aef57600080fd5b81518181111562000b045762000b0462000dfa565b8060051b915062000b1784830162000d41565b8181528481019084860184860187018a101562000b3357600080fd5b600095505b8386101562000b66578051945062000b508562000e10565b8483526001959095019491860191860162000b38565b5098975050505050505050565b60006020828403121562000b8657600080fd5b81518015158114620007ea57600080fd5b600080600080600080600060e0888a03121562000bb357600080fd5b875162000bc08162000e10565b602089015190975062000bd38162000e10565b604089015190965062000be68162000e10565b606089015190955060ff8116811462000bfe57600080fd5b60808901519094506001600160401b038082111562000c1c57600080fd5b62000c2a8b838c0162000a1a565b945060a08a015191508082111562000c4157600080fd5b5062000c508a828b0162000a1a565b92505062000c6160c0890162000a08565b905092959891949750929550565b60006020828403121562000c8257600080fd5b5051919050565b6000815180845262000ca381602086016020860162000d74565b601f01601f19169290920160200192915050565b6000825162000ccb81846020870162000d74565b9190910192915050565b600060018060a01b03808816835260ff8716602084015260a0604084015262000d0260a084018762000c89565b838103606085015262000d16818762000c89565b9250508084166080840152509695505050505050565b602081526000620007ea602083018462000c89565b604051601f8201601f191681016001600160401b038111828210171562000d6c5762000d6c62000dfa565b604052919050565b60005b8381101562000d9157818101518382015260200162000d77565b8381111562000da1576000848401525b50505050565b600181811c9082168062000dbc57607f821691505b6020821081141562000dde57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811462000e2657600080fd5b50565b60805160601c60a05160601c60c05160601c60e05160f81c612b1362000eb560003960006102540152600081816103df01528181610522015281816105e301528181610f4701528181611e2b0152611e8b015260008181610395015261113301526000818161034801528181610b9d0152818161116901528181611663015261202b0152612b136000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c806395d89b4111610104578063b99152d0116100a2578063dd62ed3e11610071578063dd62ed3e1461041e578063e30c397814610457578063ef5cfb8c14610468578063f2fde38b1461047b57600080fd5b8063b99152d0146103ca578063c89039c5146103dd578063d0ebdbe714610403578063daa4f9751461041657600080fd5b8063a457c2d7116100de578063a457c2d71461036a578063a9059cbb1461037d578063af1df25514610390578063b6cce5e2146103b757600080fd5b806395d89b41146103285780639db5dbe414610330578063a0c1f15e1461034357600080fd5b8063481c6a7511610171578063715018a61161014b578063715018a6146102e9578063873ba41e146102f157806387a6eeef146103045780638da5cb5b1461031757600080fd5b8063481c6a75146102915780634e71e0c8146102b657806370a08231146102c057600080fd5b806318160ddd116101ad57806318160ddd1461023257806323b872dd1461023a578063313ce5671461024d578063395093511461027e57600080fd5b8063013054c2146101d457806306fdde03146101fa578063095ea7b31461020f575b600080fd5b6101e76101e2366004612868565b61048e565b6040519081526020015b60405180910390f35b61020261075f565b6040516101f1919061297c565b61022261021d36600461274e565b6107f1565b60405190151581526020016101f1565b6002546101e7565b61022261024836600461270d565b610808565b60405160ff7f00000000000000000000000000000000000000000000000000000000000000001681526020016101f1565b61022261028c36600461274e565b6108c9565b6007546001600160a01b03165b6040516001600160a01b0390911681526020016101f1565b6102be610905565b005b6101e76102ce36600461269a565b6001600160a01b031660009081526020819052604090205490565b6102be610993565b60095461029e906001600160a01b031681565b6102be61031236600461289a565b610a08565b6005546001600160a01b031661029e565b610202610ad9565b6102be61033e36600461270d565b610ae8565b61029e7f000000000000000000000000000000000000000000000000000000000000000081565b61022261037836600461274e565b610cb3565b61022261038b36600461274e565b610d64565b61029e7f000000000000000000000000000000000000000000000000000000000000000081565b6102be6103c5366004612868565b610d71565b6101e76103d836600461269a565b610e0f565b7f000000000000000000000000000000000000000000000000000000000000000061029e565b61022261041136600461269a565b610e31565b610222610eaa565b6101e761042c3660046126d4565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6006546001600160a01b031661029e565b61022261047636600461269a565b610ff1565b6102be61048936600461269a565b611324565b6000600260085414156104e85760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b600260085560006104f883611620565b9050610503816116f9565b61050d338261174c565b6040516370a0823160e01b81523060048201527f0000000000000000000000000000000000000000000000000000000000000000906000906001600160a01b038316906370a082319060240160206040518083038186803b15801561057157600080fd5b505afa158015610585573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105a99190612881565b90506105b36118d1565b6040517f69328dec0000000000000000000000000000000000000000000000000000000081526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811660048301526024820188905230604483015291909116906369328dec90606401602060405180830381600087803b15801561063e57600080fd5b505af1158015610652573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106769190612881565b506040516370a0823160e01b81523060048201526000906001600160a01b038416906370a082319060240160206040518083038186803b1580156106b957600080fd5b505afa1580156106cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106f19190612881565b905060006106ff82846119f9565b90506107156001600160a01b0385163383611a05565b604080518681526020810189905233917f5c9b0a8fe13a826ca676f5ad4f98c747b5086beb79ab58589b8211b62fa32fb9910160405180910390a260016008559695505050505050565b60606003805461076e90612a4b565b80601f016020809104026020016040519081016040528092919081815260200182805461079a90612a4b565b80156107e75780601f106107bc576101008083540402835291602001916107e7565b820191906000526020600020905b8154815290600101906020018083116107ca57829003601f168201915b5050505050905090565b60006107fe338484611a4e565b5060015b92915050565b6000610815848484611ba6565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156108af5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084016104df565b6108bc8533858403611a4e565b60019150505b9392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916107fe9185906109009086906129af565b611a4e565b6006546001600160a01b0316331461095f5760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e65720060448201526064016104df565b600654610974906001600160a01b0316611dbf565b6006805473ffffffffffffffffffffffffffffffffffffffff19169055565b336109a66005546001600160a01b031690565b6001600160a01b0316146109fc5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016104df565b610a066000611dbf565b565b60026008541415610a5b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016104df565b60026008556000610a6b83611620565b9050610a76816116f9565b610a7f83611e1e565b610a898282611f08565b60408051828152602081018590526001600160a01b0384169133917fdef5cc95ad9b1c65c586d0fce815ec764b575719636edf58ff2553ae6f110452910160405180910390a35050600160085550565b60606004805461076e90612a4b565b33610afb6007546001600160a01b031690565b6001600160a01b03161480610b29575033610b1e6005546001600160a01b031690565b6001600160a01b0316145b610b9b5760405162461bcd60e51b815260206004820152602660248201527f4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f7260448201527f2d6f776e6572000000000000000000000000000000000000000000000000000060648201526084016104df565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03161415610c435760405162461bcd60e51b815260206004820152602d60248201527f41546f6b656e5969656c64536f757263652f61546f6b656e2d7472616e73666560448201527f722d6e6f742d616c6c6f7765640000000000000000000000000000000000000060648201526084016104df565b610c576001600160a01b0384168383611a05565b826001600160a01b0316826001600160a01b0316336001600160a01b03167f29fcb7bb954d37295343e742bab21760748bdba4e026e4469a8100183996913884604051610ca691815260200190565b60405180910390a4505050565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610d4d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016104df565b610d5a3385858403611a4e565b5060019392505050565b60006107fe338484611ba6565b60026008541415610dc45760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016104df565b6002600855610dd281611e1e565b60405181815233907fbb2c10eb8b0d65523a501a1c079906e38af3c4231e31b799d408daacd7ce72269060200160405180910390a2506001600855565b6001600160a01b03811660009081526020819052604081205461080290611fe7565b600033610e466005546001600160a01b031690565b6001600160a01b031614610e9c5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016104df565b610802826120b2565b919050565b600033610ebf6005546001600160a01b031690565b6001600160a01b031614610f155760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016104df565b6000610f1f6118d1565b604051636eb1769f60e11b81523060048201526001600160a01b0380831660248301529192507f000000000000000000000000000000000000000000000000000000000000000091610fe8918491610fd7919085169063dd62ed3e9060440160206040518083038186803b158015610f9657600080fd5b505afa158015610faa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fce9190612881565b600019906119f9565b6001600160a01b038416919061219e565b60019250505090565b6000336110066007546001600160a01b031690565b6001600160a01b031614806110345750336110296005546001600160a01b031690565b6001600160a01b0316145b6110a65760405162461bcd60e51b815260206004820152602660248201527f4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f7260448201527f2d6f776e6572000000000000000000000000000000000000000000000000000060648201526084016104df565b6001600160a01b0382166111225760405162461bcd60e51b815260206004820152602c60248201527f41546f6b656e5969656c64536f757263652f726563697069656e742d6e6f742d60448201527f7a65726f2d61646472657373000000000000000000000000000000000000000060648201526084016104df565b6040805160018082528183019092527f00000000000000000000000000000000000000000000000000000000000000009160009190602080830190803683370190505090507f00000000000000000000000000000000000000000000000000000000000000008160008151811061119b5761119b612a9c565b6001600160a01b0392831660209182029290920101526040517f8b599f26000000000000000000000000000000000000000000000000000000008152600091841690638b599f26906111f3908590309060040161291f565b60206040518083038186803b15801561120b57600080fd5b505afa15801561121f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112439190612881565b90506000836001600160a01b0316633111e7b38484896040518463ffffffff1660e01b81526004016112779392919061294a565b602060405180830381600087803b15801561129157600080fd5b505af11580156112a5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112c99190612881565b9050856001600160a01b0316336001600160a01b03167ff7a40077ff7a04c7e61f6f26fb13774259ddf1b6bce9ecf26a8276cdd39926838360405161131091815260200190565b60405180910390a350600195945050505050565b336113376005546001600160a01b031690565b6001600160a01b03161461138d5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016104df565b6001600160a01b0381166114095760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016104df565b6006805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b8015806114e95750604051636eb1769f60e11b81523060048201526001600160a01b03838116602483015284169063dd62ed3e9060440160206040518083038186803b1580156114af57600080fd5b505afa1580156114c3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114e79190612881565b155b61155b5760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527f20746f206e6f6e2d7a65726f20616c6c6f77616e63650000000000000000000060648201526084016104df565b6040516001600160a01b0383166024820152604481018290526116049084907f095ea7b300000000000000000000000000000000000000000000000000000000906064015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217909152612278565b505050565b6060611618848460008561235d565b949350505050565b600080600061162e60025490565b90508061163d578391506116f2565b6040516370a0823160e01b81523060048201526000906116e29083906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906370a082319060240160206040518083038186803b1580156116a557600080fd5b505afa1580156116b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116dd9190612881565b61249c565b90506116ee85826124bd565b9250505b5092915050565b600081116117495760405162461bcd60e51b815260206004820181905260248201527f41546f6b656e5969656c64536f757263652f7368617265732d67742d7a65726f60448201526064016104df565b50565b6001600160a01b0382166117c85760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016104df565b6001600160a01b038216600090815260208190526040902054818110156118575760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f636500000000000000000000000000000000000000000000000000000000000060648201526084016104df565b6001600160a01b0383166000908152602081905260408120838303905560028054849290611886908490612a08565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600954604080517f365ccbbf00000000000000000000000000000000000000000000000000000000815290516000926001600160a01b03169163365ccbbf9160048083019286929190829003018186803b15801561192e57600080fd5b505afa158015611942573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261196a919081019061277a565b60008151811061197c5761197c612a9c565b60200260200101516001600160a01b0316630261bf8b6040518163ffffffff1660e01b815260040160206040518083038186803b1580156119bc57600080fd5b505afa1580156119d0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119f491906126b7565b905090565b60006108c28284612a08565b6040516001600160a01b0383166024820152604481018290526116049084907fa9059cbb00000000000000000000000000000000000000000000000000000000906064016115a0565b6001600160a01b038316611ac95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016104df565b6001600160a01b038216611b455760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016104df565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611c225760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016104df565b6001600160a01b038216611c9e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016104df565b6001600160a01b03831660009081526020819052604090205481811015611d2d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016104df565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611d649084906129af565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611db091815260200190565b60405180910390a35b50505050565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611e536001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000163330846124de565b611e5b6118d1565b6040517fe8eda9df0000000000000000000000000000000000000000000000000000000081526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811660048301526024820184905230604483015260bc6064830152919091169063e8eda9df90608401600060405180830381600087803b158015611eed57600080fd5b505af1158015611f01573d6000803e3d6000fd5b5050505050565b6001600160a01b038216611f5e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016104df565b8060026000828254611f7091906129af565b90915550506001600160a01b03821660009081526020819052604081208054839290611f9d9084906129af565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6000806000611ff560025490565b905080612004578391506116f2565b6040516370a0823160e01b81523060048201526116189082906120ac906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906370a082319060240160206040518083038186803b15801561206d57600080fd5b505afa158015612081573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120a59190612881565b879061252f565b9061253b565b6007546000906001600160a01b0390811690831681141561213b5760405162461bcd60e51b815260206004820152602360248201527f4d616e61676561626c652f6578697374696e672d6d616e616765722d6164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016104df565b6007805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385811691821790925560405190918316907f9cb45c728de594dab506a1f1a8554e24c8eeaf983618d5ec5dd7bc6f3c49feee90600090a350600192915050565b604051636eb1769f60e11b81523060048201526001600160a01b038381166024830152600091839186169063dd62ed3e9060440160206040518083038186803b1580156121ea57600080fd5b505afa1580156121fe573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122229190612881565b61222c91906129af565b6040516001600160a01b038516602482015260448101829052909150611db99085907f095ea7b300000000000000000000000000000000000000000000000000000000906064016115a0565b60006122cd826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166116099092919063ffffffff16565b80519091501561160457808060200190518101906122eb9190612846565b6116045760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016104df565b6060824710156123d55760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c000000000000000000000000000000000000000000000000000060648201526084016104df565b843b6124235760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016104df565b600080866001600160a01b0316858760405161243f9190612903565b60006040518083038185875af1925050503d806000811461247c576040519150601f19603f3d011682016040523d82523d6000602084013e612481565b606091505b5091509150612491828286612547565b979650505050505050565b6000806124b184670de0b6b3a7640000612580565b9050611618818461261b565b6000806124ca8385612580565b905061161881670de0b6b3a764000061261b565b6040516001600160a01b0380851660248301528316604482015260648101829052611db99085907f23b872dd00000000000000000000000000000000000000000000000000000000906084016115a0565b60006108c282846129e9565b60006108c282846129c7565b606083156125565750816108c2565b8251156125665782518084602001fd5b8160405162461bcd60e51b81526004016104df919061297c565b60008261258f57506000610802565b600061259b83856129e9565b9050826125a885836129c7565b146108c25760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60448201527f770000000000000000000000000000000000000000000000000000000000000060648201526084016104df565b60006108c283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250600081836126795760405162461bcd60e51b81526004016104df919061297c565b50600061268684866129c7565b95945050505050565b8051610ea581612ac8565b6000602082840312156126ac57600080fd5b81356108c281612ac8565b6000602082840312156126c957600080fd5b81516108c281612ac8565b600080604083850312156126e757600080fd5b82356126f281612ac8565b9150602083013561270281612ac8565b809150509250929050565b60008060006060848603121561272257600080fd5b833561272d81612ac8565b9250602084013561273d81612ac8565b929592945050506040919091013590565b6000806040838503121561276157600080fd5b823561276c81612ac8565b946020939093013593505050565b6000602080838503121561278d57600080fd5b825167ffffffffffffffff808211156127a557600080fd5b818501915085601f8301126127b957600080fd5b8151818111156127cb576127cb612ab2565b8060051b604051601f19603f830116810181811085821117156127f0576127f0612ab2565b604052828152858101935084860182860187018a101561280f57600080fd5b600095505b83861015612839576128258161268f565b855260019590950194938601938601612814565b5098975050505050505050565b60006020828403121561285857600080fd5b815180151581146108c257600080fd5b60006020828403121561287a57600080fd5b5035919050565b60006020828403121561289357600080fd5b5051919050565b600080604083850312156128ad57600080fd5b82359150602083013561270281612ac8565b600081518084526020808501945080840160005b838110156128f85781516001600160a01b0316875295820195908201906001016128d3565b509495945050505050565b60008251612915818460208701612a1f565b9190910192915050565b60408152600061293260408301856128bf565b90506001600160a01b03831660208301529392505050565b60608152600061295d60608301866128bf565b90508360208301526001600160a01b0383166040830152949350505050565b602081526000825180602084015261299b816040850160208701612a1f565b601f01601f19169190910160400192915050565b600082198211156129c2576129c2612a86565b500190565b6000826129e457634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615612a0357612a03612a86565b500290565b600082821015612a1a57612a1a612a86565b500390565b60005b83811015612a3a578181015183820152602001612a22565b83811115611db95750506000910152565b600181811c90821680612a5f57607f821691505b60208210811415612a8057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461174957600080fdfea2646970667358221220dffd3650a8caf78b090fbfdb433fff4b28ce7f0d5814196e7f2279c4b0ab4af964736f6c63430008060033",
              "opcodes": "PUSH2 0x100 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x12 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x39C8 CODESIZE SUB DUP1 PUSH3 0x39C8 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x35 SWAP2 PUSH3 0xB97 JUMP JUMPDEST DUP1 DUP3 DUP5 DUP2 PUSH1 0x3 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x50 SWAP3 SWAP2 SWAP1 PUSH3 0x962 JUMP JUMPDEST POP DUP1 MLOAD PUSH3 0x66 SWAP1 PUSH1 0x4 SWAP1 PUSH1 0x20 DUP5 ADD SWAP1 PUSH3 0x962 JUMP JUMPDEST POP POP POP PUSH3 0x7A DUP2 PUSH3 0x42D PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x8 SSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH3 0xEE 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 0x41546F6B656E5969656C64536F757263652F61546F6B656E2D6E6F742D7A6572 PUSH1 0x44 DUP3 ADD MSTORE PUSH9 0x6F2D61646472657373 PUSH1 0xB8 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 DUP7 AND PUSH3 0x16C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x37 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x41546F6B656E5969656C64536F757263652F696E63656E7469766573436F6E74 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x726F6C6C65722D6E6F742D7A65726F2D61646472657373000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH3 0xE5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH3 0x1EA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x36 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x41546F6B656E5969656C64536F757263652F6C656E64696E67506F6F6C526567 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x69737472792D6E6F742D7A65726F2D6164647265737300000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH3 0xE5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH3 0x253 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 0x41546F6B656E5969656C64536F757263652F6F776E65722D6E6F742D7A65726F PUSH1 0x44 DUP3 ADD MSTORE PUSH8 0x2D61646472657373 PUSH1 0xC0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH3 0xE5 JUMP JUMPDEST PUSH1 0x0 DUP5 PUSH1 0xFF AND GT PUSH3 0x2B3 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 0x41546F6B656E5969656C64536F757263652F646563696D616C732D67742D7A65 PUSH1 0x44 DUP3 ADD MSTORE PUSH2 0x726F PUSH1 0xF0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH3 0xE5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT PUSH1 0x60 DUP9 DUP2 SHL DUP3 AND PUSH1 0x80 MSTORE DUP8 SWAP1 SHL AND PUSH1 0xA0 MSTORE PUSH1 0x9 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SWAP2 SSTORE PUSH32 0xFF00000000000000000000000000000000000000000000000000000000000000 PUSH1 0xF8 DUP7 SWAP1 SHL AND PUSH1 0xE0 MSTORE PUSH1 0x40 DUP1 MLOAD PUSH4 0x58B50CEF PUSH1 0xE1 SHL DUP2 MSTORE SWAP1 MLOAD PUSH1 0x0 SWAP3 DUP11 AND SWAP2 PUSH4 0xB16A19DE SWAP2 PUSH1 0x4 DUP1 DUP4 ADD SWAP3 PUSH1 0x20 SWAP3 SWAP2 SWAP1 DUP3 SWAP1 SUB ADD DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH3 0x355 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH3 0x36A 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 PUSH3 0x390 SWAP2 SWAP1 PUSH3 0xA8E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT PUSH1 0x60 DUP3 SWAP1 SHL AND PUSH1 0xC0 MSTORE SWAP1 POP PUSH3 0x3D4 PUSH3 0x3B2 PUSH3 0x47F JUMP JUMPDEST PUSH1 0x0 NOT DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH3 0x599 PUSH1 0x20 SHL PUSH3 0x1460 OR SWAP1 SWAP3 SWAP2 SWAP1 PUSH1 0x20 SHR JUMP JUMPDEST DUP8 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xFBA57DFF735BFAF5226B0A6E4EA8161CE10896963A36F6DB20759F10B0055B40 DUP8 DUP8 DUP7 DUP9 DUP8 PUSH1 0x40 MLOAD PUSH3 0x417 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH3 0xCD5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP POP POP POP PUSH3 0xE29 JUMP JUMPDEST PUSH1 0x5 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 SWAP1 SWAP4 SSTORE PUSH1 0x40 MLOAD SWAP2 AND SWAP2 SWAP1 DUP3 SWAP1 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP1 PUSH1 0x0 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x9 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH4 0x365CCBBF PUSH1 0xE0 SHL DUP2 MSTORE SWAP1 MLOAD PUSH1 0x0 SWAP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 PUSH4 0x365CCBBF SWAP2 PUSH1 0x4 DUP1 DUP4 ADD SWAP3 DUP7 SWAP3 SWAP2 SWAP1 DUP3 SWAP1 SUB ADD DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH3 0x4C4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH3 0x4D9 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 PUSH3 0x503 SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH3 0xAAE JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH3 0x518 JUMPI PUSH3 0x518 PUSH3 0xDE4 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x261BF8B 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 PUSH3 0x559 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH3 0x56E 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 PUSH3 0x594 SWAP2 SWAP1 PUSH3 0xA8E JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST DUP1 ISZERO DUP1 PUSH3 0x627 JUMPI POP PUSH1 0x40 MLOAD PUSH4 0x6EB1769F PUSH1 0xE1 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE DUP5 AND SWAP1 PUSH4 0xDD62ED3E SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH3 0x5EA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH3 0x5FF 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 PUSH3 0x625 SWAP2 SWAP1 PUSH3 0xC6F JUMP JUMPDEST ISZERO JUMPDEST PUSH3 0x69B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x36 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5361666545524332303A20617070726F76652066726F6D206E6F6E2D7A65726F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x20746F206E6F6E2D7A65726F20616C6C6F77616E636500000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH3 0xE5 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 SWAP1 DUP2 AND PUSH4 0x95EA7B3 PUSH1 0xE0 SHL OR SWAP1 SWAP2 MSTORE PUSH3 0x6F3 SWAP2 DUP6 SWAP2 PUSH3 0x6F8 AND JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x754 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 PUSH3 0x7D6 PUSH1 0x20 SHL PUSH3 0x1609 OR SWAP1 SWAP3 SWAP2 SWAP1 PUSH1 0x20 SHR JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP ISZERO PUSH3 0x6F3 JUMPI DUP1 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH3 0x775 SWAP2 SWAP1 PUSH3 0xB73 JUMP JUMPDEST PUSH3 0x6F3 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 PUSH10 0x1BDD081CDD58D8D95959 PUSH1 0xB2 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH3 0xE5 JUMP JUMPDEST PUSH1 0x60 PUSH3 0x7E7 DUP5 DUP5 PUSH1 0x0 DUP6 PUSH3 0x7F1 JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP3 SELFBALANCE LT ISZERO PUSH3 0x854 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 PUSH6 0x1C8818D85B1B PUSH1 0xD2 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH3 0xE5 JUMP JUMPDEST DUP5 EXTCODESIZE PUSH3 0x8A4 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 PUSH3 0xE5 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 DUP8 PUSH1 0x40 MLOAD PUSH3 0x8C2 SWAP2 SWAP1 PUSH3 0xCB7 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 PUSH3 0x901 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 0x906 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP1 SWAP3 POP SWAP1 POP PUSH3 0x919 DUP3 DUP3 DUP7 PUSH3 0x924 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 ISZERO PUSH3 0x935 JUMPI POP DUP2 PUSH3 0x7EA JUMP JUMPDEST DUP3 MLOAD ISZERO PUSH3 0x946 JUMPI DUP3 MLOAD DUP1 DUP5 PUSH1 0x20 ADD REVERT JUMPDEST DUP2 PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0xE5 SWAP2 SWAP1 PUSH3 0xD2C JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x970 SWAP1 PUSH3 0xDA7 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x994 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x9DF JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0x9AF JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x9DF JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x9DF JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x9DF JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0x9C2 JUMP JUMPDEST POP PUSH3 0x9ED SWAP3 SWAP2 POP PUSH3 0x9F1 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x9ED JUMPI PUSH1 0x0 DUP2 SSTORE PUSH1 0x1 ADD PUSH3 0x9F2 JUMP JUMPDEST DUP1 MLOAD PUSH3 0xA15 DUP2 PUSH3 0xE10 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0xA2C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH3 0xA48 JUMPI PUSH3 0xA48 PUSH3 0xDFA JUMP JUMPDEST PUSH3 0xA5D PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD PUSH3 0xD41 JUMP JUMPDEST DUP2 DUP2 MSTORE DUP5 PUSH1 0x20 DUP4 DUP7 ADD ADD GT ISZERO PUSH3 0xA73 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0xA86 DUP3 PUSH1 0x20 DUP4 ADD PUSH1 0x20 DUP8 ADD PUSH3 0xD74 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH3 0xAA1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH3 0x7EA DUP2 PUSH3 0xE10 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 DUP6 SUB SLT ISZERO PUSH3 0xAC2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0xADA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH3 0xAEF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP2 DUP2 GT ISZERO PUSH3 0xB04 JUMPI PUSH3 0xB04 PUSH3 0xDFA JUMP JUMPDEST DUP1 PUSH1 0x5 SHL SWAP2 POP PUSH3 0xB17 DUP5 DUP4 ADD PUSH3 0xD41 JUMP JUMPDEST DUP2 DUP2 MSTORE DUP5 DUP2 ADD SWAP1 DUP5 DUP7 ADD DUP5 DUP7 ADD DUP8 ADD DUP11 LT ISZERO PUSH3 0xB33 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP6 POP JUMPDEST DUP4 DUP7 LT ISZERO PUSH3 0xB66 JUMPI DUP1 MLOAD SWAP5 POP PUSH3 0xB50 DUP6 PUSH3 0xE10 JUMP JUMPDEST DUP5 DUP4 MSTORE PUSH1 0x1 SWAP6 SWAP1 SWAP6 ADD SWAP5 SWAP2 DUP7 ADD SWAP2 DUP7 ADD PUSH3 0xB38 JUMP JUMPDEST POP SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH3 0xB86 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH3 0x7EA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xE0 DUP9 DUP11 SUB SLT ISZERO PUSH3 0xBB3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP8 MLOAD PUSH3 0xBC0 DUP2 PUSH3 0xE10 JUMP JUMPDEST PUSH1 0x20 DUP10 ADD MLOAD SWAP1 SWAP8 POP PUSH3 0xBD3 DUP2 PUSH3 0xE10 JUMP JUMPDEST PUSH1 0x40 DUP10 ADD MLOAD SWAP1 SWAP7 POP PUSH3 0xBE6 DUP2 PUSH3 0xE10 JUMP JUMPDEST PUSH1 0x60 DUP10 ADD MLOAD SWAP1 SWAP6 POP PUSH1 0xFF DUP2 AND DUP2 EQ PUSH3 0xBFE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x80 DUP10 ADD MLOAD SWAP1 SWAP5 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0xC1C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0xC2A DUP12 DUP4 DUP13 ADD PUSH3 0xA1A JUMP JUMPDEST SWAP5 POP PUSH1 0xA0 DUP11 ADD MLOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH3 0xC41 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH3 0xC50 DUP11 DUP3 DUP12 ADD PUSH3 0xA1A JUMP JUMPDEST SWAP3 POP POP PUSH3 0xC61 PUSH1 0xC0 DUP10 ADD PUSH3 0xA08 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 SWAP9 SWAP2 SWAP5 SWAP8 POP SWAP3 SWAP6 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH3 0xC82 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH3 0xCA3 DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH3 0xD74 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 PUSH3 0xCCB DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH3 0xD74 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB DUP1 DUP9 AND DUP4 MSTORE PUSH1 0xFF DUP8 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0xA0 PUSH1 0x40 DUP5 ADD MSTORE PUSH3 0xD02 PUSH1 0xA0 DUP5 ADD DUP8 PUSH3 0xC89 JUMP JUMPDEST DUP4 DUP2 SUB PUSH1 0x60 DUP6 ADD MSTORE PUSH3 0xD16 DUP2 DUP8 PUSH3 0xC89 JUMP JUMPDEST SWAP3 POP POP DUP1 DUP5 AND PUSH1 0x80 DUP5 ADD MSTORE POP SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH3 0x7EA PUSH1 0x20 DUP4 ADD DUP5 PUSH3 0xC89 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND DUP2 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH3 0xD6C JUMPI PUSH3 0xD6C PUSH3 0xDFA JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH3 0xD91 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH3 0xD77 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH3 0xDA1 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH3 0xDBC JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0xDDE 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 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 PUSH3 0xE26 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 0xF8 SHR PUSH2 0x2B13 PUSH3 0xEB5 PUSH1 0x0 CODECOPY PUSH1 0x0 PUSH2 0x254 ADD MSTORE PUSH1 0x0 DUP2 DUP2 PUSH2 0x3DF ADD MSTORE DUP2 DUP2 PUSH2 0x522 ADD MSTORE DUP2 DUP2 PUSH2 0x5E3 ADD MSTORE DUP2 DUP2 PUSH2 0xF47 ADD MSTORE DUP2 DUP2 PUSH2 0x1E2B ADD MSTORE PUSH2 0x1E8B ADD MSTORE PUSH1 0x0 DUP2 DUP2 PUSH2 0x395 ADD MSTORE PUSH2 0x1133 ADD MSTORE PUSH1 0x0 DUP2 DUP2 PUSH2 0x348 ADD MSTORE DUP2 DUP2 PUSH2 0xB9D ADD MSTORE DUP2 DUP2 PUSH2 0x1169 ADD MSTORE DUP2 DUP2 PUSH2 0x1663 ADD MSTORE PUSH2 0x202B ADD MSTORE PUSH2 0x2B13 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 0x1CF JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x95D89B41 GT PUSH2 0x104 JUMPI DUP1 PUSH4 0xB99152D0 GT PUSH2 0xA2 JUMPI DUP1 PUSH4 0xDD62ED3E GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x41E JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x457 JUMPI DUP1 PUSH4 0xEF5CFB8C EQ PUSH2 0x468 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x47B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xB99152D0 EQ PUSH2 0x3CA JUMPI DUP1 PUSH4 0xC89039C5 EQ PUSH2 0x3DD JUMPI DUP1 PUSH4 0xD0EBDBE7 EQ PUSH2 0x403 JUMPI DUP1 PUSH4 0xDAA4F975 EQ PUSH2 0x416 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xA457C2D7 GT PUSH2 0xDE JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x36A JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x37D JUMPI DUP1 PUSH4 0xAF1DF255 EQ PUSH2 0x390 JUMPI DUP1 PUSH4 0xB6CCE5E2 EQ PUSH2 0x3B7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x328 JUMPI DUP1 PUSH4 0x9DB5DBE4 EQ PUSH2 0x330 JUMPI DUP1 PUSH4 0xA0C1F15E EQ PUSH2 0x343 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x481C6A75 GT PUSH2 0x171 JUMPI DUP1 PUSH4 0x715018A6 GT PUSH2 0x14B JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x2E9 JUMPI DUP1 PUSH4 0x873BA41E EQ PUSH2 0x2F1 JUMPI DUP1 PUSH4 0x87A6EEEF EQ PUSH2 0x304 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x317 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x481C6A75 EQ PUSH2 0x291 JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0x2B6 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x2C0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x18160DDD GT PUSH2 0x1AD JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x232 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x23A JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x24D JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x27E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x13054C2 EQ PUSH2 0x1D4 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x1FA JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x20F JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1E7 PUSH2 0x1E2 CALLDATASIZE PUSH1 0x4 PUSH2 0x2868 JUMP JUMPDEST PUSH2 0x48E JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x202 PUSH2 0x75F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1F1 SWAP2 SWAP1 PUSH2 0x297C JUMP JUMPDEST PUSH2 0x222 PUSH2 0x21D CALLDATASIZE PUSH1 0x4 PUSH2 0x274E JUMP JUMPDEST PUSH2 0x7F1 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1F1 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH2 0x1E7 JUMP JUMPDEST PUSH2 0x222 PUSH2 0x248 CALLDATASIZE PUSH1 0x4 PUSH2 0x270D JUMP JUMPDEST PUSH2 0x808 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF PUSH32 0x0 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1F1 JUMP JUMPDEST PUSH2 0x222 PUSH2 0x28C CALLDATASIZE PUSH1 0x4 PUSH2 0x274E JUMP JUMPDEST PUSH2 0x8C9 JUMP JUMPDEST PUSH1 0x7 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 0x1F1 JUMP JUMPDEST PUSH2 0x2BE PUSH2 0x905 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1E7 PUSH2 0x2CE CALLDATASIZE PUSH1 0x4 PUSH2 0x269A 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 0x2BE PUSH2 0x993 JUMP JUMPDEST PUSH1 0x9 SLOAD PUSH2 0x29E SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 JUMP JUMPDEST PUSH2 0x2BE PUSH2 0x312 CALLDATASIZE PUSH1 0x4 PUSH2 0x289A JUMP JUMPDEST PUSH2 0xA08 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x29E JUMP JUMPDEST PUSH2 0x202 PUSH2 0xAD9 JUMP JUMPDEST PUSH2 0x2BE PUSH2 0x33E CALLDATASIZE PUSH1 0x4 PUSH2 0x270D JUMP JUMPDEST PUSH2 0xAE8 JUMP JUMPDEST PUSH2 0x29E PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x222 PUSH2 0x378 CALLDATASIZE PUSH1 0x4 PUSH2 0x274E JUMP JUMPDEST PUSH2 0xCB3 JUMP JUMPDEST PUSH2 0x222 PUSH2 0x38B CALLDATASIZE PUSH1 0x4 PUSH2 0x274E JUMP JUMPDEST PUSH2 0xD64 JUMP JUMPDEST PUSH2 0x29E PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x2BE PUSH2 0x3C5 CALLDATASIZE PUSH1 0x4 PUSH2 0x2868 JUMP JUMPDEST PUSH2 0xD71 JUMP JUMPDEST PUSH2 0x1E7 PUSH2 0x3D8 CALLDATASIZE PUSH1 0x4 PUSH2 0x269A JUMP JUMPDEST PUSH2 0xE0F JUMP JUMPDEST PUSH32 0x0 PUSH2 0x29E JUMP JUMPDEST PUSH2 0x222 PUSH2 0x411 CALLDATASIZE PUSH1 0x4 PUSH2 0x269A JUMP JUMPDEST PUSH2 0xE31 JUMP JUMPDEST PUSH2 0x222 PUSH2 0xEAA JUMP JUMPDEST PUSH2 0x1E7 PUSH2 0x42C CALLDATASIZE PUSH1 0x4 PUSH2 0x26D4 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 0x6 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x29E JUMP JUMPDEST PUSH2 0x222 PUSH2 0x476 CALLDATASIZE PUSH1 0x4 PUSH2 0x269A JUMP JUMPDEST PUSH2 0xFF1 JUMP JUMPDEST PUSH2 0x2BE PUSH2 0x489 CALLDATASIZE PUSH1 0x4 PUSH2 0x269A JUMP JUMPDEST PUSH2 0x1324 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 PUSH1 0x8 SLOAD EQ ISZERO PUSH2 0x4E8 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 JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 PUSH1 0x8 SSTORE PUSH1 0x0 PUSH2 0x4F8 DUP4 PUSH2 0x1620 JUMP JUMPDEST SWAP1 POP PUSH2 0x503 DUP2 PUSH2 0x16F9 JUMP JUMPDEST PUSH2 0x50D CALLER DUP3 PUSH2 0x174C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH32 0x0 SWAP1 PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB 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 0x571 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x585 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 0x5A9 SWAP2 SWAP1 PUSH2 0x2881 JUMP JUMPDEST SWAP1 POP PUSH2 0x5B3 PUSH2 0x18D1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x69328DEC00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD DUP9 SWAP1 MSTORE ADDRESS PUSH1 0x44 DUP4 ADD MSTORE SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x69328DEC SWAP1 PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x63E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x652 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 0x676 SWAP2 SWAP1 PUSH2 0x2881 JUMP JUMPDEST POP 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 0x6B9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL 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 0x2881 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x6FF DUP3 DUP5 PUSH2 0x19F9 JUMP JUMPDEST SWAP1 POP PUSH2 0x715 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND CALLER DUP4 PUSH2 0x1A05 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP7 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP10 SWAP1 MSTORE CALLER SWAP2 PUSH32 0x5C9B0A8FE13A826CA676F5AD4F98C747B5086BEB79AB58589B8211B62FA32FB9 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH1 0x1 PUSH1 0x8 SSTORE SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x76E SWAP1 PUSH2 0x2A4B 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 0x79A SWAP1 PUSH2 0x2A4B JUMP JUMPDEST DUP1 ISZERO PUSH2 0x7E7 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x7BC JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x7E7 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 0x7CA JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x7FE CALLER DUP5 DUP5 PUSH2 0x1A4E JUMP JUMPDEST POP PUSH1 0x1 JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x815 DUP5 DUP5 DUP5 PUSH2 0x1BA6 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 0x8AF 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 PUSH2 0x4DF JUMP JUMPDEST PUSH2 0x8BC DUP6 CALLER DUP6 DUP5 SUB PUSH2 0x1A4E JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP JUMPDEST 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 0x7FE SWAP2 DUP6 SWAP1 PUSH2 0x900 SWAP1 DUP7 SWAP1 PUSH2 0x29AF JUMP JUMPDEST PUSH2 0x1A4E JUMP JUMPDEST PUSH1 0x6 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x95F 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 0x4DF JUMP JUMPDEST PUSH1 0x6 SLOAD PUSH2 0x974 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1DBF JUMP JUMPDEST PUSH1 0x6 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST CALLER PUSH2 0x9A6 PUSH1 0x5 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x9FC 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 0x4DF JUMP JUMPDEST PUSH2 0xA06 PUSH1 0x0 PUSH2 0x1DBF JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x2 PUSH1 0x8 SLOAD EQ ISZERO PUSH2 0xA5B 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 0x4DF JUMP JUMPDEST PUSH1 0x2 PUSH1 0x8 SSTORE PUSH1 0x0 PUSH2 0xA6B DUP4 PUSH2 0x1620 JUMP JUMPDEST SWAP1 POP PUSH2 0xA76 DUP2 PUSH2 0x16F9 JUMP JUMPDEST PUSH2 0xA7F DUP4 PUSH2 0x1E1E JUMP JUMPDEST PUSH2 0xA89 DUP3 DUP3 PUSH2 0x1F08 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP2 CALLER SWAP2 PUSH32 0xDEF5CC95AD9B1C65C586D0FCE815EC764B575719636EDF58FF2553AE6F110452 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP PUSH1 0x1 PUSH1 0x8 SSTORE POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x76E SWAP1 PUSH2 0x2A4B JUMP JUMPDEST CALLER PUSH2 0xAFB PUSH1 0x7 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 0xB29 JUMPI POP CALLER PUSH2 0xB1E PUSH1 0x5 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 0xB9B 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 0x4DF JUMP JUMPDEST PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO PUSH2 0xC43 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x41546F6B656E5969656C64536F757263652F61546F6B656E2D7472616E736665 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x722D6E6F742D616C6C6F77656400000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x4DF JUMP JUMPDEST PUSH2 0xC57 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND DUP4 DUP4 PUSH2 0x1A05 JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x29FCB7BB954D37295343E742BAB21760748BDBA4E026E4469A81001839969138 DUP5 PUSH1 0x40 MLOAD PUSH2 0xCA6 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP 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 0xD4D 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 0x4DF JUMP JUMPDEST PUSH2 0xD5A CALLER DUP6 DUP6 DUP5 SUB PUSH2 0x1A4E JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x7FE CALLER DUP5 DUP5 PUSH2 0x1BA6 JUMP JUMPDEST PUSH1 0x2 PUSH1 0x8 SLOAD EQ ISZERO PUSH2 0xDC4 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 0x4DF JUMP JUMPDEST PUSH1 0x2 PUSH1 0x8 SSTORE PUSH2 0xDD2 DUP2 PUSH2 0x1E1E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE CALLER SWAP1 PUSH32 0xBB2C10EB8B0D65523A501A1C079906E38AF3C4231E31B799D408DAACD7CE7226 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP PUSH1 0x1 PUSH1 0x8 SSTORE 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 0x802 SWAP1 PUSH2 0x1FE7 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0xE46 PUSH1 0x5 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xE9C 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 0x4DF JUMP JUMPDEST PUSH2 0x802 DUP3 PUSH2 0x20B2 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0xEBF PUSH1 0x5 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xF15 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 0x4DF JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF1F PUSH2 0x18D1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x6EB1769F PUSH1 0xE1 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP4 AND PUSH1 0x24 DUP4 ADD MSTORE SWAP2 SWAP3 POP PUSH32 0x0 SWAP2 PUSH2 0xFE8 SWAP2 DUP5 SWAP2 PUSH2 0xFD7 SWAP2 SWAP1 DUP6 AND SWAP1 PUSH4 0xDD62ED3E SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xF96 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xFAA 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 0xFCE SWAP2 SWAP1 PUSH2 0x2881 JUMP JUMPDEST PUSH1 0x0 NOT SWAP1 PUSH2 0x19F9 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP2 SWAP1 PUSH2 0x219E JUMP JUMPDEST PUSH1 0x1 SWAP3 POP POP POP SWAP1 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x1006 PUSH1 0x7 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 0x1034 JUMPI POP CALLER PUSH2 0x1029 PUSH1 0x5 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 0x10A6 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 0x4DF JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1122 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x41546F6B656E5969656C64536F757263652F726563697069656E742D6E6F742D PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7A65726F2D616464726573730000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x4DF JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 DUP1 DUP3 MSTORE DUP2 DUP4 ADD SWAP1 SWAP3 MSTORE PUSH32 0x0 SWAP2 PUSH1 0x0 SWAP2 SWAP1 PUSH1 0x20 DUP1 DUP4 ADD SWAP1 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP POP SWAP1 POP PUSH32 0x0 DUP2 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x119B JUMPI PUSH2 0x119B PUSH2 0x2A9C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 DUP4 AND PUSH1 0x20 SWAP2 DUP3 MUL SWAP3 SWAP1 SWAP3 ADD ADD MSTORE PUSH1 0x40 MLOAD PUSH32 0x8B599F2600000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x0 SWAP2 DUP5 AND SWAP1 PUSH4 0x8B599F26 SWAP1 PUSH2 0x11F3 SWAP1 DUP6 SWAP1 ADDRESS SWAP1 PUSH1 0x4 ADD PUSH2 0x291F JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x120B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x121F 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 0x1243 SWAP2 SWAP1 PUSH2 0x2881 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x3111E7B3 DUP5 DUP5 DUP10 PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1277 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x294A JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1291 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x12A5 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 0x12C9 SWAP2 SWAP1 PUSH2 0x2881 JUMP JUMPDEST SWAP1 POP DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xF7A40077FF7A04C7E61F6F26FB13774259DDF1B6BCE9ECF26A8276CDD3992683 DUP4 PUSH1 0x40 MLOAD PUSH2 0x1310 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP PUSH1 0x1 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST CALLER PUSH2 0x1337 PUSH1 0x5 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x138D 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 0x4DF JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x1409 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 0x4DF JUMP JUMPDEST PUSH1 0x6 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 DUP1 ISZERO DUP1 PUSH2 0x14E9 JUMPI POP PUSH1 0x40 MLOAD PUSH4 0x6EB1769F PUSH1 0xE1 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE DUP5 AND SWAP1 PUSH4 0xDD62ED3E SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x14AF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x14C3 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 0x14E7 SWAP2 SWAP1 PUSH2 0x2881 JUMP JUMPDEST ISZERO JUMPDEST PUSH2 0x155B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x36 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5361666545524332303A20617070726F76652066726F6D206E6F6E2D7A65726F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x20746F206E6F6E2D7A65726F20616C6C6F77616E636500000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x4DF 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 0x1604 SWAP1 DUP5 SWAP1 PUSH32 0x95EA7B300000000000000000000000000000000000000000000000000000000 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 0x2278 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x1618 DUP5 DUP5 PUSH1 0x0 DUP6 PUSH2 0x235D JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0x162E PUSH1 0x2 SLOAD SWAP1 JUMP JUMPDEST SWAP1 POP DUP1 PUSH2 0x163D JUMPI DUP4 SWAP2 POP PUSH2 0x16F2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x0 SWAP1 PUSH2 0x16E2 SWAP1 DUP4 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 0x16A5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x16B9 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 0x16DD SWAP2 SWAP1 PUSH2 0x2881 JUMP JUMPDEST PUSH2 0x249C JUMP JUMPDEST SWAP1 POP PUSH2 0x16EE DUP6 DUP3 PUSH2 0x24BD JUMP JUMPDEST SWAP3 POP POP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 GT PUSH2 0x1749 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 0x41546F6B656E5969656C64536F757263652F7368617265732D67742D7A65726F PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x4DF JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x17C8 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 0x4DF 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 0x1857 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 0x4DF 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 0x1886 SWAP1 DUP5 SWAP1 PUSH2 0x2A08 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 0x9 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH32 0x365CCBBF00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE SWAP1 MLOAD PUSH1 0x0 SWAP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 PUSH4 0x365CCBBF SWAP2 PUSH1 0x4 DUP1 DUP4 ADD SWAP3 DUP7 SWAP3 SWAP2 SWAP1 DUP3 SWAP1 SUB ADD DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x192E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1942 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 0x196A SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x277A JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x197C JUMPI PUSH2 0x197C PUSH2 0x2A9C JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x261BF8B 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 0x19BC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x19D0 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 0x19F4 SWAP2 SWAP1 PUSH2 0x26B7 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x8C2 DUP3 DUP5 PUSH2 0x2A08 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 0x1604 SWAP1 DUP5 SWAP1 PUSH32 0xA9059CBB00000000000000000000000000000000000000000000000000000000 SWAP1 PUSH1 0x64 ADD PUSH2 0x15A0 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x1AC9 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 0x4DF JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1B45 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 0x4DF 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 0x1C22 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 0x4DF JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1C9E 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 0x4DF 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 0x1D2D 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 0x4DF 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 0x1D64 SWAP1 DUP5 SWAP1 PUSH2 0x29AF 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 0x1DB0 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 0x5 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR SWAP1 SWAP4 SSTORE PUSH1 0x40 MLOAD SWAP2 AND SWAP2 SWAP1 DUP3 SWAP1 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP1 PUSH1 0x0 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH2 0x1E53 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND CALLER ADDRESS DUP5 PUSH2 0x24DE JUMP JUMPDEST PUSH2 0x1E5B PUSH2 0x18D1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xE8EDA9DF00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD DUP5 SWAP1 MSTORE ADDRESS PUSH1 0x44 DUP4 ADD MSTORE PUSH1 0xBC PUSH1 0x64 DUP4 ADD MSTORE SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0xE8EDA9DF SWAP1 PUSH1 0x84 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1EED JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1F01 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1F5E 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 0x4DF JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1F70 SWAP2 SWAP1 PUSH2 0x29AF 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 0x1F9D SWAP1 DUP5 SWAP1 PUSH2 0x29AF 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 0x0 DUP1 PUSH1 0x0 PUSH2 0x1FF5 PUSH1 0x2 SLOAD SWAP1 JUMP JUMPDEST SWAP1 POP DUP1 PUSH2 0x2004 JUMPI DUP4 SWAP2 POP PUSH2 0x16F2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH2 0x1618 SWAP1 DUP3 SWAP1 PUSH2 0x20AC 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 0x206D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2081 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 0x20A5 SWAP2 SWAP1 PUSH2 0x2881 JUMP JUMPDEST DUP8 SWAP1 PUSH2 0x252F JUMP JUMPDEST SWAP1 PUSH2 0x253B JUMP JUMPDEST PUSH1 0x7 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP1 DUP4 AND DUP2 EQ ISZERO PUSH2 0x213B 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 0x4DF JUMP JUMPDEST PUSH1 0x7 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 MLOAD PUSH4 0x6EB1769F PUSH1 0xE1 SHL 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 0x21EA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x21FE 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 0x2222 SWAP2 SWAP1 PUSH2 0x2881 JUMP JUMPDEST PUSH2 0x222C SWAP2 SWAP1 PUSH2 0x29AF 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 0x1DB9 SWAP1 DUP6 SWAP1 PUSH32 0x95EA7B300000000000000000000000000000000000000000000000000000000 SWAP1 PUSH1 0x64 ADD PUSH2 0x15A0 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x22CD 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 0x1609 SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP ISZERO PUSH2 0x1604 JUMPI DUP1 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0x22EB SWAP2 SWAP1 PUSH2 0x2846 JUMP JUMPDEST PUSH2 0x1604 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 0x4DF JUMP JUMPDEST PUSH1 0x60 DUP3 SELFBALANCE LT ISZERO PUSH2 0x23D5 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 0x4DF JUMP JUMPDEST DUP5 EXTCODESIZE PUSH2 0x2423 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 0x4DF JUMP JUMPDEST PUSH1 0x0 DUP1 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 DUP8 PUSH1 0x40 MLOAD PUSH2 0x243F SWAP2 SWAP1 PUSH2 0x2903 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 0x247C 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 0x2481 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x2491 DUP3 DUP3 DUP7 PUSH2 0x2547 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x24B1 DUP5 PUSH8 0xDE0B6B3A7640000 PUSH2 0x2580 JUMP JUMPDEST SWAP1 POP PUSH2 0x1618 DUP2 DUP5 PUSH2 0x261B JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x24CA DUP4 DUP6 PUSH2 0x2580 JUMP JUMPDEST SWAP1 POP PUSH2 0x1618 DUP2 PUSH8 0xDE0B6B3A7640000 PUSH2 0x261B 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 0x1DB9 SWAP1 DUP6 SWAP1 PUSH32 0x23B872DD00000000000000000000000000000000000000000000000000000000 SWAP1 PUSH1 0x84 ADD PUSH2 0x15A0 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x8C2 DUP3 DUP5 PUSH2 0x29E9 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x8C2 DUP3 DUP5 PUSH2 0x29C7 JUMP JUMPDEST PUSH1 0x60 DUP4 ISZERO PUSH2 0x2556 JUMPI POP DUP2 PUSH2 0x8C2 JUMP JUMPDEST DUP3 MLOAD ISZERO PUSH2 0x2566 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 0x4DF SWAP2 SWAP1 PUSH2 0x297C JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x258F JUMPI POP PUSH1 0x0 PUSH2 0x802 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x259B DUP4 DUP6 PUSH2 0x29E9 JUMP JUMPDEST SWAP1 POP DUP3 PUSH2 0x25A8 DUP6 DUP4 PUSH2 0x29C7 JUMP JUMPDEST EQ PUSH2 0x8C2 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 0x536166654D6174683A206D756C7469706C69636174696F6E206F766572666C6F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7700000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x4DF JUMP JUMPDEST PUSH1 0x0 PUSH2 0x8C2 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1A DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x536166654D6174683A206469766973696F6E206279207A65726F000000000000 DUP2 MSTORE POP PUSH1 0x0 DUP2 DUP4 PUSH2 0x2679 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x4DF SWAP2 SWAP1 PUSH2 0x297C JUMP JUMPDEST POP PUSH1 0x0 PUSH2 0x2686 DUP5 DUP7 PUSH2 0x29C7 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST DUP1 MLOAD PUSH2 0xEA5 DUP2 PUSH2 0x2AC8 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x26AC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x8C2 DUP2 PUSH2 0x2AC8 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x26C9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x8C2 DUP2 PUSH2 0x2AC8 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x26E7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x26F2 DUP2 PUSH2 0x2AC8 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x2702 DUP2 PUSH2 0x2AC8 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2722 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x272D DUP2 PUSH2 0x2AC8 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x273D DUP2 PUSH2 0x2AC8 JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2761 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x276C DUP2 PUSH2 0x2AC8 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x278D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x27A5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x27B9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP2 DUP2 GT ISZERO PUSH2 0x27CB JUMPI PUSH2 0x27CB PUSH2 0x2AB2 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 0x27F0 JUMPI PUSH2 0x27F0 PUSH2 0x2AB2 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 0x280F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP6 POP JUMPDEST DUP4 DUP7 LT ISZERO PUSH2 0x2839 JUMPI PUSH2 0x2825 DUP2 PUSH2 0x268F JUMP JUMPDEST DUP6 MSTORE PUSH1 0x1 SWAP6 SWAP1 SWAP6 ADD SWAP5 SWAP4 DUP7 ADD SWAP4 DUP7 ADD PUSH2 0x2814 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 0x2858 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x8C2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x287A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2893 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x28AD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x2702 DUP2 PUSH2 0x2AC8 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 0x28F8 JUMPI DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP8 MSTORE SWAP6 DUP3 ADD SWAP6 SWAP1 DUP3 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x28D3 JUMP JUMPDEST POP SWAP5 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 MLOAD PUSH2 0x2915 DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x2A1F JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x40 DUP2 MSTORE PUSH1 0x0 PUSH2 0x2932 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x28BF JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x20 DUP4 ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x0 PUSH2 0x295D PUSH1 0x60 DUP4 ADD DUP7 PUSH2 0x28BF JUMP JUMPDEST SWAP1 POP DUP4 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x40 DUP4 ADD MSTORE SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x299B DUP2 PUSH1 0x40 DUP6 ADD PUSH1 0x20 DUP8 ADD PUSH2 0x2A1F 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 0x29C2 JUMPI PUSH2 0x29C2 PUSH2 0x2A86 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x29E4 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 0x2A03 JUMPI PUSH2 0x2A03 PUSH2 0x2A86 JUMP JUMPDEST POP MUL SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x2A1A JUMPI PUSH2 0x2A1A PUSH2 0x2A86 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x2A3A JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x2A22 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x1DB9 JUMPI POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x2A5F JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x2A80 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 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 0x1749 JUMPI PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xDF REVERT CALLDATASIZE POP 0xA8 0xCA 0xF7 DUP12 MULMOD 0xF 0xBF 0xDB NUMBER EXTCODEHASH SELFDESTRUCT 0x4B 0x28 0xCE PUSH32 0xD5814196E7F2279C4B0AB4AF964736F6C634300080600330000000000000000 ",
              "sourceMap": "1211:11168:29:-:0;;;3954:1396;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4235:6;4249:5;4256:7;2037:5:4;2029;:13;;;;;;;;;;;;:::i;:::-;-1:-1:-1;2052:17:4;;;;:7;;:17;;;;;:::i;:::-;;1963:113;;1648:24:33;1658:13;1648:9;;;:24;;:::i;:::-;-1:-1:-1;1701:1:3;1806:7;:22;-1:-1:-1;;;;;4299:30:29;::::3;4291:84;;;::::0;-1:-1:-1;;;4291:84:29;;5997:2:101;4291:84:29::3;::::0;::::3;5979:21:101::0;6036:2;6016:18;;;6009:30;6075:34;6055:18;;;6048:62;-1:-1:-1;;;6126:18:101;;;6119:39;6175:19;;4291:84:29::3;;;;;;;;;-1:-1:-1::0;;;;;4389:44:29;::::3;4381:112;;;::::0;-1:-1:-1;;;4381:112:29;;6407:2:101;4381:112:29::3;::::0;::::3;6389:21:101::0;6446:2;6426:18;;;6419:30;6485:34;6465:18;;;6458:62;6556:25;6536:18;;;6529:53;6599:19;;4381:112:29::3;6379:245:101::0;4381:112:29::3;-1:-1:-1::0;;;;;4507:60:29;::::3;4499:127;;;::::0;-1:-1:-1;;;4499:127:29;;7240:2:101;4499:127:29::3;::::0;::::3;7222:21:101::0;7279:2;7259:18;;;7252:30;7318:34;7298:18;;;7291:62;7389:24;7369:18;;;7362:52;7431:19;;4499:127:29::3;7212:244:101::0;4499:127:29::3;-1:-1:-1::0;;;;;4640:20:29;::::3;4632:73;;;::::0;-1:-1:-1;;;4632:73:29;;6831:2:101;4632:73:29::3;::::0;::::3;6813:21:101::0;6870:2;6850:18;;;6843:30;6909:34;6889:18;;;6882:62;-1:-1:-1;;;6960:18:101;;;6953:38;7008:19;;4632:73:29::3;6803:230:101::0;4632:73:29::3;4731:1;4719:9;:13;;;4711:60;;;::::0;-1:-1:-1;;;4711:60:29;;8428:2:101;4711:60:29::3;::::0;::::3;8410:21:101::0;8467:2;8447:18;;;8440:30;8506:34;8486:18;;;8479:62;-1:-1:-1;;;8557:18:101;;;8550:32;8599:19;;4711:60:29::3;8400:224:101::0;4711:60:29::3;-1:-1:-1::0;;;;;;4778:16:29::3;::::0;;;;;::::3;::::0;4800:44;;;;::::3;::::0;4850:36:::3;:76:::0;;-1:-1:-1;;;;;4850:76:29;;::::3;-1:-1:-1::0;;;;;;4850:76:29;;::::3;::::0;;;::::3;::::0;;;4932:22;::::3;::::0;;;;::::3;::::0;4992:34:::3;::::0;;-1:-1:-1;;;4992:34:29;;;;4850:36:::3;::::0;4778:16;::::3;::::0;4992:32:::3;::::0;:34:::3;::::0;;::::3;::::0;::::3;::::0;;;;;;;;4778:16;4992:34;::::3;;::::0;::::3;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;;5033:28:29::3;::::0;;;;::::3;::::0;4961:66;-1:-1:-1;5103:76:29::3;5144:14;:12;:14::i;:::-;-1:-1:-1::0;;5110:12:29::3;-1:-1:-1::0;;;;;5103:32:29::3;;;;;;;:76;;;;;:::i;:::-;5228:7;-1:-1:-1::0;;;;;5191:154:29::3;;5243:37;5288:9;5305:5;5318:7;5333:6;5191:154;;;;;;;;;;:::i;:::-;;;;;;;;4285:1065;3954:1396:::0;;;;;;;1211:11168;;3470:174:33;3546:6;;;-1:-1:-1;;;;;3562:18:33;;;-1:-1:-1;;;;;;3562:18:33;;;;;;;3595:42;;3546:6;;;3562:18;3546:6;;3595:42;;3526:17;;3595:42;3516:128;3470:174;:::o;12121:256:29:-;12254:36;;:64;;;-1:-1:-1;;;12254:64:29;;;;12168:12;;-1:-1:-1;;;;;12254:36:29;;:62;;:64;;;;;12168:12;;12254:64;;;;;;;:36;:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;12254:64:29;;;;;;;;;;;;:::i;:::-;3304:1;12254:87;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;12215:149:29;;:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;12188:184;;12121:256;:::o;1413:603:9:-;1768:10;;;1767:62;;-1:-1:-1;1784:39:9;;-1:-1:-1;;;1784:39:9;;1808:4;1784:39;;;4481:34:101;-1:-1:-1;;;;;4551:15:101;;;4531:18;;;4524:43;1784:15:9;;;;;4416:18:101;;1784:39:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:44;1767:62;1746:163;;;;-1:-1:-1;;;1746:163:9;;9242:2:101;1746:163:9;;;9224:21:101;9281:2;9261:18;;;9254:30;9320:34;9300:18;;;9293:62;9391:24;9371:18;;;9364:52;9433:19;;1746:163:9;9214:244:101;1746:163:9;1946:62;;;-1:-1:-1;;;;;4770:32:101;;1946:62:9;;;4752:51:101;4819:18;;;;4812:34;;;1946:62:9;;;;;;;;;;4725:18:101;;;;1946:62:9;;;;;;;;-1:-1:-1;;;;;1946:62:9;;;-1:-1:-1;;;1946:62:9;;;;1919:90;;1939:5;;1919:19;:90;:::i;:::-;1413:603;;;:::o;3207:706::-;3626:23;3652:69;3680:4;3652:69;;;;;;;;;;;;;;;;;3660:5;-1:-1:-1;;;;;3652:27:9;;;;;;;:69;;;;;:::i;:::-;3735:17;;3626:95;;-1:-1:-1;3735:21:9;3731:176;;3830:10;3819:30;;;;;;;;;;;;:::i;:::-;3811:85;;;;-1:-1:-1;;;3811:85:9;;8831:2:101;3811:85:9;;;8813:21:101;8870:2;8850:18;;;8843:30;8909:34;8889:18;;;8882:62;-1:-1:-1;;;8960:18:101;;;8953:40;9010:19;;3811:85:9;8803:232:101;3514:223:12;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:12;;7663:2:101;4790:81:12;;;7645:21:101;7702:2;7682:18;;;7675:30;7741:34;7721:18;;;7714:62;-1:-1:-1;;;7792:18:101;;;7785:36;7838:19;;4790:81:12;7635:228:101;4790:81:12;1087:20;;4881:60;;;;-1:-1:-1;;;4881:60:12;;8070:2:101;4881:60:12;;;8052:21:101;8109:2;8089:18;;;8082:30;8148:31;8128:18;;;8121:59;8197:18;;4881:60:12;8042:179:101;4881:60:12;4953:12;4967:23;4994:6;-1:-1:-1;;;;;4994:11:12;5013:5;5020:4;4994:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4952:73:12;;-1:-1:-1;4952:73:12;-1:-1:-1;5042:51:12;4952:73;;5080:12;5042:16;:51::i;:::-;5035:58;4601:499;-1:-1:-1;;;;;;;4601:499:12:o;7214:692::-;7360:12;7388:7;7384:516;;;-1:-1:-1;7418:10:12;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:12;;;;;;;;:::i;1211:11168:29:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1211:11168:29;;;-1:-1:-1;1211:11168:29;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:138:101;93:13;;115:31;93:13;115:31;:::i;:::-;74:78;;;:::o;157:497::-;211:5;264:3;257:4;249:6;245:17;241:27;231:2;;282:1;279;272:12;231:2;305:13;;-1:-1:-1;;;;;330:26:101;;327:2;;;359:18;;:::i;:::-;403:55;446:2;427:13;;-1:-1:-1;;423:27:101;452:4;419:38;403:55;:::i;:::-;483:2;474:7;467:19;529:3;522:4;517:2;509:6;505:15;501:26;498:35;495:2;;;546:1;543;536:12;495:2;559:64;620:2;613:4;604:7;600:18;593:4;585:6;581:17;559:64;:::i;:::-;641:7;221:433;-1:-1:-1;;;;221:433:101:o;659:251::-;729:6;782:2;770:9;761:7;757:23;753:32;750:2;;;798:1;795;788:12;750:2;830:9;824:16;849:31;874:5;849:31;:::i;915:1022::-;1010:6;1041:2;1084;1072:9;1063:7;1059:23;1055:32;1052:2;;;1100:1;1097;1090:12;1052:2;1127:16;;-1:-1:-1;;;;;1192:14:101;;;1189:2;;;1219:1;1216;1209:12;1189:2;1257:6;1246:9;1242:22;1232:32;;1302:7;1295:4;1291:2;1287:13;1283:27;1273:2;;1324:1;1321;1314:12;1273:2;1353;1347:9;1375:2;1371;1368:10;1365:2;;;1381:18;;:::i;:::-;1427:2;1424:1;1420:10;1410:20;;1450:28;1474:2;1470;1466:11;1450:28;:::i;:::-;1512:15;;;1543:12;;;;1575:11;;;1605;;;1601:20;;1598:33;-1:-1:-1;1595:2:101;;;1644:1;1641;1634:12;1595:2;1666:1;1657:10;;1676:231;1690:2;1687:1;1684:9;1676:231;;;1754:3;1748:10;1735:23;;1771:31;1796:5;1771:31;:::i;:::-;1815:18;;;1708:1;1701:9;;;;;1853:12;;;;1885;;1676:231;;;-1:-1:-1;1926:5:101;1021:916;-1:-1:-1;;;;;;;;1021:916:101:o;1942:277::-;2009:6;2062:2;2050:9;2041:7;2037:23;2033:32;2030:2;;;2078:1;2075;2068:12;2030:2;2110:9;2104:16;2163:5;2156:13;2149:21;2142:5;2139:32;2129:2;;2185:1;2182;2175:12;2224:1309;2470:6;2478;2486;2494;2502;2510;2518;2571:3;2559:9;2550:7;2546:23;2542:33;2539:2;;;2588:1;2585;2578:12;2539:2;2620:9;2614:16;2639:31;2664:5;2639:31;:::i;:::-;2739:2;2724:18;;2718:25;2689:5;;-1:-1:-1;2752:33:101;2718:25;2752:33;:::i;:::-;2856:2;2841:18;;2835:25;2804:7;;-1:-1:-1;2869:33:101;2835:25;2869:33;:::i;:::-;2973:2;2958:18;;2952:25;2921:7;;-1:-1:-1;3021:4:101;3008:18;;2996:31;;2986:2;;3041:1;3038;3031:12;2986:2;3115:3;3100:19;;3094:26;3064:7;;-1:-1:-1;;;;;;3169:14:101;;;3166:2;;;3196:1;3193;3186:12;3166:2;3219:61;3272:7;3263:6;3252:9;3248:22;3219:61;:::i;:::-;3209:71;;3326:3;3315:9;3311:19;3305:26;3289:42;;3356:2;3346:8;3343:16;3340:2;;;3372:1;3369;3362:12;3340:2;;3395:63;3450:7;3439:8;3428:9;3424:24;3395:63;:::i;:::-;3385:73;;;3477:50;3522:3;3511:9;3507:19;3477:50;:::i;:::-;3467:60;;2529:1004;;;;;;;;;;:::o;3538:184::-;3608:6;3661:2;3649:9;3640:7;3636:23;3632:32;3629:2;;;3677:1;3674;3667:12;3629:2;-1:-1:-1;3700:16:101;;3619:103;-1:-1:-1;3619:103:101:o;3727:258::-;3769:3;3807:5;3801:12;3834:6;3829:3;3822:19;3850:63;3906:6;3899:4;3894:3;3890:14;3883:4;3876:5;3872:16;3850:63;:::i;:::-;3967:2;3946:15;-1:-1:-1;;3942:29:101;3933:39;;;;3974:4;3929:50;;3777:208;-1:-1:-1;;3777:208:101:o;3990:274::-;4119:3;4157:6;4151:13;4173:53;4219:6;4214:3;4207:4;4199:6;4195:17;4173:53;:::i;:::-;4242:16;;;;;4127:137;-1:-1:-1;;4127:137:101:o;4857:708::-;5143:4;5189:1;5185;5180:3;5176:11;5172:19;5230:2;5222:6;5218:15;5207:9;5200:34;5282:4;5274:6;5270:17;5265:2;5254:9;5250:18;5243:45;5324:3;5319:2;5308:9;5304:18;5297:31;5351:46;5392:3;5381:9;5377:19;5369:6;5351:46;:::i;:::-;5445:9;5437:6;5433:22;5428:2;5417:9;5413:18;5406:50;5473:33;5499:6;5491;5473:33;:::i;:::-;5465:41;;;5555:2;5547:6;5543:15;5537:3;5526:9;5522:19;5515:44;;5152:413;;;;;;;;:::o;5570:220::-;5719:2;5708:9;5701:21;5682:4;5739:45;5780:2;5769:9;5765:18;5757:6;5739:45;:::i;9463:275::-;9534:2;9528:9;9599:2;9580:13;;-1:-1:-1;;9576:27:101;9564:40;;-1:-1:-1;;;;;9619:34:101;;9655:22;;;9616:62;9613:2;;;9681:18;;:::i;:::-;9717:2;9710:22;9508:230;;-1:-1:-1;9508:230:101:o;9743:258::-;9815:1;9825:113;9839:6;9836:1;9833:13;9825:113;;;9915:11;;;9909:18;9896:11;;;9889:39;9861:2;9854:10;9825:113;;;9956:6;9953:1;9950:13;9947:2;;;9991:1;9982:6;9977:3;9973:16;9966:27;9947:2;;9796:205;;;:::o;10006:380::-;10085:1;10081:12;;;;10128;;;10149:2;;10203:4;10195:6;10191:17;10181:27;;10149:2;10256;10248:6;10245:14;10225:18;10222:38;10219:2;;;10302:10;10297:3;10293:20;10290:1;10283:31;10337:4;10334:1;10327:15;10365:4;10362:1;10355:15;10219:2;;10061:325;;;:::o;10391:127::-;10452:10;10447:3;10443:20;10440:1;10433:31;10483:4;10480:1;10473:15;10507:4;10504:1;10497:15;10523:127;10584:10;10579:3;10575:20;10572:1;10565:31;10615:4;10612:1;10605:15;10639:4;10636:1;10629:15;10655:131;-1:-1:-1;;;;;10730:31:101;;10720:42;;10710:2;;10776:1;10773;10766:12;10710:2;10700:86;:::o;:::-;1211:11168:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@_afterTokenTransfer_811": {
                  "entryPoint": null,
                  "id": 811,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_approve_789": {
                  "entryPoint": 6734,
                  "id": 789,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_beforeTokenTransfer_800": {
                  "entryPoint": null,
                  "id": 800,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_burn_744": {
                  "entryPoint": 5964,
                  "id": 744,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_callOptionalReturn_1343": {
                  "entryPoint": 8824,
                  "id": 1343,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_depositToAave_4519": {
                  "entryPoint": 7710,
                  "id": 4519,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_lendingPool_4806": {
                  "entryPoint": 6353,
                  "id": 4806,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_mint_672": {
                  "entryPoint": 7944,
                  "id": 672,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_msgSender_1787": {
                  "entryPoint": null,
                  "id": 1787,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_requireSharesGTZero_4487": {
                  "entryPoint": 5881,
                  "id": 4487,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setManager_5165": {
                  "entryPoint": 8370,
                  "id": 5165,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_setOwner_5327": {
                  "entryPoint": 7615,
                  "id": 5327,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_sharesToToken_4473": {
                  "entryPoint": 8167,
                  "id": 4473,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_tokenToShares_4428": {
                  "entryPoint": 5664,
                  "id": 4428,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_transfer_616": {
                  "entryPoint": 7078,
                  "id": 616,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@aToken_4125": {
                  "entryPoint": null,
                  "id": 4125,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@allowance_404": {
                  "entryPoint": null,
                  "id": 404,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@approveMaxAmount_4351": {
                  "entryPoint": 3754,
                  "id": 4351,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@approve_425": {
                  "entryPoint": 2033,
                  "id": 425,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@balanceOfToken_4377": {
                  "entryPoint": 3599,
                  "id": 4377,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@balanceOf_365": {
                  "entryPoint": null,
                  "id": 365,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@calculateMantissa_4844": {
                  "entryPoint": 9372,
                  "id": 4844,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@claimOwnership_5307": {
                  "entryPoint": 2309,
                  "id": 5307,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@claimRewards_4786": {
                  "entryPoint": 4081,
                  "id": 4786,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@decimals_4304": {
                  "entryPoint": null,
                  "id": 4304,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@decreaseAllowance_539": {
                  "entryPoint": 3251,
                  "id": 539,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@depositToken_4361": {
                  "entryPoint": null,
                  "id": 4361,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@div_3446": {
                  "entryPoint": 9531,
                  "id": 3446,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@div_5025": {
                  "entryPoint": 9755,
                  "id": 5025,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@div_5053": {
                  "entryPoint": null,
                  "id": 5053,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@functionCallWithValue_1639": {
                  "entryPoint": 9053,
                  "id": 1639,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "@functionCall_1569": {
                  "entryPoint": 5641,
                  "id": 1569,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@incentivesController_4129": {
                  "entryPoint": null,
                  "id": 4129,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@increaseAllowance_500": {
                  "entryPoint": 2249,
                  "id": 500,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@isContract_1498": {
                  "entryPoint": null,
                  "id": 1498,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@lendingPoolAddressesProviderRegistry_4133": {
                  "entryPoint": null,
                  "id": 4133,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@manager_5119": {
                  "entryPoint": null,
                  "id": 5119,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@mul_3431": {
                  "entryPoint": 9519,
                  "id": 3431,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@mul_5008": {
                  "entryPoint": 9600,
                  "id": 5008,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@multiplyUintByMantissa_4871": {
                  "entryPoint": 9405,
                  "id": 4871,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@name_321": {
                  "entryPoint": 1887,
                  "id": 321,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@owner_5239": {
                  "entryPoint": null,
                  "id": 5239,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@pendingOwner_5248": {
                  "entryPoint": null,
                  "id": 5248,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@redeemToken_4648": {
                  "entryPoint": 1166,
                  "id": 4648,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@renounceOwnership_5262": {
                  "entryPoint": 2451,
                  "id": 5262,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@safeApprove_1221": {
                  "entryPoint": 5216,
                  "id": 1221,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@safeIncreaseAllowance_1257": {
                  "entryPoint": 8606,
                  "id": 1257,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@safeTransferFrom_1177": {
                  "entryPoint": 9438,
                  "id": 1177,
                  "parameterSlots": 4,
                  "returnSlots": 0
                },
                "@safeTransfer_1151": {
                  "entryPoint": 6661,
                  "id": 1151,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@setManager_5134": {
                  "entryPoint": 3633,
                  "id": 5134,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@sponsor_4711": {
                  "entryPoint": 3441,
                  "id": 4711,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@sub_3416": {
                  "entryPoint": 6649,
                  "id": 3416,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@supplyTokenTo_4558": {
                  "entryPoint": 2568,
                  "id": 4558,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@symbol_331": {
                  "entryPoint": 2777,
                  "id": 331,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@totalSupply_351": {
                  "entryPoint": null,
                  "id": 351,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@transferERC20_4691": {
                  "entryPoint": 2792,
                  "id": 4691,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@transferFrom_473": {
                  "entryPoint": 2056,
                  "id": 473,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@transferOwnership_5289": {
                  "entryPoint": 4900,
                  "id": 5289,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@transfer_386": {
                  "entryPoint": 3428,
                  "id": 386,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@verifyCallResult_1774": {
                  "entryPoint": 9543,
                  "id": 1774,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_decode_address_fromMemory": {
                  "entryPoint": 9871,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_address": {
                  "entryPoint": 9882,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_address_fromMemory": {
                  "entryPoint": 9911,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_addresst_address": {
                  "entryPoint": 9940,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_addresst_addresst_uint256": {
                  "entryPoint": 9997,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_decode_tuple_t_addresst_uint256": {
                  "entryPoint": 10062,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_array$_t_address_$dyn_memory_ptr_fromMemory": {
                  "entryPoint": 10106,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_bool_fromMemory": {
                  "entryPoint": 10310,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_contract$_IERC20_$890t_addresst_uint256": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_decode_tuple_t_uint256": {
                  "entryPoint": 10344,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint256_fromMemory": {
                  "entryPoint": 10369,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint256t_address": {
                  "entryPoint": 10394,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_encode_array_address_dyn": {
                  "entryPoint": 10431,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed": {
                  "entryPoint": 10499,
                  "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_address_t_uint256_t_address__to_t_address_t_uint256_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_address_t_uint256_t_address_t_uint16__to_t_address_t_uint256_t_address_t_uint16__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 5,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_array$_t_address_$dyn_memory_ptr_t_address__to_t_array$_t_address_$dyn_memory_ptr_t_address__fromStack_reversed": {
                  "entryPoint": 10527,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_array$_t_address_$dyn_memory_ptr_t_uint256_t_address__to_t_array$_t_address_$dyn_memory_ptr_t_uint256_t_address__fromStack_reversed": {
                  "entryPoint": 10570,
                  "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$_ATokenInterface_$3549__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_IAaveIncentivesController_$3785__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_ILendingPoolAddressesProviderRegistry_$4000__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": 10620,
                  "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_0eecb4d73b7dd302dba8b39ceec0162d7ad7a461ff78f9fce8b1f398117ab865__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_1bf032026f7f3166eed41a0b22281ee2dc0f4865f7f0b8fa994d39075c59a36b__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_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32__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_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_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_9113bb53c2876a3805b2c9242029423fc540a728243ce887ab24c82cf119fba3__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_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308__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_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_e0ea3b80d6a4b357c4f343ccb01f3a5dbf9620c5a40541ebd498c67541770b49__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_ef945ddb1bfdc0da870feb4560d868b047642b4ac7f2fb7f8b7c51cb4a411e25__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_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "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": 10671,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_div_t_uint256": {
                  "entryPoint": 10695,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_mul_t_uint256": {
                  "entryPoint": 10729,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint256": {
                  "entryPoint": 10760,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "copy_memory_to_memory": {
                  "entryPoint": 10783,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "extract_byte_array_length": {
                  "entryPoint": 10827,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "panic_error_0x11": {
                  "entryPoint": 10886,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x32": {
                  "entryPoint": 10908,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x41": {
                  "entryPoint": 10930,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "validator_revert_address": {
                  "entryPoint": 10952,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:22009:101",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:101",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "74:78:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "84:22:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "99:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "93:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "93:13:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "84:5:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "140:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "115:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "115:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "115:31:101"
                            }
                          ]
                        },
                        "name": "abi_decode_address_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "53:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "64:5:101",
                            "type": ""
                          }
                        ],
                        "src": "14:138:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "227:177:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "273:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "282:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "285:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "275:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "275:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "275:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "248:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "257:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "244:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "244:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "269:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "240:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "240:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "237:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "298:36:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "324:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "311:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "311:23:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "302:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "368:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "343:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "343:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "343:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "383:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "393:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "383:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "193:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "204:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "216:6:101",
                            "type": ""
                          }
                        ],
                        "src": "157:247:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "490:170:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "536:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "545:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "548:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "538:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "538:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "538:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "511:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "520:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "507:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "507:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "532:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "503:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "503:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "500:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "561:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "580:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "574:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "574:16:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "565:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "624:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "599:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "599:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "599:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "639:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "649:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "639:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "456:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "467:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "479:6:101",
                            "type": ""
                          }
                        ],
                        "src": "409:251:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "752:301:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "798:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "807:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "810:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "800:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "800:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "800:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "773:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "782:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "769:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "769:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "794:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "765:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "765:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "762:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "823:36:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "849:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "836:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "836:23:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "827:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "893:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "868:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "868:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "868:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "908:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "918:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "908:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "932:47:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "964:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "975:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "960:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "960:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "947:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "947:32:101"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "936:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1013:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "988:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "988:33:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "988:33:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1030:17:101",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "1040:7:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1030:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "710:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "721:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "733:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "741:6:101",
                            "type": ""
                          }
                        ],
                        "src": "665:388:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1162:352:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1208:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1217:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1220:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1210:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1210:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1210:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1183:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1192:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1179:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1179:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1204:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1175:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1175:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1172:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1233:36:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1259:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1246:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1246:23:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1237:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1303:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1278:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1278:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1278:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1318:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1328:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1318:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1342:47:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1374:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1385:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1370:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1370:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1357:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1357:32:101"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1346:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1423:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1398:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1398:33:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1398:33:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1440:17:101",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "1450:7:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1440:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1466:42:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1493:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1504:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1489:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1489:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1476:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1476:32:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "1466:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1112:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1123:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1135:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1143:6:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "1151:6:101",
                            "type": ""
                          }
                        ],
                        "src": "1058:456:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1606:228:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1652:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1661:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1664:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1654:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1654:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1654:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1627:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1636:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1623:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1623:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1648:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1619:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1619:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1616:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1677:36:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1703:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1690:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1690:23:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1681:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1747:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1722:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1722:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1722:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1762:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1772:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1762:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1786:42:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1813:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1824:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1809:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1809:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1796:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1796:32:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1786:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1564:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1575:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1587:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1595:6:101",
                            "type": ""
                          }
                        ],
                        "src": "1519:315:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1945:1093:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1955:12:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "1965:2:101",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1959:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2012:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2021:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2024:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2014:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2014:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2014:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1987:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1996:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1983:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1983:23:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2008:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1979:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1979:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1976:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2037:30:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2057:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2051:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2051:16:101"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "2041:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2076:28:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "2086:18:101",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "2080:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2131:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2140:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2143:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2133:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2133:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2133:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "2119:6:101"
                                  },
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "2127:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2116:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2116:14:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2113:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2156:32:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2170:9:101"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "2181:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2166:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2166:22:101"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "2160:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2236:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2245:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2248:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2238:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2238:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2238:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_3",
                                            "nodeType": "YulIdentifier",
                                            "src": "2215:2:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2219:4:101",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2211:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2211:13:101"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2226:7:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "2207:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2207:27:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "2200:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2200:35:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2197:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2261:19:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "2277:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2271:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2271:9:101"
                              },
                              "variables": [
                                {
                                  "name": "_4",
                                  "nodeType": "YulTypedName",
                                  "src": "2265:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2303:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "2305:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2305:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2305:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "2295:2:101"
                                  },
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "2299:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2292:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2292:10:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2289:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2334:20:101",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2348:1:101",
                                    "type": "",
                                    "value": "5"
                                  },
                                  {
                                    "name": "_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "2351:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "shl",
                                  "nodeType": "YulIdentifier",
                                  "src": "2344:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2344:10:101"
                              },
                              "variables": [
                                {
                                  "name": "_5",
                                  "nodeType": "YulTypedName",
                                  "src": "2338:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2363:23:101",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2383:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2377:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2377:9:101"
                              },
                              "variables": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "2367:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2395:115:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "2417:6:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_5",
                                            "nodeType": "YulIdentifier",
                                            "src": "2433:2:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2437:2:101",
                                            "type": "",
                                            "value": "63"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2429:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2429:11:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2442:66:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2425:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2425:84:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2413:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2413:97:101"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "2399:10:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2569:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "2571:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2571:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2571:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "2528:10:101"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "2540:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "2525:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2525:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "2548:10:101"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "2560:6:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "2545:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2545:22:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "2522:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2522:46:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2519:2:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2607:2:101",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "2611:10:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2600:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2600:22:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2600:22:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2631:17:101",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "2642:6:101"
                              },
                              "variables": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulTypedName",
                                  "src": "2635:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "2664:6:101"
                                  },
                                  {
                                    "name": "_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "2672:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2657:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2657:18:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2657:18:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2684:22:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "2695:6:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2703:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2691:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2691:15:101"
                              },
                              "variableNames": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulIdentifier",
                                  "src": "2684:3:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2715:22:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "2730:2:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2734:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2726:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2726:11:101"
                              },
                              "variables": [
                                {
                                  "name": "src",
                                  "nodeType": "YulTypedName",
                                  "src": "2719:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2783:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2792:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2795:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2785:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2785:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2785:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_3",
                                            "nodeType": "YulIdentifier",
                                            "src": "2760:2:101"
                                          },
                                          {
                                            "name": "_5",
                                            "nodeType": "YulIdentifier",
                                            "src": "2764:2:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2756:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2756:11:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "2769:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2752:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2752:20:101"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "2774:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2749:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2749:33:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2746:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2808:10:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "2817:1:101",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "2812:1:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2872:135:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "2893:3:101"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "2928:3:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "abi_decode_address_fromMemory",
                                            "nodeType": "YulIdentifier",
                                            "src": "2898:29:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "2898:34:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "2886:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2886:47:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2886:47:101"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "2946:19:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "2957:3:101"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "2962:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "2953:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2953:12:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "dst",
                                        "nodeType": "YulIdentifier",
                                        "src": "2946:3:101"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "2978:19:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "2989:3:101"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "2994:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "2985:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2985:12:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "src",
                                        "nodeType": "YulIdentifier",
                                        "src": "2978:3:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "2838:1:101"
                                  },
                                  {
                                    "name": "_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "2841:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2835:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2835:9:101"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "2845:18:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "2847:14:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "2856:1:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2859:1:101",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "2852:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2852:9:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "2847:1:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "2831:3:101",
                                "statements": []
                              },
                              "src": "2827:180:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3016:16:101",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "3026:6:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3016:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_array$_t_address_$dyn_memory_ptr_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1911:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1922:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1934:6:101",
                            "type": ""
                          }
                        ],
                        "src": "1839:1199:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3121:199:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3167:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3176:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3179:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3169:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3169:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3169:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3142:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3151:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3138:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3138:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3163:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3134:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3134:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "3131:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3192:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3211:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3205:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3205:16:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "3196:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3274:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3283:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3286:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3276:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3276:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3276:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "3243:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "3264:5:101"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "iszero",
                                              "nodeType": "YulIdentifier",
                                              "src": "3257:6:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "3257:13:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "3250:6:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3250:21:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "3240:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3240:32:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "3233:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3233:40:101"
                              },
                              "nodeType": "YulIf",
                              "src": "3230:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3299:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "3309:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3299:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_bool_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3087:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "3098:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3110:6:101",
                            "type": ""
                          }
                        ],
                        "src": "3043:277:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3443:352:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3489:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3498:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3501:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3491:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3491:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3491:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3464:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3473:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3460:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3460:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3485:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3456:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3456:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "3453:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3514:36:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3540:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3527:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3527:23:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "3518:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "3584:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "3559:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3559:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3559:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3599:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "3609:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3599:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3623:47:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3655:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3666:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3651:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3651:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3638:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3638:32:101"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3627:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3704:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "3679:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3679:33:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3679:33:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3721:17:101",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "3731:7:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "3721:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3747:42:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3774:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3785:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3770:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3770:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3757:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3757:32:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "3747:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_contract$_IERC20_$890t_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3393:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "3404:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3416:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "3424:6:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "3432:6:101",
                            "type": ""
                          }
                        ],
                        "src": "3325:470:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3870:110:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3916:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3925:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3928:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3918:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3918:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3918:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3891:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3900:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3887:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3887:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3912:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3883:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3883:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "3880:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3941:33:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3964:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3951:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3951:23:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3941:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3836:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "3847:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3859:6:101",
                            "type": ""
                          }
                        ],
                        "src": "3800:180:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4066:103:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4112:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4121:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4124:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4114:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4114:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4114:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "4087:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4096:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "4083:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4083:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4108:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4079:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4079:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "4076:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4137:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4153:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4147:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4147:16:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "4137:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4032:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "4043:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4055:6:101",
                            "type": ""
                          }
                        ],
                        "src": "3985:184:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4261:228:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4307:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4316:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4319:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4309:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4309:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4309:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "4282:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4291:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "4278:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4278:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4303:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4274:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4274:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "4271:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4332:33:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4355:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4342:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4342:23:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "4332:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4374:45:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4404:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4415:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4400:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4400:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4387:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4387:32:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "4378:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "4453:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "4428:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4428:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4428:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4468:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "4478:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "4468:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4219:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "4230:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4242:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "4250:6:101",
                            "type": ""
                          }
                        ],
                        "src": "4174:315:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4555:423:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4565:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "4585:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4579:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4579:12:101"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "4569:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "4607:3:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "4612:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4600:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4600:19:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4600:19:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4628:14:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "4638:4:101",
                                "type": "",
                                "value": "0x20"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4632:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4651:19:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "4662:3:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4667:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4658:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4658:12:101"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "4651:3:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4679:28:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "4697:5:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4704:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4693:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4693:14:101"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "4683:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4716:10:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "4725:1:101",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "4720:1:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4784:169:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "4805:3:101"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "srcPtr",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "4820:6:101"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "mload",
                                                "nodeType": "YulIdentifier",
                                                "src": "4814:5:101"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "4814:13:101"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "4829:42:101",
                                              "type": "",
                                              "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "and",
                                            "nodeType": "YulIdentifier",
                                            "src": "4810:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "4810:62:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "4798:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4798:75:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4798:75:101"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "4886:19:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "4897:3:101"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "4902:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "4893:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4893:12:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "4886:3:101"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "4918:25:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "4932:6:101"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "4940:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "4928:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4928:15:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "4918:6:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "4746:1:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "4749:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4743:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4743:13:101"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "4757:18:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "4759:14:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "4768:1:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4771:1:101",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "4764:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4764:9:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "4759:1:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "4739:3:101",
                                "statements": []
                              },
                              "src": "4735:218:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4962:10:101",
                              "value": {
                                "name": "pos",
                                "nodeType": "YulIdentifier",
                                "src": "4969:3:101"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "4962:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_array_address_dyn",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "4532:5:101",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "4539:3:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "4547:3:101",
                            "type": ""
                          }
                        ],
                        "src": "4494:484:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5120:137:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5130:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "5150:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "5144:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5144:13:101"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "5134:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "5192:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5200:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5188:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5188:17:101"
                                  },
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "5207:3:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "5212:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "5166:21:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5166:53:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5166:53:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5228:23:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "5239:3:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "5244:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5235:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5235:16:101"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "5228:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "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": "5096:3:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5101:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "5112:3:101",
                            "type": ""
                          }
                        ],
                        "src": "4983:274:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5363:125:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "5373:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5385:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5396:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5381:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5381:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5373:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5415:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "5430:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5438:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5426:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5426:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5408:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5408:74:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5408:74:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5332:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5343:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5354:4:101",
                            "type": ""
                          }
                        ],
                        "src": "5262:226:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5622:198:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "5632:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5644:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5655:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5640:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5640:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5632:4:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5667:52:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "5677:42:101",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "5671:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5735:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "5750:6:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "5758:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5746:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5746:15:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5728:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5728:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5728:34:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5782:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5793:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5778:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5778:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "5802:6:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "5810:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5798:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5798:15:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5771:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5771:43:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5771:43:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5583:9:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "5594:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5602:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5613:4:101",
                            "type": ""
                          }
                        ],
                        "src": "5493:327:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5982:241:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "5992:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6004:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6015:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6000:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6000:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5992:4:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6027:52:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "6037:42:101",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6031:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6095:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "6110:6:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6118:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6106:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6106:15:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6088:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6088:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6088:34:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6142:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6153:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6138:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6138:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6162:6:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6170:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6158:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6158:15:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6131:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6131:43:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6131:43:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6194:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6205:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6190:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6190:18:101"
                                  },
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "6210:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6183:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6183:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6183:34:101"
                            }
                          ]
                        },
                        "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": "5935:9:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "5946:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "5954:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5962:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5973:4:101",
                            "type": ""
                          }
                        ],
                        "src": "5825:398:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6357:168:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "6367:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6379:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6390:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6375:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6375:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6367:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6409:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "6424:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6432:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6420:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6420:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6402:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6402:74:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6402:74:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6496:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6507:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6492:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6492:18:101"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6512:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6485:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6485:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6485:34:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6318:9:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "6329:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6337:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6348:4:101",
                            "type": ""
                          }
                        ],
                        "src": "6228:297:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6687:241:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "6697:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6709:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6720:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6705:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6705:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6697:4:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6732:52:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "6742:42:101",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6736:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6800:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "6815:6:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6823:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6811:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6811:15:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6793:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6793:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6793:34:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6847:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6858:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6843:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6843:18:101"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6863:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6836:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6836:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6836:34:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6890:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6901:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6886:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6886:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value2",
                                        "nodeType": "YulIdentifier",
                                        "src": "6910:6:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6918:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6906:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6906:15:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6879:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6879:43:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6879:43:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_uint256_t_address__to_t_address_t_uint256_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6640:9:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "6651:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "6659:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6667:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6678:4:101",
                            "type": ""
                          }
                        ],
                        "src": "6530:398:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7116:298:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7126:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7138:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7149:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7134:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7134:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7126:4:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7162:52:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "7172:42:101",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7166:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7230:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "7245:6:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "7253:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "7241:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7241:15:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7223:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7223:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7223:34:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7277:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7288:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7273:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7273:18:101"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7293:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7266:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7266:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7266:34:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7320:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7331:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7316:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7316:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value2",
                                        "nodeType": "YulIdentifier",
                                        "src": "7340:6:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "7348:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "7336:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7336:15:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7309:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7309:43:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7309:43:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7372:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7383:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7368:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7368:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value3",
                                        "nodeType": "YulIdentifier",
                                        "src": "7392:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7400:6:101",
                                        "type": "",
                                        "value": "0xffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "7388:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7388:19:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7361:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7361:47:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7361:47:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_uint256_t_address_t_uint16__to_t_address_t_uint256_t_address_t_uint16__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7061:9:101",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "7072:6:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "7080:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "7088:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7096:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7107:4:101",
                            "type": ""
                          }
                        ],
                        "src": "6933:481:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7598:202:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7615:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7626:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7608:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7608:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7608:21:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7638:64:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "7675:6:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7687:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7698:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7683:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7683:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_array_address_dyn",
                                  "nodeType": "YulIdentifier",
                                  "src": "7646:28:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7646:56:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7638:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7722:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7733:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7718:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7718:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "7742:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7750:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "7738:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7738:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7711:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7711:83:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7711:83:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_array$_t_address_$dyn_memory_ptr_t_address__to_t_array$_t_address_$dyn_memory_ptr_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7559:9:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "7570:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7578:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7589:4:101",
                            "type": ""
                          }
                        ],
                        "src": "7419:381:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8012:245:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8029:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8040:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8022:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8022:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8022:21:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8052:64:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "8089:6:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8101:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8112:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8097:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8097:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_array_address_dyn",
                                  "nodeType": "YulIdentifier",
                                  "src": "8060:28:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8060:56:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8052:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8136:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8147:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8132:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8132:18:101"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8152:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8125:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8125:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8125:34:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8179:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8190:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8175:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8175:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value2",
                                        "nodeType": "YulIdentifier",
                                        "src": "8199:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8207:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "8195:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8195:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8168:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8168:83:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8168:83:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_array$_t_address_$dyn_memory_ptr_t_uint256_t_address__to_t_array$_t_address_$dyn_memory_ptr_t_uint256_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7965:9:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "7976:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "7984:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7992:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8003:4:101",
                            "type": ""
                          }
                        ],
                        "src": "7805:452:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8357:92:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8367:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8379:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8390:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8375:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8375:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8367:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8409:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "8434:6:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "8427:6:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "8427:14:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "8420:6:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8420:22:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8402:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8402:41:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8402:41:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8326:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8337:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8348:4:101",
                            "type": ""
                          }
                        ],
                        "src": "8262:187:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8579:125:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8589:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8601:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8612:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8597:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8597:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8589:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8631:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "8646:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8654:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "8642:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8642:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8624:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8624:74:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8624:74:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_ATokenInterface_$3549__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8548:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8559:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8570:4:101",
                            "type": ""
                          }
                        ],
                        "src": "8454:250:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8844:125:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8854:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8866:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8877:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8862:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8862:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8854:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8896:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "8911:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8919:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "8907:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8907:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8889:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8889:74:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8889:74:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IAaveIncentivesController_$3785__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8813:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8824:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8835:4:101",
                            "type": ""
                          }
                        ],
                        "src": "8709:260:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9121:125:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "9131:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9143:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9154:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9139:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9139:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9131:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9173:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "9188:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9196:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "9184:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9184:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9166:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9166:74:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9166:74:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_ILendingPoolAddressesProviderRegistry_$4000__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9090:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "9101:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9112:4:101",
                            "type": ""
                          }
                        ],
                        "src": "8974:272:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9372:321:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9389:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9400:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9382:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9382:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9382:21:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9412:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "9432:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "9426:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9426:13:101"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "9416:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9459:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9470:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9455:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9455:18:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "9475:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9448:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9448:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9448:34:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "9517:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9525:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9513:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9513:15:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9534:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9545:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9530:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9530:18:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "9550:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "9491:21:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9491:66:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9491:66:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9566:121:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9582:9:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "9601:6:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "9609:2:101",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "9597:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "9597:15:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "9614:66:101",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "9593:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "9593:88:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9578:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9578:104:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9684:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9574:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9574:113:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9566:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9341:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "9352:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9363:4:101",
                            "type": ""
                          }
                        ],
                        "src": "9251:442:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9872:225:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9889:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9900:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9882:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9882:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9882:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9923:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9934:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9919:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9919:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9939:2:101",
                                    "type": "",
                                    "value": "35"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9912:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9912:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9912:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9962:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9973:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9958:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9958:18:101"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220746f20746865207a65726f2061646472",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9978:34:101",
                                    "type": "",
                                    "value": "ERC20: transfer to the zero addr"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9951:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9951:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9951:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10033:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10044:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10029:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10029:18:101"
                                  },
                                  {
                                    "hexValue": "657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10049:5:101",
                                    "type": "",
                                    "value": "ess"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10022:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10022:33:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10022:33:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10064:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10076:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10087:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10072:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10072:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10064:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9849:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9863:4:101",
                            "type": ""
                          }
                        ],
                        "src": "9698:399:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10276:235:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10293:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10304:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10286:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10286:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10286:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10327:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10338:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10323:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10323:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10343:2:101",
                                    "type": "",
                                    "value": "45"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10316:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10316:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10316:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10366:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10377:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10362:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10362:18:101"
                                  },
                                  {
                                    "hexValue": "41546f6b656e5969656c64536f757263652f61546f6b656e2d7472616e736665",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10382:34:101",
                                    "type": "",
                                    "value": "ATokenYieldSource/aToken-transfe"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10355:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10355:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10355:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10437:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10448:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10433:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10433:18:101"
                                  },
                                  {
                                    "hexValue": "722d6e6f742d616c6c6f776564",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10453:15:101",
                                    "type": "",
                                    "value": "r-not-allowed"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10426:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10426:43:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10426:43:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10478:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10490:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10501:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10486:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10486:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10478:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_0eecb4d73b7dd302dba8b39ceec0162d7ad7a461ff78f9fce8b1f398117ab865__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10253:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10267:4:101",
                            "type": ""
                          }
                        ],
                        "src": "10102:409:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10690:224:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10707:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10718:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10700:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10700:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10700:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10741:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10752:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10737:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10737:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10757:2:101",
                                    "type": "",
                                    "value": "34"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10730:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10730:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10730:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10780:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10791:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10776:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10776:18:101"
                                  },
                                  {
                                    "hexValue": "45524332303a206275726e20616d6f756e7420657863656564732062616c616e",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10796:34:101",
                                    "type": "",
                                    "value": "ERC20: burn amount exceeds balan"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10769:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10769:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10769:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10851:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10862:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10847:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10847:18:101"
                                  },
                                  {
                                    "hexValue": "6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10867:4:101",
                                    "type": "",
                                    "value": "ce"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10840:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10840:32:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10840:32:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10881:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10893:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10904:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10889:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10889:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10881:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10667:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10681:4:101",
                            "type": ""
                          }
                        ],
                        "src": "10516:398:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11093:182:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11110:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11121:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11103:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11103:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11103:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11144:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11155:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11140:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11140:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11160:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11133:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11133:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11133:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11183:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11194:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11179:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11179:18:101"
                                  },
                                  {
                                    "hexValue": "41546f6b656e5969656c64536f757263652f7368617265732d67742d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11199:34:101",
                                    "type": "",
                                    "value": "ATokenYieldSource/shares-gt-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11172:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11172:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11172:62:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11243:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11255:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11266:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11251:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11251:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11243:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_1bf032026f7f3166eed41a0b22281ee2dc0f4865f7f0b8fa994d39075c59a36b__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11070:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11084:4:101",
                            "type": ""
                          }
                        ],
                        "src": "10919:356:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11454:224:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11471:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11482:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11464:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11464:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11464:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11505:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11516:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11501:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11501:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11521:2:101",
                                    "type": "",
                                    "value": "34"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11494:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11494:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11494:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11544:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11555:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11540:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11540:18:101"
                                  },
                                  {
                                    "hexValue": "45524332303a20617070726f766520746f20746865207a65726f206164647265",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11560:34:101",
                                    "type": "",
                                    "value": "ERC20: approve to the zero addre"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11533:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11533:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11533:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11615:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11626:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11611:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11611:18:101"
                                  },
                                  {
                                    "hexValue": "7373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11631:4:101",
                                    "type": "",
                                    "value": "ss"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11604:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11604:32:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11604:32:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11645:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11657:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11668:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11653:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11653:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11645:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11431:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11445:4:101",
                            "type": ""
                          }
                        ],
                        "src": "11280:398:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11857:225:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11874:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11885:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11867:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11867:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11867:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11908:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11919:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11904:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11904:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11924:2:101",
                                    "type": "",
                                    "value": "35"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11897:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11897:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11897:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11947:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11958:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11943:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11943:18:101"
                                  },
                                  {
                                    "hexValue": "4d616e61676561626c652f6578697374696e672d6d616e616765722d61646472",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11963:34:101",
                                    "type": "",
                                    "value": "Manageable/existing-manager-addr"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11936:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11936:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11936:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12018:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12029:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12014:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12014:18:101"
                                  },
                                  {
                                    "hexValue": "657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "12034:5:101",
                                    "type": "",
                                    "value": "ess"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12007:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12007:33:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12007:33:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12049:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12061:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12072:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12057:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12057:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12049:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11834:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11848:4:101",
                            "type": ""
                          }
                        ],
                        "src": "11683:399:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12261:228:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12278:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12289:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12271:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12271:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12271:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12312:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12323:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12308:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12308:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12328:2:101",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12301:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12301:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12301:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12351:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12362:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12347:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12347:18:101"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732062",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "12367:34:101",
                                    "type": "",
                                    "value": "ERC20: transfer amount exceeds b"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12340:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12340:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12340:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12422:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12433:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12418:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12418:18:101"
                                  },
                                  {
                                    "hexValue": "616c616e6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "12438:8:101",
                                    "type": "",
                                    "value": "alance"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12411:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12411:36:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12411:36:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12456:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12468:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12479:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12464:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12464:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12456:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12238:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12252:4:101",
                            "type": ""
                          }
                        ],
                        "src": "12087:402:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12668:228:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12685:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12696:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12678:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12678:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12678:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12719:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12730:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12715:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12715:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12735:2:101",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12708:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12708:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12708:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12758:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12769:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12754:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12754:18:101"
                                  },
                                  {
                                    "hexValue": "416464726573733a20696e73756666696369656e742062616c616e636520666f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "12774:34:101",
                                    "type": "",
                                    "value": "Address: insufficient balance fo"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12747:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12747:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12747:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12829:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12840:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12825:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12825:18:101"
                                  },
                                  {
                                    "hexValue": "722063616c6c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "12845:8:101",
                                    "type": "",
                                    "value": "r call"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12818:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12818:36:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12818:36:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12863:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12875:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12886:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12871:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12871:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12863:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12645:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12659:4:101",
                            "type": ""
                          }
                        ],
                        "src": "12494:402:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13075:174:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13092:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13103:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13085:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13085:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13085:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13126:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13137:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13122:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13122:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13142:2:101",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13115:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13115:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13115:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13165:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13176:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13161:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13161:18:101"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "13181:26:101",
                                    "type": "",
                                    "value": "Ownable/caller-not-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13154:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13154:54:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13154:54:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13217:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13229:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13240:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13225:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13225:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "13217:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "13052:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "13066:4:101",
                            "type": ""
                          }
                        ],
                        "src": "12901:348:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13428:181:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13445:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13456:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13438:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13438:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13438:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13479:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13490:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13475:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13475:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13495:2:101",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13468:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13468:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13468:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13518:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13529:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13514:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13514:18:101"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "13534:33:101",
                                    "type": "",
                                    "value": "Ownable/caller-not-pendingOwner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13507:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13507:61:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13507:61:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13577:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13589:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13600:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13585:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13585:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "13577:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "13405:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "13419:4:101",
                            "type": ""
                          }
                        ],
                        "src": "13254:355:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13788:223:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13805:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13816:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13798:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13798:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13798:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13839:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13850:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13835:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13835:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13855:2:101",
                                    "type": "",
                                    "value": "33"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13828:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13828:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13828:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13878:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13889:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13874:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13874:18:101"
                                  },
                                  {
                                    "hexValue": "536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "13894:34:101",
                                    "type": "",
                                    "value": "SafeMath: multiplication overflo"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13867:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13867:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13867:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13949:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13960:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13945:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13945:18:101"
                                  },
                                  {
                                    "hexValue": "77",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "13965:3:101",
                                    "type": "",
                                    "value": "w"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13938:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13938:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13938:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13978:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13990:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14001:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13986:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13986:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "13978:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_9113bb53c2876a3805b2c9242029423fc540a728243ce887ab24c82cf119fba3__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "13765:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "13779:4:101",
                            "type": ""
                          }
                        ],
                        "src": "13614:397:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14190:230:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14207:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14218:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14200:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14200:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14200:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14241:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14252:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14237:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14237:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14257:2:101",
                                    "type": "",
                                    "value": "40"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14230:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14230:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14230:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14280:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14291:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14276:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14276:18:101"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732061",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "14296:34:101",
                                    "type": "",
                                    "value": "ERC20: transfer amount exceeds a"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14269:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14269:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14269:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14351:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14362:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14347:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14347:18:101"
                                  },
                                  {
                                    "hexValue": "6c6c6f77616e6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "14367:10:101",
                                    "type": "",
                                    "value": "llowance"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14340:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14340:38:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14340:38:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "14387:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14399:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14410:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "14395:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14395:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "14387:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "14167:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "14181:4:101",
                            "type": ""
                          }
                        ],
                        "src": "14016:404:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14599:223:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14616:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14627:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14609:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14609:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14609:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14650:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14661:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14646:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14646:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14666:2:101",
                                    "type": "",
                                    "value": "33"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14639:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14639:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14639:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14689:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14700:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14685:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14685:18:101"
                                  },
                                  {
                                    "hexValue": "45524332303a206275726e2066726f6d20746865207a65726f20616464726573",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "14705:34:101",
                                    "type": "",
                                    "value": "ERC20: burn from the zero addres"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14678:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14678:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14678:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14760:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14771:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14756:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14756:18:101"
                                  },
                                  {
                                    "hexValue": "73",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "14776:3:101",
                                    "type": "",
                                    "value": "s"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14749:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14749:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14749:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "14789:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14801:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14812:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "14797:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14797:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "14789:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "14576:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "14590:4:101",
                            "type": ""
                          }
                        ],
                        "src": "14425:397:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15001:227:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15018:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15029:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15011:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15011:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15011:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15052:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15063:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15048:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15048:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15068:2:101",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15041:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15041:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15041:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15091:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15102:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15087:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15087:18:101"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e736665722066726f6d20746865207a65726f206164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "15107:34:101",
                                    "type": "",
                                    "value": "ERC20: transfer from the zero ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15080:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15080:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15080:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15162:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15173:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15158:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15158:18:101"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "15178:7:101",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15151:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15151:35:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15151:35:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "15195:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15207:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15218:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "15203:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15203:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "15195:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "14978:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "14992:4:101",
                            "type": ""
                          }
                        ],
                        "src": "14827:401:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15407:228:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15424:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15435:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15417:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15417:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15417:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15458:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15469:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15454:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15454:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15474:2:101",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15447:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15447:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15447:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15497:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15508:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15493:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15493:18:101"
                                  },
                                  {
                                    "hexValue": "4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f72",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "15513:34:101",
                                    "type": "",
                                    "value": "Manageable/caller-not-manager-or"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15486:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15486:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15486:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15568:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15579:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15564:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15564:18:101"
                                  },
                                  {
                                    "hexValue": "2d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "15584:8:101",
                                    "type": "",
                                    "value": "-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15557:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15557:36:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15557:36:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "15602:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15614:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15625:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "15610:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15610:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "15602:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "15384:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "15398:4:101",
                            "type": ""
                          }
                        ],
                        "src": "15233:402:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15814:226:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15831:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15842:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15824:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15824:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15824:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15865:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15876:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15861:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15861:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15881:2:101",
                                    "type": "",
                                    "value": "36"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15854:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15854:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15854:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15904:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15915:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15900:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15900:18:101"
                                  },
                                  {
                                    "hexValue": "45524332303a20617070726f76652066726f6d20746865207a65726f20616464",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "15920:34:101",
                                    "type": "",
                                    "value": "ERC20: approve from the zero add"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15893:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15893:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15893:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15975:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15986:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15971:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15971:18:101"
                                  },
                                  {
                                    "hexValue": "72657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "15991:6:101",
                                    "type": "",
                                    "value": "ress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15964:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15964:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15964:34:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "16007:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16019:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16030:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "16015:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16015:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "16007:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "15791:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "15805:4:101",
                            "type": ""
                          }
                        ],
                        "src": "15640:400:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "16219:179:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16236:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16247:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16229:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16229:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16229:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16270:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16281:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16266:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16266:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16286:2:101",
                                    "type": "",
                                    "value": "29"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16259:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16259:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16259:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16309:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16320:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16305:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16305:18:101"
                                  },
                                  {
                                    "hexValue": "416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "16325:31:101",
                                    "type": "",
                                    "value": "Address: call to non-contract"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16298:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16298:59:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16298:59:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "16366:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16378:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16389:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "16374:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16374:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "16366:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "16196:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "16210:4:101",
                            "type": ""
                          }
                        ],
                        "src": "16045:353:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "16577:227:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16594:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16605:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16587:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16587:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16587:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16628:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16639:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16624:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16624:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16644:2:101",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16617:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16617:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16617:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16667:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16678:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16663:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16663:18:101"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d6164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "16683:34:101",
                                    "type": "",
                                    "value": "Ownable/pendingOwner-not-zero-ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16656:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16656:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16656:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16738:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16749:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16734:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16734:18:101"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "16754:7:101",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16727:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16727:35:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16727:35:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "16771:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16783:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16794:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "16779:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16779:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "16771:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "16554:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "16568:4:101",
                            "type": ""
                          }
                        ],
                        "src": "16403:401:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "16983:234:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "17000:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17011:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16993:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16993:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16993:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17034:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17045:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17030:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17030:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17050:2:101",
                                    "type": "",
                                    "value": "44"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17023:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17023:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17023:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17073:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17084:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17069:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17069:18:101"
                                  },
                                  {
                                    "hexValue": "41546f6b656e5969656c64536f757263652f726563697069656e742d6e6f742d",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "17089:34:101",
                                    "type": "",
                                    "value": "ATokenYieldSource/recipient-not-"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17062:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17062:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17062:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17144:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17155:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17140:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17140:18:101"
                                  },
                                  {
                                    "hexValue": "7a65726f2d61646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "17160:14:101",
                                    "type": "",
                                    "value": "zero-address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17133:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17133:42:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17133:42:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "17184:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "17196:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17207:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "17192:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17192:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "17184:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_e0ea3b80d6a4b357c4f343ccb01f3a5dbf9620c5a40541ebd498c67541770b49__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "16960:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "16974:4:101",
                            "type": ""
                          }
                        ],
                        "src": "16809:408:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "17396:232:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "17413:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17424:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17406:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17406:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17406:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17447:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17458:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17443:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17443:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17463:2:101",
                                    "type": "",
                                    "value": "42"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17436:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17436:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17436:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17486:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17497:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17482:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17482:18:101"
                                  },
                                  {
                                    "hexValue": "5361666545524332303a204552433230206f7065726174696f6e20646964206e",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "17502:34:101",
                                    "type": "",
                                    "value": "SafeERC20: ERC20 operation did n"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17475:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17475:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17475:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17557:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17568:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17553:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17553:18:101"
                                  },
                                  {
                                    "hexValue": "6f742073756363656564",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "17573:12:101",
                                    "type": "",
                                    "value": "ot succeed"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17546:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17546:40:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17546:40:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "17595:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "17607:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17618:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "17603:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17603:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "17595:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_e11ad79d1e4a7f2e5f376964cb99e8e8f7904e3fc16a109f7a7ecb9aa7956dcd__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "17373:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "17387:4:101",
                            "type": ""
                          }
                        ],
                        "src": "17222:406:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "17807:181:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "17824:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17835:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17817:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17817:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17817:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17858:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17869:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17854:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17854:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17874:2:101",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17847:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17847:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17847:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17897:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17908:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17893:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17893:18:101"
                                  },
                                  {
                                    "hexValue": "5265656e7472616e637947756172643a207265656e7472616e742063616c6c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "17913:33:101",
                                    "type": "",
                                    "value": "ReentrancyGuard: reentrant call"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17886:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17886:61:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17886:61:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "17956:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "17968:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17979:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "17964:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17964:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "17956:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "17784:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "17798:4:101",
                            "type": ""
                          }
                        ],
                        "src": "17633:355:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "18167:244:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "18184:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18195:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18177:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18177:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18177:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "18218:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18229:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "18214:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18214:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18234:2:101",
                                    "type": "",
                                    "value": "54"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18207:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18207:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18207:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "18257:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18268:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "18253:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18253:18:101"
                                  },
                                  {
                                    "hexValue": "5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "18273:34:101",
                                    "type": "",
                                    "value": "SafeERC20: approve from non-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18246:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18246:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18246:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "18328:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18339:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "18324:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18324:18:101"
                                  },
                                  {
                                    "hexValue": "20746f206e6f6e2d7a65726f20616c6c6f77616e6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "18344:24:101",
                                    "type": "",
                                    "value": " to non-zero allowance"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18317:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18317:52:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18317:52:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "18378:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "18390:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18401:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "18386:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18386:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "18378:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_ef945ddb1bfdc0da870feb4560d868b047642b4ac7f2fb7f8b7c51cb4a411e25__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "18144:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "18158:4:101",
                            "type": ""
                          }
                        ],
                        "src": "17993:418:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "18590:227:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "18607:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18618:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18600:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18600:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18600:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "18641:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18652:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "18637:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18637:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18657:2:101",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18630:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18630:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18630:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "18680:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18691:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "18676:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18676:18:101"
                                  },
                                  {
                                    "hexValue": "45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "18696:34:101",
                                    "type": "",
                                    "value": "ERC20: decreased allowance below"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18669:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18669:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18669:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "18751:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18762:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "18747:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18747:18:101"
                                  },
                                  {
                                    "hexValue": "207a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "18767:7:101",
                                    "type": "",
                                    "value": " zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18740:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18740:35:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18740:35:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "18784:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "18796:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18807:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "18792:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18792:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "18784:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "18567:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "18581:4:101",
                            "type": ""
                          }
                        ],
                        "src": "18416:401:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "18996:181:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "19013:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19024:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19006:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19006:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19006:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "19047:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "19058:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "19043:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19043:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19063:2:101",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19036:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19036:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19036:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "19086:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "19097:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "19082:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19082:18:101"
                                  },
                                  {
                                    "hexValue": "45524332303a206d696e7420746f20746865207a65726f2061646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "19102:33:101",
                                    "type": "",
                                    "value": "ERC20: mint to the zero address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19075:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19075:61:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19075:61:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "19145:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "19157:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19168:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "19153:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19153:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "19145:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "18973:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "18987:4:101",
                            "type": ""
                          }
                        ],
                        "src": "18822:355:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "19283:76:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "19293:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "19305:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19316:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "19301:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19301:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "19293:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "19335:9:101"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "19346:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19328:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19328:25:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19328:25:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "19252:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "19263:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "19274:4:101",
                            "type": ""
                          }
                        ],
                        "src": "19182:177:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "19493:119:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "19503:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "19515:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19526:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "19511:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19511:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "19503:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "19545:9:101"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "19556:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19538:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19538:25:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19538:25:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "19583:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "19594:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "19579:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19579:18:101"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "19599:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19572:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19572:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19572:34:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "19454:9:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "19465:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "19473:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "19484:4:101",
                            "type": ""
                          }
                        ],
                        "src": "19364:248:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "19714:87:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "19724:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "19736:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19747:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "19732:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19732:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "19724:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "19766:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "19781:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "19789:4:101",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "19777:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19777:17:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19759:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19759:36:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19759:36:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "19683:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "19694:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "19705:4:101",
                            "type": ""
                          }
                        ],
                        "src": "19617:184:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "19854:80:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "19881:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "19883:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "19883:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "19883:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "19870:1:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "19877:1:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "19873:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19873:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "19867:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19867:13:101"
                              },
                              "nodeType": "YulIf",
                              "src": "19864:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "19912:16:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "19923:1:101"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "19926:1:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "19919:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19919:9:101"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "19912:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "19837:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "19840:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "19846:3:101",
                            "type": ""
                          }
                        ],
                        "src": "19806:128:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "19985:228:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "20016:168:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "20037:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "20040:77:101",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "20030:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "20030:88:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "20030:88:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "20138:1:101",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "20141:4:101",
                                          "type": "",
                                          "value": "0x12"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "20131:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "20131:15:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "20131:15:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "20166:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "20169:4:101",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "20159:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "20159:15:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "20159:15:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "20005:1:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "19998:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19998:9:101"
                              },
                              "nodeType": "YulIf",
                              "src": "19995:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "20193:14:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "20202:1:101"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "20205:1:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "div",
                                  "nodeType": "YulIdentifier",
                                  "src": "20198:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20198:9:101"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "20193:1:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_div_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "19970:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "19973:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "19979:1:101",
                            "type": ""
                          }
                        ],
                        "src": "19939:274:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "20270:176:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "20389:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "20391:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "20391:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "20391:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "x",
                                            "nodeType": "YulIdentifier",
                                            "src": "20301:1:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "20294:6:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "20294:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "20287:6:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "20287:17:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "20309:1:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "20316:66:101",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                          },
                                          {
                                            "name": "x",
                                            "nodeType": "YulIdentifier",
                                            "src": "20384:1:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "div",
                                          "nodeType": "YulIdentifier",
                                          "src": "20312:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "20312:74:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "20306:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "20306:81:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "20283:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20283:105:101"
                              },
                              "nodeType": "YulIf",
                              "src": "20280:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "20420:20:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "20435:1:101"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "20438:1:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mul",
                                  "nodeType": "YulIdentifier",
                                  "src": "20431:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20431:9:101"
                              },
                              "variableNames": [
                                {
                                  "name": "product",
                                  "nodeType": "YulIdentifier",
                                  "src": "20420:7:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_mul_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "20249:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "20252:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "product",
                            "nodeType": "YulTypedName",
                            "src": "20258:7:101",
                            "type": ""
                          }
                        ],
                        "src": "20218:228:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "20500:76:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "20522:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "20524:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "20524:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "20524:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "20516:1:101"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "20519:1:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "20513:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20513:8:101"
                              },
                              "nodeType": "YulIf",
                              "src": "20510:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "20553:17:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "20565:1:101"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "20568:1:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "20561:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20561:9:101"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "20553:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "20482:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "20485:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "20491:4:101",
                            "type": ""
                          }
                        ],
                        "src": "20451:125:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "20634:205:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "20644:10:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "20653:1:101",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "20648:1:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "20713:63:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "20738:3:101"
                                            },
                                            {
                                              "name": "i",
                                              "nodeType": "YulIdentifier",
                                              "src": "20743:1:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "20734:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "20734:11:101"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "20757:3:101"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "20762:1:101"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "20753:3:101"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "20753:11:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "20747:5:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "20747:18:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "20727:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "20727:39:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "20727:39:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "20674:1:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "20677:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "20671:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20671:13:101"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "20685:19:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "20687:15:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "20696:1:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "20699:2:101",
                                          "type": "",
                                          "value": "32"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "20692:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "20692:10:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "20687:1:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "20667:3:101",
                                "statements": []
                              },
                              "src": "20663:113:101"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "20802:31:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "20815:3:101"
                                            },
                                            {
                                              "name": "length",
                                              "nodeType": "YulIdentifier",
                                              "src": "20820:6:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "20811:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "20811:16:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "20829:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "20804:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "20804:27:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "20804:27:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "20791:1:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "20794:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "20788:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20788:13:101"
                              },
                              "nodeType": "YulIf",
                              "src": "20785:2:101"
                            }
                          ]
                        },
                        "name": "copy_memory_to_memory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "src",
                            "nodeType": "YulTypedName",
                            "src": "20612:3:101",
                            "type": ""
                          },
                          {
                            "name": "dst",
                            "nodeType": "YulTypedName",
                            "src": "20617:3:101",
                            "type": ""
                          },
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "20622:6:101",
                            "type": ""
                          }
                        ],
                        "src": "20581:258:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "20899:382:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "20909:22:101",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "20923:1:101",
                                    "type": "",
                                    "value": "1"
                                  },
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "20926:4:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "shr",
                                  "nodeType": "YulIdentifier",
                                  "src": "20919:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20919:12:101"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "20909:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "20940:38:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "20970:4:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "20976:1:101",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "20966:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20966:12:101"
                              },
                              "variables": [
                                {
                                  "name": "outOfPlaceEncoding",
                                  "nodeType": "YulTypedName",
                                  "src": "20944:18:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "21017:31:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "21019:27:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "length",
                                          "nodeType": "YulIdentifier",
                                          "src": "21033:6:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "21041:4:101",
                                          "type": "",
                                          "value": "0x7f"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "and",
                                        "nodeType": "YulIdentifier",
                                        "src": "21029:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "21029:17:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "21019:6:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "20997:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "20990:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20990:26:101"
                              },
                              "nodeType": "YulIf",
                              "src": "20987:2:101"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "21107:168:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "21128:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "21131:77:101",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "21121:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "21121:88:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "21121:88:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "21229:1:101",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "21232:4:101",
                                          "type": "",
                                          "value": "0x22"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "21222:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "21222:15:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "21222:15:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "21257:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "21260:4:101",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "21250:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "21250:15:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "21250:15:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "21063:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "21086:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "21094:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "21083:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "21083:14:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "21060:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21060:38:101"
                              },
                              "nodeType": "YulIf",
                              "src": "21057:2:101"
                            }
                          ]
                        },
                        "name": "extract_byte_array_length",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "data",
                            "nodeType": "YulTypedName",
                            "src": "20879:4:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "20888:6:101",
                            "type": ""
                          }
                        ],
                        "src": "20844:437:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "21318:152:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "21335:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "21338:77:101",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "21328:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21328:88:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "21328:88:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "21432:1:101",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "21435:4:101",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "21425:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21425:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "21425:15:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "21456:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "21459:4:101",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "21449:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21449:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "21449:15:101"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "21286:184:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "21507:152:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "21524:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "21527:77:101",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "21517:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21517:88:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "21517:88:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "21621:1:101",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "21624:4:101",
                                    "type": "",
                                    "value": "0x32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "21614:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21614:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "21614:15:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "21645:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "21648:4:101",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "21638:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21638:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "21638:15:101"
                            }
                          ]
                        },
                        "name": "panic_error_0x32",
                        "nodeType": "YulFunctionDefinition",
                        "src": "21475:184:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "21696:152:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "21713:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "21716:77:101",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "21706:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21706:88:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "21706:88:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "21810:1:101",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "21813:4:101",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "21803:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21803:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "21803:15:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "21834:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "21837:4:101",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "21827:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21827:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "21827:15:101"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "21664:184:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "21898:109:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "21985:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "21994:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "21997:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "21987:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "21987:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "21987:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "21921:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "21932:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "21939:42:101",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "21928:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "21928:54:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "21918:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "21918:65:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "21911:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21911:73:101"
                              },
                              "nodeType": "YulIf",
                              "src": "21908:2:101"
                            }
                          ]
                        },
                        "name": "validator_revert_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "21887:5:101",
                            "type": ""
                          }
                        ],
                        "src": "21853:154:101"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_address_fromMemory(offset) -> value\n    {\n        value := mload(offset)\n        validator_revert_address(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        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_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_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_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_array$_t_address_$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, abi_decode_address_fromMemory(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_$890t_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_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_encode_array_address_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), 0xffffffffffffffffffffffffffffffffffffffff))\n            pos := add(pos, _1)\n            srcPtr := add(srcPtr, _1)\n        }\n        end := pos\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_address_t_uint256_t_address__to_t_address_t_uint256_t_address__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), value1)\n        mstore(add(headStart, 64), and(value2, _1))\n    }\n    function abi_encode_tuple_t_address_t_uint256_t_address_t_uint16__to_t_address_t_uint256_t_address_t_uint16__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 128)\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffff\n        mstore(headStart, and(value0, _1))\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), and(value2, _1))\n        mstore(add(headStart, 96), and(value3, 0xffff))\n    }\n    function abi_encode_tuple_t_array$_t_address_$dyn_memory_ptr_t_address__to_t_array$_t_address_$dyn_memory_ptr_t_address__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        mstore(headStart, 64)\n        tail := abi_encode_array_address_dyn(value0, add(headStart, 64))\n        mstore(add(headStart, 32), and(value1, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_array$_t_address_$dyn_memory_ptr_t_uint256_t_address__to_t_array$_t_address_$dyn_memory_ptr_t_uint256_t_address__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        mstore(headStart, 96)\n        tail := abi_encode_array_address_dyn(value0, add(headStart, 96))\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), and(value2, 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$_ATokenInterface_$3549__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$_IAaveIncentivesController_$3785__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$_ILendingPoolAddressesProviderRegistry_$4000__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_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_0eecb4d73b7dd302dba8b39ceec0162d7ad7a461ff78f9fce8b1f398117ab865__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 45)\n        mstore(add(headStart, 64), \"ATokenYieldSource/aToken-transfe\")\n        mstore(add(headStart, 96), \"r-not-allowed\")\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_1bf032026f7f3166eed41a0b22281ee2dc0f4865f7f0b8fa994d39075c59a36b__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), \"ATokenYieldSource/shares-gt-zero\")\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_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_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_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_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_9113bb53c2876a3805b2c9242029423fc540a728243ce887ab24c82cf119fba3__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), \"SafeMath: multiplication overflo\")\n        mstore(add(headStart, 96), \"w\")\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_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_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_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_e0ea3b80d6a4b357c4f343ccb01f3a5dbf9620c5a40541ebd498c67541770b49__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 44)\n        mstore(add(headStart, 64), \"ATokenYieldSource/recipient-not-\")\n        mstore(add(headStart, 96), \"zero-address\")\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_ef945ddb1bfdc0da870feb4560d868b047642b4ac7f2fb7f8b7c51cb4a411e25__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 54)\n        mstore(add(headStart, 64), \"SafeERC20: approve from non-zero\")\n        mstore(add(headStart, 96), \" to non-zero allowance\")\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_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 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 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, 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_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": 101,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {
                "4125": [
                  {
                    "length": 32,
                    "start": 840
                  },
                  {
                    "length": 32,
                    "start": 2973
                  },
                  {
                    "length": 32,
                    "start": 4457
                  },
                  {
                    "length": 32,
                    "start": 5731
                  },
                  {
                    "length": 32,
                    "start": 8235
                  }
                ],
                "4129": [
                  {
                    "length": 32,
                    "start": 917
                  },
                  {
                    "length": 32,
                    "start": 4403
                  }
                ],
                "4136": [
                  {
                    "length": 32,
                    "start": 991
                  },
                  {
                    "length": 32,
                    "start": 1314
                  },
                  {
                    "length": 32,
                    "start": 1507
                  },
                  {
                    "length": 32,
                    "start": 3911
                  },
                  {
                    "length": 32,
                    "start": 7723
                  },
                  {
                    "length": 32,
                    "start": 7819
                  }
                ],
                "4139": [
                  {
                    "length": 32,
                    "start": 596
                  }
                ]
              },
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106101cf5760003560e01c806395d89b4111610104578063b99152d0116100a2578063dd62ed3e11610071578063dd62ed3e1461041e578063e30c397814610457578063ef5cfb8c14610468578063f2fde38b1461047b57600080fd5b8063b99152d0146103ca578063c89039c5146103dd578063d0ebdbe714610403578063daa4f9751461041657600080fd5b8063a457c2d7116100de578063a457c2d71461036a578063a9059cbb1461037d578063af1df25514610390578063b6cce5e2146103b757600080fd5b806395d89b41146103285780639db5dbe414610330578063a0c1f15e1461034357600080fd5b8063481c6a7511610171578063715018a61161014b578063715018a6146102e9578063873ba41e146102f157806387a6eeef146103045780638da5cb5b1461031757600080fd5b8063481c6a75146102915780634e71e0c8146102b657806370a08231146102c057600080fd5b806318160ddd116101ad57806318160ddd1461023257806323b872dd1461023a578063313ce5671461024d578063395093511461027e57600080fd5b8063013054c2146101d457806306fdde03146101fa578063095ea7b31461020f575b600080fd5b6101e76101e2366004612868565b61048e565b6040519081526020015b60405180910390f35b61020261075f565b6040516101f1919061297c565b61022261021d36600461274e565b6107f1565b60405190151581526020016101f1565b6002546101e7565b61022261024836600461270d565b610808565b60405160ff7f00000000000000000000000000000000000000000000000000000000000000001681526020016101f1565b61022261028c36600461274e565b6108c9565b6007546001600160a01b03165b6040516001600160a01b0390911681526020016101f1565b6102be610905565b005b6101e76102ce36600461269a565b6001600160a01b031660009081526020819052604090205490565b6102be610993565b60095461029e906001600160a01b031681565b6102be61031236600461289a565b610a08565b6005546001600160a01b031661029e565b610202610ad9565b6102be61033e36600461270d565b610ae8565b61029e7f000000000000000000000000000000000000000000000000000000000000000081565b61022261037836600461274e565b610cb3565b61022261038b36600461274e565b610d64565b61029e7f000000000000000000000000000000000000000000000000000000000000000081565b6102be6103c5366004612868565b610d71565b6101e76103d836600461269a565b610e0f565b7f000000000000000000000000000000000000000000000000000000000000000061029e565b61022261041136600461269a565b610e31565b610222610eaa565b6101e761042c3660046126d4565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6006546001600160a01b031661029e565b61022261047636600461269a565b610ff1565b6102be61048936600461269a565b611324565b6000600260085414156104e85760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b600260085560006104f883611620565b9050610503816116f9565b61050d338261174c565b6040516370a0823160e01b81523060048201527f0000000000000000000000000000000000000000000000000000000000000000906000906001600160a01b038316906370a082319060240160206040518083038186803b15801561057157600080fd5b505afa158015610585573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105a99190612881565b90506105b36118d1565b6040517f69328dec0000000000000000000000000000000000000000000000000000000081526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811660048301526024820188905230604483015291909116906369328dec90606401602060405180830381600087803b15801561063e57600080fd5b505af1158015610652573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106769190612881565b506040516370a0823160e01b81523060048201526000906001600160a01b038416906370a082319060240160206040518083038186803b1580156106b957600080fd5b505afa1580156106cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106f19190612881565b905060006106ff82846119f9565b90506107156001600160a01b0385163383611a05565b604080518681526020810189905233917f5c9b0a8fe13a826ca676f5ad4f98c747b5086beb79ab58589b8211b62fa32fb9910160405180910390a260016008559695505050505050565b60606003805461076e90612a4b565b80601f016020809104026020016040519081016040528092919081815260200182805461079a90612a4b565b80156107e75780601f106107bc576101008083540402835291602001916107e7565b820191906000526020600020905b8154815290600101906020018083116107ca57829003601f168201915b5050505050905090565b60006107fe338484611a4e565b5060015b92915050565b6000610815848484611ba6565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156108af5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084016104df565b6108bc8533858403611a4e565b60019150505b9392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916107fe9185906109009086906129af565b611a4e565b6006546001600160a01b0316331461095f5760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e65720060448201526064016104df565b600654610974906001600160a01b0316611dbf565b6006805473ffffffffffffffffffffffffffffffffffffffff19169055565b336109a66005546001600160a01b031690565b6001600160a01b0316146109fc5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016104df565b610a066000611dbf565b565b60026008541415610a5b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016104df565b60026008556000610a6b83611620565b9050610a76816116f9565b610a7f83611e1e565b610a898282611f08565b60408051828152602081018590526001600160a01b0384169133917fdef5cc95ad9b1c65c586d0fce815ec764b575719636edf58ff2553ae6f110452910160405180910390a35050600160085550565b60606004805461076e90612a4b565b33610afb6007546001600160a01b031690565b6001600160a01b03161480610b29575033610b1e6005546001600160a01b031690565b6001600160a01b0316145b610b9b5760405162461bcd60e51b815260206004820152602660248201527f4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f7260448201527f2d6f776e6572000000000000000000000000000000000000000000000000000060648201526084016104df565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03161415610c435760405162461bcd60e51b815260206004820152602d60248201527f41546f6b656e5969656c64536f757263652f61546f6b656e2d7472616e73666560448201527f722d6e6f742d616c6c6f7765640000000000000000000000000000000000000060648201526084016104df565b610c576001600160a01b0384168383611a05565b826001600160a01b0316826001600160a01b0316336001600160a01b03167f29fcb7bb954d37295343e742bab21760748bdba4e026e4469a8100183996913884604051610ca691815260200190565b60405180910390a4505050565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610d4d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016104df565b610d5a3385858403611a4e565b5060019392505050565b60006107fe338484611ba6565b60026008541415610dc45760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016104df565b6002600855610dd281611e1e565b60405181815233907fbb2c10eb8b0d65523a501a1c079906e38af3c4231e31b799d408daacd7ce72269060200160405180910390a2506001600855565b6001600160a01b03811660009081526020819052604081205461080290611fe7565b600033610e466005546001600160a01b031690565b6001600160a01b031614610e9c5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016104df565b610802826120b2565b919050565b600033610ebf6005546001600160a01b031690565b6001600160a01b031614610f155760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016104df565b6000610f1f6118d1565b604051636eb1769f60e11b81523060048201526001600160a01b0380831660248301529192507f000000000000000000000000000000000000000000000000000000000000000091610fe8918491610fd7919085169063dd62ed3e9060440160206040518083038186803b158015610f9657600080fd5b505afa158015610faa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fce9190612881565b600019906119f9565b6001600160a01b038416919061219e565b60019250505090565b6000336110066007546001600160a01b031690565b6001600160a01b031614806110345750336110296005546001600160a01b031690565b6001600160a01b0316145b6110a65760405162461bcd60e51b815260206004820152602660248201527f4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f7260448201527f2d6f776e6572000000000000000000000000000000000000000000000000000060648201526084016104df565b6001600160a01b0382166111225760405162461bcd60e51b815260206004820152602c60248201527f41546f6b656e5969656c64536f757263652f726563697069656e742d6e6f742d60448201527f7a65726f2d61646472657373000000000000000000000000000000000000000060648201526084016104df565b6040805160018082528183019092527f00000000000000000000000000000000000000000000000000000000000000009160009190602080830190803683370190505090507f00000000000000000000000000000000000000000000000000000000000000008160008151811061119b5761119b612a9c565b6001600160a01b0392831660209182029290920101526040517f8b599f26000000000000000000000000000000000000000000000000000000008152600091841690638b599f26906111f3908590309060040161291f565b60206040518083038186803b15801561120b57600080fd5b505afa15801561121f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112439190612881565b90506000836001600160a01b0316633111e7b38484896040518463ffffffff1660e01b81526004016112779392919061294a565b602060405180830381600087803b15801561129157600080fd5b505af11580156112a5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112c99190612881565b9050856001600160a01b0316336001600160a01b03167ff7a40077ff7a04c7e61f6f26fb13774259ddf1b6bce9ecf26a8276cdd39926838360405161131091815260200190565b60405180910390a350600195945050505050565b336113376005546001600160a01b031690565b6001600160a01b03161461138d5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016104df565b6001600160a01b0381166114095760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016104df565b6006805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b8015806114e95750604051636eb1769f60e11b81523060048201526001600160a01b03838116602483015284169063dd62ed3e9060440160206040518083038186803b1580156114af57600080fd5b505afa1580156114c3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114e79190612881565b155b61155b5760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527f20746f206e6f6e2d7a65726f20616c6c6f77616e63650000000000000000000060648201526084016104df565b6040516001600160a01b0383166024820152604481018290526116049084907f095ea7b300000000000000000000000000000000000000000000000000000000906064015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217909152612278565b505050565b6060611618848460008561235d565b949350505050565b600080600061162e60025490565b90508061163d578391506116f2565b6040516370a0823160e01b81523060048201526000906116e29083906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906370a082319060240160206040518083038186803b1580156116a557600080fd5b505afa1580156116b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116dd9190612881565b61249c565b90506116ee85826124bd565b9250505b5092915050565b600081116117495760405162461bcd60e51b815260206004820181905260248201527f41546f6b656e5969656c64536f757263652f7368617265732d67742d7a65726f60448201526064016104df565b50565b6001600160a01b0382166117c85760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016104df565b6001600160a01b038216600090815260208190526040902054818110156118575760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f636500000000000000000000000000000000000000000000000000000000000060648201526084016104df565b6001600160a01b0383166000908152602081905260408120838303905560028054849290611886908490612a08565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600954604080517f365ccbbf00000000000000000000000000000000000000000000000000000000815290516000926001600160a01b03169163365ccbbf9160048083019286929190829003018186803b15801561192e57600080fd5b505afa158015611942573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261196a919081019061277a565b60008151811061197c5761197c612a9c565b60200260200101516001600160a01b0316630261bf8b6040518163ffffffff1660e01b815260040160206040518083038186803b1580156119bc57600080fd5b505afa1580156119d0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119f491906126b7565b905090565b60006108c28284612a08565b6040516001600160a01b0383166024820152604481018290526116049084907fa9059cbb00000000000000000000000000000000000000000000000000000000906064016115a0565b6001600160a01b038316611ac95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016104df565b6001600160a01b038216611b455760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016104df565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611c225760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016104df565b6001600160a01b038216611c9e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016104df565b6001600160a01b03831660009081526020819052604090205481811015611d2d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016104df565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611d649084906129af565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611db091815260200190565b60405180910390a35b50505050565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611e536001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000163330846124de565b611e5b6118d1565b6040517fe8eda9df0000000000000000000000000000000000000000000000000000000081526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811660048301526024820184905230604483015260bc6064830152919091169063e8eda9df90608401600060405180830381600087803b158015611eed57600080fd5b505af1158015611f01573d6000803e3d6000fd5b5050505050565b6001600160a01b038216611f5e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016104df565b8060026000828254611f7091906129af565b90915550506001600160a01b03821660009081526020819052604081208054839290611f9d9084906129af565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6000806000611ff560025490565b905080612004578391506116f2565b6040516370a0823160e01b81523060048201526116189082906120ac906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906370a082319060240160206040518083038186803b15801561206d57600080fd5b505afa158015612081573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120a59190612881565b879061252f565b9061253b565b6007546000906001600160a01b0390811690831681141561213b5760405162461bcd60e51b815260206004820152602360248201527f4d616e61676561626c652f6578697374696e672d6d616e616765722d6164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016104df565b6007805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385811691821790925560405190918316907f9cb45c728de594dab506a1f1a8554e24c8eeaf983618d5ec5dd7bc6f3c49feee90600090a350600192915050565b604051636eb1769f60e11b81523060048201526001600160a01b038381166024830152600091839186169063dd62ed3e9060440160206040518083038186803b1580156121ea57600080fd5b505afa1580156121fe573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122229190612881565b61222c91906129af565b6040516001600160a01b038516602482015260448101829052909150611db99085907f095ea7b300000000000000000000000000000000000000000000000000000000906064016115a0565b60006122cd826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166116099092919063ffffffff16565b80519091501561160457808060200190518101906122eb9190612846565b6116045760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016104df565b6060824710156123d55760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c000000000000000000000000000000000000000000000000000060648201526084016104df565b843b6124235760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016104df565b600080866001600160a01b0316858760405161243f9190612903565b60006040518083038185875af1925050503d806000811461247c576040519150601f19603f3d011682016040523d82523d6000602084013e612481565b606091505b5091509150612491828286612547565b979650505050505050565b6000806124b184670de0b6b3a7640000612580565b9050611618818461261b565b6000806124ca8385612580565b905061161881670de0b6b3a764000061261b565b6040516001600160a01b0380851660248301528316604482015260648101829052611db99085907f23b872dd00000000000000000000000000000000000000000000000000000000906084016115a0565b60006108c282846129e9565b60006108c282846129c7565b606083156125565750816108c2565b8251156125665782518084602001fd5b8160405162461bcd60e51b81526004016104df919061297c565b60008261258f57506000610802565b600061259b83856129e9565b9050826125a885836129c7565b146108c25760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60448201527f770000000000000000000000000000000000000000000000000000000000000060648201526084016104df565b60006108c283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250600081836126795760405162461bcd60e51b81526004016104df919061297c565b50600061268684866129c7565b95945050505050565b8051610ea581612ac8565b6000602082840312156126ac57600080fd5b81356108c281612ac8565b6000602082840312156126c957600080fd5b81516108c281612ac8565b600080604083850312156126e757600080fd5b82356126f281612ac8565b9150602083013561270281612ac8565b809150509250929050565b60008060006060848603121561272257600080fd5b833561272d81612ac8565b9250602084013561273d81612ac8565b929592945050506040919091013590565b6000806040838503121561276157600080fd5b823561276c81612ac8565b946020939093013593505050565b6000602080838503121561278d57600080fd5b825167ffffffffffffffff808211156127a557600080fd5b818501915085601f8301126127b957600080fd5b8151818111156127cb576127cb612ab2565b8060051b604051601f19603f830116810181811085821117156127f0576127f0612ab2565b604052828152858101935084860182860187018a101561280f57600080fd5b600095505b83861015612839576128258161268f565b855260019590950194938601938601612814565b5098975050505050505050565b60006020828403121561285857600080fd5b815180151581146108c257600080fd5b60006020828403121561287a57600080fd5b5035919050565b60006020828403121561289357600080fd5b5051919050565b600080604083850312156128ad57600080fd5b82359150602083013561270281612ac8565b600081518084526020808501945080840160005b838110156128f85781516001600160a01b0316875295820195908201906001016128d3565b509495945050505050565b60008251612915818460208701612a1f565b9190910192915050565b60408152600061293260408301856128bf565b90506001600160a01b03831660208301529392505050565b60608152600061295d60608301866128bf565b90508360208301526001600160a01b0383166040830152949350505050565b602081526000825180602084015261299b816040850160208701612a1f565b601f01601f19169190910160400192915050565b600082198211156129c2576129c2612a86565b500190565b6000826129e457634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615612a0357612a03612a86565b500290565b600082821015612a1a57612a1a612a86565b500390565b60005b83811015612a3a578181015183820152602001612a22565b83811115611db95750506000910152565b600181811c90821680612a5f57607f821691505b60208210811415612a8057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461174957600080fdfea2646970667358221220dffd3650a8caf78b090fbfdb433fff4b28ce7f0d5814196e7f2279c4b0ab4af964736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x1CF JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x95D89B41 GT PUSH2 0x104 JUMPI DUP1 PUSH4 0xB99152D0 GT PUSH2 0xA2 JUMPI DUP1 PUSH4 0xDD62ED3E GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x41E JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x457 JUMPI DUP1 PUSH4 0xEF5CFB8C EQ PUSH2 0x468 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x47B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xB99152D0 EQ PUSH2 0x3CA JUMPI DUP1 PUSH4 0xC89039C5 EQ PUSH2 0x3DD JUMPI DUP1 PUSH4 0xD0EBDBE7 EQ PUSH2 0x403 JUMPI DUP1 PUSH4 0xDAA4F975 EQ PUSH2 0x416 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xA457C2D7 GT PUSH2 0xDE JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x36A JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x37D JUMPI DUP1 PUSH4 0xAF1DF255 EQ PUSH2 0x390 JUMPI DUP1 PUSH4 0xB6CCE5E2 EQ PUSH2 0x3B7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x328 JUMPI DUP1 PUSH4 0x9DB5DBE4 EQ PUSH2 0x330 JUMPI DUP1 PUSH4 0xA0C1F15E EQ PUSH2 0x343 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x481C6A75 GT PUSH2 0x171 JUMPI DUP1 PUSH4 0x715018A6 GT PUSH2 0x14B JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x2E9 JUMPI DUP1 PUSH4 0x873BA41E EQ PUSH2 0x2F1 JUMPI DUP1 PUSH4 0x87A6EEEF EQ PUSH2 0x304 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x317 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x481C6A75 EQ PUSH2 0x291 JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0x2B6 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x2C0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x18160DDD GT PUSH2 0x1AD JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x232 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x23A JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x24D JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x27E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x13054C2 EQ PUSH2 0x1D4 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x1FA JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x20F JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1E7 PUSH2 0x1E2 CALLDATASIZE PUSH1 0x4 PUSH2 0x2868 JUMP JUMPDEST PUSH2 0x48E JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x202 PUSH2 0x75F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1F1 SWAP2 SWAP1 PUSH2 0x297C JUMP JUMPDEST PUSH2 0x222 PUSH2 0x21D CALLDATASIZE PUSH1 0x4 PUSH2 0x274E JUMP JUMPDEST PUSH2 0x7F1 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1F1 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH2 0x1E7 JUMP JUMPDEST PUSH2 0x222 PUSH2 0x248 CALLDATASIZE PUSH1 0x4 PUSH2 0x270D JUMP JUMPDEST PUSH2 0x808 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF PUSH32 0x0 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1F1 JUMP JUMPDEST PUSH2 0x222 PUSH2 0x28C CALLDATASIZE PUSH1 0x4 PUSH2 0x274E JUMP JUMPDEST PUSH2 0x8C9 JUMP JUMPDEST PUSH1 0x7 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 0x1F1 JUMP JUMPDEST PUSH2 0x2BE PUSH2 0x905 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1E7 PUSH2 0x2CE CALLDATASIZE PUSH1 0x4 PUSH2 0x269A 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 0x2BE PUSH2 0x993 JUMP JUMPDEST PUSH1 0x9 SLOAD PUSH2 0x29E SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 JUMP JUMPDEST PUSH2 0x2BE PUSH2 0x312 CALLDATASIZE PUSH1 0x4 PUSH2 0x289A JUMP JUMPDEST PUSH2 0xA08 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x29E JUMP JUMPDEST PUSH2 0x202 PUSH2 0xAD9 JUMP JUMPDEST PUSH2 0x2BE PUSH2 0x33E CALLDATASIZE PUSH1 0x4 PUSH2 0x270D JUMP JUMPDEST PUSH2 0xAE8 JUMP JUMPDEST PUSH2 0x29E PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x222 PUSH2 0x378 CALLDATASIZE PUSH1 0x4 PUSH2 0x274E JUMP JUMPDEST PUSH2 0xCB3 JUMP JUMPDEST PUSH2 0x222 PUSH2 0x38B CALLDATASIZE PUSH1 0x4 PUSH2 0x274E JUMP JUMPDEST PUSH2 0xD64 JUMP JUMPDEST PUSH2 0x29E PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x2BE PUSH2 0x3C5 CALLDATASIZE PUSH1 0x4 PUSH2 0x2868 JUMP JUMPDEST PUSH2 0xD71 JUMP JUMPDEST PUSH2 0x1E7 PUSH2 0x3D8 CALLDATASIZE PUSH1 0x4 PUSH2 0x269A JUMP JUMPDEST PUSH2 0xE0F JUMP JUMPDEST PUSH32 0x0 PUSH2 0x29E JUMP JUMPDEST PUSH2 0x222 PUSH2 0x411 CALLDATASIZE PUSH1 0x4 PUSH2 0x269A JUMP JUMPDEST PUSH2 0xE31 JUMP JUMPDEST PUSH2 0x222 PUSH2 0xEAA JUMP JUMPDEST PUSH2 0x1E7 PUSH2 0x42C CALLDATASIZE PUSH1 0x4 PUSH2 0x26D4 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 0x6 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x29E JUMP JUMPDEST PUSH2 0x222 PUSH2 0x476 CALLDATASIZE PUSH1 0x4 PUSH2 0x269A JUMP JUMPDEST PUSH2 0xFF1 JUMP JUMPDEST PUSH2 0x2BE PUSH2 0x489 CALLDATASIZE PUSH1 0x4 PUSH2 0x269A JUMP JUMPDEST PUSH2 0x1324 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 PUSH1 0x8 SLOAD EQ ISZERO PUSH2 0x4E8 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 JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 PUSH1 0x8 SSTORE PUSH1 0x0 PUSH2 0x4F8 DUP4 PUSH2 0x1620 JUMP JUMPDEST SWAP1 POP PUSH2 0x503 DUP2 PUSH2 0x16F9 JUMP JUMPDEST PUSH2 0x50D CALLER DUP3 PUSH2 0x174C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH32 0x0 SWAP1 PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB 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 0x571 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x585 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 0x5A9 SWAP2 SWAP1 PUSH2 0x2881 JUMP JUMPDEST SWAP1 POP PUSH2 0x5B3 PUSH2 0x18D1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x69328DEC00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD DUP9 SWAP1 MSTORE ADDRESS PUSH1 0x44 DUP4 ADD MSTORE SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x69328DEC SWAP1 PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x63E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x652 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 0x676 SWAP2 SWAP1 PUSH2 0x2881 JUMP JUMPDEST POP 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 0x6B9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL 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 0x2881 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x6FF DUP3 DUP5 PUSH2 0x19F9 JUMP JUMPDEST SWAP1 POP PUSH2 0x715 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND CALLER DUP4 PUSH2 0x1A05 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP7 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP10 SWAP1 MSTORE CALLER SWAP2 PUSH32 0x5C9B0A8FE13A826CA676F5AD4F98C747B5086BEB79AB58589B8211B62FA32FB9 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH1 0x1 PUSH1 0x8 SSTORE SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x76E SWAP1 PUSH2 0x2A4B 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 0x79A SWAP1 PUSH2 0x2A4B JUMP JUMPDEST DUP1 ISZERO PUSH2 0x7E7 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x7BC JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x7E7 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 0x7CA JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x7FE CALLER DUP5 DUP5 PUSH2 0x1A4E JUMP JUMPDEST POP PUSH1 0x1 JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x815 DUP5 DUP5 DUP5 PUSH2 0x1BA6 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 0x8AF 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 PUSH2 0x4DF JUMP JUMPDEST PUSH2 0x8BC DUP6 CALLER DUP6 DUP5 SUB PUSH2 0x1A4E JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP JUMPDEST 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 0x7FE SWAP2 DUP6 SWAP1 PUSH2 0x900 SWAP1 DUP7 SWAP1 PUSH2 0x29AF JUMP JUMPDEST PUSH2 0x1A4E JUMP JUMPDEST PUSH1 0x6 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x95F 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 0x4DF JUMP JUMPDEST PUSH1 0x6 SLOAD PUSH2 0x974 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1DBF JUMP JUMPDEST PUSH1 0x6 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST CALLER PUSH2 0x9A6 PUSH1 0x5 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x9FC 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 0x4DF JUMP JUMPDEST PUSH2 0xA06 PUSH1 0x0 PUSH2 0x1DBF JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x2 PUSH1 0x8 SLOAD EQ ISZERO PUSH2 0xA5B 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 0x4DF JUMP JUMPDEST PUSH1 0x2 PUSH1 0x8 SSTORE PUSH1 0x0 PUSH2 0xA6B DUP4 PUSH2 0x1620 JUMP JUMPDEST SWAP1 POP PUSH2 0xA76 DUP2 PUSH2 0x16F9 JUMP JUMPDEST PUSH2 0xA7F DUP4 PUSH2 0x1E1E JUMP JUMPDEST PUSH2 0xA89 DUP3 DUP3 PUSH2 0x1F08 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP2 CALLER SWAP2 PUSH32 0xDEF5CC95AD9B1C65C586D0FCE815EC764B575719636EDF58FF2553AE6F110452 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP PUSH1 0x1 PUSH1 0x8 SSTORE POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x76E SWAP1 PUSH2 0x2A4B JUMP JUMPDEST CALLER PUSH2 0xAFB PUSH1 0x7 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 0xB29 JUMPI POP CALLER PUSH2 0xB1E PUSH1 0x5 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 0xB9B 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 0x4DF JUMP JUMPDEST PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO PUSH2 0xC43 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x41546F6B656E5969656C64536F757263652F61546F6B656E2D7472616E736665 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x722D6E6F742D616C6C6F77656400000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x4DF JUMP JUMPDEST PUSH2 0xC57 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND DUP4 DUP4 PUSH2 0x1A05 JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x29FCB7BB954D37295343E742BAB21760748BDBA4E026E4469A81001839969138 DUP5 PUSH1 0x40 MLOAD PUSH2 0xCA6 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP 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 0xD4D 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 0x4DF JUMP JUMPDEST PUSH2 0xD5A CALLER DUP6 DUP6 DUP5 SUB PUSH2 0x1A4E JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x7FE CALLER DUP5 DUP5 PUSH2 0x1BA6 JUMP JUMPDEST PUSH1 0x2 PUSH1 0x8 SLOAD EQ ISZERO PUSH2 0xDC4 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 0x4DF JUMP JUMPDEST PUSH1 0x2 PUSH1 0x8 SSTORE PUSH2 0xDD2 DUP2 PUSH2 0x1E1E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE CALLER SWAP1 PUSH32 0xBB2C10EB8B0D65523A501A1C079906E38AF3C4231E31B799D408DAACD7CE7226 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP PUSH1 0x1 PUSH1 0x8 SSTORE 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 0x802 SWAP1 PUSH2 0x1FE7 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0xE46 PUSH1 0x5 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xE9C 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 0x4DF JUMP JUMPDEST PUSH2 0x802 DUP3 PUSH2 0x20B2 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0xEBF PUSH1 0x5 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xF15 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 0x4DF JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF1F PUSH2 0x18D1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x6EB1769F PUSH1 0xE1 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP4 AND PUSH1 0x24 DUP4 ADD MSTORE SWAP2 SWAP3 POP PUSH32 0x0 SWAP2 PUSH2 0xFE8 SWAP2 DUP5 SWAP2 PUSH2 0xFD7 SWAP2 SWAP1 DUP6 AND SWAP1 PUSH4 0xDD62ED3E SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xF96 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xFAA 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 0xFCE SWAP2 SWAP1 PUSH2 0x2881 JUMP JUMPDEST PUSH1 0x0 NOT SWAP1 PUSH2 0x19F9 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP2 SWAP1 PUSH2 0x219E JUMP JUMPDEST PUSH1 0x1 SWAP3 POP POP POP SWAP1 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x1006 PUSH1 0x7 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 0x1034 JUMPI POP CALLER PUSH2 0x1029 PUSH1 0x5 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 0x10A6 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 0x4DF JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1122 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x41546F6B656E5969656C64536F757263652F726563697069656E742D6E6F742D PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7A65726F2D616464726573730000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x4DF JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 DUP1 DUP3 MSTORE DUP2 DUP4 ADD SWAP1 SWAP3 MSTORE PUSH32 0x0 SWAP2 PUSH1 0x0 SWAP2 SWAP1 PUSH1 0x20 DUP1 DUP4 ADD SWAP1 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP POP SWAP1 POP PUSH32 0x0 DUP2 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x119B JUMPI PUSH2 0x119B PUSH2 0x2A9C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 DUP4 AND PUSH1 0x20 SWAP2 DUP3 MUL SWAP3 SWAP1 SWAP3 ADD ADD MSTORE PUSH1 0x40 MLOAD PUSH32 0x8B599F2600000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x0 SWAP2 DUP5 AND SWAP1 PUSH4 0x8B599F26 SWAP1 PUSH2 0x11F3 SWAP1 DUP6 SWAP1 ADDRESS SWAP1 PUSH1 0x4 ADD PUSH2 0x291F JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x120B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x121F 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 0x1243 SWAP2 SWAP1 PUSH2 0x2881 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x3111E7B3 DUP5 DUP5 DUP10 PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1277 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x294A JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1291 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x12A5 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 0x12C9 SWAP2 SWAP1 PUSH2 0x2881 JUMP JUMPDEST SWAP1 POP DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xF7A40077FF7A04C7E61F6F26FB13774259DDF1B6BCE9ECF26A8276CDD3992683 DUP4 PUSH1 0x40 MLOAD PUSH2 0x1310 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP PUSH1 0x1 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST CALLER PUSH2 0x1337 PUSH1 0x5 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x138D 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 0x4DF JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x1409 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 0x4DF JUMP JUMPDEST PUSH1 0x6 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 DUP1 ISZERO DUP1 PUSH2 0x14E9 JUMPI POP PUSH1 0x40 MLOAD PUSH4 0x6EB1769F PUSH1 0xE1 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE DUP5 AND SWAP1 PUSH4 0xDD62ED3E SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x14AF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x14C3 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 0x14E7 SWAP2 SWAP1 PUSH2 0x2881 JUMP JUMPDEST ISZERO JUMPDEST PUSH2 0x155B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x36 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5361666545524332303A20617070726F76652066726F6D206E6F6E2D7A65726F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x20746F206E6F6E2D7A65726F20616C6C6F77616E636500000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x4DF 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 0x1604 SWAP1 DUP5 SWAP1 PUSH32 0x95EA7B300000000000000000000000000000000000000000000000000000000 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 0x2278 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x1618 DUP5 DUP5 PUSH1 0x0 DUP6 PUSH2 0x235D JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0x162E PUSH1 0x2 SLOAD SWAP1 JUMP JUMPDEST SWAP1 POP DUP1 PUSH2 0x163D JUMPI DUP4 SWAP2 POP PUSH2 0x16F2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x0 SWAP1 PUSH2 0x16E2 SWAP1 DUP4 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 0x16A5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x16B9 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 0x16DD SWAP2 SWAP1 PUSH2 0x2881 JUMP JUMPDEST PUSH2 0x249C JUMP JUMPDEST SWAP1 POP PUSH2 0x16EE DUP6 DUP3 PUSH2 0x24BD JUMP JUMPDEST SWAP3 POP POP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 GT PUSH2 0x1749 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 0x41546F6B656E5969656C64536F757263652F7368617265732D67742D7A65726F PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x4DF JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x17C8 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 0x4DF 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 0x1857 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 0x4DF 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 0x1886 SWAP1 DUP5 SWAP1 PUSH2 0x2A08 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 0x9 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH32 0x365CCBBF00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE SWAP1 MLOAD PUSH1 0x0 SWAP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 PUSH4 0x365CCBBF SWAP2 PUSH1 0x4 DUP1 DUP4 ADD SWAP3 DUP7 SWAP3 SWAP2 SWAP1 DUP3 SWAP1 SUB ADD DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x192E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1942 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 0x196A SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x277A JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x197C JUMPI PUSH2 0x197C PUSH2 0x2A9C JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x261BF8B 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 0x19BC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x19D0 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 0x19F4 SWAP2 SWAP1 PUSH2 0x26B7 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x8C2 DUP3 DUP5 PUSH2 0x2A08 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 0x1604 SWAP1 DUP5 SWAP1 PUSH32 0xA9059CBB00000000000000000000000000000000000000000000000000000000 SWAP1 PUSH1 0x64 ADD PUSH2 0x15A0 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x1AC9 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 0x4DF JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1B45 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 0x4DF 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 0x1C22 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 0x4DF JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1C9E 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 0x4DF 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 0x1D2D 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 0x4DF 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 0x1D64 SWAP1 DUP5 SWAP1 PUSH2 0x29AF 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 0x1DB0 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 0x5 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP4 AND DUP2 OR SWAP1 SWAP4 SSTORE PUSH1 0x40 MLOAD SWAP2 AND SWAP2 SWAP1 DUP3 SWAP1 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP1 PUSH1 0x0 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH2 0x1E53 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND CALLER ADDRESS DUP5 PUSH2 0x24DE JUMP JUMPDEST PUSH2 0x1E5B PUSH2 0x18D1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xE8EDA9DF00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD DUP5 SWAP1 MSTORE ADDRESS PUSH1 0x44 DUP4 ADD MSTORE PUSH1 0xBC PUSH1 0x64 DUP4 ADD MSTORE SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0xE8EDA9DF SWAP1 PUSH1 0x84 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1EED JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1F01 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1F5E 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 0x4DF JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1F70 SWAP2 SWAP1 PUSH2 0x29AF 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 0x1F9D SWAP1 DUP5 SWAP1 PUSH2 0x29AF 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 0x0 DUP1 PUSH1 0x0 PUSH2 0x1FF5 PUSH1 0x2 SLOAD SWAP1 JUMP JUMPDEST SWAP1 POP DUP1 PUSH2 0x2004 JUMPI DUP4 SWAP2 POP PUSH2 0x16F2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH2 0x1618 SWAP1 DUP3 SWAP1 PUSH2 0x20AC 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 0x206D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2081 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 0x20A5 SWAP2 SWAP1 PUSH2 0x2881 JUMP JUMPDEST DUP8 SWAP1 PUSH2 0x252F JUMP JUMPDEST SWAP1 PUSH2 0x253B JUMP JUMPDEST PUSH1 0x7 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP1 DUP4 AND DUP2 EQ ISZERO PUSH2 0x213B 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 0x4DF JUMP JUMPDEST PUSH1 0x7 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 MLOAD PUSH4 0x6EB1769F PUSH1 0xE1 SHL 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 0x21EA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x21FE 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 0x2222 SWAP2 SWAP1 PUSH2 0x2881 JUMP JUMPDEST PUSH2 0x222C SWAP2 SWAP1 PUSH2 0x29AF 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 0x1DB9 SWAP1 DUP6 SWAP1 PUSH32 0x95EA7B300000000000000000000000000000000000000000000000000000000 SWAP1 PUSH1 0x64 ADD PUSH2 0x15A0 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x22CD 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 0x1609 SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP ISZERO PUSH2 0x1604 JUMPI DUP1 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0x22EB SWAP2 SWAP1 PUSH2 0x2846 JUMP JUMPDEST PUSH2 0x1604 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 0x4DF JUMP JUMPDEST PUSH1 0x60 DUP3 SELFBALANCE LT ISZERO PUSH2 0x23D5 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 0x4DF JUMP JUMPDEST DUP5 EXTCODESIZE PUSH2 0x2423 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 0x4DF JUMP JUMPDEST PUSH1 0x0 DUP1 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 DUP8 PUSH1 0x40 MLOAD PUSH2 0x243F SWAP2 SWAP1 PUSH2 0x2903 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 0x247C 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 0x2481 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x2491 DUP3 DUP3 DUP7 PUSH2 0x2547 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x24B1 DUP5 PUSH8 0xDE0B6B3A7640000 PUSH2 0x2580 JUMP JUMPDEST SWAP1 POP PUSH2 0x1618 DUP2 DUP5 PUSH2 0x261B JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x24CA DUP4 DUP6 PUSH2 0x2580 JUMP JUMPDEST SWAP1 POP PUSH2 0x1618 DUP2 PUSH8 0xDE0B6B3A7640000 PUSH2 0x261B 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 0x1DB9 SWAP1 DUP6 SWAP1 PUSH32 0x23B872DD00000000000000000000000000000000000000000000000000000000 SWAP1 PUSH1 0x84 ADD PUSH2 0x15A0 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x8C2 DUP3 DUP5 PUSH2 0x29E9 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x8C2 DUP3 DUP5 PUSH2 0x29C7 JUMP JUMPDEST PUSH1 0x60 DUP4 ISZERO PUSH2 0x2556 JUMPI POP DUP2 PUSH2 0x8C2 JUMP JUMPDEST DUP3 MLOAD ISZERO PUSH2 0x2566 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 0x4DF SWAP2 SWAP1 PUSH2 0x297C JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x258F JUMPI POP PUSH1 0x0 PUSH2 0x802 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x259B DUP4 DUP6 PUSH2 0x29E9 JUMP JUMPDEST SWAP1 POP DUP3 PUSH2 0x25A8 DUP6 DUP4 PUSH2 0x29C7 JUMP JUMPDEST EQ PUSH2 0x8C2 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 0x536166654D6174683A206D756C7469706C69636174696F6E206F766572666C6F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x7700000000000000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x4DF JUMP JUMPDEST PUSH1 0x0 PUSH2 0x8C2 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1A DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x536166654D6174683A206469766973696F6E206279207A65726F000000000000 DUP2 MSTORE POP PUSH1 0x0 DUP2 DUP4 PUSH2 0x2679 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x4DF SWAP2 SWAP1 PUSH2 0x297C JUMP JUMPDEST POP PUSH1 0x0 PUSH2 0x2686 DUP5 DUP7 PUSH2 0x29C7 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST DUP1 MLOAD PUSH2 0xEA5 DUP2 PUSH2 0x2AC8 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x26AC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x8C2 DUP2 PUSH2 0x2AC8 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x26C9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x8C2 DUP2 PUSH2 0x2AC8 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x26E7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x26F2 DUP2 PUSH2 0x2AC8 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x2702 DUP2 PUSH2 0x2AC8 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2722 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x272D DUP2 PUSH2 0x2AC8 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x273D DUP2 PUSH2 0x2AC8 JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2761 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x276C DUP2 PUSH2 0x2AC8 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x278D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x27A5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x27B9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP2 DUP2 GT ISZERO PUSH2 0x27CB JUMPI PUSH2 0x27CB PUSH2 0x2AB2 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 0x27F0 JUMPI PUSH2 0x27F0 PUSH2 0x2AB2 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 0x280F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP6 POP JUMPDEST DUP4 DUP7 LT ISZERO PUSH2 0x2839 JUMPI PUSH2 0x2825 DUP2 PUSH2 0x268F JUMP JUMPDEST DUP6 MSTORE PUSH1 0x1 SWAP6 SWAP1 SWAP6 ADD SWAP5 SWAP4 DUP7 ADD SWAP4 DUP7 ADD PUSH2 0x2814 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 0x2858 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x8C2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x287A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2893 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x28AD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x2702 DUP2 PUSH2 0x2AC8 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 0x28F8 JUMPI DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP8 MSTORE SWAP6 DUP3 ADD SWAP6 SWAP1 DUP3 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x28D3 JUMP JUMPDEST POP SWAP5 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 MLOAD PUSH2 0x2915 DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x2A1F JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x40 DUP2 MSTORE PUSH1 0x0 PUSH2 0x2932 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x28BF JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x20 DUP4 ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x0 PUSH2 0x295D PUSH1 0x60 DUP4 ADD DUP7 PUSH2 0x28BF JUMP JUMPDEST SWAP1 POP DUP4 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x40 DUP4 ADD MSTORE SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x299B DUP2 PUSH1 0x40 DUP6 ADD PUSH1 0x20 DUP8 ADD PUSH2 0x2A1F 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 0x29C2 JUMPI PUSH2 0x29C2 PUSH2 0x2A86 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x29E4 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 0x2A03 JUMPI PUSH2 0x2A03 PUSH2 0x2A86 JUMP JUMPDEST POP MUL SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x2A1A JUMPI PUSH2 0x2A1A PUSH2 0x2A86 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x2A3A JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x2A22 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x1DB9 JUMPI POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x2A5F JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x2A80 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 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 0x1749 JUMPI PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xDF REVERT CALLDATASIZE POP 0xA8 0xCA 0xF7 DUP12 MULMOD 0xF 0xBF 0xDB NUMBER EXTCODEHASH SELFDESTRUCT 0x4B 0x28 0xCE PUSH32 0xD5814196E7F2279C4B0AB4AF964736F6C634300080600330000000000000000 ",
              "sourceMap": "1211:11168:29:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9564:673;;;;;;:::i;:::-;;:::i;:::-;;;19328:25:101;;;19316:2;19301:18;9564:673:29;;;;;;;;2141:98:4;;;:::i;:::-;;;;;;;:::i;4238:166::-;;;;;;:::i;:::-;;:::i;:::-;;;8427:14:101;;8420:22;8402:41;;8390:2;8375:18;4238:166:4;8357:92:101;3229:106:4;3316:12;;3229:106;;4871:478;;;;;;:::i;:::-;;:::i;5487:85:29:-;;;19789:4:101;5557:10:29;19777:17:101;19759:36;;19747:2;19732:18;5487:85:29;19714:87:101;5744:212:4;;;;;;:::i;:::-;;:::i;1403:89:32:-;1477:8;;-1:-1:-1;;;;;1477:8:32;1403:89;;;-1:-1:-1;;;;;5426:55:101;;;5408:74;;5396:2;5381:18;1403:89:32;5363:125:101;3147:129:33;;;:::i;:::-;;3393:125:4;;;;;;:::i;:::-;-1:-1:-1;;;;;3493:18:4;3467:7;3493:18;;;;;;;;;;;;3393:125;2508:94:33;;;:::i;2841:81:29:-;;;;;-1:-1:-1;;;;;2841:81:29;;;8866:293;;;;;;:::i;:::-;;:::i;1814:85:33:-;1886:6;;-1:-1:-1;;;;;1886:6:33;1814:85;;2352:102:4;;;:::i;10568:318:29:-;;;;;;:::i;:::-;;:::i;2605:39::-;;;;;6443:405:4;;;;;;:::i;:::-;;:::i;3721:172::-;;;;;;:::i;:::-;;:::i;2703:63:29:-;;;;;11108:137;;;;;;:::i;:::-;;:::i;6545:128::-;;;;;;:::i;:::-;;:::i;6262:94::-;6338:13;6262:94;;1744:123:32;;;;;;:::i;:::-;;:::i;5784:368:29:-;;;:::i;3951:149:4:-;;;;;;:::i;:::-;-1:-1:-1;;;;;4066:18:4;;;4040:7;4066:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3951:149;2014:101:33;2095:13;;-1:-1:-1;;;;;2095:13:33;2014:101;;11452:565:29;;;;;;:::i;:::-;;:::i;2751:234:33:-;;;;;;:::i;:::-;;:::i;9564:673:29:-;9647:7;1744:1:3;2325:7;;:19;;2317:63;;;;-1:-1:-1;;;2317:63:3;;17835:2:101;2317:63:3;;;17817:21:101;17874:2;17854:18;;;17847:30;17913:33;17893:18;;;17886:61;17964:18;;2317:63:3;;;;;;;;;1744:1;2455:7;:18;9662:14:29::1;9679:28;9694:12:::0;9679:14:::1;:28::i;:::-;9662:45;;9713:28;9734:6;9713:20;:28::i;:::-;9748:25;9754:10;9766:6;9748:5;:25::i;:::-;9854:38;::::0;-1:-1:-1;;;9854:38:29;;9886:4:::1;9854:38;::::0;::::1;5408:74:101::0;9810:13:29::1;::::0;9780:20:::1;::::0;-1:-1:-1;;;;;9854:23:29;::::1;::::0;::::1;::::0;5381:18:101;;9854:38:29::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;9830:62;;9898:14;:12;:14::i;:::-;:67;::::0;;;;-1:-1:-1;;;;;9922:13:29::1;6811:15:101::0;;9898:67:29::1;::::0;::::1;6793:34:101::0;6843:18;;;6836:34;;;9959:4:29::1;6886:18:101::0;;;6879:43;9898:23:29;;;::::1;::::0;::::1;::::0;6705:18:101;;9898:67:29::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;9994:38:29::1;::::0;-1:-1:-1;;;9994:38:29;;10026:4:::1;9994:38;::::0;::::1;5408:74:101::0;9971:20:29::1;::::0;-1:-1:-1;;;;;9994:23:29;::::1;::::0;::::1;::::0;5381:18:101;;9994:38:29::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;9971:61:::0;-1:-1:-1;10039:19:29::1;10061:31;9971:61:::0;10078:13;10061:16:::1;:31::i;:::-;10039:53:::0;-1:-1:-1;10098:51:29::1;-1:-1:-1::0;;;;;10098:26:29;::::1;10125:10;10039:53:::0;10098:26:::1;:51::i;:::-;10161:47;::::0;;19538:25:101;;;19594:2;19579:18;;19572:34;;;10175:10:29::1;::::0;10161:47:::1;::::0;19511:18:101;10161:47:29::1;;;;;;;1701:1:3::0;2628:7;:22;10221:11:29;9564:673;-1:-1:-1;;;;;;9564:673:29:o;2141:98:4:-;2195:13;2227:5;2220:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2141:98;:::o;4238:166::-;4321:4;4337:39;719:10:13;4360:7:4;4369:6;4337:8;:39::i;:::-;-1:-1:-1;4393:4:4;4238:166;;;;;:::o;4871:478::-;5007:4;5023:36;5033:6;5041:9;5052:6;5023:9;:36::i;:::-;-1:-1:-1;;;;;5097:19:4;;5070:24;5097:19;;;:11;:19;;;;;;;;719:10:13;5097:33:4;;;;;;;;5148:26;;;;5140:79;;;;-1:-1:-1;;;5140:79:4;;14218:2:101;5140:79:4;;;14200:21:101;14257:2;14237:18;;;14230:30;14296:34;14276:18;;;14269:62;14367:10;14347:18;;;14340:38;14395:19;;5140:79:4;14190:230:101;5140:79:4;5253:57;5262:6;719:10:13;5303:6:4;5284:16;:25;5253:8;:57::i;:::-;5338:4;5331:11;;;4871:478;;;;;;:::o;5744:212::-;719:10:13;5832:4:4;5880:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;5880:34:4;;;;;;;;;;5832:4;;5848:80;;5871:7;;5880:47;;5917:10;;5880:47;:::i;:::-;5848:8;:80::i;3147:129:33:-;4050:13;;-1:-1:-1;;;;;4050:13:33;4036:10;:27;4028:71;;;;-1:-1:-1;;;4028:71:33;;13456:2:101;4028:71:33;;;13438:21:101;13495:2;13475:18;;;13468:30;13534:33;13514:18;;;13507:61;13585:18;;4028:71:33;13428:181:101;4028:71:33;3219:13:::1;::::0;3209:24:::1;::::0;-1:-1:-1;;;;;3219:13:33::1;3209:9;:24::i;:::-;3243:13;:26:::0;;-1:-1:-1;;3243:26:33::1;::::0;;3147:129::o;2508:94::-;3838:10;3827:7;1886:6;;-1:-1:-1;;;;;1886:6:33;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:33;;3819:58;;;;-1:-1:-1;;;3819:58:33;;13103:2:101;3819:58:33;;;13085:21:101;13142:2;13122:18;;;13115:30;13181:26;13161:18;;;13154:54;13225:18;;3819:58:33;13075:174:101;3819:58:33;2574:21:::1;2592:1;2574:9;:21::i;:::-;2508:94::o:0;8866:293:29:-;1744:1:3;2325:7;;:19;;2317:63;;;;-1:-1:-1;;;2317:63:3;;17835:2:101;2317:63:3;;;17817:21:101;17874:2;17854:18;;;17847:30;17913:33;17893:18;;;17886:61;17964:18;;2317:63:3;17807:181:101;2317:63:3;1744:1;2455:7;:18;8958:14:29::1;8975:26;8990:10:::0;8975:14:::1;:26::i;:::-;8958:43;;9007:28;9028:6;9007:20;:28::i;:::-;9042:26;9057:10;9042:14;:26::i;:::-;9074:17;9080:2;9084:6;9074:5;:17::i;:::-;9103:51;::::0;;19538:25:101;;;19594:2;19579:18;;19572:34;;;-1:-1:-1;;;;;9103:51:29;::::1;::::0;9119:10:::1;::::0;9103:51:::1;::::0;19511:18:101;9103:51:29::1;;;;;;;-1:-1:-1::0;;1701:1:3;2628:7;:22;-1:-1:-1;8866:293:29:o;2352:102:4:-;2408:13;2440:7;2433:14;;;;;:::i;10568:318:29:-;2861:10:32;2848:9;1477:8;;-1:-1:-1;;;;;1477:8:32;;1403:89;2848:9;-1:-1:-1;;;;;2848:23:32;;:48;;;-1:-1:-1;2886:10:32;2875:7;1886:6:33;;-1:-1:-1;;;;;1886:6:33;;1814:85;2875:7:32;-1:-1:-1;;;;;2875:21:32;;2848:48;2840:99;;;;-1:-1:-1;;;2840:99:32;;15435:2:101;2840:99:32;;;15417:21:101;15474:2;15454:18;;;15447:30;15513:34;15493:18;;;15486:62;15584:8;15564:18;;;15557:36;15610:19;;2840:99:32;15407:228:101;2840:99:32;10720:6:29::1;-1:-1:-1::0;;;;;10689:38:29::1;10697:10;-1:-1:-1::0;;;;;10689:38:29::1;;;10681:96;;;::::0;-1:-1:-1;;;10681:96:29;;10304:2:101;10681:96:29::1;::::0;::::1;10286:21:101::0;10343:2;10323:18;;;10316:30;10382:34;10362:18;;;10355:62;10453:15;10433:18;;;10426:43;10486:19;;10681:96:29::1;10276:235:101::0;10681:96:29::1;10783:35;-1:-1:-1::0;;;;;10783:23:29;::::1;10807:2:::0;10811:6;10783:23:::1;:35::i;:::-;10870:10;-1:-1:-1::0;;;;;10829:52:29::1;10858:2;-1:-1:-1::0;;;;;10829:52:29::1;10846:10;-1:-1:-1::0;;;;;10829:52:29::1;;10862:6;10829:52;;;;19328:25:101::0;;19316:2;19301:18;;19283:76;10829:52:29::1;;;;;;;;10568:318:::0;;;:::o;6443:405:4:-;719:10:13;6536:4:4;6579:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;6579:34:4;;;;;;;;;;6631:35;;;;6623:85;;;;-1:-1:-1;;;6623:85:4;;18618:2:101;6623:85:4;;;18600:21:101;18657:2;18637:18;;;18630:30;18696:34;18676:18;;;18669:62;18767:7;18747:18;;;18740:35;18792:19;;6623:85:4;18590:227:101;6623:85:4;6742:67;719:10:13;6765:7:4;6793:15;6774:16;:34;6742:8;:67::i;:::-;-1:-1:-1;6837:4:4;;6443:405;-1:-1:-1;;;6443:405:4:o;3721:172::-;3807:4;3823:42;719:10:13;3847:9:4;3858:6;3823:9;:42::i;11108:137:29:-;1744:1:3;2325:7;;:19;;2317:63;;;;-1:-1:-1;;;2317:63:3;;17835:2:101;2317:63:3;;;17817:21:101;17874:2;17854:18;;;17847:30;17913:33;17893:18;;;17886:61;17964:18;;2317:63:3;17807:181:101;2317:63:3;1744:1;2455:7;:18;11178:22:29::1;11193:6:::0;11178:14:::1;:22::i;:::-;11211:29;::::0;19328:25:101;;;11221:10:29::1;::::0;11211:29:::1;::::0;19316:2:101;19301:18;11211:29:29::1;;;;;;;-1:-1:-1::0;1701:1:3;2628:7;:22;11108:137:29:o;6545:128::-;-1:-1:-1;;;;;3493:18:4;;6615:7:29;3493:18:4;;;;;;;;;;;6637:31:29;;:14;:31::i;1744:123:32:-;1813:4;3838:10:33;3827:7;1886:6;;-1:-1:-1;;;;;1886:6:33;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:33;;3819:58;;;;-1:-1:-1;;;3819:58:33;;13103:2:101;3819:58:33;;;13085:21:101;13142:2;13122:18;;;13115:30;13181:26;13161:18;;;13154:54;13225:18;;3819:58:33;13075:174:101;3819:58:33;1836:24:32::1;1848:11;1836;:24::i;3887:1:33:-;1744:123:32::0;;;:::o;5784:368:29:-;5840:4;3838:10:33;3827:7;1886:6;;-1:-1:-1;;;;;1886:6:33;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:33;;3819:58;;;;-1:-1:-1;;;3819:58:33;;13103:2:101;3819:58:33;;;13085:21:101;13142:2;13122:18;;;13115:30;13181:26;13161:18;;;13154:54;13225:18;;3819:58:33;13075:174:101;3819:58:33;5852:27:29::1;5890:14;:12;:14::i;:::-;6060:62;::::0;-1:-1:-1;;;6060:62:29;;6095:4:::1;6060:62;::::0;::::1;5728:34:101::0;-1:-1:-1;;;;;5798:15:101;;;5778:18;;;5771:43;5852:53:29;;-1:-1:-1;5944:13:29::1;::::0;5965:164:::1;::::0;5852:53;;6038:85:::1;::::0;6060:26;;::::1;::::0;::::1;::::0;5640:18:101;;6060:62:29::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;6038:17:29;:21:::1;:85::i;:::-;-1:-1:-1::0;;;;;5965:38:29;::::1;::::0;:164;:38:::1;:164::i;:::-;6143:4;6136:11;;;;5784:368:::0;:::o;11452:565::-;11523:4;2861:10:32;2848:9;1477:8;;-1:-1:-1;;;;;1477:8:32;;1403:89;2848:9;-1:-1:-1;;;;;2848:23:32;;:48;;;-1:-1:-1;2886:10:32;2875:7;1886:6:33;;-1:-1:-1;;;;;1886:6:33;;1814:85;2875:7:32;-1:-1:-1;;;;;2875:21:32;;2848:48;2840:99;;;;-1:-1:-1;;;2840:99:32;;15435:2:101;2840:99:32;;;15417:21:101;15474:2;15454:18;;;15447:30;15513:34;15493:18;;;15486:62;15584:8;15564:18;;;15557:36;15610:19;;2840:99:32;15407:228:101;2840:99:32;-1:-1:-1;;;;;11543:16:29;::::1;11535:73;;;::::0;-1:-1:-1;;;11535:73:29;;17011:2:101;11535:73:29::1;::::0;::::1;16993:21:101::0;17050:2;17030:18;;;17023:30;17089:34;17069:18;;;17062:62;17160:14;17140:18;;;17133:42;17192:19;;11535:73:29::1;16983:234:101::0;11535:73:29::1;11719:16;::::0;;11733:1:::1;11719:16:::0;;;;;::::1;::::0;;;11665:20:::1;::::0;11615:47:::1;::::0;11719:16;::::1;::::0;;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;11719:16:29::1;11692:43;;11762:6;11741:7;11749:1;11741:10;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;11741:28:29;;::::1;:10;::::0;;::::1;::::0;;;;;:28;11794:63:::1;::::0;;;;11776:15:::1;::::0;11794:39;::::1;::::0;::::1;::::0;:63:::1;::::0;11834:7;;11851:4:::1;::::0;11794:63:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;11776:81;;11863:22;11888:21;-1:-1:-1::0;;;;;11888:34:29::1;;11923:7;11932;11941:2;11888:56;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;11863:81;;11976:2;-1:-1:-1::0;;;;;11956:39:29::1;11964:10;-1:-1:-1::0;;;;;11956:39:29::1;;11980:14;11956:39;;;;19328:25:101::0;;19316:2;19301:18;;19283:76;11956:39:29::1;;;;;;;;-1:-1:-1::0;12008:4:29::1;::::0;11452:565;-1:-1:-1;;;;;11452:565:29:o;2751:234:33:-;3838:10;3827:7;1886:6;;-1:-1:-1;;;;;1886:6:33;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:33;;3819:58;;;;-1:-1:-1;;;3819:58:33;;13103:2:101;3819:58:33;;;13085:21:101;13142:2;13122:18;;;13115:30;13181:26;13161:18;;;13154:54;13225:18;;3819:58:33;13075:174:101;3819:58:33;-1:-1:-1;;;;;2834:23:33;::::1;2826:73;;;::::0;-1:-1:-1;;;2826:73:33;;16605:2:101;2826:73:33::1;::::0;::::1;16587:21:101::0;16644:2;16624:18;;;16617:30;16683:34;16663:18;;;16656:62;16754:7;16734:18;;;16727:35;16779:19;;2826:73:33::1;16577:227:101::0;2826:73:33::1;2910:13;:25:::0;;-1:-1:-1;;2910:25:33::1;-1:-1:-1::0;;;;;2910:25:33;::::1;::::0;;::::1;::::0;;;2951:27:::1;::::0;::::1;::::0;-1:-1:-1;;2951:27:33::1;2751:234:::0;:::o;1413:603:9:-;1768:10;;;1767:62;;-1:-1:-1;1784:39:9;;-1:-1:-1;;;1784:39:9;;1808:4;1784:39;;;5728:34:101;-1:-1:-1;;;;;5798:15:101;;;5778:18;;;5771:43;1784:15:9;;;;;5640:18:101;;1784:39:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:44;1767:62;1746:163;;;;-1:-1:-1;;;1746:163:9;;18195:2:101;1746:163:9;;;18177:21:101;18234:2;18214:18;;;18207:30;18273:34;18253:18;;;18246:62;18344:24;18324:18;;;18317:52;18386:19;;1746:163:9;18167:244:101;1746:163:9;1946:62;;-1:-1:-1;;;;;6420:55:101;;1946:62:9;;;6402:74:101;6492:18;;;6485:34;;;1919:90:9;;1939:5;;1969:22;;6375:18:101;;1946:62:9;;;;-1:-1:-1;;1946:62:9;;;;;;;;;;;;;;;;;;;;;;;;;;;1919:19;:90::i;:::-;1413:603;;;:::o;3514:223:12:-;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:12:o;6854:524:29:-;6918:7;6933:15;6954:20;6977:13;3316:12:4;;;3229:106;6977:13:29;6954:36;-1:-1:-1;7001:17:29;6997:356;;7038:7;7028:17;;6997:356;;;7235:31;;-1:-1:-1;;;7235:31:29;;7260:4;7235:31;;;5408:74:101;7164:25:29;;7192:75;;7221:12;;-1:-1:-1;;;;;7235:6:29;:16;;;;5381:18:101;;7235:31:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7192:28;:75::i;:::-;7164:103;;7285:61;7319:7;7328:17;7285:33;:61::i;:::-;7275:71;;7058:295;6997:356;-1:-1:-1;7366:7:29;6854:524;-1:-1:-1;;6854:524:29:o;8030:128::-;8115:1;8105:7;:11;8097:56;;;;-1:-1:-1;;;8097:56:29;;11121:2:101;8097:56:29;;;11103:21:101;;;11140:18;;;11133:30;11199:34;11179:18;;;11172:62;11251:18;;8097:56:29;11093:182:101;8097:56:29;8030:128;:::o;9020:576:4:-;-1:-1:-1;;;;;9103:21:4;;9095:67;;;;-1:-1:-1;;;9095:67:4;;14627:2:101;9095:67:4;;;14609:21:101;14666:2;14646:18;;;14639:30;14705:34;14685:18;;;14678:62;14776:3;14756:18;;;14749:31;14797:19;;9095:67:4;14599:223:101;9095:67:4;-1:-1:-1;;;;;9258:18:4;;9233:22;9258:18;;;;;;;;;;;9294:24;;;;9286:71;;;;-1:-1:-1;;;9286:71:4;;10718:2:101;9286:71:4;;;10700:21:101;10757:2;10737:18;;;10730:30;10796:34;10776:18;;;10769:62;10867:4;10847:18;;;10840:32;10889:19;;9286:71:4;10690:224:101;9286:71:4;-1:-1:-1;;;;;9391:18:4;;: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:4;;19328:25:101;;;9519:1:4;;-1:-1:-1;;;;;9493:37:4;;;;;19316:2:101;19301:18;9493:37:4;;;;;;;1413:603:9;;;:::o;12121:256:29:-;12254:36;;:64;;;;;;;;12168:12;;-1:-1:-1;;;;;12254:36:29;;:62;;:64;;;;;12168:12;;12254:64;;;;;;;:36;:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;12254:64:29;;;;;;;;;;;;:::i;:::-;3304:1;12254:87;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;12215:149:29;;:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;12188:184;;12121:256;:::o;3108:96:21:-;3166:7;3192:5;3196:1;3192;:5;:::i;701:205:9:-;840:58;;-1:-1:-1;;;;;6420:55:101;;840:58:9;;;6402:74:101;6492:18;;;6485:34;;;813:86:9;;833:5;;863:23;;6375:18:101;;840:58:9;6357:168:101;10019:370:4;-1:-1:-1;;;;;10150:19:4;;10142:68;;;;-1:-1:-1;;;10142:68:4;;15842:2:101;10142:68:4;;;15824:21:101;15881:2;15861:18;;;15854:30;15920:34;15900:18;;;15893:62;15991:6;15971:18;;;15964:34;16015:19;;10142:68:4;15814:226:101;10142:68:4;-1:-1:-1;;;;;10228:21:4;;10220:68;;;;-1:-1:-1;;;10220:68:4;;11482:2:101;10220:68:4;;;11464:21:101;11521:2;11501:18;;;11494:30;11560:34;11540:18;;;11533:62;11631:4;11611:18;;;11604:32;11653:19;;10220:68:4;11454:224:101;10220:68:4;-1:-1:-1;;;;;10299:18:4;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10350:32;;19328:25:101;;;10350:32:4;;19301:18:101;10350:32:4;;;;;;;10019:370;;;:::o;7322:713::-;-1:-1:-1;;;;;7457:20:4;;7449:70;;;;-1:-1:-1;;;7449:70:4;;15029:2:101;7449:70:4;;;15011:21:101;15068:2;15048:18;;;15041:30;15107:34;15087:18;;;15080:62;15178:7;15158:18;;;15151:35;15203:19;;7449:70:4;15001:227:101;7449:70:4;-1:-1:-1;;;;;7537:23:4;;7529:71;;;;-1:-1:-1;;;7529:71:4;;9900:2:101;7529:71:4;;;9882:21:101;9939:2;9919:18;;;9912:30;9978:34;9958:18;;;9951:62;10049:5;10029:18;;;10022:33;10072:19;;7529:71:4;9872:225:101;7529:71:4;-1:-1:-1;;;;;7693:17:4;;7669:21;7693:17;;;;;;;;;;;7728:23;;;;7720:74;;;;-1:-1:-1;;;7720:74:4;;12289:2:101;7720:74:4;;;12271:21:101;12328:2;12308:18;;;12301:30;12367:34;12347:18;;;12340:62;12438:8;12418:18;;;12411:36;12464:19;;7720:74:4;12261:228:101;7720:74:4;-1:-1:-1;;;;;7828:17:4;;;: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:4;7945:6;-1:-1:-1;;;;;7936:35:4;;7964:6;7936:35;;;;19328:25:101;;19316:2;19301:18;;19283:76;7936:35:4;;;;;;;;7982:46;7439:596;7322:713;;;:::o;3470:174:33:-;3546:6;;;-1:-1:-1;;;;;3562:18:33;;;-1:-1:-1;;3562:18:33;;;;;;;3595:42;;3546:6;;;3562:18;3546:6;;3595:42;;3526:17;;3595:42;3516:128;3470:174;:::o;8272:226:29:-;8331:77;-1:-1:-1;;;;;8338:13:29;8331:38;8370:10;8390:4;8397:10;8331:38;:77::i;:::-;8414:14;:12;:14::i;:::-;:79;;;;;-1:-1:-1;;;;;8437:13:29;7241:15:101;;8414:79:29;;;7223:34:101;7273:18;;;7266:34;;;8472:4:29;7316:18:101;;;7309:43;3403:3:29;7368:18:101;;;7361:47;8414:22:29;;;;;;;7134:19:101;;8414:79:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8272:226;:::o;8311:389:4:-;-1:-1:-1;;;;;8394:21:4;;8386:65;;;;-1:-1:-1;;;8386:65:4;;19024:2:101;8386:65:4;;;19006:21:101;19063:2;19043:18;;;19036:30;19102:33;19082:18;;;19075:61;19153:18;;8386:65:4;18996:181:101;8386:65:4;8538:6;8522:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;8554:18:4;;:9;:18;;;;;;;;;;:28;;8576:6;;8554:9;:28;;8576:6;;8554:28;:::i;:::-;;;;-1:-1:-1;;8597:37:4;;19328:25:101;;;-1:-1:-1;;;;;8597:37:4;;;8614:1;;8597:37;;19316:2:101;19301:18;8597:37:4;;;;;;;8311:389;;:::o;7528:382:29:-;7592:7;7607:15;7628:20;7651:13;3316:12:4;;;3229:106;7651:13:29;7628:36;-1:-1:-1;7675:17:29;7671:214;;7712:7;7702:17;;7671:214;;;7828:31;;-1:-1:-1;;;7828:31:29;;7853:4;7828:31;;;5408:74:101;7816:62:29;;7865:12;;7816:44;;-1:-1:-1;;;;;7828:6:29;:16;;;;5381:18:101;;7828:31:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7816:7;;:11;:44::i;:::-;:48;;:62::i;2109:326:32:-;2211:8;;2168:4;;-1:-1:-1;;;;;2211:8:32;;;;2238:31;;;;;2230:79;;;;-1:-1:-1;;;2230:79:32;;11885:2:101;2230:79:32;;;11867:21:101;11924:2;11904:18;;;11897:30;11963:34;11943:18;;;11936:62;12034:5;12014:18;;;12007:33;12057:19;;2230:79:32;11857:225:101;2230:79:32;2320:8;:22;;-1:-1:-1;;2320:22:32;-1:-1:-1;;;;;2320:22:32;;;;;;;;;2358:49;;2320:22;;2358:49;;;;;-1:-1:-1;;2358:49:32;-1:-1:-1;2424:4:32;;2109:326;-1:-1:-1;;2109:326:32:o;2022:310:9:-;2171:39;;-1:-1:-1;;;2171:39:9;;2195:4;2171:39;;;5728:34:101;-1:-1:-1;;;;;5798:15:101;;;5778:18;;;5771:43;2148:20:9;;2213:5;;2171:15;;;;;5640:18:101;;2171:39:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:47;;;;:::i;:::-;2255:69;;-1:-1:-1;;;;;6420:55:101;;2255:69:9;;;6402:74:101;6492:18;;;6485:34;;;2148:70:9;;-1:-1:-1;2228:97:9;;2248:5;;2278:22;;6375:18:101;;2255:69:9;6357:168:101;3207:706:9;3626:23;3652:69;3680:4;3652:69;;;;;;;;;;;;;;;;;3660:5;-1:-1:-1;;;;;3652:27:9;;;:69;;;;;:::i;:::-;3735:17;;3626:95;;-1:-1:-1;3735:21:9;3731:176;;3830:10;3819:30;;;;;;;;;;;;:::i;:::-;3811:85;;;;-1:-1:-1;;;3811:85:9;;17424:2:101;3811:85:9;;;17406:21:101;17463:2;17443:18;;;17436:30;17502:34;17482:18;;;17475:62;17573:12;17553:18;;;17546:40;17603:19;;3811:85:9;17396:232:101;4601:499:12;4766:12;4823:5;4798:21;:30;;4790:81;;;;-1:-1:-1;;;4790:81:12;;12696:2:101;4790:81:12;;;12678:21:101;12735:2;12715:18;;;12708:30;12774:34;12754:18;;;12747:62;12845:8;12825:18;;;12818:36;12871:19;;4790:81:12;12668:228:101;4790:81:12;1087:20;;4881:60;;;;-1:-1:-1;;;4881:60:12;;16247:2:101;4881:60:12;;;16229:21:101;16286:2;16266:18;;;16259:30;16325:31;16305:18;;;16298:59;16374:18;;4881:60:12;16219:179:101;4881:60:12;4953:12;4967:23;4994:6;-1:-1:-1;;;;;4994:11:12;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:12:o;1477:226:30:-;1567:7;;1605:20;:9;1142:4;1605:13;:20::i;:::-;1586:39;-1:-1:-1;1646:25:30;1586:39;1659:11;1646:12;:25::i;1960:201::-;2044:7;;2080:15;:8;2093:1;2080:12;:15::i;:::-;2063:32;-1:-1:-1;2114:17:30;2063:32;1142:4;2114:10;:17::i;912:241:9:-;1077:68;;-1:-1:-1;;;;;6106:15:101;;;1077:68:9;;;6088:34:101;6158:15;;6138:18;;;6131:43;6190:18;;;6183:34;;;1050:96:9;;1070:5;;1100:27;;6000:18:101;;1077:68:9;5982:241:101;3451:96:21;3509:7;3535:5;3539:1;3535;:5;:::i;3836:96::-;3894:7;3920:5;3924:1;3920;:5;:::i;7214:692:12:-;7360:12;7388:7;7384:516;;;-1:-1:-1;7418:10:12;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:12;;;;;;;;:::i;2259:459:31:-;2317:7;2558:6;2554:45;;-1:-1:-1;2587:1:31;2580:8;;2554:45;2609:9;2621:5;2625:1;2621;:5;:::i;:::-;2609:17;-1:-1:-1;2653:1:31;2644:5;2648:1;2609:17;2644:5;:::i;:::-;:10;2636:56;;;;-1:-1:-1;;;2636:56:31;;13816:2:101;2636:56:31;;;13798:21:101;13855:2;13835:18;;;13828:30;13894:34;13874:18;;;13867:62;13965:3;13945:18;;;13938:31;13986:19;;2636:56:31;13788:223:101;3180:130:31;3238:7;3264:39;3268:1;3271;3264:39;;;;;;;;;;;;;;;;;3878:7;3912:12;3905:5;3897:28;;;;-1:-1:-1;;;3897:28:31;;;;;;;;:::i;:::-;-1:-1:-1;3935:9:31;3947:5;3951:1;3947;:5;:::i;:::-;3935:17;3792:272;-1:-1:-1;;;;;3792:272:31:o;14:138:101:-;93:13;;115:31;93:13;115:31;:::i;157:247::-;216:6;269:2;257:9;248:7;244:23;240:32;237:2;;;285:1;282;275:12;237:2;324:9;311:23;343:31;368:5;343:31;:::i;409:251::-;479:6;532:2;520:9;511:7;507:23;503:32;500:2;;;548:1;545;538:12;500:2;580:9;574:16;599:31;624:5;599:31;:::i;665:388::-;733:6;741;794:2;782:9;773:7;769:23;765:32;762:2;;;810:1;807;800:12;762:2;849:9;836:23;868:31;893:5;868:31;:::i;:::-;918:5;-1:-1:-1;975:2:101;960:18;;947:32;988:33;947:32;988:33;:::i;:::-;1040:7;1030:17;;;752:301;;;;;:::o;1058:456::-;1135:6;1143;1151;1204:2;1192:9;1183:7;1179:23;1175:32;1172:2;;;1220:1;1217;1210:12;1172:2;1259:9;1246:23;1278:31;1303:5;1278:31;:::i;:::-;1328:5;-1:-1:-1;1385:2:101;1370:18;;1357:32;1398:33;1357:32;1398:33;:::i;:::-;1162:352;;1450:7;;-1:-1:-1;;;1504:2:101;1489:18;;;;1476:32;;1162:352::o;1519:315::-;1587:6;1595;1648:2;1636:9;1627:7;1623:23;1619:32;1616:2;;;1664:1;1661;1654:12;1616:2;1703:9;1690:23;1722:31;1747:5;1722:31;:::i;:::-;1772:5;1824:2;1809:18;;;;1796:32;;-1:-1:-1;;;1606:228:101:o;1839:1199::-;1934:6;1965:2;2008;1996:9;1987:7;1983:23;1979:32;1976:2;;;2024:1;2021;2014:12;1976:2;2057:9;2051:16;2086:18;2127:2;2119:6;2116:14;2113:2;;;2143:1;2140;2133:12;2113:2;2181:6;2170:9;2166:22;2156:32;;2226:7;2219:4;2215:2;2211:13;2207:27;2197:2;;2248:1;2245;2238:12;2197:2;2277;2271:9;2299:2;2295;2292:10;2289:2;;;2305:18;;:::i;:::-;2351:2;2348:1;2344:10;2383:2;2377:9;-1:-1:-1;;2437:2:101;2433;2429:11;2425:84;2417:6;2413:97;2560:6;2548:10;2545:22;2540:2;2528:10;2525:18;2522:46;2519:2;;;2571:18;;:::i;:::-;2607:2;2600:22;2657:18;;;2691:15;;;;-1:-1:-1;2726:11:101;;;2756;;;2752:20;;2749:33;-1:-1:-1;2746:2:101;;;2795:1;2792;2785:12;2746:2;2817:1;2808:10;;2827:180;2841:2;2838:1;2835:9;2827:180;;;2898:34;2928:3;2898:34;:::i;:::-;2886:47;;2859:1;2852:9;;;;;2953:12;;;;2985;;2827:180;;;-1:-1:-1;3026:6:101;1945:1093;-1:-1:-1;;;;;;;;1945:1093:101:o;3043:277::-;3110:6;3163:2;3151:9;3142:7;3138:23;3134:32;3131:2;;;3179:1;3176;3169:12;3131:2;3211:9;3205:16;3264:5;3257:13;3250:21;3243:5;3240:32;3230:2;;3286:1;3283;3276:12;3800:180;3859:6;3912:2;3900:9;3891:7;3887:23;3883:32;3880:2;;;3928:1;3925;3918:12;3880:2;-1:-1:-1;3951:23:101;;3870:110;-1:-1:-1;3870:110:101:o;3985:184::-;4055:6;4108:2;4096:9;4087:7;4083:23;4079:32;4076:2;;;4124:1;4121;4114:12;4076:2;-1:-1:-1;4147:16:101;;4066:103;-1:-1:-1;4066:103:101:o;4174:315::-;4242:6;4250;4303:2;4291:9;4282:7;4278:23;4274:32;4271:2;;;4319:1;4316;4309:12;4271:2;4355:9;4342:23;4332:33;;4415:2;4404:9;4400:18;4387:32;4428:31;4453:5;4428:31;:::i;4494:484::-;4547:3;4585:5;4579:12;4612:6;4607:3;4600:19;4638:4;4667:2;4662:3;4658:12;4651:19;;4704:2;4697:5;4693:14;4725:1;4735:218;4749:6;4746:1;4743:13;4735:218;;;4814:13;;-1:-1:-1;;;;;4810:62:101;4798:75;;4893:12;;;;4928:15;;;;4771:1;4764:9;4735:218;;;-1:-1:-1;4969:3:101;;4555:423;-1:-1:-1;;;;;4555:423:101:o;4983:274::-;5112:3;5150:6;5144:13;5166:53;5212:6;5207:3;5200:4;5192:6;5188:17;5166:53;:::i;:::-;5235:16;;;;;5120:137;-1:-1:-1;;5120:137:101:o;7419:381::-;7626:2;7615:9;7608:21;7589:4;7646:56;7698:2;7687:9;7683:18;7675:6;7646:56;:::i;:::-;7638:64;;-1:-1:-1;;;;;7742:6:101;7738:55;7733:2;7722:9;7718:18;7711:83;7598:202;;;;;:::o;7805:452::-;8040:2;8029:9;8022:21;8003:4;8060:56;8112:2;8101:9;8097:18;8089:6;8060:56;:::i;:::-;8052:64;;8152:6;8147:2;8136:9;8132:18;8125:34;-1:-1:-1;;;;;8199:6:101;8195:55;8190:2;8179:9;8175:18;8168:83;8012:245;;;;;;:::o;9251:442::-;9400:2;9389:9;9382:21;9363:4;9432:6;9426:13;9475:6;9470:2;9459:9;9455:18;9448:34;9491:66;9550:6;9545:2;9534:9;9530:18;9525:2;9517:6;9513:15;9491:66;:::i;:::-;9609:2;9597:15;-1:-1:-1;;9593:88:101;9578:104;;;;9684:2;9574:113;;9372:321;-1:-1:-1;;9372:321:101:o;19806:128::-;19846:3;19877:1;19873:6;19870:1;19867:13;19864:2;;;19883:18;;:::i;:::-;-1:-1:-1;19919:9:101;;19854:80::o;19939:274::-;19979:1;20005;19995:2;;-1:-1:-1;;;20037:1:101;20030:88;20141:4;20138:1;20131:15;20169:4;20166:1;20159:15;19995:2;-1:-1:-1;20198:9:101;;19985:228::o;20218:::-;20258:7;20384:1;-1:-1:-1;;20312:74:101;20309:1;20306:81;20301:1;20294:9;20287:17;20283:105;20280:2;;;20391:18;;:::i;:::-;-1:-1:-1;20431:9:101;;20270:176::o;20451:125::-;20491:4;20519:1;20516;20513:8;20510:2;;;20524:18;;:::i;:::-;-1:-1:-1;20561:9:101;;20500:76::o;20581:258::-;20653:1;20663:113;20677:6;20674:1;20671:13;20663:113;;;20753:11;;;20747:18;20734:11;;;20727:39;20699:2;20692:10;20663:113;;;20794:6;20791:1;20788:13;20785:2;;;-1:-1:-1;;20829:1:101;20811:16;;20804:27;20634:205::o;20844:437::-;20923:1;20919:12;;;;20966;;;20987:2;;21041:4;21033:6;21029:17;21019:27;;20987:2;21094;21086:6;21083:14;21063:18;21060:38;21057:2;;;-1:-1:-1;;;21128:1:101;21121:88;21232:4;21229:1;21222:15;21260:4;21257:1;21250:15;21057:2;;20899:382;;;:::o;21286:184::-;-1:-1:-1;;;21335:1:101;21328:88;21435:4;21432:1;21425:15;21459:4;21456:1;21449:15;21475:184;-1:-1:-1;;;21524:1:101;21517:88;21624:4;21621:1;21614:15;21648:4;21645:1;21638:15;21664:184;-1:-1:-1;;;21713:1:101;21706:88;21813:4;21810:1;21803:15;21837:4;21834:1;21827:15;21853:154;-1:-1:-1;;;;;21932:5:101;21928:54;21921:5;21918:65;21908:2;;21997:1;21994;21987:12"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "2205400",
                "executionCost": "infinite",
                "totalCost": "infinite"
              },
              "external": {
                "aToken()": "infinite",
                "allowance(address,address)": "infinite",
                "approve(address,uint256)": "24682",
                "approveMaxAmount()": "infinite",
                "balanceOf(address)": "2613",
                "balanceOfToken(address)": "infinite",
                "claimOwnership()": "54512",
                "claimRewards(address)": "infinite",
                "decimals()": "infinite",
                "decreaseAllowance(address,uint256)": "26927",
                "depositToken()": "infinite",
                "incentivesController()": "infinite",
                "increaseAllowance(address,uint256)": "27041",
                "lendingPoolAddressesProviderRegistry()": "2404",
                "manager()": "2366",
                "name()": "infinite",
                "owner()": "2442",
                "pendingOwner()": "2397",
                "redeemToken(uint256)": "infinite",
                "renounceOwnership()": "28183",
                "setManager(address)": "30628",
                "sponsor(uint256)": "infinite",
                "supplyTokenTo(uint256,address)": "infinite",
                "symbol()": "infinite",
                "totalSupply()": "2327",
                "transfer(address,uint256)": "51228",
                "transferERC20(address,address,uint256)": "infinite",
                "transferFrom(address,address,uint256)": "infinite",
                "transferOwnership(address)": "28010"
              },
              "internal": {
                "_depositToAave(uint256)": "infinite",
                "_lendingPool()": "infinite",
                "_requireSharesGTZero(uint256)": "infinite",
                "_sharesToToken(uint256)": "infinite",
                "_tokenToShares(uint256)": "infinite"
              }
            },
            "methodIdentifiers": {
              "aToken()": "a0c1f15e",
              "allowance(address,address)": "dd62ed3e",
              "approve(address,uint256)": "095ea7b3",
              "approveMaxAmount()": "daa4f975",
              "balanceOf(address)": "70a08231",
              "balanceOfToken(address)": "b99152d0",
              "claimOwnership()": "4e71e0c8",
              "claimRewards(address)": "ef5cfb8c",
              "decimals()": "313ce567",
              "decreaseAllowance(address,uint256)": "a457c2d7",
              "depositToken()": "c89039c5",
              "incentivesController()": "af1df255",
              "increaseAllowance(address,uint256)": "39509351",
              "lendingPoolAddressesProviderRegistry()": "873ba41e",
              "manager()": "481c6a75",
              "name()": "06fdde03",
              "owner()": "8da5cb5b",
              "pendingOwner()": "e30c3978",
              "redeemToken(uint256)": "013054c2",
              "renounceOwnership()": "715018a6",
              "setManager(address)": "d0ebdbe7",
              "sponsor(uint256)": "b6cce5e2",
              "supplyTokenTo(uint256,address)": "87a6eeef",
              "symbol()": "95d89b41",
              "totalSupply()": "18160ddd",
              "transfer(address,uint256)": "a9059cbb",
              "transferERC20(address,address,uint256)": "9db5dbe4",
              "transferFrom(address,address,uint256)": "23b872dd",
              "transferOwnership(address)": "f2fde38b"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"contract ATokenInterface\",\"name\":\"_aToken\",\"type\":\"address\"},{\"internalType\":\"contract IAaveIncentivesController\",\"name\":\"_incentivesController\",\"type\":\"address\"},{\"internalType\":\"contract ILendingPoolAddressesProviderRegistry\",\"name\":\"_lendingPoolAddressesProviderRegistry\",\"type\":\"address\"},{\"internalType\":\"uint8\",\"name\":\"_decimals\",\"type\":\"uint8\"},{\"internalType\":\"string\",\"name\":\"_symbol\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"_name\",\"type\":\"string\"},{\"internalType\":\"address\",\"name\":\"_owner\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IAToken\",\"name\":\"aToken\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"contract ILendingPoolAddressesProviderRegistry\",\"name\":\"lendingPoolAddressesProviderRegistry\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"decimals\",\"type\":\"uint8\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"symbol\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"ATokenYieldSourceInitialized\",\"type\":\"event\"},{\"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\":\"user\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"Claimed\",\"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\":\"from\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"RedeemedToken\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"Sponsored\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"}],\"name\":\"SuppliedTokenTo\",\"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\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"contract IERC20\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"TransferredERC20\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"aToken\",\"outputs\":[{\"internalType\":\"contract ATokenInterface\",\"name\":\"\",\"type\":\"address\"}],\"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\":[],\"name\":\"approveMaxAmount\",\"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\":\"claimOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"}],\"name\":\"claimRewards\",\"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\":[],\"name\":\"depositToken\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"incentivesController\",\"outputs\":[{\"internalType\":\"contract IAaveIncentivesController\",\"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\":\"lendingPoolAddressesProviderRegistry\",\"outputs\":[{\"internalType\":\"contract ILendingPoolAddressesProviderRegistry\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"manager\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"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\":\"uint256\",\"name\":\"redeemAmount\",\"type\":\"uint256\"}],\"name\":\"redeemToken\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"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\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"sponsor\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"mintAmount\",\"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\":\"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\":\"contract IERC20\",\"name\":\"erc20Token\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transferERC20\",\"outputs\":[],\"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\":\"address\",\"name\":\"_newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"This contract inherits from the ERC20 implementation to keep track of users depositsThis contract inherits AssetManager which extends OwnableUpgradable\",\"kind\":\"dev\",\"methods\":{\"allowance(address,address)\":{\"details\":\"See {IERC20-allowance}.\"},\"approve(address,uint256)\":{\"details\":\"See {IERC20-approve}. Requirements: - `spender` cannot be the zero address.\"},\"approveMaxAmount()\":{\"details\":\"Emergency function to re-approve max amount if approval amount dropped too low\",\"returns\":{\"_0\":\"true if operation is successful\"}},\"balanceOf(address)\":{\"details\":\"See {IERC20-balanceOf}.\"},\"balanceOfToken(address)\":{\"params\":{\"addr\":\"User address\"},\"returns\":{\"_0\":\"The underlying balance of asset tokens\"}},\"claimOwnership()\":{\"details\":\"This function is only callable by the `_pendingOwner`.\"},\"claimRewards(address)\":{\"params\":{\"to\":\"Address where the claimed rewards will be sent.\"},\"returns\":{\"_0\":\"True if operation was successful.\"}},\"constructor\":{\"params\":{\"_aToken\":\"Aave aToken address\",\"_decimals\":\"Number of decimals the shares (inhereted ERC20) will have. Set as same as underlying asset to ensure sane ExchangeRates\",\"_incentivesController\":\"Aave incentivesController address\",\"_lendingPoolAddressesProviderRegistry\":\"Aave lendingPoolAddressesProviderRegistry address\",\"_name\":\"Token name for the underlying shares ERC20\",\"_symbol\":\"Token symbol for the underlying shares ERC20\"}},\"decimals()\":{\"returns\":{\"_0\":\"The number of 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`.\"},\"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.\"},\"manager()\":{\"returns\":{\"_0\":\"Current `_manager` address.\"}},\"name()\":{\"details\":\"Returns the name of the token.\"},\"pendingOwner()\":{\"returns\":{\"_0\":\"Current `_pendingOwner` address.\"}},\"redeemToken(uint256)\":{\"details\":\"Shares corresponding to the number of tokens withdrawn are burnt from the user's balanceAsset tokens are withdrawn from Aave, then transferred from the yield source to the user's wallet\",\"params\":{\"redeemAmount\":\"The amount of asset tokens to be redeemed\"},\"returns\":{\"_0\":\"The actual amount of asset tokens that were redeemed\"}},\"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.\"}},\"sponsor(uint256)\":{\"details\":\"This allows anyone to distribute tokens among the share holders\",\"params\":{\"amount\":\"The amount of tokens to deposit\"}},\"supplyTokenTo(uint256,address)\":{\"details\":\"Shares corresponding to the number of tokens supplied are mint to the user's balanceAsset tokens are supplied to the yield source, then deposited into Aave\",\"params\":{\"mintAmount\":\"The amount of asset tokens to be supplied\",\"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`.\"},\"transferERC20(address,address,uint256)\":{\"details\":\"This function is only callable by the owner or asset manager\",\"params\":{\"amount\":\"The amount of tokens to transfer\",\"erc20Token\":\"The ERC20 token to transfer\",\"to\":\"The recipient of the tokens\"}},\"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`.\"},\"transferOwnership(address)\":{\"params\":{\"_newOwner\":\"Address to transfer ownership to.\"}}},\"stateVariables\":{\"ADDRESSES_PROVIDER_ID\":{\"details\":\"Aave genesis market LendingPoolAddressesProvider's IDThis variable could evolve in the future if we decide to support other markets\"},\"REFERRAL_CODE\":{\"details\":\"PoolTogether's Aave Referral Code\"}},\"title\":\"Aave Yield Source integration contract, implementing PoolTogether's generic yield source interface\",\"version\":1},\"userdoc\":{\"events\":{\"ATokenYieldSourceInitialized(address,address,uint8,string,string,address)\":{\"notice\":\"Emitted when the yield source is initialized\"},\"Claimed(address,address,uint256)\":{\"notice\":\"Emitted when Aave rewards have been claimed\"},\"RedeemedToken(address,uint256,uint256)\":{\"notice\":\"Emitted when asset tokens are redeemed from the yield source\"},\"Sponsored(address,uint256)\":{\"notice\":\"Emitted when asset tokens are supplied to sponsor the yield source\"},\"SuppliedTokenTo(address,uint256,uint256,address)\":{\"notice\":\"Emitted when asset tokens are supplied to the yield source\"},\"TransferredERC20(address,address,uint256,address)\":{\"notice\":\"Emitted when ERC20 tokens other than yield source's aToken are withdrawn from the yield source\"}},\"kind\":\"user\",\"methods\":{\"aToken()\":{\"notice\":\"Interface for the yield-bearing Aave aToken\"},\"approveMaxAmount()\":{\"notice\":\"Approve lending pool contract to spend max uint256 amount\"},\"balanceOfToken(address)\":{\"notice\":\"Returns user total balance (in asset tokens). This includes the deposits and interest.\"},\"claimOwnership()\":{\"notice\":\"Allows the `_pendingOwner` address to finalize the transfer.\"},\"claimRewards(address)\":{\"notice\":\"Claims the accrued rewards for the aToken, accumulating any pending rewards.\"},\"constructor\":{\"notice\":\"Initializes the yield source with Aave aToken\"},\"decimals()\":{\"notice\":\"Returns the number of decimals that the token repesenting yield source shares has\"},\"depositToken()\":{\"notice\":\"Returns the ERC20 asset token used for deposits\"},\"incentivesController()\":{\"notice\":\"Interface for Aave incentivesController\"},\"lendingPoolAddressesProviderRegistry()\":{\"notice\":\"Interface for Aave lendingPoolAddressesProviderRegistry\"},\"manager()\":{\"notice\":\"Gets current `_manager`.\"},\"owner()\":{\"notice\":\"Returns the address of the current owner.\"},\"pendingOwner()\":{\"notice\":\"Gets current `_pendingOwner`.\"},\"redeemToken(uint256)\":{\"notice\":\"Redeems asset tokens from the yield source\"},\"renounceOwnership()\":{\"notice\":\"Renounce ownership of the contract.\"},\"setManager(address)\":{\"notice\":\"Set or change of manager.\"},\"sponsor(uint256)\":{\"notice\":\"Allows someone to deposit into the yield source without receiving any shares\"},\"supplyTokenTo(uint256,address)\":{\"notice\":\"Supplies asset tokens to the yield source\"},\"transferERC20(address,address,uint256)\":{\"notice\":\"Transfer ERC20 tokens other than the aTokens held by this contract to the recipient address\"},\"transferOwnership(address)\":{\"notice\":\"Allows current owner to set the `_pendingOwner` address.\"}},\"notice\":\"Yield source for a PoolTogether prize pool that generates yield by depositing into Aave V2\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/aave-yield-source/contracts/yield-source/ATokenYieldSource.sol\":\"ATokenYieldSource\"},\"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/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/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/math/SafeMath.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)\\n\\npragma solidity ^0.8.0;\\n\\n// CAUTION\\n// This version of SafeMath should only be used with Solidity 0.8 or later,\\n// because it relies on the compiler's built in overflow checks.\\n\\n/**\\n * @dev Wrappers over Solidity's arithmetic operations.\\n *\\n * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler\\n * now has built in overflow checking.\\n */\\nlibrary SafeMath {\\n    /**\\n     * @dev Returns the addition of two unsigned integers, with an overflow flag.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {\\n        unchecked {\\n            uint256 c = a + b;\\n            if (c < a) return (false, 0);\\n            return (true, c);\\n        }\\n    }\\n\\n    /**\\n     * @dev Returns the substraction of two unsigned integers, with an overflow flag.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {\\n        unchecked {\\n            if (b > a) return (false, 0);\\n            return (true, a - b);\\n        }\\n    }\\n\\n    /**\\n     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {\\n        unchecked {\\n            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the\\n            // benefit is lost if 'b' is also tested.\\n            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522\\n            if (a == 0) return (true, 0);\\n            uint256 c = a * b;\\n            if (c / a != b) return (false, 0);\\n            return (true, c);\\n        }\\n    }\\n\\n    /**\\n     * @dev Returns the division of two unsigned integers, with a division by zero flag.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {\\n        unchecked {\\n            if (b == 0) return (false, 0);\\n            return (true, a / b);\\n        }\\n    }\\n\\n    /**\\n     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.\\n     *\\n     * _Available since v3.4._\\n     */\\n    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {\\n        unchecked {\\n            if (b == 0) return (false, 0);\\n            return (true, a % b);\\n        }\\n    }\\n\\n    /**\\n     * @dev Returns the addition of two unsigned integers, reverting on\\n     * overflow.\\n     *\\n     * Counterpart to Solidity's `+` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - Addition cannot overflow.\\n     */\\n    function add(uint256 a, uint256 b) internal pure returns (uint256) {\\n        return a + b;\\n    }\\n\\n    /**\\n     * @dev Returns the subtraction of two unsigned integers, reverting on\\n     * overflow (when the result is negative).\\n     *\\n     * Counterpart to Solidity's `-` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - Subtraction cannot overflow.\\n     */\\n    function sub(uint256 a, uint256 b) internal pure returns (uint256) {\\n        return a - b;\\n    }\\n\\n    /**\\n     * @dev Returns the multiplication of two unsigned integers, reverting on\\n     * overflow.\\n     *\\n     * Counterpart to Solidity's `*` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - Multiplication cannot overflow.\\n     */\\n    function mul(uint256 a, uint256 b) internal pure returns (uint256) {\\n        return a * b;\\n    }\\n\\n    /**\\n     * @dev Returns the integer division of two unsigned integers, reverting on\\n     * division by zero. The result is rounded towards zero.\\n     *\\n     * Counterpart to Solidity's `/` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - The divisor cannot be zero.\\n     */\\n    function div(uint256 a, uint256 b) internal pure returns (uint256) {\\n        return a / b;\\n    }\\n\\n    /**\\n     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),\\n     * reverting when dividing by zero.\\n     *\\n     * Counterpart to Solidity's `%` operator. This function uses a `revert`\\n     * opcode (which leaves remaining gas untouched) while Solidity uses an\\n     * invalid opcode to revert (consuming all remaining gas).\\n     *\\n     * Requirements:\\n     *\\n     * - The divisor cannot be zero.\\n     */\\n    function mod(uint256 a, uint256 b) internal pure returns (uint256) {\\n        return a % b;\\n    }\\n\\n    /**\\n     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on\\n     * overflow (when the result is negative).\\n     *\\n     * CAUTION: This function is deprecated because it requires allocating memory for the error\\n     * message unnecessarily. For custom revert reasons use {trySub}.\\n     *\\n     * Counterpart to Solidity's `-` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - Subtraction cannot overflow.\\n     */\\n    function sub(\\n        uint256 a,\\n        uint256 b,\\n        string memory errorMessage\\n    ) internal pure returns (uint256) {\\n        unchecked {\\n            require(b <= a, errorMessage);\\n            return a - b;\\n        }\\n    }\\n\\n    /**\\n     * @dev Returns the integer division of two unsigned integers, reverting with custom message on\\n     * division by zero. The result is rounded towards zero.\\n     *\\n     * Counterpart to Solidity's `/` operator. Note: this function uses a\\n     * `revert` opcode (which leaves remaining gas untouched) while Solidity\\n     * uses an invalid opcode to revert (consuming all remaining gas).\\n     *\\n     * Requirements:\\n     *\\n     * - The divisor cannot be zero.\\n     */\\n    function div(\\n        uint256 a,\\n        uint256 b,\\n        string memory errorMessage\\n    ) internal pure returns (uint256) {\\n        unchecked {\\n            require(b > 0, errorMessage);\\n            return a / b;\\n        }\\n    }\\n\\n    /**\\n     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),\\n     * reverting with custom message when dividing by zero.\\n     *\\n     * CAUTION: This function is deprecated because it requires allocating memory for the error\\n     * message unnecessarily. For custom revert reasons use {tryMod}.\\n     *\\n     * Counterpart to Solidity's `%` operator. This function uses a `revert`\\n     * opcode (which leaves remaining gas untouched) while Solidity uses an\\n     * invalid opcode to revert (consuming all remaining gas).\\n     *\\n     * Requirements:\\n     *\\n     * - The divisor cannot be zero.\\n     */\\n    function mod(\\n        uint256 a,\\n        uint256 b,\\n        string memory errorMessage\\n    ) internal pure returns (uint256) {\\n        unchecked {\\n            require(b > 0, errorMessage);\\n            return a % b;\\n        }\\n    }\\n}\\n\",\"keccak256\":\"0xa2f576be637946f767aa56601c26d717f48a0aff44f82e46f13807eea1009a21\",\"license\":\"MIT\"},\"@pooltogether/aave-yield-source/contracts/external/aave/ATokenInterface.sol\":{\"content\":\"// SPDX-License-Identifier: agpl-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"./IAToken.sol\\\";\\n\\ninterface ATokenInterface is IAToken {\\n  /**\\n   * @dev Returns the address of the underlying asset of this aToken (E.g. WETH for aWETH)\\n   **/\\n  /* solhint-disable-next-line func-name-mixedcase */\\n  function UNDERLYING_ASSET_ADDRESS() external view returns (address);\\n}\\n\",\"keccak256\":\"0x871b7f08ef0b5dd0e0f002fa8065b434d60ec300d3309741b7f22e8b7fdce9d4\",\"license\":\"agpl-3.0\"},\"@pooltogether/aave-yield-source/contracts/external/aave/IAToken.sol\":{\"content\":\"// SPDX-License-Identifier: agpl-3.0\\npragma solidity 0.8.6;\\n\\nimport {IERC20} from \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\ninterface IAToken is IERC20 {\\n  /**\\n   * @dev Emitted after the mint action\\n   * @param from The address performing the mint\\n   * @param value The amount being\\n   * @param index The new liquidity index of the reserve\\n   **/\\n  event Mint(address indexed from, uint256 value, uint256 index);\\n\\n  /**\\n   * @dev Mints `amount` aTokens to `user`\\n   * @param user The address receiving the minted tokens\\n   * @param amount The amount of tokens getting minted\\n   * @param index The new liquidity index of the reserve\\n   * @return `true` if the the previous balance of the user was 0\\n   */\\n  function mint(\\n    address user,\\n    uint256 amount,\\n    uint256 index\\n  ) external returns (bool);\\n\\n  /**\\n   * @dev Emitted after aTokens are burned\\n   * @param from The owner of the aTokens, getting them burned\\n   * @param target The address that will receive the underlying\\n   * @param value The amount being burned\\n   * @param index The new liquidity index of the reserve\\n   **/\\n  event Burn(address indexed from, address indexed target, uint256 value, uint256 index);\\n\\n  /**\\n   * @dev Emitted during the transfer action\\n   * @param from The user whose tokens are being transferred\\n   * @param to The recipient\\n   * @param value The amount being transferred\\n   * @param index The new liquidity index of the reserve\\n   **/\\n  event BalanceTransfer(address indexed from, address indexed to, uint256 value, uint256 index);\\n\\n  /**\\n   * @dev Burns aTokens from `user` and sends the equivalent amount of underlying to `receiverOfUnderlying`\\n   * @param user The owner of the aTokens, getting them burned\\n   * @param receiverOfUnderlying The address that will receive the underlying\\n   * @param amount The amount being burned\\n   * @param index The new liquidity index of the reserve\\n   **/\\n  function burn(\\n    address user,\\n    address receiverOfUnderlying,\\n    uint256 amount,\\n    uint256 index\\n  ) external;\\n\\n  /**\\n   * @dev Mints aTokens to the reserve treasury\\n   * @param amount The amount of tokens getting minted\\n   * @param index The new liquidity index of the reserve\\n   */\\n  function mintToTreasury(uint256 amount, uint256 index) external;\\n\\n  /**\\n   * @dev Transfers aTokens in the event of a borrow being liquidated, in case the liquidators reclaims the aToken\\n   * @param from The address getting liquidated, current owner of the aTokens\\n   * @param to The recipient\\n   * @param value The amount of tokens getting transferred\\n   **/\\n  function transferOnLiquidation(\\n    address from,\\n    address to,\\n    uint256 value\\n  ) external;\\n\\n  /**\\n   * @dev Transfers the underlying asset to `target`. Used by the LendingPool to transfer\\n   * assets in borrow(), withdraw() and flashLoan()\\n   * @param user The recipient of the aTokens\\n   * @param amount The amount getting transferred\\n   * @return The amount transferred\\n   **/\\n  function transferUnderlyingTo(address user, uint256 amount) external returns (uint256);\\n}\\n\",\"keccak256\":\"0x0341583b9f47e153002d86c66193ba1798a924148f4c64c0c11d55f514a6c642\",\"license\":\"agpl-3.0\"},\"@pooltogether/aave-yield-source/contracts/external/aave/IAaveIncentivesController.sol\":{\"content\":\"// SPDX-License-Identifier: agpl-3.0\\n\\npragma solidity 0.8.6;\\n\\npragma experimental ABIEncoderV2;\\n\\ninterface IAaveIncentivesController {\\n  event RewardsAccrued(address indexed user, uint256 amount);\\n\\n  event RewardsClaimed(address indexed user, address indexed to, uint256 amount);\\n\\n  // Commented out to avoid displaying warnings about duplicate definition\\n  // event RewardsClaimed(\\n  //   address indexed user,\\n  //   address indexed to,\\n  //   address indexed claimer,\\n  //   uint256 amount\\n  // );\\n\\n  event ClaimerSet(address indexed user, address indexed claimer);\\n\\n  /*\\n   * @dev Returns the configuration of the distribution for a certain asset\\n   * @param asset The address of the reference asset of the distribution\\n   * @return The asset index, the emission per second and the last updated timestamp\\n   **/\\n  function getAssetData(address asset)\\n    external\\n    view\\n    returns (\\n      uint256,\\n      uint256,\\n      uint256\\n    );\\n\\n  /**\\n   * @dev Whitelists an address to claim the rewards on behalf of another address\\n   * @param user The address of the user\\n   * @param claimer The address of the claimer\\n   */\\n  function setClaimer(address user, address claimer) external;\\n\\n  /**\\n   * @dev Returns the whitelisted claimer for a certain address (0x0 if not set)\\n   * @param user The address of the user\\n   * @return The claimer address\\n   */\\n  function getClaimer(address user) external view returns (address);\\n\\n  /**\\n   * @dev Configure assets for a certain rewards emission\\n   * @param assets The assets to incentivize\\n   * @param emissionsPerSecond The emission for each asset\\n   */\\n  function configureAssets(address[] calldata assets, uint256[] calldata emissionsPerSecond)\\n    external;\\n\\n  /**\\n   * @dev Called by the corresponding asset on any update that affects the rewards distribution\\n   * @param asset The address of the user\\n   * @param userBalance The balance of the user of the asset in the lending pool\\n   * @param totalSupply The total supply of the asset in the lending pool\\n   **/\\n  function handleAction(\\n    address asset,\\n    uint256 userBalance,\\n    uint256 totalSupply\\n  ) external;\\n\\n  /**\\n   * @dev Returns the total of rewards of an user, already accrued + not yet accrued\\n   * @param user The address of the user\\n   * @return The rewards\\n   **/\\n  function getRewardsBalance(address[] calldata assets, address user)\\n    external\\n    view\\n    returns (uint256);\\n\\n  /**\\n   * @dev Claims reward for an user, on all the assets of the lending pool, accumulating the pending rewards\\n   * @param amount Amount of rewards to claim\\n   * @param to Address that will be receiving the rewards\\n   * @return Rewards claimed\\n   **/\\n  function claimRewards(\\n    address[] calldata assets,\\n    uint256 amount,\\n    address to\\n  ) external returns (uint256);\\n\\n  /**\\n   * @dev Claims reward for an user on behalf, on all the assets of the lending pool, accumulating the pending rewards. The caller must\\n   * be whitelisted via \\\"allowClaimOnBehalf\\\" function by the RewardsAdmin role manager\\n   * @param amount Amount of rewards to claim\\n   * @param user Address to check and claim rewards\\n   * @param to Address that will be receiving the rewards\\n   * @return Rewards claimed\\n   **/\\n  function claimRewardsOnBehalf(\\n    address[] calldata assets,\\n    uint256 amount,\\n    address user,\\n    address to\\n  ) external returns (uint256);\\n\\n  /**\\n   * @dev returns the unclaimed rewards of the user\\n   * @param user the address of the user\\n   * @return the unclaimed user rewards\\n   */\\n  function getUserUnclaimedRewards(address user) external view returns (uint256);\\n\\n  /**\\n   * @dev returns the unclaimed rewards of the user\\n   * @param user the address of the user\\n   * @param asset The asset to incentivize\\n   * @return the user index for the asset\\n   */\\n  function getUserAssetData(address user, address asset) external view returns (uint256);\\n\\n  /**\\n   * @dev for backward compatibility with previous implementation of the Incentives controller\\n   */\\n  function REWARD_TOKEN() external view returns (address);\\n\\n  /**\\n   * @dev for backward compatibility with previous implementation of the Incentives controller\\n   */\\n  function PRECISION() external view returns (uint8);\\n\\n  /**\\n   * @dev Gets the distribution end timestamp of the emissions\\n   */\\n  function DISTRIBUTION_END() external view returns (uint256);\\n}\\n\",\"keccak256\":\"0xbe939adc6c712bf9d377e472c38ee0ad24e852b00e4fdfc2521f66521985d539\",\"license\":\"agpl-3.0\"},\"@pooltogether/aave-yield-source/contracts/external/aave/ILendingPool.sol\":{\"content\":\"// SPDX-License-Identifier: agpl-3.0\\npragma solidity 0.8.6;\\n\\ninterface ILendingPool {\\n\\n  /**\\n   * @dev Deposits an `amount` of underlying asset into the reserve, receiving in return overlying aTokens.\\n   * - E.g. User deposits 100 USDC and gets in return 100 aUSDC\\n   * @param asset The address of the underlying asset to deposit\\n   * @param amount The amount to be deposited\\n   * @param onBehalfOf The address that will receive the aTokens, same as msg.sender if the user\\n   *   wants to receive them on his own wallet, or a different address if the beneficiary of aTokens\\n   *   is a different wallet\\n   * @param referralCode Code used to register the integrator originating the operation, for potential rewards.\\n   *   0 if the action is executed directly by the user, without any middle-man\\n   **/\\n  function deposit(\\n    address asset,\\n    uint256 amount,\\n    address onBehalfOf,\\n    uint16 referralCode\\n  ) external;\\n\\n  /**\\n   * @dev Withdraws an `amount` of underlying asset from the reserve, burning the equivalent aTokens owned\\n   * E.g. User has 100 aUSDC, calls withdraw() and receives 100 USDC, burning the 100 aUSDC\\n   * @param asset The address of the underlying asset to withdraw\\n   * @param amount The underlying amount to be withdrawn\\n   *   - Send the value type(uint256).max in order to withdraw the whole aToken balance\\n   * @param to Address that will receive the underlying, same as msg.sender if the user\\n   *   wants to receive it on his own wallet, or a different address if the beneficiary is a\\n   *   different wallet\\n   * @return The final amount withdrawn\\n   **/\\n  function withdraw(\\n    address asset,\\n    uint256 amount,\\n    address to\\n  ) external returns (uint256);\\n\\n}\\n\",\"keccak256\":\"0x813e2714c8deaac5f8e0f2a5c17600d1fbaf592773ff40cc8360df61ebde44ff\",\"license\":\"agpl-3.0\"},\"@pooltogether/aave-yield-source/contracts/external/aave/ILendingPoolAddressesProvider.sol\":{\"content\":\"// SPDX-License-Identifier: agpl-3.0\\npragma solidity 0.8.6;\\n\\n/**\\n * @title LendingPoolAddressesProvider contract\\n * @dev Main registry of addresses part of or connected to the protocol, including permissioned roles\\n * - Acting also as factory of proxies and admin of those, so with right to change its implementations\\n * - Owned by the Aave Governance\\n * @author Aave\\n **/\\ninterface ILendingPoolAddressesProvider {\\n  event MarketIdSet(string newMarketId);\\n  event LendingPoolUpdated(address indexed newAddress);\\n  event ConfigurationAdminUpdated(address indexed newAddress);\\n  event EmergencyAdminUpdated(address indexed newAddress);\\n  event LendingPoolConfiguratorUpdated(address indexed newAddress);\\n  event LendingPoolCollateralManagerUpdated(address indexed newAddress);\\n  event PriceOracleUpdated(address indexed newAddress);\\n  event LendingRateOracleUpdated(address indexed newAddress);\\n  event ProxyCreated(bytes32 id, address indexed newAddress);\\n  event AddressSet(bytes32 id, address indexed newAddress, bool hasProxy);\\n\\n  function getMarketId() external view returns (string memory);\\n\\n  function setMarketId(string calldata marketId) external;\\n\\n  function setAddress(bytes32 id, address newAddress) external;\\n\\n  function setAddressAsProxy(bytes32 id, address impl) external;\\n\\n  function getAddress(bytes32 id) external view returns (address);\\n\\n  function getLendingPool() external view returns (address);\\n\\n  function setLendingPoolImpl(address pool) external;\\n\\n  function getLendingPoolConfigurator() external view returns (address);\\n\\n  function setLendingPoolConfiguratorImpl(address configurator) external;\\n\\n  function getLendingPoolCollateralManager() external view returns (address);\\n\\n  function setLendingPoolCollateralManager(address manager) external;\\n\\n  function getPoolAdmin() external view returns (address);\\n\\n  function setPoolAdmin(address admin) external;\\n\\n  function getEmergencyAdmin() external view returns (address);\\n\\n  function setEmergencyAdmin(address admin) external;\\n\\n  function getPriceOracle() external view returns (address);\\n\\n  function setPriceOracle(address priceOracle) external;\\n\\n  function getLendingRateOracle() external view returns (address);\\n\\n  function setLendingRateOracle(address lendingRateOracle) external;\\n}\\n\",\"keccak256\":\"0x3a829abb20080962e0730d0cc414b5f9d4c3933df610830ee71108caeb59f7cc\",\"license\":\"agpl-3.0\"},\"@pooltogether/aave-yield-source/contracts/external/aave/ILendingPoolAddressesProviderRegistry.sol\":{\"content\":\"// SPDX-License-Identifier: agpl-3.0\\npragma solidity 0.8.6;\\n\\n/**\\n * @title LendingPoolAddressesProviderRegistry contract\\n * @dev Main registry of LendingPoolAddressesProvider of multiple Aave protocol's markets\\n * - Used for indexing purposes of Aave protocol's markets\\n * - The id assigned to a LendingPoolAddressesProvider refers to the market it is connected with,\\n *   for example with `0` for the Aave main market and `1` for the next created\\n * @author Aave\\n **/\\ninterface ILendingPoolAddressesProviderRegistry {\\n  event AddressesProviderRegistered(address indexed newAddress);\\n  event AddressesProviderUnregistered(address indexed newAddress);\\n\\n  function getAddressesProvidersList() external view returns (address[] memory);\\n\\n  function getAddressesProviderIdByAddress(address addressesProvider)\\n    external\\n    view\\n    returns (uint256);\\n\\n  function registerAddressesProvider(address provider, uint256 id) external;\\n\\n  function unregisterAddressesProvider(address provider) external;\\n}\\n\",\"keccak256\":\"0xc25f67d1627d5528123436a3724624886a69112b9c999cdaf02c39ad83902745\",\"license\":\"agpl-3.0\"},\"@pooltogether/aave-yield-source/contracts/external/aave/IProtocolYieldSource.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@pooltogether/yield-source-interface/contracts/IYieldSource.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\n\\n/// @title The interface used for all Yield Sources for the PoolTogether protocol\\n/// @dev There are two privileged roles: the owner and the asset manager.  The owner can configure the asset managers.\\ninterface IProtocolYieldSource is IYieldSource {\\n  /// @notice Allows the owner to transfer ERC20 tokens held by this contract to the target address.\\n  /// @dev This function is callable by the owner or asset manager.\\n  /// This function should not be able to transfer any tokens that represent user deposits.\\n  /// @param token The ERC20 token to transfer\\n  /// @param to The recipient of the tokens\\n  /// @param amount The amount of tokens to transfer\\n  function transferERC20(IERC20 token, address to, uint256 amount) external;\\n\\n  /// @notice Allows someone to deposit into the yield source without receiving any shares.  The deposited token will be the same as token()\\n  /// This allows anyone to distribute tokens among the share holders.\\n  function sponsor(uint256 amount) external;\\n}\\n\",\"keccak256\":\"0xe528dc5a23cee18141e17a1fa8febd14e2aba9db6d62e6d178029f467611c7e3\",\"license\":\"GPL-3.0\"},\"@pooltogether/aave-yield-source/contracts/yield-source/ATokenYieldSource.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/utils/math/SafeMath.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/ERC20.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\\\";\\nimport \\\"@openzeppelin/contracts/security/ReentrancyGuard.sol\\\";\\nimport \\\"@pooltogether/fixed-point/contracts/FixedPoint.sol\\\";\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\\\";\\n\\nimport \\\"../external/aave/ILendingPool.sol\\\";\\nimport \\\"../external/aave/ILendingPoolAddressesProvider.sol\\\";\\nimport \\\"../external/aave/ILendingPoolAddressesProviderRegistry.sol\\\";\\nimport \\\"../external/aave/ATokenInterface.sol\\\";\\nimport \\\"../external/aave/IAaveIncentivesController.sol\\\";\\nimport \\\"../external/aave/IProtocolYieldSource.sol\\\";\\n\\n/// @title Aave Yield Source integration contract, implementing PoolTogether's generic yield source interface\\n/// @dev This contract inherits from the ERC20 implementation to keep track of users deposits\\n/// @dev This contract inherits AssetManager which extends OwnableUpgradable\\n/// @notice Yield source for a PoolTogether prize pool that generates yield by depositing into Aave V2\\ncontract ATokenYieldSource is ERC20, IProtocolYieldSource, Manageable, ReentrancyGuard {\\n  using SafeMath for uint256;\\n  using SafeERC20 for IERC20;\\n\\n  /// @notice Emitted when the yield source is initialized\\n  event ATokenYieldSourceInitialized(\\n    IAToken indexed aToken,\\n    ILendingPoolAddressesProviderRegistry lendingPoolAddressesProviderRegistry,\\n    uint8 decimals,\\n    string name,\\n    string symbol,\\n    address owner\\n  );\\n\\n  /// @notice Emitted when asset tokens are redeemed from the yield source\\n  event RedeemedToken(\\n    address indexed from,\\n    uint256 shares,\\n    uint256 amount\\n  );\\n\\n  /// @notice Emitted when Aave rewards have been claimed\\n  event Claimed(\\n    address indexed user,\\n    address indexed to,\\n    uint256 amount\\n  );\\n\\n  /// @notice Emitted when asset tokens are supplied to the yield source\\n  event SuppliedTokenTo(\\n    address indexed from,\\n    uint256 shares,\\n    uint256 amount,\\n    address indexed to\\n  );\\n\\n  /// @notice Emitted when asset tokens are supplied to sponsor the yield source\\n  event Sponsored(\\n    address indexed from,\\n    uint256 amount\\n  );\\n\\n  /// @notice Emitted when ERC20 tokens other than yield source's aToken are withdrawn from the yield source\\n  event TransferredERC20(\\n    address indexed from,\\n    address indexed to,\\n    uint256 amount,\\n    IERC20 indexed token\\n  );\\n\\n  /// @notice Interface for the yield-bearing Aave aToken\\n  ATokenInterface public immutable aToken;\\n\\n  /// @notice Interface for Aave incentivesController\\n  IAaveIncentivesController public immutable incentivesController;\\n\\n  /// @notice Interface for Aave lendingPoolAddressesProviderRegistry\\n  ILendingPoolAddressesProviderRegistry public lendingPoolAddressesProviderRegistry;\\n\\n  /// @notice Underlying asset token address.\\n  address private immutable _tokenAddress;\\n\\n  /// @notice ERC20 token decimals.\\n  uint8 private immutable __decimals;\\n\\n  /// @dev Aave genesis market LendingPoolAddressesProvider's ID\\n  /// @dev This variable could evolve in the future if we decide to support other markets\\n  uint256 private constant ADDRESSES_PROVIDER_ID = uint256(0);\\n\\n  /// @dev PoolTogether's Aave Referral Code\\n  uint16 private constant REFERRAL_CODE = uint16(188);\\n\\n  /// @notice Initializes the yield source with Aave aToken\\n  /// @param _aToken Aave aToken address\\n  /// @param _incentivesController Aave incentivesController address\\n  /// @param _lendingPoolAddressesProviderRegistry Aave lendingPoolAddressesProviderRegistry address\\n  /// @param _decimals Number of decimals the shares (inhereted ERC20) will have. Set as same as underlying asset to ensure sane ExchangeRates\\n  /// @param _symbol Token symbol for the underlying shares ERC20\\n  /// @param _name Token name for the underlying shares ERC20\\n  constructor (\\n    ATokenInterface _aToken,\\n    IAaveIncentivesController _incentivesController,\\n    ILendingPoolAddressesProviderRegistry _lendingPoolAddressesProviderRegistry,\\n    uint8 _decimals,\\n    string memory _symbol,\\n    string memory _name,\\n    address _owner\\n  ) Ownable(_owner) ERC20(_name, _symbol) ReentrancyGuard()\\n  {\\n    require(address(_aToken) != address(0), \\\"ATokenYieldSource/aToken-not-zero-address\\\");\\n    require(address(_incentivesController) != address(0), \\\"ATokenYieldSource/incentivesController-not-zero-address\\\");\\n    require(address(_lendingPoolAddressesProviderRegistry) != address(0), \\\"ATokenYieldSource/lendingPoolRegistry-not-zero-address\\\");\\n    require(_owner != address(0), \\\"ATokenYieldSource/owner-not-zero-address\\\");\\n    require(_decimals > 0, \\\"ATokenYieldSource/decimals-gt-zero\\\");\\n\\n    aToken = _aToken;\\n    incentivesController = _incentivesController;\\n    lendingPoolAddressesProviderRegistry = _lendingPoolAddressesProviderRegistry;\\n    __decimals = _decimals;\\n\\n    address tokenAddress = address(_aToken.UNDERLYING_ASSET_ADDRESS());\\n    _tokenAddress = tokenAddress;\\n\\n    // Approve once for max amount\\n    IERC20(tokenAddress).safeApprove(address(_lendingPool()), type(uint256).max);\\n\\n    emit ATokenYieldSourceInitialized (\\n      _aToken,\\n      _lendingPoolAddressesProviderRegistry,\\n      _decimals,\\n      _name,\\n      _symbol,\\n      _owner\\n    );\\n  }\\n\\n  /// @notice Returns the number of decimals that the token repesenting yield source shares has\\n  /// @return The number of decimals\\n  function decimals() public override view returns (uint8) {\\n    return __decimals;\\n  }\\n\\n  /// @notice Approve lending pool contract to spend max uint256 amount\\n  /// @dev Emergency function to re-approve max amount if approval amount dropped too low\\n  /// @return true if operation is successful\\n  function approveMaxAmount() external onlyOwner returns (bool) {\\n    address _lendingPoolAddress = address(_lendingPool());\\n    IERC20 _underlyingAsset = IERC20(_tokenAddress);\\n\\n    _underlyingAsset.safeIncreaseAllowance(\\n      _lendingPoolAddress,\\n      type(uint256).max.sub(_underlyingAsset.allowance(address(this), _lendingPoolAddress))\\n    );\\n\\n    return true;\\n  }\\n\\n  /// @notice Returns the ERC20 asset token used for deposits\\n  /// @return The ERC20 asset token address\\n  function depositToken() public view override returns (address) {\\n    return _tokenAddress;\\n  }\\n\\n  /// @notice Returns user total balance (in asset tokens). This includes the deposits and interest.\\n  /// @param addr User address\\n  /// @return The underlying balance of asset tokens\\n  function balanceOfToken(address addr) external override view returns (uint256) {\\n    return _sharesToToken(balanceOf(addr));\\n  }\\n\\n  /// @notice Calculates the number of shares that should be mint or burned when a user deposit or withdraw\\n  /// @param _tokens Amount of tokens\\n  /// @return Number of shares\\n  function _tokenToShares(uint256 _tokens) internal view returns (uint256) {\\n    uint256 _shares;\\n    uint256 _totalSupply = totalSupply();\\n\\n    if (_totalSupply == 0) {\\n      _shares = _tokens;\\n    } else {\\n      // rate = tokens / shares\\n      // shares = tokens * (totalShares / yieldSourceTotalSupply)\\n      uint256 _exchangeMantissa = FixedPoint.calculateMantissa(_totalSupply, aToken.balanceOf(address(this)));\\n      _shares = FixedPoint.multiplyUintByMantissa(_tokens, _exchangeMantissa);\\n    }\\n\\n    return _shares;\\n  }\\n\\n  /// @notice Calculates the number of tokens a user has in the yield source\\n  /// @param _shares Amount of shares\\n  /// @return Number of tokens\\n  function _sharesToToken(uint256 _shares) internal view returns (uint256) {\\n    uint256 _tokens;\\n    uint256 _totalSupply = totalSupply();\\n\\n    if (_totalSupply == 0) {\\n      _tokens = _shares;\\n    } else {\\n      // tokens = (shares * yieldSourceTotalSupply) / totalShares\\n      _tokens = _shares.mul(aToken.balanceOf(address(this))).div(_totalSupply);\\n    }\\n\\n    return _tokens;\\n  }\\n\\n  /// @notice Checks that the amount of shares is greater than zero.\\n  /// @param _shares Amount of shares to check\\n  function _requireSharesGTZero(uint256 _shares) internal pure {\\n    require(_shares > 0, \\\"ATokenYieldSource/shares-gt-zero\\\");\\n  }\\n\\n  /// @notice Deposit asset tokens to Aave\\n  /// @param mintAmount The amount of asset tokens to be deposited\\n  function _depositToAave(uint256 mintAmount) internal {\\n    IERC20(_tokenAddress).safeTransferFrom(msg.sender, address(this), mintAmount);\\n    _lendingPool().deposit(_tokenAddress, mintAmount, address(this), REFERRAL_CODE);\\n  }\\n\\n  /// @notice Supplies asset tokens to the yield source\\n  /// @dev Shares corresponding to the number of tokens supplied are mint to the user's balance\\n  /// @dev Asset tokens are supplied to the yield source, then deposited into Aave\\n  /// @param mintAmount The amount of asset tokens to be supplied\\n  /// @param to The user whose balance will receive the tokens\\n  function supplyTokenTo(uint256 mintAmount, address to) external override nonReentrant {\\n    uint256 shares = _tokenToShares(mintAmount);\\n    _requireSharesGTZero(shares);\\n\\n    _depositToAave(mintAmount);\\n    _mint(to, shares);\\n\\n    emit SuppliedTokenTo(msg.sender, shares, mintAmount, to);\\n  }\\n\\n  /// @notice Redeems asset tokens from the yield source\\n  /// @dev Shares corresponding to the number of tokens withdrawn are burnt from the user's balance\\n  /// @dev Asset tokens are withdrawn from Aave, then transferred from the yield source to the user's wallet\\n  /// @param redeemAmount The amount of asset tokens to be redeemed\\n  /// @return The actual amount of asset tokens that were redeemed\\n  function redeemToken(uint256 redeemAmount) external override nonReentrant returns (uint256) {\\n    uint256 shares = _tokenToShares(redeemAmount);\\n    _requireSharesGTZero(shares);\\n\\n    _burn(msg.sender, shares);\\n\\n    IERC20 _depositToken = IERC20(_tokenAddress);\\n    uint256 beforeBalance = _depositToken.balanceOf(address(this));\\n    _lendingPool().withdraw(_tokenAddress, redeemAmount, address(this));\\n    uint256 afterBalance = _depositToken.balanceOf(address(this));\\n\\n    uint256 balanceDiff = afterBalance.sub(beforeBalance);\\n    _depositToken.safeTransfer(msg.sender, balanceDiff);\\n\\n    emit RedeemedToken(msg.sender, shares, redeemAmount);\\n    return balanceDiff;\\n  }\\n\\n  /// @notice Transfer ERC20 tokens other than the aTokens held by this contract to the recipient address\\n  /// @dev This function is only callable by the owner or asset manager\\n  /// @param erc20Token The ERC20 token to transfer\\n  /// @param to The recipient of the tokens\\n  /// @param amount The amount of tokens to transfer\\n  function transferERC20(IERC20 erc20Token, address to, uint256 amount) external override onlyManagerOrOwner {\\n    require(address(erc20Token) != address(aToken), \\\"ATokenYieldSource/aToken-transfer-not-allowed\\\");\\n    erc20Token.safeTransfer(to, amount);\\n    emit TransferredERC20(msg.sender, to, amount, erc20Token);\\n  }\\n\\n  /// @notice Allows someone to deposit into the yield source without receiving any shares\\n  /// @dev This allows anyone to distribute tokens among the share holders\\n  /// @param amount The amount of tokens to deposit\\n  function sponsor(uint256 amount) external override nonReentrant {\\n    _depositToAave(amount);\\n    emit Sponsored(msg.sender, amount);\\n  }\\n\\n  /// @notice Claims the accrued rewards for the aToken, accumulating any pending rewards.\\n  /// @param to Address where the claimed rewards will be sent.\\n  /// @return True if operation was successful.\\n  function claimRewards(address to) external onlyManagerOrOwner returns (bool) {\\n    require(to != address(0), \\\"ATokenYieldSource/recipient-not-zero-address\\\");\\n\\n    IAaveIncentivesController _incentivesController = incentivesController;\\n\\n    address[] memory _assets = new address[](1);\\n    _assets[0] = address(aToken);\\n\\n    uint256 _amount = _incentivesController.getRewardsBalance(_assets, address(this));\\n    uint256 _amountClaimed = _incentivesController.claimRewards(_assets, _amount, to);\\n\\n    emit Claimed(msg.sender, to, _amountClaimed);\\n    return true;\\n  }\\n\\n  /// @notice Retrieves Aave LendingPool address\\n  /// @return A reference to LendingPool interface\\n  function _lendingPool() internal view returns (ILendingPool) {\\n    return ILendingPool(\\n      ILendingPoolAddressesProvider(\\n        lendingPoolAddressesProviderRegistry.getAddressesProvidersList()[ADDRESSES_PROVIDER_ID]\\n      ).getLendingPool()\\n    );\\n  }\\n}\\n\",\"keccak256\":\"0x746c5d398aefa83f88e131d15b5235df78fc6de23b68200c7e6b892451582458\",\"license\":\"GPL-3.0\"},\"@pooltogether/fixed-point/contracts/FixedPoint.sol\":{\"content\":\"/**\\nCopyright 2020 PoolTogether Inc.\\n\\nThis file is part of PoolTogether.\\n\\nPoolTogether is free software: you can redistribute it and/or modify\\nit under the terms of the GNU General Public License as published by\\nthe Free Software Foundation under version 3 of the License.\\n\\nPoolTogether is distributed in the hope that it will be useful,\\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\\nGNU General Public License for more details.\\n\\nYou should have received a copy of the GNU General Public License\\nalong with PoolTogether.  If not, see <https://www.gnu.org/licenses/>.\\n*/\\n\\npragma solidity >=0.4.0;\\n\\nimport \\\"./external/openzeppelin/OpenZeppelinSafeMath_V3_3_0.sol\\\";\\n\\n/**\\n * @author Brendan Asselstine\\n * @notice Provides basic fixed point math calculations.\\n *\\n * This library calculates integer fractions by scaling values by 1e18 then performing standard integer math.\\n */\\nlibrary FixedPoint {\\n    using OpenZeppelinSafeMath_V3_3_0 for uint256;\\n\\n    // The scale to use for fixed point numbers.  Same as Ether for simplicity.\\n    uint256 internal constant SCALE = 1e18;\\n\\n    /**\\n        * Calculates a Fixed18 mantissa given the numerator and denominator\\n        *\\n        * The mantissa = (numerator * 1e18) / denominator\\n        *\\n        * @param numerator The mantissa numerator\\n        * @param denominator The mantissa denominator\\n        * @return The mantissa of the fraction\\n        */\\n    function calculateMantissa(uint256 numerator, uint256 denominator) internal pure returns (uint256) {\\n        uint256 mantissa = numerator.mul(SCALE);\\n        mantissa = mantissa.div(denominator);\\n        return mantissa;\\n    }\\n\\n    /**\\n        * Multiplies a Fixed18 number by an integer.\\n        *\\n        * @param b The whole integer to multiply\\n        * @param mantissa The Fixed18 number\\n        * @return An integer that is the result of multiplying the params.\\n        */\\n    function multiplyUintByMantissa(uint256 b, uint256 mantissa) internal pure returns (uint256) {\\n        uint256 result = mantissa.mul(b);\\n        result = result.div(SCALE);\\n        return result;\\n    }\\n\\n    /**\\n    * Divides an integer by a fixed point 18 mantissa\\n    *\\n    * @param dividend The integer to divide\\n    * @param mantissa The fixed point 18 number to serve as the divisor\\n    * @return An integer that is the result of dividing an integer by a fixed point 18 mantissa\\n    */\\n    function divideUintByMantissa(uint256 dividend, uint256 mantissa) internal pure returns (uint256) {\\n        uint256 result = SCALE.mul(dividend);\\n        result = result.div(mantissa);\\n        return result;\\n    }\\n}\\n\",\"keccak256\":\"0x5f89a3e774fd543d6fb9bc56469eb0f9fb870fb8b2a01c623e4bb31139ef8bc8\"},\"@pooltogether/fixed-point/contracts/external/openzeppelin/OpenZeppelinSafeMath_V3_3_0.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\n// NOTE: Copied from OpenZeppelin Contracts version 3.3.0\\n\\npragma solidity >=0.4.0;\\n\\n/**\\n * @dev Wrappers over Solidity's arithmetic operations with added overflow\\n * checks.\\n *\\n * Arithmetic operations in Solidity wrap on overflow. This can easily result\\n * in bugs, because programmers usually assume that an overflow raises an\\n * error, which is the standard behavior in high level programming languages.\\n * `SafeMath` restores this intuition by reverting the transaction when an\\n * 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 */\\nlibrary OpenZeppelinSafeMath_V3_3_0 {\\n    /**\\n     * @dev Returns the addition of two unsigned integers, reverting on\\n     * overflow.\\n     *\\n     * Counterpart to Solidity's `+` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - Addition cannot overflow.\\n     */\\n    function add(uint256 a, uint256 b) internal pure returns (uint256) {\\n        uint256 c = a + b;\\n        require(c >= a, \\\"SafeMath: addition overflow\\\");\\n\\n        return c;\\n    }\\n\\n    /**\\n     * @dev Returns the subtraction of two unsigned integers, reverting on\\n     * overflow (when the result is negative).\\n     *\\n     * Counterpart to Solidity's `-` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - Subtraction cannot overflow.\\n     */\\n    function sub(uint256 a, uint256 b) internal pure returns (uint256) {\\n        return sub(a, b, \\\"SafeMath: subtraction overflow\\\");\\n    }\\n\\n    /**\\n     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on\\n     * overflow (when the result is negative).\\n     *\\n     * Counterpart to Solidity's `-` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - Subtraction cannot overflow.\\n     */\\n    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {\\n        require(b <= a, errorMessage);\\n        uint256 c = a - b;\\n\\n        return c;\\n    }\\n\\n    /**\\n     * @dev Returns the multiplication of two unsigned integers, reverting on\\n     * overflow.\\n     *\\n     * Counterpart to Solidity's `*` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - Multiplication cannot overflow.\\n     */\\n    function mul(uint256 a, uint256 b) internal pure returns (uint256) {\\n        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the\\n        // benefit is lost if 'b' is also tested.\\n        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522\\n        if (a == 0) {\\n            return 0;\\n        }\\n\\n        uint256 c = a * b;\\n        require(c / a == b, \\\"SafeMath: multiplication overflow\\\");\\n\\n        return c;\\n    }\\n\\n    /**\\n     * @dev Returns the integer division of two unsigned integers. Reverts on\\n     * division by zero. The result is rounded towards zero.\\n     *\\n     * Counterpart to Solidity's `/` operator. Note: this function uses a\\n     * `revert` opcode (which leaves remaining gas untouched) while Solidity\\n     * uses an invalid opcode to revert (consuming all remaining gas).\\n     *\\n     * Requirements:\\n     *\\n     * - The divisor cannot be zero.\\n     */\\n    function div(uint256 a, uint256 b) internal pure returns (uint256) {\\n        return div(a, b, \\\"SafeMath: division by zero\\\");\\n    }\\n\\n    /**\\n     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on\\n     * division by zero. The result is rounded towards zero.\\n     *\\n     * Counterpart to Solidity's `/` operator. Note: this function uses a\\n     * `revert` opcode (which leaves remaining gas untouched) while Solidity\\n     * uses an invalid opcode to revert (consuming all remaining gas).\\n     *\\n     * Requirements:\\n     *\\n     * - The divisor cannot be zero.\\n     */\\n    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {\\n        require(b > 0, errorMessage);\\n        uint256 c = a / b;\\n        // assert(a == b * c + a % b); // There is no case in which this doesn't hold\\n\\n        return c;\\n    }\\n\\n    /**\\n     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),\\n     * Reverts when dividing by zero.\\n     *\\n     * Counterpart to Solidity's `%` operator. This function uses a `revert`\\n     * opcode (which leaves remaining gas untouched) while Solidity uses an\\n     * invalid opcode to revert (consuming all remaining gas).\\n     *\\n     * Requirements:\\n     *\\n     * - The divisor cannot be zero.\\n     */\\n    function mod(uint256 a, uint256 b) internal pure returns (uint256) {\\n        return mod(a, b, \\\"SafeMath: modulo by zero\\\");\\n    }\\n\\n    /**\\n     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),\\n     * Reverts with custom message when dividing by zero.\\n     *\\n     * Counterpart to Solidity's `%` operator. This function uses a `revert`\\n     * opcode (which leaves remaining gas untouched) while Solidity uses an\\n     * invalid opcode to revert (consuming all remaining gas).\\n     *\\n     * Requirements:\\n     *\\n     * - The divisor cannot be zero.\\n     */\\n    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {\\n        require(b != 0, errorMessage);\\n        return a % b;\\n    }\\n}\\n\",\"keccak256\":\"0x5715f9c8b03dd832dd0e21556431431c75b552d0c5904a89c4fcc17546ba54f4\",\"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/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": 282,
                "contract": "@pooltogether/aave-yield-source/contracts/yield-source/ATokenYieldSource.sol:ATokenYieldSource",
                "label": "_balances",
                "offset": 0,
                "slot": "0",
                "type": "t_mapping(t_address,t_uint256)"
              },
              {
                "astId": 288,
                "contract": "@pooltogether/aave-yield-source/contracts/yield-source/ATokenYieldSource.sol:ATokenYieldSource",
                "label": "_allowances",
                "offset": 0,
                "slot": "1",
                "type": "t_mapping(t_address,t_mapping(t_address,t_uint256))"
              },
              {
                "astId": 290,
                "contract": "@pooltogether/aave-yield-source/contracts/yield-source/ATokenYieldSource.sol:ATokenYieldSource",
                "label": "_totalSupply",
                "offset": 0,
                "slot": "2",
                "type": "t_uint256"
              },
              {
                "astId": 292,
                "contract": "@pooltogether/aave-yield-source/contracts/yield-source/ATokenYieldSource.sol:ATokenYieldSource",
                "label": "_name",
                "offset": 0,
                "slot": "3",
                "type": "t_string_storage"
              },
              {
                "astId": 294,
                "contract": "@pooltogether/aave-yield-source/contracts/yield-source/ATokenYieldSource.sol:ATokenYieldSource",
                "label": "_symbol",
                "offset": 0,
                "slot": "4",
                "type": "t_string_storage"
              },
              {
                "astId": 5205,
                "contract": "@pooltogether/aave-yield-source/contracts/yield-source/ATokenYieldSource.sol:ATokenYieldSource",
                "label": "_owner",
                "offset": 0,
                "slot": "5",
                "type": "t_address"
              },
              {
                "astId": 5207,
                "contract": "@pooltogether/aave-yield-source/contracts/yield-source/ATokenYieldSource.sol:ATokenYieldSource",
                "label": "_pendingOwner",
                "offset": 0,
                "slot": "6",
                "type": "t_address"
              },
              {
                "astId": 5103,
                "contract": "@pooltogether/aave-yield-source/contracts/yield-source/ATokenYieldSource.sol:ATokenYieldSource",
                "label": "_manager",
                "offset": 0,
                "slot": "7",
                "type": "t_address"
              },
              {
                "astId": 237,
                "contract": "@pooltogether/aave-yield-source/contracts/yield-source/ATokenYieldSource.sol:ATokenYieldSource",
                "label": "_status",
                "offset": 0,
                "slot": "8",
                "type": "t_uint256"
              },
              {
                "astId": 4133,
                "contract": "@pooltogether/aave-yield-source/contracts/yield-source/ATokenYieldSource.sol:ATokenYieldSource",
                "label": "lendingPoolAddressesProviderRegistry",
                "offset": 0,
                "slot": "9",
                "type": "t_contract(ILendingPoolAddressesProviderRegistry)4000"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_contract(ILendingPoolAddressesProviderRegistry)4000": {
                "encoding": "inplace",
                "label": "contract ILendingPoolAddressesProviderRegistry",
                "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": {
            "events": {
              "ATokenYieldSourceInitialized(address,address,uint8,string,string,address)": {
                "notice": "Emitted when the yield source is initialized"
              },
              "Claimed(address,address,uint256)": {
                "notice": "Emitted when Aave rewards have been claimed"
              },
              "RedeemedToken(address,uint256,uint256)": {
                "notice": "Emitted when asset tokens are redeemed from the yield source"
              },
              "Sponsored(address,uint256)": {
                "notice": "Emitted when asset tokens are supplied to sponsor the yield source"
              },
              "SuppliedTokenTo(address,uint256,uint256,address)": {
                "notice": "Emitted when asset tokens are supplied to the yield source"
              },
              "TransferredERC20(address,address,uint256,address)": {
                "notice": "Emitted when ERC20 tokens other than yield source's aToken are withdrawn from the yield source"
              }
            },
            "kind": "user",
            "methods": {
              "aToken()": {
                "notice": "Interface for the yield-bearing Aave aToken"
              },
              "approveMaxAmount()": {
                "notice": "Approve lending pool contract to spend max uint256 amount"
              },
              "balanceOfToken(address)": {
                "notice": "Returns user total balance (in asset tokens). This includes the deposits and interest."
              },
              "claimOwnership()": {
                "notice": "Allows the `_pendingOwner` address to finalize the transfer."
              },
              "claimRewards(address)": {
                "notice": "Claims the accrued rewards for the aToken, accumulating any pending rewards."
              },
              "constructor": {
                "notice": "Initializes the yield source with Aave aToken"
              },
              "decimals()": {
                "notice": "Returns the number of decimals that the token repesenting yield source shares has"
              },
              "depositToken()": {
                "notice": "Returns the ERC20 asset token used for deposits"
              },
              "incentivesController()": {
                "notice": "Interface for Aave incentivesController"
              },
              "lendingPoolAddressesProviderRegistry()": {
                "notice": "Interface for Aave lendingPoolAddressesProviderRegistry"
              },
              "manager()": {
                "notice": "Gets current `_manager`."
              },
              "owner()": {
                "notice": "Returns the address of the current owner."
              },
              "pendingOwner()": {
                "notice": "Gets current `_pendingOwner`."
              },
              "redeemToken(uint256)": {
                "notice": "Redeems asset tokens from the yield source"
              },
              "renounceOwnership()": {
                "notice": "Renounce ownership of the contract."
              },
              "setManager(address)": {
                "notice": "Set or change of manager."
              },
              "sponsor(uint256)": {
                "notice": "Allows someone to deposit into the yield source without receiving any shares"
              },
              "supplyTokenTo(uint256,address)": {
                "notice": "Supplies asset tokens to the yield source"
              },
              "transferERC20(address,address,uint256)": {
                "notice": "Transfer ERC20 tokens other than the aTokens held by this contract to the recipient address"
              },
              "transferOwnership(address)": {
                "notice": "Allows current owner to set the `_pendingOwner` address."
              }
            },
            "notice": "Yield source for a PoolTogether prize pool that generates yield by depositing into Aave V2",
            "version": 1
          }
        }
      },
      "@pooltogether/fixed-point/contracts/FixedPoint.sol": {
        "FixedPoint": {
          "abi": [],
          "devdoc": {
            "author": "Brendan Asselstine",
            "kind": "dev",
            "methods": {},
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220a2300e9bd87a1f7d32166aaef6650e9d2db804a2989a7c236b92d36626e18f1a64736f6c63430008060033",
              "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 LOG2 ADDRESS 0xE SWAP12 0xD8 PUSH27 0x1F7D32166AAEF6650E9D2DB804A2989A7C236B92D36626E18F1A64 PUSH20 0x6F6C634300080600330000000000000000000000 ",
              "sourceMap": "951:1718:30:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;951:1718:30;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220a2300e9bd87a1f7d32166aaef6650e9d2db804a2989a7c236b92d36626e18f1a64736f6c63430008060033",
              "opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 LOG2 ADDRESS 0xE SWAP12 0xD8 PUSH27 0x1F7D32166AAEF6650E9D2DB804A2989A7C236B92D36626E18F1A64 PUSH20 0x6F6C634300080600330000000000000000000000 ",
              "sourceMap": "951:1718:30:-:0;;;;;;;;"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "17200",
                "executionCost": "103",
                "totalCost": "17303"
              },
              "internal": {
                "calculateMantissa(uint256,uint256)": "infinite",
                "divideUintByMantissa(uint256,uint256)": "infinite",
                "multiplyUintByMantissa(uint256,uint256)": "infinite"
              }
            },
            "methodIdentifiers": {}
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"author\":\"Brendan Asselstine\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"notice\":\"Provides basic fixed point math calculations. This library calculates integer fractions by scaling values by 1e18 then performing standard integer math.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/fixed-point/contracts/FixedPoint.sol\":\"FixedPoint\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@pooltogether/fixed-point/contracts/FixedPoint.sol\":{\"content\":\"/**\\nCopyright 2020 PoolTogether Inc.\\n\\nThis file is part of PoolTogether.\\n\\nPoolTogether is free software: you can redistribute it and/or modify\\nit under the terms of the GNU General Public License as published by\\nthe Free Software Foundation under version 3 of the License.\\n\\nPoolTogether is distributed in the hope that it will be useful,\\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\\nGNU General Public License for more details.\\n\\nYou should have received a copy of the GNU General Public License\\nalong with PoolTogether.  If not, see <https://www.gnu.org/licenses/>.\\n*/\\n\\npragma solidity >=0.4.0;\\n\\nimport \\\"./external/openzeppelin/OpenZeppelinSafeMath_V3_3_0.sol\\\";\\n\\n/**\\n * @author Brendan Asselstine\\n * @notice Provides basic fixed point math calculations.\\n *\\n * This library calculates integer fractions by scaling values by 1e18 then performing standard integer math.\\n */\\nlibrary FixedPoint {\\n    using OpenZeppelinSafeMath_V3_3_0 for uint256;\\n\\n    // The scale to use for fixed point numbers.  Same as Ether for simplicity.\\n    uint256 internal constant SCALE = 1e18;\\n\\n    /**\\n        * Calculates a Fixed18 mantissa given the numerator and denominator\\n        *\\n        * The mantissa = (numerator * 1e18) / denominator\\n        *\\n        * @param numerator The mantissa numerator\\n        * @param denominator The mantissa denominator\\n        * @return The mantissa of the fraction\\n        */\\n    function calculateMantissa(uint256 numerator, uint256 denominator) internal pure returns (uint256) {\\n        uint256 mantissa = numerator.mul(SCALE);\\n        mantissa = mantissa.div(denominator);\\n        return mantissa;\\n    }\\n\\n    /**\\n        * Multiplies a Fixed18 number by an integer.\\n        *\\n        * @param b The whole integer to multiply\\n        * @param mantissa The Fixed18 number\\n        * @return An integer that is the result of multiplying the params.\\n        */\\n    function multiplyUintByMantissa(uint256 b, uint256 mantissa) internal pure returns (uint256) {\\n        uint256 result = mantissa.mul(b);\\n        result = result.div(SCALE);\\n        return result;\\n    }\\n\\n    /**\\n    * Divides an integer by a fixed point 18 mantissa\\n    *\\n    * @param dividend The integer to divide\\n    * @param mantissa The fixed point 18 number to serve as the divisor\\n    * @return An integer that is the result of dividing an integer by a fixed point 18 mantissa\\n    */\\n    function divideUintByMantissa(uint256 dividend, uint256 mantissa) internal pure returns (uint256) {\\n        uint256 result = SCALE.mul(dividend);\\n        result = result.div(mantissa);\\n        return result;\\n    }\\n}\\n\",\"keccak256\":\"0x5f89a3e774fd543d6fb9bc56469eb0f9fb870fb8b2a01c623e4bb31139ef8bc8\"},\"@pooltogether/fixed-point/contracts/external/openzeppelin/OpenZeppelinSafeMath_V3_3_0.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\n// NOTE: Copied from OpenZeppelin Contracts version 3.3.0\\n\\npragma solidity >=0.4.0;\\n\\n/**\\n * @dev Wrappers over Solidity's arithmetic operations with added overflow\\n * checks.\\n *\\n * Arithmetic operations in Solidity wrap on overflow. This can easily result\\n * in bugs, because programmers usually assume that an overflow raises an\\n * error, which is the standard behavior in high level programming languages.\\n * `SafeMath` restores this intuition by reverting the transaction when an\\n * 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 */\\nlibrary OpenZeppelinSafeMath_V3_3_0 {\\n    /**\\n     * @dev Returns the addition of two unsigned integers, reverting on\\n     * overflow.\\n     *\\n     * Counterpart to Solidity's `+` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - Addition cannot overflow.\\n     */\\n    function add(uint256 a, uint256 b) internal pure returns (uint256) {\\n        uint256 c = a + b;\\n        require(c >= a, \\\"SafeMath: addition overflow\\\");\\n\\n        return c;\\n    }\\n\\n    /**\\n     * @dev Returns the subtraction of two unsigned integers, reverting on\\n     * overflow (when the result is negative).\\n     *\\n     * Counterpart to Solidity's `-` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - Subtraction cannot overflow.\\n     */\\n    function sub(uint256 a, uint256 b) internal pure returns (uint256) {\\n        return sub(a, b, \\\"SafeMath: subtraction overflow\\\");\\n    }\\n\\n    /**\\n     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on\\n     * overflow (when the result is negative).\\n     *\\n     * Counterpart to Solidity's `-` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - Subtraction cannot overflow.\\n     */\\n    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {\\n        require(b <= a, errorMessage);\\n        uint256 c = a - b;\\n\\n        return c;\\n    }\\n\\n    /**\\n     * @dev Returns the multiplication of two unsigned integers, reverting on\\n     * overflow.\\n     *\\n     * Counterpart to Solidity's `*` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - Multiplication cannot overflow.\\n     */\\n    function mul(uint256 a, uint256 b) internal pure returns (uint256) {\\n        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the\\n        // benefit is lost if 'b' is also tested.\\n        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522\\n        if (a == 0) {\\n            return 0;\\n        }\\n\\n        uint256 c = a * b;\\n        require(c / a == b, \\\"SafeMath: multiplication overflow\\\");\\n\\n        return c;\\n    }\\n\\n    /**\\n     * @dev Returns the integer division of two unsigned integers. Reverts on\\n     * division by zero. The result is rounded towards zero.\\n     *\\n     * Counterpart to Solidity's `/` operator. Note: this function uses a\\n     * `revert` opcode (which leaves remaining gas untouched) while Solidity\\n     * uses an invalid opcode to revert (consuming all remaining gas).\\n     *\\n     * Requirements:\\n     *\\n     * - The divisor cannot be zero.\\n     */\\n    function div(uint256 a, uint256 b) internal pure returns (uint256) {\\n        return div(a, b, \\\"SafeMath: division by zero\\\");\\n    }\\n\\n    /**\\n     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on\\n     * division by zero. The result is rounded towards zero.\\n     *\\n     * Counterpart to Solidity's `/` operator. Note: this function uses a\\n     * `revert` opcode (which leaves remaining gas untouched) while Solidity\\n     * uses an invalid opcode to revert (consuming all remaining gas).\\n     *\\n     * Requirements:\\n     *\\n     * - The divisor cannot be zero.\\n     */\\n    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {\\n        require(b > 0, errorMessage);\\n        uint256 c = a / b;\\n        // assert(a == b * c + a % b); // There is no case in which this doesn't hold\\n\\n        return c;\\n    }\\n\\n    /**\\n     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),\\n     * Reverts when dividing by zero.\\n     *\\n     * Counterpart to Solidity's `%` operator. This function uses a `revert`\\n     * opcode (which leaves remaining gas untouched) while Solidity uses an\\n     * invalid opcode to revert (consuming all remaining gas).\\n     *\\n     * Requirements:\\n     *\\n     * - The divisor cannot be zero.\\n     */\\n    function mod(uint256 a, uint256 b) internal pure returns (uint256) {\\n        return mod(a, b, \\\"SafeMath: modulo by zero\\\");\\n    }\\n\\n    /**\\n     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),\\n     * Reverts with custom message when dividing by zero.\\n     *\\n     * Counterpart to Solidity's `%` operator. This function uses a `revert`\\n     * opcode (which leaves remaining gas untouched) while Solidity uses an\\n     * invalid opcode to revert (consuming all remaining gas).\\n     *\\n     * Requirements:\\n     *\\n     * - The divisor cannot be zero.\\n     */\\n    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {\\n        require(b != 0, errorMessage);\\n        return a % b;\\n    }\\n}\\n\",\"keccak256\":\"0x5715f9c8b03dd832dd0e21556431431c75b552d0c5904a89c4fcc17546ba54f4\",\"license\":\"MIT\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "notice": "Provides basic fixed point math calculations. This library calculates integer fractions by scaling values by 1e18 then performing standard integer math.",
            "version": 1
          }
        }
      },
      "@pooltogether/fixed-point/contracts/external/openzeppelin/OpenZeppelinSafeMath_V3_3_0.sol": {
        "OpenZeppelinSafeMath_V3_3_0": {
          "abi": [],
          "devdoc": {
            "details": "Wrappers over Solidity's arithmetic operations with added overflow checks. Arithmetic operations in Solidity wrap on overflow. This can easily result in bugs, because programmers usually assume that an overflow raises an error, which is the standard behavior in high level programming languages. `SafeMath` restores this intuition by reverting the transaction when 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.",
            "kind": "dev",
            "methods": {},
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220ea810e90d2d3d74f97b1f73fc14c4a1b403e3a03d6099ec89adaa9d5370faf5a64736f6c63430008060033",
              "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 0xEA DUP2 0xE SWAP1 0xD2 0xD3 0xD7 0x4F SWAP8 0xB1 0xF7 EXTCODEHASH 0xC1 0x4C 0x4A SHL BLOCKHASH RETURNDATACOPY GASPRICE SUB 0xD6 MULMOD SWAP15 0xC8 SWAP11 0xDA 0xA9 0xD5 CALLDATACOPY 0xF 0xAF GAS PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "682:4597:31:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;682:4597:31;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220ea810e90d2d3d74f97b1f73fc14c4a1b403e3a03d6099ec89adaa9d5370faf5a64736f6c63430008060033",
              "opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xEA DUP2 0xE SWAP1 0xD2 0xD3 0xD7 0x4F SWAP8 0xB1 0xF7 EXTCODEHASH 0xC1 0x4C 0x4A SHL BLOCKHASH RETURNDATACOPY GASPRICE SUB 0xD6 MULMOD SWAP15 0xC8 SWAP11 0xDA 0xA9 0xD5 CALLDATACOPY 0xF 0xAF GAS PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "682:4597:31:-:0;;;;;;;;"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "17200",
                "executionCost": "103",
                "totalCost": "17303"
              },
              "internal": {
                "add(uint256,uint256)": "infinite",
                "div(uint256,uint256)": "infinite",
                "div(uint256,uint256,string memory)": "infinite",
                "mod(uint256,uint256)": "infinite",
                "mod(uint256,uint256,string memory)": "infinite",
                "mul(uint256,uint256)": "infinite",
                "sub(uint256,uint256)": "infinite",
                "sub(uint256,uint256,string memory)": "infinite"
              }
            },
            "methodIdentifiers": {}
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Wrappers over Solidity's arithmetic operations with added overflow checks. Arithmetic operations in Solidity wrap on overflow. This can easily result in bugs, because programmers usually assume that an overflow raises an error, which is the standard behavior in high level programming languages. `SafeMath` restores this intuition by reverting the transaction when 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.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/fixed-point/contracts/external/openzeppelin/OpenZeppelinSafeMath_V3_3_0.sol\":\"OpenZeppelinSafeMath_V3_3_0\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@pooltogether/fixed-point/contracts/external/openzeppelin/OpenZeppelinSafeMath_V3_3_0.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n\\n// NOTE: Copied from OpenZeppelin Contracts version 3.3.0\\n\\npragma solidity >=0.4.0;\\n\\n/**\\n * @dev Wrappers over Solidity's arithmetic operations with added overflow\\n * checks.\\n *\\n * Arithmetic operations in Solidity wrap on overflow. This can easily result\\n * in bugs, because programmers usually assume that an overflow raises an\\n * error, which is the standard behavior in high level programming languages.\\n * `SafeMath` restores this intuition by reverting the transaction when an\\n * 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 */\\nlibrary OpenZeppelinSafeMath_V3_3_0 {\\n    /**\\n     * @dev Returns the addition of two unsigned integers, reverting on\\n     * overflow.\\n     *\\n     * Counterpart to Solidity's `+` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - Addition cannot overflow.\\n     */\\n    function add(uint256 a, uint256 b) internal pure returns (uint256) {\\n        uint256 c = a + b;\\n        require(c >= a, \\\"SafeMath: addition overflow\\\");\\n\\n        return c;\\n    }\\n\\n    /**\\n     * @dev Returns the subtraction of two unsigned integers, reverting on\\n     * overflow (when the result is negative).\\n     *\\n     * Counterpart to Solidity's `-` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - Subtraction cannot overflow.\\n     */\\n    function sub(uint256 a, uint256 b) internal pure returns (uint256) {\\n        return sub(a, b, \\\"SafeMath: subtraction overflow\\\");\\n    }\\n\\n    /**\\n     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on\\n     * overflow (when the result is negative).\\n     *\\n     * Counterpart to Solidity's `-` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - Subtraction cannot overflow.\\n     */\\n    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {\\n        require(b <= a, errorMessage);\\n        uint256 c = a - b;\\n\\n        return c;\\n    }\\n\\n    /**\\n     * @dev Returns the multiplication of two unsigned integers, reverting on\\n     * overflow.\\n     *\\n     * Counterpart to Solidity's `*` operator.\\n     *\\n     * Requirements:\\n     *\\n     * - Multiplication cannot overflow.\\n     */\\n    function mul(uint256 a, uint256 b) internal pure returns (uint256) {\\n        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the\\n        // benefit is lost if 'b' is also tested.\\n        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522\\n        if (a == 0) {\\n            return 0;\\n        }\\n\\n        uint256 c = a * b;\\n        require(c / a == b, \\\"SafeMath: multiplication overflow\\\");\\n\\n        return c;\\n    }\\n\\n    /**\\n     * @dev Returns the integer division of two unsigned integers. Reverts on\\n     * division by zero. The result is rounded towards zero.\\n     *\\n     * Counterpart to Solidity's `/` operator. Note: this function uses a\\n     * `revert` opcode (which leaves remaining gas untouched) while Solidity\\n     * uses an invalid opcode to revert (consuming all remaining gas).\\n     *\\n     * Requirements:\\n     *\\n     * - The divisor cannot be zero.\\n     */\\n    function div(uint256 a, uint256 b) internal pure returns (uint256) {\\n        return div(a, b, \\\"SafeMath: division by zero\\\");\\n    }\\n\\n    /**\\n     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on\\n     * division by zero. The result is rounded towards zero.\\n     *\\n     * Counterpart to Solidity's `/` operator. Note: this function uses a\\n     * `revert` opcode (which leaves remaining gas untouched) while Solidity\\n     * uses an invalid opcode to revert (consuming all remaining gas).\\n     *\\n     * Requirements:\\n     *\\n     * - The divisor cannot be zero.\\n     */\\n    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {\\n        require(b > 0, errorMessage);\\n        uint256 c = a / b;\\n        // assert(a == b * c + a % b); // There is no case in which this doesn't hold\\n\\n        return c;\\n    }\\n\\n    /**\\n     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),\\n     * Reverts when dividing by zero.\\n     *\\n     * Counterpart to Solidity's `%` operator. This function uses a `revert`\\n     * opcode (which leaves remaining gas untouched) while Solidity uses an\\n     * invalid opcode to revert (consuming all remaining gas).\\n     *\\n     * Requirements:\\n     *\\n     * - The divisor cannot be zero.\\n     */\\n    function mod(uint256 a, uint256 b) internal pure returns (uint256) {\\n        return mod(a, b, \\\"SafeMath: modulo by zero\\\");\\n    }\\n\\n    /**\\n     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),\\n     * Reverts with custom message when dividing by zero.\\n     *\\n     * Counterpart to Solidity's `%` operator. This function uses a `revert`\\n     * opcode (which leaves remaining gas untouched) while Solidity uses an\\n     * invalid opcode to revert (consuming all remaining gas).\\n     *\\n     * Requirements:\\n     *\\n     * - The divisor cannot be zero.\\n     */\\n    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {\\n        require(b != 0, errorMessage);\\n        return a % b;\\n    }\\n}\\n\",\"keccak256\":\"0x5715f9c8b03dd832dd0e21556431431c75b552d0c5904a89c4fcc17546ba54f4\",\"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": 5205,
                "contract": "@pooltogether/owner-manager-contracts/contracts/Manageable.sol:Manageable",
                "label": "_owner",
                "offset": 0,
                "slot": "0",
                "type": "t_address"
              },
              {
                "astId": 5207,
                "contract": "@pooltogether/owner-manager-contracts/contracts/Manageable.sol:Manageable",
                "label": "_pendingOwner",
                "offset": 0,
                "slot": "1",
                "type": "t_address"
              },
              {
                "astId": 5103,
                "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": 5205,
                "contract": "@pooltogether/owner-manager-contracts/contracts/Ownable.sol:Ownable",
                "label": "_owner",
                "offset": 0,
                "slot": "0",
                "type": "t_address"
              },
              {
                "astId": 5207,
                "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/RNGChainlinkV2.sol": {
        "RNGChainlinkV2": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_owner",
                  "type": "address"
                },
                {
                  "internalType": "contract VRFCoordinatorV2Interface",
                  "name": "_vrfCoordinator",
                  "type": "address"
                },
                {
                  "internalType": "uint64",
                  "name": "_subscriptionId",
                  "type": "uint64"
                },
                {
                  "internalType": "bytes32",
                  "name": "_keyHash",
                  "type": "bytes32"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "constructor"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "have",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "want",
                  "type": "address"
                }
              ],
              "name": "OnlyCoordinatorCanFulfill",
              "type": "error"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "bytes32",
                  "name": "keyHash",
                  "type": "bytes32"
                }
              ],
              "name": "KeyHashSet",
              "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": "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"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": false,
                  "internalType": "uint64",
                  "name": "subscriptionId",
                  "type": "uint64"
                }
              ],
              "name": "SubscriptionIdSet",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "contract VRFCoordinatorV2Interface",
                  "name": "vrfCoordinator",
                  "type": "address"
                }
              ],
              "name": "VrfCoordinatorSet",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "claimOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getKeyHash",
              "outputs": [
                {
                  "internalType": "bytes32",
                  "name": "",
                  "type": "bytes32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "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": "pure",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getSubscriptionId",
              "outputs": [
                {
                  "internalType": "uint64",
                  "name": "",
                  "type": "uint64"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getVrfCoordinator",
              "outputs": [
                {
                  "internalType": "contract VRFCoordinatorV2Interface",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint32",
                  "name": "_internalRequestId",
                  "type": "uint32"
                }
              ],
              "name": "isRequestComplete",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "isCompleted",
                  "type": "bool"
                }
              ],
              "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": "_internalRequestId",
                  "type": "uint32"
                }
              ],
              "name": "randomNumber",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "randomNum",
                  "type": "uint256"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "requestId",
                  "type": "uint256"
                },
                {
                  "internalType": "uint256[]",
                  "name": "randomWords",
                  "type": "uint256[]"
                }
              ],
              "name": "rawFulfillRandomWords",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "renounceOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "requestRandomNumber",
              "outputs": [
                {
                  "internalType": "uint32",
                  "name": "requestId",
                  "type": "uint32"
                },
                {
                  "internalType": "uint32",
                  "name": "lockBlock",
                  "type": "uint32"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "bytes32",
                  "name": "_keyHash",
                  "type": "bytes32"
                }
              ],
              "name": "setKeyhash",
              "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": "uint64",
                  "name": "_subscriptionId",
                  "type": "uint64"
                }
              ],
              "name": "setSubscriptionId",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_newOwner",
                  "type": "address"
                }
              ],
              "name": "transferOwnership",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "events": {
              "KeyHashSet(bytes32)": {
                "params": {
                  "keyHash": "Chainlink VRF keyHash"
                }
              },
              "SubscriptionIdSet(uint64)": {
                "params": {
                  "subscriptionId": "Chainlink VRF subscription id"
                }
              },
              "VrfCoordinatorSet(address)": {
                "params": {
                  "vrfCoordinator": "Address of the VRF Coordinator"
                }
              }
            },
            "kind": "dev",
            "methods": {
              "claimOwnership()": {
                "details": "This function is only callable by the `_pendingOwner`."
              },
              "constructor": {
                "params": {
                  "_keyHash": "Hash of the public key used to verify the VRF proof",
                  "_owner": "Owner of the contract",
                  "_subscriptionId": "Chainlink VRF subscription id",
                  "_vrfCoordinator": "Address of the VRF Coordinator"
                }
              },
              "getKeyHash()": {
                "returns": {
                  "_0": "bytes32 Chainlink VRF keyHash"
                }
              },
              "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"
                }
              },
              "getSubscriptionId()": {
                "returns": {
                  "_0": "uint64 Chainlink VRF subscription id"
                }
              },
              "getVrfCoordinator()": {
                "returns": {
                  "_0": "address Chainlink VRF coordinator address"
                }
              },
              "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"
                }
              },
              "manager()": {
                "returns": {
                  "_0": "Current `_manager` address."
                }
              },
              "pendingOwner()": {
                "returns": {
                  "_0": "Current `_pendingOwner` address."
                }
              },
              "randomNumber(uint32)": {
                "params": {
                  "requestId": "The ID of the request used to get the results of the RNG service"
                },
                "returns": {
                  "randomNum": "The random number"
                }
              },
              "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."
              },
              "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"
                }
              },
              "setKeyhash(bytes32)": {
                "details": "This function is only callable by the owner.",
                "params": {
                  "keyHash": "Chainlink VRF keyHash"
                }
              },
              "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."
                }
              },
              "setSubscriptionId(uint64)": {
                "details": "This function is only callable by the owner.",
                "params": {
                  "subscriptionId": "Chainlink VRF subscription id"
                }
              },
              "transferOwnership(address)": {
                "params": {
                  "_newOwner": "Address to transfer ownership to."
                }
              }
            },
            "stateVariables": {
              "chainlinkRequestIds": {
                "details": "A mapping from Chainlink request ids to internal request ids"
              },
              "keyHash": {
                "details": "Hash of the public key used to verify the VRF proof"
              },
              "randomNumbers": {
                "details": "A list of random numbers from past requests mapped by request id"
              },
              "requestCounter": {
                "details": "A counter for the number of requests made used for request ids"
              },
              "requestLockBlock": {
                "details": "A list of blocks to be locked at based on past requests mapped by request id"
              },
              "subscriptionId": {
                "details": "Chainlink VRF subscription id"
              },
              "vrfCoordinator": {
                "details": "Reference to the VRFCoordinatorV2 deployed contract"
              }
            },
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_21": {
                  "entryPoint": null,
                  "id": 21,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_5230": {
                  "entryPoint": null,
                  "id": 5230,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_5446": {
                  "entryPoint": null,
                  "id": 5446,
                  "parameterSlots": 4,
                  "returnSlots": 0
                },
                "@_setKeyhash_5739": {
                  "entryPoint": 556,
                  "id": 5739,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setOwner_5327": {
                  "entryPoint": 126,
                  "id": 5327,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setSubscriptionId_5714": {
                  "entryPoint": 372,
                  "id": 5714,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setVRFCoordinator_5692": {
                  "entryPoint": 206,
                  "id": 5692,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "abi_decode_tuple_t_addresst_contract$_VRFCoordinatorV2Interface_$146t_uint64t_bytes32_fromMemory": {
                  "entryPoint": 689,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 4
                },
                "abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_36b25d27d6d34a9cb5b0f926fbb139de96bcabc3632b0dbba5eaaefc789854c7__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_3a9f5d08924c9a507c3f782a79b6b8a06ed715f7a016de44a21f65f7281c355c__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_bc577ee49b57e27fd57fb2557ec404eadeb7fc206b44e6be9ec43118a54491ef__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "validator_revert_address": {
                  "entryPoint": 790,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:2265:101",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:101",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "178:489:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "225:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "234:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "237:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "227:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "227:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "227:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "199:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "208:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "195:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "195:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "220:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "191:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "191:33:101"
                              },
                              "nodeType": "YulIf",
                              "src": "188:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "250:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "269:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "263:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "263:16:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "254:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "313:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "288:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "288:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "288:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "328:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "338:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "328:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "352:40:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "377:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "388:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "373:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "373:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "367:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "367:25:101"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "356:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "426:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "401:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "401:33:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "401:33:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "443:17:101",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "453:7:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "443:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "469:40:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "494:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "505:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "490:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "490:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "484:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "484:25:101"
                              },
                              "variables": [
                                {
                                  "name": "value_2",
                                  "nodeType": "YulTypedName",
                                  "src": "473:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "575:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "584:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "587:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "577:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "577:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "577:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "531:7:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "544:7:101"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "561:2:101",
                                                    "type": "",
                                                    "value": "64"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "565:1:101",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "557:3:101"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "557:10:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "569:1:101",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "553:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "553:18:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "540:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "540:32:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "528:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "528:45:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "521:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "521:53:101"
                              },
                              "nodeType": "YulIf",
                              "src": "518:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "600:17:101",
                              "value": {
                                "name": "value_2",
                                "nodeType": "YulIdentifier",
                                "src": "610:7:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "600:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "626:35:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "646:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "657:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "642:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "642:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "636:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "636:25:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "626:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_contract$_VRFCoordinatorV2Interface_$146t_uint64t_bytes32_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "120:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "131:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "143:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "151:6:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "159:6:101",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "167:6:101",
                            "type": ""
                          }
                        ],
                        "src": "14:653:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "773:76:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "783:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "795:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "806:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "791:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "791:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "783:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "825:9:101"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "836:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "818:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "818:25:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "818:25:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "742:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "753:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "764:4:101",
                            "type": ""
                          }
                        ],
                        "src": "672:177:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1028:176:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1045:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1056:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1038:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1038:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1038:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1079:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1090:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1075:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1075:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1095:2:101",
                                    "type": "",
                                    "value": "26"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1068:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1068:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1068:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1118:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1129:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1114:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1114:18:101"
                                  },
                                  {
                                    "hexValue": "524e47436861696e4c696e6b2f73756249642d67742d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "1134:28:101",
                                    "type": "",
                                    "value": "RNGChainLink/subId-gt-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1107:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1107:56:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1107:56:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1172:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1184:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1195:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1180:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1180:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1172:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_36b25d27d6d34a9cb5b0f926fbb139de96bcabc3632b0dbba5eaaefc789854c7__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1005:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1019:4:101",
                            "type": ""
                          }
                        ],
                        "src": "854:350:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1383:180:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1400:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1411:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1393:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1393:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1393:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1434:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1445:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1430:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1430:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1450:2:101",
                                    "type": "",
                                    "value": "30"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1423:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1423:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1423:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1473:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1484:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1469:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1469:18:101"
                                  },
                                  {
                                    "hexValue": "524e47436861696e4c696e6b2f7672662d6e6f742d7a65726f2d61646472",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "1489:32:101",
                                    "type": "",
                                    "value": "RNGChainLink/vrf-not-zero-addr"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1462:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1462:60:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1462:60:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1531:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1543:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1554:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1539:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1539:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1531:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_3a9f5d08924c9a507c3f782a79b6b8a06ed715f7a016de44a21f65f7281c355c__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1360:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1374:4:101",
                            "type": ""
                          }
                        ],
                        "src": "1209:354:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1742:180:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1759:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1770:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1752:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1752:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1752:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1793:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1804:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1789:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1789:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1809:2:101",
                                    "type": "",
                                    "value": "30"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1782:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1782:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1782:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1832:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1843:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1828:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1828:18:101"
                                  },
                                  {
                                    "hexValue": "524e47436861696e4c696e6b2f6b6579486173682d6e6f742d656d707479",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "1848:32:101",
                                    "type": "",
                                    "value": "RNGChainLink/keyHash-not-empty"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1821:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1821:60:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1821:60:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1890:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1902:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1913:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1898:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1898:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1890:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_bc577ee49b57e27fd57fb2557ec404eadeb7fc206b44e6be9ec43118a54491ef__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1719:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1733:4:101",
                            "type": ""
                          }
                        ],
                        "src": "1568:354:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2026:101:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2036:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2048:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2059:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2044:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2044:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2036:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2078:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "2093:6:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "2109:2:101",
                                                "type": "",
                                                "value": "64"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "2113:1:101",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "2105:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "2105:10:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2117:1:101",
                                            "type": "",
                                            "value": "1"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "sub",
                                          "nodeType": "YulIdentifier",
                                          "src": "2101:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2101:18:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2089:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2089:31:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2071:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2071:50:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2071:50:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1995:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2006:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2017:4:101",
                            "type": ""
                          }
                        ],
                        "src": "1927:200:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2177:86:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2241:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2250:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2253:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2243:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2243:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2243:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2200:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "2211:5:101"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "2226:3:101",
                                                    "type": "",
                                                    "value": "160"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "2231:1:101",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "2222:3:101"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "2222:11:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "2235:1:101",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "2218:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "2218:19:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "2207:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2207:31:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "2197:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2197:42:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "2190:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2190:50:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2187:2:101"
                            }
                          ]
                        },
                        "name": "validator_revert_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "2166:5:101",
                            "type": ""
                          }
                        ],
                        "src": "2132:131:101"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_tuple_t_addresst_contract$_VRFCoordinatorV2Interface_$146t_uint64t_bytes32_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        if iszero(eq(value_2, and(value_2, sub(shl(64, 1), 1)))) { revert(0, 0) }\n        value2 := value_2\n        value3 := mload(add(headStart, 96))\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_stringliteral_36b25d27d6d34a9cb5b0f926fbb139de96bcabc3632b0dbba5eaaefc789854c7__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), \"RNGChainLink/subId-gt-zero\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_3a9f5d08924c9a507c3f782a79b6b8a06ed715f7a016de44a21f65f7281c355c__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), \"RNGChainLink/vrf-not-zero-addr\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_bc577ee49b57e27fd57fb2557ec404eadeb7fc206b44e6be9ec43118a54491ef__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), \"RNGChainLink/keyHash-not-empty\")\n        tail := add(headStart, 96)\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, 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": 101,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "60a06040523480156200001157600080fd5b506040516200127e3803806200127e8339810160408190526200003491620002b1565b6001600160601b0319606084901b166080528362000052816200007e565b506200005e83620000ce565b620000698262000174565b62000074816200022c565b505050506200032f565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0381166200012a5760405162461bcd60e51b815260206004820152601e60248201527f524e47436861696e4c696e6b2f7672662d6e6f742d7a65726f2d61646472000060448201526064015b60405180910390fd5b600380546001600160a01b0319166001600160a01b0383169081179091556040517f4cc41e06d3d0588be9be0e1469ba1934c4bd1cb8f4f70adf2aa31f4b92134b2790600090a250565b6000816001600160401b031611620001cf5760405162461bcd60e51b815260206004820152601a60248201527f524e47436861696e4c696e6b2f73756249642d67742d7a65726f000000000000604482015260640162000121565b600380546001600160c01b0316600160c01b6001600160401b038416908102919091179091556040519081527f68de96e24c66c14c012b5bd342251abc26a6003eaa438002bfe530f28ca63fed906020015b60405180910390a150565b806200027b5760405162461bcd60e51b815260206004820152601e60248201527f524e47436861696e4c696e6b2f6b6579486173682d6e6f742d656d7074790000604482015260640162000121565b60048190556040518181527fd013f86c8346660ebf421351882cd1b3c2f91883092df1800264c656b0db0cc69060200162000221565b60008060008060808587031215620002c857600080fd5b8451620002d58162000316565b6020860151909450620002e88162000316565b60408601519093506001600160401b03811681146200030657600080fd5b6060959095015193969295505050565b6001600160a01b03811681146200032c57600080fd5b50565b60805160601c610f296200035560003960008181610320015261037b0152610f296000f3fe608060405234801561001057600080fd5b50600436106101365760003560e01c8063715018a6116100b2578063d0ebdbe711610081578063e30c397811610066578063e30c3978146102de578063ea7b4f77146102ef578063f2fde38b1461030257600080fd5b8063d0ebdbe71461029e578063de3d9fb7146102b157600080fd5b8063715018a61461023a5780638678a7b2146102425780638da5cb5b146102675780639d2a5f981461027857600080fd5b8063331bf12511610109578063481c6a75116100ee578063481c6a751461020e5780634e71e0c81461021f5780636309b7731461022757600080fd5b8063331bf125146101c45780633a19b9bc146101d657600080fd5b80630cb4a29d1461013b5780630d37b5371461016557806319c2b4c3146101795780631fe543e3146101af575b600080fd5b6003546001600160a01b03165b6040516001600160a01b0390911681526020015b60405180910390f35b60408051600080825260208201520161015c565b60035474010000000000000000000000000000000000000000900463ffffffff1660405163ffffffff909116815260200161015c565b6101c26101bd366004610d56565b610315565b005b6004545b60405190815260200161015c565b6101fe6101e4366004610e45565b63ffffffff16600090815260056020526040902054151590565b604051901515815260200161015c565b6002546001600160a01b0316610148565b6101c26103bb565b6101c2610235366004610d24565b610449565b6101c26104be565b61024a610533565b6040805163ffffffff93841681529290911660208301520161015c565b6000546001600160a01b0316610148565b6101c8610286366004610e45565b63ffffffff1660009081526005602052604090205490565b6101fe6102ac366004610cf4565b610763565b600354600160c01b900467ffffffffffffffff1660405167ffffffffffffffff909116815260200161015c565b6001546001600160a01b0316610148565b6101c26102fd366004610e6b565b6107dd565b6101c2610310366004610cf4565b61084f565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146103ad576040517f1cf993f40000000000000000000000000000000000000000000000000000000081523360048201526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001660248201526044015b60405180910390fd5b6103b7828261098b565b5050565b6001546001600160a01b031633146104155760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e65720060448201526064016103a4565b60015461042a906001600160a01b0316610a60565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b3361045c6000546001600160a01b031690565b6001600160a01b0316146104b25760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016103a4565b6104bb81610abd565b50565b336104d16000546001600160a01b031690565b6001600160a01b0316146105275760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016103a4565b6105316000610a60565b565b600080336105496002546001600160a01b031690565b6001600160a01b03161461059f5760405162461bcd60e51b815260206004820152601d60248201527f4d616e61676561626c652f63616c6c65722d6e6f742d6d616e6167657200000060448201526064016103a4565b60038054600480546040517f5d3b1d3000000000000000000000000000000000000000000000000000000000815291820152600160c01b820467ffffffffffffffff1660248201526044810192909252620f42406064830152600160848301526000916001600160a01b0390911690635d3b1d309060a401602060405180830381600087803b15801561063157600080fd5b505af1158015610645573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106699190610d3d565b600380549192507401000000000000000000000000000000000000000090910463ffffffff1690601461069b83610e95565b82546101009290920a63ffffffff818102199093169183160217909155600354600084815260076020908152604080832080547401000000000000000000000000000000000000000090950486167fffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000095861681179091558084526006909252808320805490941643958616179093559151919650919450859250339183917fcf635b20f2defc1e71326dc4f0b616fa676e29a5bae87da19fcaddc550b33f039190a350509091565b6000336107786000546001600160a01b031690565b6001600160a01b0316146107ce5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016103a4565b6107d782610b46565b92915050565b336107f06000546001600160a01b031690565b6001600160a01b0316146108465760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016103a4565b6104bb81610c32565b336108626000546001600160a01b031690565b6001600160a01b0316146108b85760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016103a4565b6001600160a01b0381166109345760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016103a4565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b60008281526007602052604090205463ffffffff16806109ed5760405162461bcd60e51b815260206004820181905260248201527f524e47436861696e4c696e6b2f7265717565737449642d696e636f727265637460448201526064016103a4565b600082600081518110610a0257610a02610ec7565b60209081029190910181015163ffffffff841660008181526005845260409081902083905551828152919350917f629394f18de7accce1179c28c39be59503a57cbcf45980a2772743b041b36271910160405180910390a250505050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80610b0a5760405162461bcd60e51b815260206004820152601e60248201527f524e47436861696e4c696e6b2f6b6579486173682d6e6f742d656d707479000060448201526064016103a4565b60048190556040518181527fd013f86c8346660ebf421351882cd1b3c2f91883092df1800264c656b0db0cc6906020015b60405180910390a150565b6002546000906001600160a01b03908116908316811415610bcf5760405162461bcd60e51b815260206004820152602360248201527f4d616e61676561626c652f6578697374696e672d6d616e616765722d6164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016103a4565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385811691821790925560405190918316907f9cb45c728de594dab506a1f1a8554e24c8eeaf983618d5ec5dd7bc6f3c49feee90600090a350600192915050565b60008167ffffffffffffffff1611610c8c5760405162461bcd60e51b815260206004820152601a60248201527f524e47436861696e4c696e6b2f73756249642d67742d7a65726f00000000000060448201526064016103a4565b6003805477ffffffffffffffffffffffffffffffffffffffffffffffff16600160c01b67ffffffffffffffff8416908102919091179091556040519081527f68de96e24c66c14c012b5bd342251abc26a6003eaa438002bfe530f28ca63fed90602001610b3b565b600060208284031215610d0657600080fd5b81356001600160a01b0381168114610d1d57600080fd5b9392505050565b600060208284031215610d3657600080fd5b5035919050565b600060208284031215610d4f57600080fd5b5051919050565b60008060408385031215610d6957600080fd5b8235915060208084013567ffffffffffffffff80821115610d8957600080fd5b818601915086601f830112610d9d57600080fd5b813581811115610daf57610daf610edd565b8060051b6040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0603f83011681018181108582111715610df257610df2610edd565b604052828152858101935084860182860187018b1015610e1157600080fd5b600095505b83861015610e34578035855260019590950194938601938601610e16565b508096505050505050509250929050565b600060208284031215610e5757600080fd5b813563ffffffff81168114610d1d57600080fd5b600060208284031215610e7d57600080fd5b813567ffffffffffffffff81168114610d1d57600080fd5b600063ffffffff80831681811415610ebd57634e487b7160e01b600052601160045260246000fd5b6001019392505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fdfea26469706673582212205e31f6977d0789e2ea185a5db4cf5698eb3198898cf06f04f5d767120890540b64736f6c63430008060033",
              "opcodes": "PUSH1 0xA0 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x127E CODESIZE SUB DUP1 PUSH3 0x127E DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x34 SWAP2 PUSH3 0x2B1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT PUSH1 0x60 DUP5 SWAP1 SHL AND PUSH1 0x80 MSTORE DUP4 PUSH3 0x52 DUP2 PUSH3 0x7E JUMP JUMPDEST POP PUSH3 0x5E DUP4 PUSH3 0xCE JUMP JUMPDEST PUSH3 0x69 DUP3 PUSH3 0x174 JUMP JUMPDEST PUSH3 0x74 DUP2 PUSH3 0x22C JUMP JUMPDEST POP POP POP POP PUSH3 0x32F 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 0x12A 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 0x524E47436861696E4C696E6B2F7672662D6E6F742D7A65726F2D616464720000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 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 DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD PUSH32 0x4CC41E06D3D0588BE9BE0E1469BA1934C4BD1CB8F4F70ADF2AA31F4B92134B27 SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND GT PUSH3 0x1CF 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 0x524E47436861696E4C696E6B2F73756249642D67742D7A65726F000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH3 0x121 JUMP JUMPDEST PUSH1 0x3 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xC0 SHL SUB AND PUSH1 0x1 PUSH1 0xC0 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP5 AND SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH32 0x68DE96E24C66C14C012B5BD342251ABC26A6003EAA438002BFE530F28CA63FED SWAP1 PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST DUP1 PUSH3 0x27B 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 0x524E47436861696E4C696E6B2F6B6579486173682D6E6F742D656D7074790000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH3 0x121 JUMP JUMPDEST PUSH1 0x4 DUP2 SWAP1 SSTORE PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH32 0xD013F86C8346660EBF421351882CD1B3C2F91883092DF1800264C656B0DB0CC6 SWAP1 PUSH1 0x20 ADD PUSH3 0x221 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH3 0x2C8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP5 MLOAD PUSH3 0x2D5 DUP2 PUSH3 0x316 JUMP JUMPDEST PUSH1 0x20 DUP7 ADD MLOAD SWAP1 SWAP5 POP PUSH3 0x2E8 DUP2 PUSH3 0x316 JUMP JUMPDEST PUSH1 0x40 DUP7 ADD MLOAD SWAP1 SWAP4 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 AND DUP2 EQ PUSH3 0x306 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x60 SWAP6 SWAP1 SWAP6 ADD MLOAD SWAP4 SWAP7 SWAP3 SWAP6 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH3 0x32C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH1 0x60 SHR PUSH2 0xF29 PUSH3 0x355 PUSH1 0x0 CODECOPY PUSH1 0x0 DUP2 DUP2 PUSH2 0x320 ADD MSTORE PUSH2 0x37B ADD MSTORE PUSH2 0xF29 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 0x715018A6 GT PUSH2 0xB2 JUMPI DUP1 PUSH4 0xD0EBDBE7 GT PUSH2 0x81 JUMPI DUP1 PUSH4 0xE30C3978 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x2DE JUMPI DUP1 PUSH4 0xEA7B4F77 EQ PUSH2 0x2EF JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x302 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xD0EBDBE7 EQ PUSH2 0x29E JUMPI DUP1 PUSH4 0xDE3D9FB7 EQ PUSH2 0x2B1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x715018A6 EQ PUSH2 0x23A JUMPI DUP1 PUSH4 0x8678A7B2 EQ PUSH2 0x242 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x267 JUMPI DUP1 PUSH4 0x9D2A5F98 EQ PUSH2 0x278 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x331BF125 GT PUSH2 0x109 JUMPI DUP1 PUSH4 0x481C6A75 GT PUSH2 0xEE JUMPI DUP1 PUSH4 0x481C6A75 EQ PUSH2 0x20E JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0x21F JUMPI DUP1 PUSH4 0x6309B773 EQ PUSH2 0x227 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x331BF125 EQ PUSH2 0x1C4 JUMPI DUP1 PUSH4 0x3A19B9BC EQ PUSH2 0x1D6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xCB4A29D EQ PUSH2 0x13B JUMPI DUP1 PUSH4 0xD37B537 EQ PUSH2 0x165 JUMPI DUP1 PUSH4 0x19C2B4C3 EQ PUSH2 0x179 JUMPI DUP1 PUSH4 0x1FE543E3 EQ PUSH2 0x1AF JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x3 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 PUSH1 0x40 DUP1 MLOAD PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE ADD PUSH2 0x15C JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH21 0x10000000000000000000000000000000000000000 SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x15C JUMP JUMPDEST PUSH2 0x1C2 PUSH2 0x1BD CALLDATASIZE PUSH1 0x4 PUSH2 0xD56 JUMP JUMPDEST PUSH2 0x315 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x4 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x15C JUMP JUMPDEST PUSH2 0x1FE PUSH2 0x1E4 CALLDATASIZE PUSH1 0x4 PUSH2 0xE45 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD ISZERO ISZERO SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x15C JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x148 JUMP JUMPDEST PUSH2 0x1C2 PUSH2 0x3BB JUMP JUMPDEST PUSH2 0x1C2 PUSH2 0x235 CALLDATASIZE PUSH1 0x4 PUSH2 0xD24 JUMP JUMPDEST PUSH2 0x449 JUMP JUMPDEST PUSH2 0x1C2 PUSH2 0x4BE JUMP JUMPDEST PUSH2 0x24A PUSH2 0x533 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH4 0xFFFFFFFF SWAP4 DUP5 AND DUP2 MSTORE SWAP3 SWAP1 SWAP2 AND PUSH1 0x20 DUP4 ADD MSTORE ADD PUSH2 0x15C JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x148 JUMP JUMPDEST PUSH2 0x1C8 PUSH2 0x286 CALLDATASIZE PUSH1 0x4 PUSH2 0xE45 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x1FE PUSH2 0x2AC CALLDATASIZE PUSH1 0x4 PUSH2 0xCF4 JUMP JUMPDEST PUSH2 0x763 JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x1 PUSH1 0xC0 SHL SWAP1 DIV PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0x40 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x15C JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x148 JUMP JUMPDEST PUSH2 0x1C2 PUSH2 0x2FD CALLDATASIZE PUSH1 0x4 PUSH2 0xE6B JUMP JUMPDEST PUSH2 0x7DD JUMP JUMPDEST PUSH2 0x1C2 PUSH2 0x310 CALLDATASIZE PUSH1 0x4 PUSH2 0xCF4 JUMP JUMPDEST PUSH2 0x84F JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x3AD JUMPI PUSH1 0x40 MLOAD PUSH32 0x1CF993F400000000000000000000000000000000000000000000000000000000 DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x3B7 DUP3 DUP3 PUSH2 0x98B JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x415 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 0x3A4 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH2 0x42A SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xA60 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST CALLER PUSH2 0x45C 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 0x4B2 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 0x3A4 JUMP JUMPDEST PUSH2 0x4BB DUP2 PUSH2 0xABD JUMP JUMPDEST POP JUMP JUMPDEST CALLER PUSH2 0x4D1 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 0x527 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 0x3A4 JUMP JUMPDEST PUSH2 0x531 PUSH1 0x0 PUSH2 0xA60 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 DUP1 CALLER PUSH2 0x549 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 PUSH2 0x59F 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 0x4D616E61676561626C652F63616C6C65722D6E6F742D6D616E61676572000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3A4 JUMP JUMPDEST PUSH1 0x3 DUP1 SLOAD PUSH1 0x4 DUP1 SLOAD PUSH1 0x40 MLOAD PUSH32 0x5D3B1D3000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE SWAP2 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0xC0 SHL DUP3 DIV PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH3 0xF4240 PUSH1 0x64 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0x84 DUP4 ADD MSTORE PUSH1 0x0 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH4 0x5D3B1D30 SWAP1 PUSH1 0xA4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x631 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x645 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 0x669 SWAP2 SWAP1 PUSH2 0xD3D JUMP JUMPDEST PUSH1 0x3 DUP1 SLOAD SWAP2 SWAP3 POP PUSH21 0x10000000000000000000000000000000000000000 SWAP1 SWAP2 DIV PUSH4 0xFFFFFFFF AND SWAP1 PUSH1 0x14 PUSH2 0x69B DUP4 PUSH2 0xE95 JUMP JUMPDEST DUP3 SLOAD PUSH2 0x100 SWAP3 SWAP1 SWAP3 EXP PUSH4 0xFFFFFFFF DUP2 DUP2 MUL NOT SWAP1 SWAP4 AND SWAP2 DUP4 AND MUL OR SWAP1 SWAP2 SSTORE PUSH1 0x3 SLOAD PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP1 SLOAD PUSH21 0x10000000000000000000000000000000000000000 SWAP1 SWAP6 DIV DUP7 AND PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000 SWAP6 DUP7 AND DUP2 OR SWAP1 SWAP2 SSTORE DUP1 DUP5 MSTORE PUSH1 0x6 SWAP1 SWAP3 MSTORE DUP1 DUP4 KECCAK256 DUP1 SLOAD SWAP1 SWAP5 AND NUMBER SWAP6 DUP7 AND OR SWAP1 SWAP4 SSTORE SWAP2 MLOAD SWAP2 SWAP7 POP SWAP2 SWAP5 POP DUP6 SWAP3 POP CALLER SWAP2 DUP4 SWAP2 PUSH32 0xCF635B20F2DEFC1E71326DC4F0B616FA676E29A5BAE87DA19FCADDC550B33F03 SWAP2 SWAP1 LOG3 POP POP SWAP1 SWAP2 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x778 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 0x7CE 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 0x3A4 JUMP JUMPDEST PUSH2 0x7D7 DUP3 PUSH2 0xB46 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLER PUSH2 0x7F0 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 0x846 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 0x3A4 JUMP JUMPDEST PUSH2 0x4BB DUP2 PUSH2 0xC32 JUMP JUMPDEST CALLER PUSH2 0x862 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 0x8B8 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 0x3A4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x934 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 0x3A4 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 DUP3 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH4 0xFFFFFFFF AND DUP1 PUSH2 0x9ED 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 0x524E47436861696E4C696E6B2F7265717565737449642D696E636F7272656374 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3A4 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0xA02 JUMPI PUSH2 0xA02 PUSH2 0xEC7 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD DUP2 ADD MLOAD PUSH4 0xFFFFFFFF DUP5 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x5 DUP5 MSTORE PUSH1 0x40 SWAP1 DUP2 SWAP1 KECCAK256 DUP4 SWAP1 SSTORE MLOAD DUP3 DUP2 MSTORE SWAP2 SWAP4 POP SWAP2 PUSH32 0x629394F18DE7ACCCE1179C28C39BE59503A57CBCF45980A2772743B041B36271 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 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 DUP1 PUSH2 0xB0A 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 0x524E47436861696E4C696E6B2F6B6579486173682D6E6F742D656D7074790000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3A4 JUMP JUMPDEST PUSH1 0x4 DUP2 SWAP1 SSTORE PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH32 0xD013F86C8346660EBF421351882CD1B3C2F91883092DF1800264C656B0DB0CC6 SWAP1 PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 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 0xBCF 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 0x3A4 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 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF AND GT PUSH2 0xC8C 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 0x524E47436861696E4C696E6B2F73756249642D67742D7A65726F000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3A4 JUMP JUMPDEST PUSH1 0x3 DUP1 SLOAD PUSH24 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x1 PUSH1 0xC0 SHL PUSH8 0xFFFFFFFFFFFFFFFF DUP5 AND SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH32 0x68DE96E24C66C14C012B5BD342251ABC26A6003EAA438002BFE530F28CA63FED SWAP1 PUSH1 0x20 ADD PUSH2 0xB3B JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xD06 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xD1D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xD36 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xD4F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xD69 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH1 0x20 DUP1 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0xD89 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP7 ADD SWAP2 POP DUP7 PUSH1 0x1F DUP4 ADD SLT PUSH2 0xD9D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0xDAF JUMPI PUSH2 0xDAF PUSH2 0xEDD JUMP JUMPDEST DUP1 PUSH1 0x5 SHL PUSH1 0x40 MLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 PUSH1 0x3F DUP4 ADD AND DUP2 ADD DUP2 DUP2 LT DUP6 DUP3 GT OR ISZERO PUSH2 0xDF2 JUMPI PUSH2 0xDF2 PUSH2 0xEDD JUMP JUMPDEST PUSH1 0x40 MSTORE DUP3 DUP2 MSTORE DUP6 DUP2 ADD SWAP4 POP DUP5 DUP7 ADD DUP3 DUP7 ADD DUP8 ADD DUP12 LT ISZERO PUSH2 0xE11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP6 POP JUMPDEST DUP4 DUP7 LT ISZERO PUSH2 0xE34 JUMPI DUP1 CALLDATALOAD DUP6 MSTORE PUSH1 0x1 SWAP6 SWAP1 SWAP6 ADD SWAP5 SWAP4 DUP7 ADD SWAP4 DUP7 ADD PUSH2 0xE16 JUMP JUMPDEST POP DUP1 SWAP7 POP POP POP POP POP POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xE57 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0xD1D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xE7D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0xD1D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP1 DUP4 AND DUP2 DUP2 EQ ISZERO PUSH2 0xEBD JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 ADD SWAP4 SWAP3 POP POP POP JUMP 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 0x5E BALANCE 0xF6 SWAP8 PUSH30 0x789E2EA185A5DB4CF5698EB3198898CF06F04F5D767120890540B64736F PUSH13 0x63430008060033000000000000 ",
              "sourceMap": "319:6154:34:-:0;;;2187:307;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;5599:32:0;;;;;;;2328:6:34;1648:24:33;2328:6:34;1648:9:33;:24::i;:::-;-1:-1:-1;2386:35:34::2;2405:15:::0;2386:18:::2;:35::i;:::-;2427;2446:15:::0;2427:18:::2;:35::i;:::-;2468:21;2480:8:::0;2468:11:::2;:21::i;:::-;2187:307:::0;;;;319:6154;;3470:174:33;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:33;;;-1:-1:-1;;;;;;3562:18:33;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;5573:255:34:-;-1:-1:-1;;;;;5667:38:34;;5659:81;;;;-1:-1:-1;;;5659:81:34;;1411:2:101;5659:81:34;;;1393:21:101;1450:2;1430:18;;;1423:30;1489:32;1469:18;;;1462:60;1539:18;;5659:81:34;;;;;;;;;5746:14;:32;;-1:-1:-1;;;;;;5746:32:34;-1:-1:-1;;;;;5746:32:34;;;;;;;;5789:34;;;;-1:-1:-1;;5789:34:34;5573:255;:::o;5980:213::-;6073:1;6055:15;-1:-1:-1;;;;;6055:19:34;;6047:58;;;;-1:-1:-1;;;6047:58:34;;1056:2:101;6047:58:34;;;1038:21:101;1095:2;1075:18;;;1068:30;1134:28;1114:18;;;1107:56;1180:18;;6047:58:34;1028:176:101;6047:58:34;6111:14;:32;;-1:-1:-1;;;;;6111:32:34;-1:-1:-1;;;;;;;;6111:32:34;;;;;;;;;;;;6154:34;;2071:50:101;;;6154:34:34;;2059:2:101;2044:18;6154:34:34;;;;;;;;5980:213;:::o;6292:179::-;6354:22;6346:65;;;;-1:-1:-1;;;6346:65:34;;1770:2:101;6346:65:34;;;1752:21:101;1809:2;1789:18;;;1782:30;1848:32;1828:18;;;1821:60;1898:18;;6346:65:34;1742:180:101;6346:65:34;6417:7;:18;;;6446:20;;818:25:101;;;6446:20:34;;806:2:101;791:18;6446:20:34;773:76:101;14:653;143:6;151;159;167;220:3;208:9;199:7;195:23;191:33;188:2;;;237:1;234;227:12;188:2;269:9;263:16;288:31;313:5;288:31;:::i;:::-;388:2;373:18;;367:25;338:5;;-1:-1:-1;401:33:101;367:25;401:33;:::i;:::-;505:2;490:18;;484:25;453:7;;-1:-1:-1;;;;;;540:32:101;;528:45;;518:2;;587:1;584;577:12;518:2;657;642:18;;;;636:25;178:489;;;;-1:-1:-1;;;178:489:101:o;2132:131::-;-1:-1:-1;;;;;2207:31:101;;2197:42;;2187:2;;2253:1;2250;2243:12;2187:2;2177:86;:::o;:::-;319:6154:34;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@_setKeyhash_5739": {
                  "entryPoint": 2749,
                  "id": 5739,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setManager_5165": {
                  "entryPoint": 2886,
                  "id": 5165,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_setOwner_5327": {
                  "entryPoint": 2656,
                  "id": 5327,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setSubscriptionId_5714": {
                  "entryPoint": 3122,
                  "id": 5714,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@claimOwnership_5307": {
                  "entryPoint": 955,
                  "id": 5307,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@fulfillRandomWords_5663": {
                  "entryPoint": 2443,
                  "id": 5663,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@getKeyHash_5573": {
                  "entryPoint": null,
                  "id": 5573,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getLastRequestId_5546": {
                  "entryPoint": null,
                  "id": 5546,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getRequestFee_5563": {
                  "entryPoint": null,
                  "id": 5563,
                  "parameterSlots": 0,
                  "returnSlots": 2
                },
                "@getSubscriptionId_5583": {
                  "entryPoint": null,
                  "id": 5583,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getVrfCoordinator_5594": {
                  "entryPoint": null,
                  "id": 5594,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@isRequestComplete_5522": {
                  "entryPoint": null,
                  "id": 5522,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@manager_5119": {
                  "entryPoint": null,
                  "id": 5119,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@owner_5239": {
                  "entryPoint": null,
                  "id": 5239,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@pendingOwner_5248": {
                  "entryPoint": null,
                  "id": 5248,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@randomNumber_5536": {
                  "entryPoint": null,
                  "id": 5536,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@rawFulfillRandomWords_56": {
                  "entryPoint": 789,
                  "id": 56,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@renounceOwnership_5262": {
                  "entryPoint": 1214,
                  "id": 5262,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@requestRandomNumber_5506": {
                  "entryPoint": 1331,
                  "id": 5506,
                  "parameterSlots": 0,
                  "returnSlots": 2
                },
                "@setKeyhash_5622": {
                  "entryPoint": 1097,
                  "id": 5622,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@setManager_5134": {
                  "entryPoint": 1891,
                  "id": 5134,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@setSubscriptionId_5608": {
                  "entryPoint": 2013,
                  "id": 5608,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@transferOwnership_5289": {
                  "entryPoint": 2127,
                  "id": 5289,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "abi_decode_tuple_t_address": {
                  "entryPoint": 3316,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_bytes32": {
                  "entryPoint": 3364,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint256_fromMemory": {
                  "entryPoint": 3389,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint256t_array$_t_uint256_$dyn_memory_ptr": {
                  "entryPoint": 3414,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_uint32": {
                  "entryPoint": 3653,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint64": {
                  "entryPoint": 3691,
                  "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_bytes32__to_t_bytes32__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_bytes32_t_uint64_t_rational_3_by_1_t_rational_1000000_by_1_t_rational_1_by_1__to_t_bytes32_t_uint64_t_uint16_t_uint32_t_uint32__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 6,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_VRFCoordinatorV2Interface_$146__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_05ed5cf94387b5eff2b2f4b377ba924d81dadfe40133af15ec4f9a8276d095ad__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_36b25d27d6d34a9cb5b0f926fbb139de96bcabc3632b0dbba5eaaefc789854c7__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_781c54ee483ba928cbb64c052f134c6ba48222415b5ff16d687a605ab640168f__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_bc577ee49b57e27fd57fb2557ec404eadeb7fc206b44e6be9ec43118a54491ef__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
                },
                "abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint32_t_uint32__to_t_uint32_t_uint32__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "increment_t_uint32": {
                  "entryPoint": 3733,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "panic_error_0x32": {
                  "entryPoint": 3783,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x41": {
                  "entryPoint": 3805,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:9182:101",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:101",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "84:239:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "130:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "139:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "142:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "132:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "132:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "132:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "105:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "114:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "101:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "101:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "126:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "97:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "97:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "94:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "155:36:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "181:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "168:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "168:23:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "159:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "277:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "286:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "289:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "279:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "279:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "279:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "213:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "224:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "231:42:101",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "220:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "220:54:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "210:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "210:65:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "203:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "203:73:101"
                              },
                              "nodeType": "YulIf",
                              "src": "200:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "302:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "312:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "302:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "50:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "61:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "73:6:101",
                            "type": ""
                          }
                        ],
                        "src": "14:309:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "398:110:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "444:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "453:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "456:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "446:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "446:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "446:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "419:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "428:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "415:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "415:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "440:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "411:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "411:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "408:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "469:33:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "492:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "479:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "479:23:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "469:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_bytes32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "364:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "375:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "387:6:101",
                            "type": ""
                          }
                        ],
                        "src": "328:180:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "594:103:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "640:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "649:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "652:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "642:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "642:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "642:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "615:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "624:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "611:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "611:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "636:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "607:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "607:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "604:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "665:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "681:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "675:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "675:16:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "665:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "560:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "571:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "583:6:101",
                            "type": ""
                          }
                        ],
                        "src": "513:184:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "814:1141:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "860:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "869:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "872:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "862:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "862:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "862:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "835:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "844:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "831:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "831:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "856:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "827:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "827:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "824:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "885:33:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "908:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "895:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "895:23:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "885:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "927:12:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "937:2:101",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "931:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "948:46:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "979:9:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "990:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "975:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "975:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "962:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "962:32:101"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "952:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1003:28:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "1013:18:101",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "1007:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1058:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1067:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1070:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1060:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1060:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1060:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1046:6:101"
                                  },
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "1054:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1043:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1043:14:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1040:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1083:32:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1097:9:101"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1108:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1093:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1093:22:101"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "1087:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1163:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1172:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1175:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1165:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1165:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1165:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_3",
                                            "nodeType": "YulIdentifier",
                                            "src": "1142:2:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1146:4:101",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1138:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1138:13:101"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1153:7:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1134:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1134:27:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1127:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1127:35:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1124:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1188:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "1211:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1198:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1198:16:101"
                              },
                              "variables": [
                                {
                                  "name": "_4",
                                  "nodeType": "YulTypedName",
                                  "src": "1192:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1237:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "1239:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1239:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1239:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "1229:2:101"
                                  },
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "1233:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1226:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1226:10:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1223:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1268:20:101",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1282:1:101",
                                    "type": "",
                                    "value": "5"
                                  },
                                  {
                                    "name": "_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "1285:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "shl",
                                  "nodeType": "YulIdentifier",
                                  "src": "1278:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1278:10:101"
                              },
                              "variables": [
                                {
                                  "name": "_5",
                                  "nodeType": "YulTypedName",
                                  "src": "1272:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1297:23:101",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1317:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1311:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1311:9:101"
                              },
                              "variables": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "1301:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1329:115:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "1351:6:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_5",
                                            "nodeType": "YulIdentifier",
                                            "src": "1367:2:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1371:2:101",
                                            "type": "",
                                            "value": "63"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1363:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1363:11:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1376:66:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "1359:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1359:84:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1347:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1347:97:101"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "1333:10:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1503:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "1505:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1505:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1505:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1462:10:101"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "1474:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1459:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1459:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1482:10:101"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1494:6:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1479:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1479:22:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "1456:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1456:46:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1453:2:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1541:2:101",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "1545:10:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1534:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1534:22:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1534:22:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1565:17:101",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "1576:6:101"
                              },
                              "variables": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulTypedName",
                                  "src": "1569:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "1598:6:101"
                                  },
                                  {
                                    "name": "_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "1606:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1591:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1591:18:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1591:18:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1618:22:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "1629:6:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1637:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1625:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1625:15:101"
                              },
                              "variableNames": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulIdentifier",
                                  "src": "1618:3:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1649:22:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "1664:2:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1668:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1660:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1660:11:101"
                              },
                              "variables": [
                                {
                                  "name": "src",
                                  "nodeType": "YulTypedName",
                                  "src": "1653:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1717:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1726:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1729:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1719:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1719:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1719:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_3",
                                            "nodeType": "YulIdentifier",
                                            "src": "1694:2:101"
                                          },
                                          {
                                            "name": "_5",
                                            "nodeType": "YulIdentifier",
                                            "src": "1698:2:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1690:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1690:11:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1703:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1686:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1686:20:101"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1708:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1683:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1683:33:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1680:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1742:10:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "1751:1:101",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "1746:1:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1806:118:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "1827:3:101"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "1845:3:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "calldataload",
                                            "nodeType": "YulIdentifier",
                                            "src": "1832:12:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "1832:17:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1820:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1820:30:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1820:30:101"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "1863:19:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "1874:3:101"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "1879:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "1870:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1870:12:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "dst",
                                        "nodeType": "YulIdentifier",
                                        "src": "1863:3:101"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "1895:19:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "1906:3:101"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "1911:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "1902:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1902:12:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "src",
                                        "nodeType": "YulIdentifier",
                                        "src": "1895:3:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "1772:1:101"
                                  },
                                  {
                                    "name": "_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "1775:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1769:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1769:9:101"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "1779:18:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "1781:14:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "1790:1:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1793:1:101",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "1786:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1786:9:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "1781:1:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "1765:3:101",
                                "statements": []
                              },
                              "src": "1761:163:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1933:16:101",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "1943:6:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1933:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256t_array$_t_uint256_$dyn_memory_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "772:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "783:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "795:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "803:6:101",
                            "type": ""
                          }
                        ],
                        "src": "702:1253:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2029:207:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2075:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2084:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2087:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2077:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2077:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2077:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2050:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2059:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2046:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2046:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2071:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2042:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2042:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2039:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2100:36:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2126:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2113:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2113:23:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2104:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2190:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2199:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2202:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2192:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2192:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2192:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2158:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "2169:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2176:10:101",
                                            "type": "",
                                            "value": "0xffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "2165:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2165:22:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "2155:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2155:33:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "2148:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2148:41:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2145:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2215:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2225:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2215:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1995:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2006:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2018:6:101",
                            "type": ""
                          }
                        ],
                        "src": "1960:276:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2310:215:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2356:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2365:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2368:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2358:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2358:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2358:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2331:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2340:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2327:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2327:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2352:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2323:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2323:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2320:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2381:36:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2407:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2394:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2394:23:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2385:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2479:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2488:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2491:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2481:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2481:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2481:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2439:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "2450:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2457:18:101",
                                            "type": "",
                                            "value": "0xffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "2446:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2446:30:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "2436:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2436:41:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "2429:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2429:49:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2426:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2504:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2514:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2504:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2276:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2287:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2299:6:101",
                            "type": ""
                          }
                        ],
                        "src": "2241:284:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2631:125:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2641:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2653:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2664:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2649:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2649:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2641:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2683:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "2698:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2706:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2694:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2694:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2676:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2676:74:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2676:74:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2600:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2611:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2622:4:101",
                            "type": ""
                          }
                        ],
                        "src": "2530:226:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2890:198:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2900:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2912:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2923:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2908:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2908:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2900:4:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2935:52:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "2945:42:101",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2939:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3003:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "3018:6:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "3026:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3014:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3014:15:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2996:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2996:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2996:34:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3050:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3061:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3046:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3046:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "3070:6:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "3078:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3066:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3066:15:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3039:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3039:43:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3039:43:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2851:9:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2862:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2870:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2881:4:101",
                            "type": ""
                          }
                        ],
                        "src": "2761:327:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3222:168:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3232:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3244:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3255:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3240:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3240:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3232:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3274:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "3289:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3297:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3285:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3285:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3267:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3267:74:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3267:74:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3361:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3372:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3357:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3357:18:101"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3377:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3350:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3350:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3350:34:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3183:9:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "3194:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3202:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3213:4:101",
                            "type": ""
                          }
                        ],
                        "src": "3093:297:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3490:92:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3500:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3512:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3523:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3508:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3508:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3500:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3542:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "3567:6:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "3560:6:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3560:14:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "3553:6:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3553:22:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3535:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3535:41:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3535:41:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3459:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3470:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3481:4:101",
                            "type": ""
                          }
                        ],
                        "src": "3395:187:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3688:76:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3698:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3710:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3721:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3706:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3706:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3698:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3740:9:101"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "3751:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3733:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3733:25:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3733:25:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3657:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3668:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3679:4:101",
                            "type": ""
                          }
                        ],
                        "src": "3587:177:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4007:335:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "4017:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4029:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4040:3:101",
                                    "type": "",
                                    "value": "160"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4025:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4025:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4017:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4060:9:101"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "4071:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4053:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4053:25:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4053:25:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4098:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4109:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4094:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4094:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "4118:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4126:18:101",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4114:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4114:31:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4087:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4087:59:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4087:59:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4166:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4177:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4162:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4162:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value2",
                                        "nodeType": "YulIdentifier",
                                        "src": "4186:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4194:6:101",
                                        "type": "",
                                        "value": "0xffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4182:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4182:19:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4155:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4155:47:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4155:47:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4211:20:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "4221:10:101",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4215:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4251:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4262:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4247:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4247:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value3",
                                        "nodeType": "YulIdentifier",
                                        "src": "4271:6:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "4279:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4267:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4267:15:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4240:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4240:43:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4240:43:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4303:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4314:3:101",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4299:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4299:19:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value4",
                                        "nodeType": "YulIdentifier",
                                        "src": "4324:6:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "4332:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4320:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4320:15:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4292:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4292:44:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4292:44:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bytes32_t_uint64_t_rational_3_by_1_t_rational_1000000_by_1_t_rational_1_by_1__to_t_bytes32_t_uint64_t_uint16_t_uint32_t_uint32__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3944:9:101",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "3955:6:101",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "3963:6:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "3971:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "3979:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3987:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3998:4:101",
                            "type": ""
                          }
                        ],
                        "src": "3769:573:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4481:125:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "4491:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4503:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4514:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4499:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4499:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4491:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4533:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "4548:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4556:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4544:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4544:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4526:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4526:74:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4526:74:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_VRFCoordinatorV2Interface_$146__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4450:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4461:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4472:4:101",
                            "type": ""
                          }
                        ],
                        "src": "4347:259:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4785:182:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4802:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4813:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4795:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4795:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4795:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4836:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4847:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4832:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4832:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4852:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4825:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4825:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4825:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4875:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4886:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4871:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4871:18:101"
                                  },
                                  {
                                    "hexValue": "524e47436861696e4c696e6b2f7265717565737449642d696e636f7272656374",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4891:34:101",
                                    "type": "",
                                    "value": "RNGChainLink/requestId-incorrect"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4864:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4864:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4864:62:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4935:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4947:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4958:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4943:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4943:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4935:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_05ed5cf94387b5eff2b2f4b377ba924d81dadfe40133af15ec4f9a8276d095ad__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4762:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4776:4:101",
                            "type": ""
                          }
                        ],
                        "src": "4611:356:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5146:176:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5163:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5174:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5156:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5156:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5156:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5197:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5208:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5193:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5193:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5213:2:101",
                                    "type": "",
                                    "value": "26"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5186:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5186:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5186:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5236:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5247:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5232:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5232:18:101"
                                  },
                                  {
                                    "hexValue": "524e47436861696e4c696e6b2f73756249642d67742d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5252:28:101",
                                    "type": "",
                                    "value": "RNGChainLink/subId-gt-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5225:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5225:56:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5225:56:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5290:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5302:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5313:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5298:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5298:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5290:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_36b25d27d6d34a9cb5b0f926fbb139de96bcabc3632b0dbba5eaaefc789854c7__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5123:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5137:4:101",
                            "type": ""
                          }
                        ],
                        "src": "4972:350:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5501:225:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5518:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5529:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5511:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5511:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5511:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5552:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5563:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5548:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5548:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5568:2:101",
                                    "type": "",
                                    "value": "35"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5541:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5541:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5541:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5591:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5602:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5587:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5587:18:101"
                                  },
                                  {
                                    "hexValue": "4d616e61676561626c652f6578697374696e672d6d616e616765722d61646472",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5607:34:101",
                                    "type": "",
                                    "value": "Manageable/existing-manager-addr"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5580:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5580:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5580:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5662:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5673:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5658:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5658:18:101"
                                  },
                                  {
                                    "hexValue": "657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5678:5:101",
                                    "type": "",
                                    "value": "ess"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5651:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5651:33:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5651:33:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5693:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5705:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5716:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5701:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5701:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5693:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5478:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5492:4:101",
                            "type": ""
                          }
                        ],
                        "src": "5327:399:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5905:174:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5922:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5933:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5915:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5915:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5915:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5956:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5967:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5952:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5952:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5972:2:101",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5945:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5945:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5945:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5995:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6006:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5991:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5991:18:101"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6011:26:101",
                                    "type": "",
                                    "value": "Ownable/caller-not-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5984:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5984:54:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5984:54:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6047:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6059:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6070:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6055:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6055:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6047:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5882:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5896:4:101",
                            "type": ""
                          }
                        ],
                        "src": "5731:348:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6258:179:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6275:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6286:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6268:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6268:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6268:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6309:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6320:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6305:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6305:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6325:2:101",
                                    "type": "",
                                    "value": "29"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6298:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6298:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6298:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6348:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6359:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6344:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6344:18:101"
                                  },
                                  {
                                    "hexValue": "4d616e61676561626c652f63616c6c65722d6e6f742d6d616e61676572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6364:31:101",
                                    "type": "",
                                    "value": "Manageable/caller-not-manager"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6337:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6337:59:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6337:59:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6405:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6417:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6428:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6413:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6413:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6405:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_781c54ee483ba928cbb64c052f134c6ba48222415b5ff16d687a605ab640168f__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6235:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6249:4:101",
                            "type": ""
                          }
                        ],
                        "src": "6084:353:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6616:181:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6633:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6644:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6626:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6626:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6626:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6667:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6678:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6663:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6663:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6683:2:101",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6656:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6656:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6656:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6706:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6717:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6702:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6702:18:101"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6722:33:101",
                                    "type": "",
                                    "value": "Ownable/caller-not-pendingOwner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6695:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6695:61:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6695:61:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6765:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6777:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6788:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6773:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6773:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6765:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6593:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6607:4:101",
                            "type": ""
                          }
                        ],
                        "src": "6442:355:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6976:180:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6993:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7004:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6986:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6986:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6986:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7027:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7038:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7023:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7023:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7043:2:101",
                                    "type": "",
                                    "value": "30"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7016:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7016:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7016:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7066:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7077:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7062:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7062:18:101"
                                  },
                                  {
                                    "hexValue": "524e47436861696e4c696e6b2f6b6579486173682d6e6f742d656d707479",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7082:32:101",
                                    "type": "",
                                    "value": "RNGChainLink/keyHash-not-empty"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7055:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7055:60:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7055:60:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7124:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7136:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7147:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7132:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7132:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7124:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_bc577ee49b57e27fd57fb2557ec404eadeb7fc206b44e6be9ec43118a54491ef__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6953:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6967:4:101",
                            "type": ""
                          }
                        ],
                        "src": "6802:354:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7335:227:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7352:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7363:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7345:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7345:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7345:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7386:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7397:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7382:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7382:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7402:2:101",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7375:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7375:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7375:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7425:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7436:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7421:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7421:18:101"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d6164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7441:34:101",
                                    "type": "",
                                    "value": "Ownable/pendingOwner-not-zero-ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7414:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7414:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7414:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7496:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7507:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7492:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7492:18:101"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7512:7:101",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7485:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7485:35:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7485:35:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7529:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7541:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7552:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7537:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7537:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7529:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7312:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7326:4:101",
                            "type": ""
                          }
                        ],
                        "src": "7161:401:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7668:76:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7678:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7690:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7701:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7686:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7686:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7678:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7720:9:101"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "7731:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7713:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7713:25:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7713:25:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7637:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7648:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7659:4:101",
                            "type": ""
                          }
                        ],
                        "src": "7567:177:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7848:93:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7858:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7870:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7881:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7866:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7866:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7858:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7900:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "7915:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7923:10:101",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "7911:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7911:23:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7893:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7893:42:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7893:42:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7817:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7828:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7839:4:101",
                            "type": ""
                          }
                        ],
                        "src": "7749:192:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8071:166:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8081:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8093:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8104:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8089:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8089:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8081:4:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8116:20:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "8126:10:101",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8120:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8152:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "8167:6:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "8175:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "8163:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8163:15:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8145:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8145:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8145:34:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8199:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8210:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8195:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8195:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "8219:6:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "8227:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "8215:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8215:15:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8188:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8188:43:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8188:43:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint32_t_uint32__to_t_uint32_t_uint32__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8032:9:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "8043:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8051:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8062:4:101",
                            "type": ""
                          }
                        ],
                        "src": "7946:291:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8341:101:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8351:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8363:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8374:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8359:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8359:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8351:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8393:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "8408:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8416:18:101",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "8404:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8404:31:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8386:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8386:50:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8386:50:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8310:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8321:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8332:4:101",
                            "type": ""
                          }
                        ],
                        "src": "8242:200:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8493:309:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8503:20:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "8513:10:101",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8507:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8532:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "8551:5:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8558:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "8547:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8547:14:101"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8536:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8597:168:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8618:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8621:77:101",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8611:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8611:88:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8611:88:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8719:1:101",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8722:4:101",
                                          "type": "",
                                          "value": "0x11"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8712:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8712:15:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8712:15:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8747:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8750:4:101",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "8740:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8740:15:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8740:15:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8576:7:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8585:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "8573:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8573:15:101"
                              },
                              "nodeType": "YulIf",
                              "src": "8570:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8774:22:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8785:7:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8794:1:101",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8781:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8781:15:101"
                              },
                              "variableNames": [
                                {
                                  "name": "ret",
                                  "nodeType": "YulIdentifier",
                                  "src": "8774:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "increment_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "8475:5:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "ret",
                            "nodeType": "YulTypedName",
                            "src": "8485:3:101",
                            "type": ""
                          }
                        ],
                        "src": "8447:355:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8839:152:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8856:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8859:77:101",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8849:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8849:88:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8849:88:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8953:1:101",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8956:4:101",
                                    "type": "",
                                    "value": "0x32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8946:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8946:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8946:15:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8977:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8980:4:101",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "8970:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8970:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8970:15:101"
                            }
                          ]
                        },
                        "name": "panic_error_0x32",
                        "nodeType": "YulFunctionDefinition",
                        "src": "8807:184:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9028:152:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9045:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9048:77:101",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9038:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9038:88:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9038:88:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9142:1:101",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9145:4:101",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9135:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9135:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9135:15:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9166:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9169:4:101",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "9159:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9159:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9159:15:101"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "8996:184:101"
                      }
                    ]
                  },
                  "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_bytes32(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_array$_t_uint256_$dyn_memory_ptr(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        value0 := calldataload(headStart)\n        let _1 := 32\n        let offset := calldataload(add(headStart, _1))\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        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, calldataload(src))\n            dst := add(dst, _1)\n            src := add(src, _1)\n        }\n        value1 := memPtr\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        if iszero(eq(value, and(value, 0xffffffff))) { revert(0, 0) }\n        value0 := value\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_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_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_uint64_t_rational_3_by_1_t_rational_1000000_by_1_t_rational_1_by_1__to_t_bytes32_t_uint64_t_uint16_t_uint32_t_uint32__fromStack_reversed(headStart, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 160)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, 0xffffffffffffffff))\n        mstore(add(headStart, 64), and(value2, 0xffff))\n        let _1 := 0xffffffff\n        mstore(add(headStart, 96), and(value3, _1))\n        mstore(add(headStart, 128), and(value4, _1))\n    }\n    function abi_encode_tuple_t_contract$_VRFCoordinatorV2Interface_$146__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_05ed5cf94387b5eff2b2f4b377ba924d81dadfe40133af15ec4f9a8276d095ad__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), \"RNGChainLink/requestId-incorrect\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_36b25d27d6d34a9cb5b0f926fbb139de96bcabc3632b0dbba5eaaefc789854c7__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), \"RNGChainLink/subId-gt-zero\")\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_781c54ee483ba928cbb64c052f134c6ba48222415b5ff16d687a605ab640168f__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), \"Manageable/caller-not-manager\")\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_bc577ee49b57e27fd57fb2557ec404eadeb7fc206b44e6be9ec43118a54491ef__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), \"RNGChainLink/keyHash-not-empty\")\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_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_uint32__to_t_uint32_t_uint32__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        let _1 := 0xffffffff\n        mstore(headStart, and(value0, _1))\n        mstore(add(headStart, 32), and(value1, _1))\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 increment_t_uint32(value) -> ret\n    {\n        let _1 := 0xffffffff\n        let value_1 := and(value, _1)\n        if eq(value_1, _1)\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x11)\n            revert(0, 0x24)\n        }\n        ret := add(value_1, 1)\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": 101,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {
                "10": [
                  {
                    "length": 32,
                    "start": 800
                  },
                  {
                    "length": 32,
                    "start": 891
                  }
                ]
              },
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106101365760003560e01c8063715018a6116100b2578063d0ebdbe711610081578063e30c397811610066578063e30c3978146102de578063ea7b4f77146102ef578063f2fde38b1461030257600080fd5b8063d0ebdbe71461029e578063de3d9fb7146102b157600080fd5b8063715018a61461023a5780638678a7b2146102425780638da5cb5b146102675780639d2a5f981461027857600080fd5b8063331bf12511610109578063481c6a75116100ee578063481c6a751461020e5780634e71e0c81461021f5780636309b7731461022757600080fd5b8063331bf125146101c45780633a19b9bc146101d657600080fd5b80630cb4a29d1461013b5780630d37b5371461016557806319c2b4c3146101795780631fe543e3146101af575b600080fd5b6003546001600160a01b03165b6040516001600160a01b0390911681526020015b60405180910390f35b60408051600080825260208201520161015c565b60035474010000000000000000000000000000000000000000900463ffffffff1660405163ffffffff909116815260200161015c565b6101c26101bd366004610d56565b610315565b005b6004545b60405190815260200161015c565b6101fe6101e4366004610e45565b63ffffffff16600090815260056020526040902054151590565b604051901515815260200161015c565b6002546001600160a01b0316610148565b6101c26103bb565b6101c2610235366004610d24565b610449565b6101c26104be565b61024a610533565b6040805163ffffffff93841681529290911660208301520161015c565b6000546001600160a01b0316610148565b6101c8610286366004610e45565b63ffffffff1660009081526005602052604090205490565b6101fe6102ac366004610cf4565b610763565b600354600160c01b900467ffffffffffffffff1660405167ffffffffffffffff909116815260200161015c565b6001546001600160a01b0316610148565b6101c26102fd366004610e6b565b6107dd565b6101c2610310366004610cf4565b61084f565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146103ad576040517f1cf993f40000000000000000000000000000000000000000000000000000000081523360048201526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001660248201526044015b60405180910390fd5b6103b7828261098b565b5050565b6001546001600160a01b031633146104155760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e65720060448201526064016103a4565b60015461042a906001600160a01b0316610a60565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b3361045c6000546001600160a01b031690565b6001600160a01b0316146104b25760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016103a4565b6104bb81610abd565b50565b336104d16000546001600160a01b031690565b6001600160a01b0316146105275760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016103a4565b6105316000610a60565b565b600080336105496002546001600160a01b031690565b6001600160a01b03161461059f5760405162461bcd60e51b815260206004820152601d60248201527f4d616e61676561626c652f63616c6c65722d6e6f742d6d616e6167657200000060448201526064016103a4565b60038054600480546040517f5d3b1d3000000000000000000000000000000000000000000000000000000000815291820152600160c01b820467ffffffffffffffff1660248201526044810192909252620f42406064830152600160848301526000916001600160a01b0390911690635d3b1d309060a401602060405180830381600087803b15801561063157600080fd5b505af1158015610645573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106699190610d3d565b600380549192507401000000000000000000000000000000000000000090910463ffffffff1690601461069b83610e95565b82546101009290920a63ffffffff818102199093169183160217909155600354600084815260076020908152604080832080547401000000000000000000000000000000000000000090950486167fffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000095861681179091558084526006909252808320805490941643958616179093559151919650919450859250339183917fcf635b20f2defc1e71326dc4f0b616fa676e29a5bae87da19fcaddc550b33f039190a350509091565b6000336107786000546001600160a01b031690565b6001600160a01b0316146107ce5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016103a4565b6107d782610b46565b92915050565b336107f06000546001600160a01b031690565b6001600160a01b0316146108465760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016103a4565b6104bb81610c32565b336108626000546001600160a01b031690565b6001600160a01b0316146108b85760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016103a4565b6001600160a01b0381166109345760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016103a4565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b60008281526007602052604090205463ffffffff16806109ed5760405162461bcd60e51b815260206004820181905260248201527f524e47436861696e4c696e6b2f7265717565737449642d696e636f727265637460448201526064016103a4565b600082600081518110610a0257610a02610ec7565b60209081029190910181015163ffffffff841660008181526005845260409081902083905551828152919350917f629394f18de7accce1179c28c39be59503a57cbcf45980a2772743b041b36271910160405180910390a250505050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80610b0a5760405162461bcd60e51b815260206004820152601e60248201527f524e47436861696e4c696e6b2f6b6579486173682d6e6f742d656d707479000060448201526064016103a4565b60048190556040518181527fd013f86c8346660ebf421351882cd1b3c2f91883092df1800264c656b0db0cc6906020015b60405180910390a150565b6002546000906001600160a01b03908116908316811415610bcf5760405162461bcd60e51b815260206004820152602360248201527f4d616e61676561626c652f6578697374696e672d6d616e616765722d6164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016103a4565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385811691821790925560405190918316907f9cb45c728de594dab506a1f1a8554e24c8eeaf983618d5ec5dd7bc6f3c49feee90600090a350600192915050565b60008167ffffffffffffffff1611610c8c5760405162461bcd60e51b815260206004820152601a60248201527f524e47436861696e4c696e6b2f73756249642d67742d7a65726f00000000000060448201526064016103a4565b6003805477ffffffffffffffffffffffffffffffffffffffffffffffff16600160c01b67ffffffffffffffff8416908102919091179091556040519081527f68de96e24c66c14c012b5bd342251abc26a6003eaa438002bfe530f28ca63fed90602001610b3b565b600060208284031215610d0657600080fd5b81356001600160a01b0381168114610d1d57600080fd5b9392505050565b600060208284031215610d3657600080fd5b5035919050565b600060208284031215610d4f57600080fd5b5051919050565b60008060408385031215610d6957600080fd5b8235915060208084013567ffffffffffffffff80821115610d8957600080fd5b818601915086601f830112610d9d57600080fd5b813581811115610daf57610daf610edd565b8060051b6040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0603f83011681018181108582111715610df257610df2610edd565b604052828152858101935084860182860187018b1015610e1157600080fd5b600095505b83861015610e34578035855260019590950194938601938601610e16565b508096505050505050509250929050565b600060208284031215610e5757600080fd5b813563ffffffff81168114610d1d57600080fd5b600060208284031215610e7d57600080fd5b813567ffffffffffffffff81168114610d1d57600080fd5b600063ffffffff80831681811415610ebd57634e487b7160e01b600052601160045260246000fd5b6001019392505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fdfea26469706673582212205e31f6977d0789e2ea185a5db4cf5698eb3198898cf06f04f5d767120890540b64736f6c63430008060033",
              "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 0x715018A6 GT PUSH2 0xB2 JUMPI DUP1 PUSH4 0xD0EBDBE7 GT PUSH2 0x81 JUMPI DUP1 PUSH4 0xE30C3978 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0x2DE JUMPI DUP1 PUSH4 0xEA7B4F77 EQ PUSH2 0x2EF JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x302 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xD0EBDBE7 EQ PUSH2 0x29E JUMPI DUP1 PUSH4 0xDE3D9FB7 EQ PUSH2 0x2B1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x715018A6 EQ PUSH2 0x23A JUMPI DUP1 PUSH4 0x8678A7B2 EQ PUSH2 0x242 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x267 JUMPI DUP1 PUSH4 0x9D2A5F98 EQ PUSH2 0x278 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x331BF125 GT PUSH2 0x109 JUMPI DUP1 PUSH4 0x481C6A75 GT PUSH2 0xEE JUMPI DUP1 PUSH4 0x481C6A75 EQ PUSH2 0x20E JUMPI DUP1 PUSH4 0x4E71E0C8 EQ PUSH2 0x21F JUMPI DUP1 PUSH4 0x6309B773 EQ PUSH2 0x227 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x331BF125 EQ PUSH2 0x1C4 JUMPI DUP1 PUSH4 0x3A19B9BC EQ PUSH2 0x1D6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xCB4A29D EQ PUSH2 0x13B JUMPI DUP1 PUSH4 0xD37B537 EQ PUSH2 0x165 JUMPI DUP1 PUSH4 0x19C2B4C3 EQ PUSH2 0x179 JUMPI DUP1 PUSH4 0x1FE543E3 EQ PUSH2 0x1AF JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x3 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 PUSH1 0x40 DUP1 MLOAD PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE ADD PUSH2 0x15C JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH21 0x10000000000000000000000000000000000000000 SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x15C JUMP JUMPDEST PUSH2 0x1C2 PUSH2 0x1BD CALLDATASIZE PUSH1 0x4 PUSH2 0xD56 JUMP JUMPDEST PUSH2 0x315 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x4 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x15C JUMP JUMPDEST PUSH2 0x1FE PUSH2 0x1E4 CALLDATASIZE PUSH1 0x4 PUSH2 0xE45 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD ISZERO ISZERO SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x15C JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x148 JUMP JUMPDEST PUSH2 0x1C2 PUSH2 0x3BB JUMP JUMPDEST PUSH2 0x1C2 PUSH2 0x235 CALLDATASIZE PUSH1 0x4 PUSH2 0xD24 JUMP JUMPDEST PUSH2 0x449 JUMP JUMPDEST PUSH2 0x1C2 PUSH2 0x4BE JUMP JUMPDEST PUSH2 0x24A PUSH2 0x533 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH4 0xFFFFFFFF SWAP4 DUP5 AND DUP2 MSTORE SWAP3 SWAP1 SWAP2 AND PUSH1 0x20 DUP4 ADD MSTORE ADD PUSH2 0x15C JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x148 JUMP JUMPDEST PUSH2 0x1C8 PUSH2 0x286 CALLDATASIZE PUSH1 0x4 PUSH2 0xE45 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x1FE PUSH2 0x2AC CALLDATASIZE PUSH1 0x4 PUSH2 0xCF4 JUMP JUMPDEST PUSH2 0x763 JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0x1 PUSH1 0xC0 SHL SWAP1 DIV PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0x40 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x15C JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x148 JUMP JUMPDEST PUSH2 0x1C2 PUSH2 0x2FD CALLDATASIZE PUSH1 0x4 PUSH2 0xE6B JUMP JUMPDEST PUSH2 0x7DD JUMP JUMPDEST PUSH2 0x1C2 PUSH2 0x310 CALLDATASIZE PUSH1 0x4 PUSH2 0xCF4 JUMP JUMPDEST PUSH2 0x84F JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x3AD JUMPI PUSH1 0x40 MLOAD PUSH32 0x1CF993F400000000000000000000000000000000000000000000000000000000 DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x3B7 DUP3 DUP3 PUSH2 0x98B JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x415 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 0x3A4 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH2 0x42A SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xA60 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST CALLER PUSH2 0x45C 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 0x4B2 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 0x3A4 JUMP JUMPDEST PUSH2 0x4BB DUP2 PUSH2 0xABD JUMP JUMPDEST POP JUMP JUMPDEST CALLER PUSH2 0x4D1 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 0x527 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 0x3A4 JUMP JUMPDEST PUSH2 0x531 PUSH1 0x0 PUSH2 0xA60 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 DUP1 CALLER PUSH2 0x549 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 PUSH2 0x59F 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 0x4D616E61676561626C652F63616C6C65722D6E6F742D6D616E61676572000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3A4 JUMP JUMPDEST PUSH1 0x3 DUP1 SLOAD PUSH1 0x4 DUP1 SLOAD PUSH1 0x40 MLOAD PUSH32 0x5D3B1D3000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE SWAP2 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0xC0 SHL DUP3 DIV PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH3 0xF4240 PUSH1 0x64 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0x84 DUP4 ADD MSTORE PUSH1 0x0 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH4 0x5D3B1D30 SWAP1 PUSH1 0xA4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x631 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x645 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 0x669 SWAP2 SWAP1 PUSH2 0xD3D JUMP JUMPDEST PUSH1 0x3 DUP1 SLOAD SWAP2 SWAP3 POP PUSH21 0x10000000000000000000000000000000000000000 SWAP1 SWAP2 DIV PUSH4 0xFFFFFFFF AND SWAP1 PUSH1 0x14 PUSH2 0x69B DUP4 PUSH2 0xE95 JUMP JUMPDEST DUP3 SLOAD PUSH2 0x100 SWAP3 SWAP1 SWAP3 EXP PUSH4 0xFFFFFFFF DUP2 DUP2 MUL NOT SWAP1 SWAP4 AND SWAP2 DUP4 AND MUL OR SWAP1 SWAP2 SSTORE PUSH1 0x3 SLOAD PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP1 SLOAD PUSH21 0x10000000000000000000000000000000000000000 SWAP1 SWAP6 DIV DUP7 AND PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00000000 SWAP6 DUP7 AND DUP2 OR SWAP1 SWAP2 SSTORE DUP1 DUP5 MSTORE PUSH1 0x6 SWAP1 SWAP3 MSTORE DUP1 DUP4 KECCAK256 DUP1 SLOAD SWAP1 SWAP5 AND NUMBER SWAP6 DUP7 AND OR SWAP1 SWAP4 SSTORE SWAP2 MLOAD SWAP2 SWAP7 POP SWAP2 SWAP5 POP DUP6 SWAP3 POP CALLER SWAP2 DUP4 SWAP2 PUSH32 0xCF635B20F2DEFC1E71326DC4F0B616FA676E29A5BAE87DA19FCADDC550B33F03 SWAP2 SWAP1 LOG3 POP POP SWAP1 SWAP2 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x778 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 0x7CE 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 0x3A4 JUMP JUMPDEST PUSH2 0x7D7 DUP3 PUSH2 0xB46 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLER PUSH2 0x7F0 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 0x846 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 0x3A4 JUMP JUMPDEST PUSH2 0x4BB DUP2 PUSH2 0xC32 JUMP JUMPDEST CALLER PUSH2 0x862 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 0x8B8 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 0x3A4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x934 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 0x3A4 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 DUP3 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH4 0xFFFFFFFF AND DUP1 PUSH2 0x9ED 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 0x524E47436861696E4C696E6B2F7265717565737449642D696E636F7272656374 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3A4 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0xA02 JUMPI PUSH2 0xA02 PUSH2 0xEC7 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD DUP2 ADD MLOAD PUSH4 0xFFFFFFFF DUP5 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x5 DUP5 MSTORE PUSH1 0x40 SWAP1 DUP2 SWAP1 KECCAK256 DUP4 SWAP1 SSTORE MLOAD DUP3 DUP2 MSTORE SWAP2 SWAP4 POP SWAP2 PUSH32 0x629394F18DE7ACCCE1179C28C39BE59503A57CBCF45980A2772743B041B36271 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 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 DUP1 PUSH2 0xB0A 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 0x524E47436861696E4C696E6B2F6B6579486173682D6E6F742D656D7074790000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3A4 JUMP JUMPDEST PUSH1 0x4 DUP2 SWAP1 SSTORE PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH32 0xD013F86C8346660EBF421351882CD1B3C2F91883092DF1800264C656B0DB0CC6 SWAP1 PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 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 0xBCF 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 0x3A4 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 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF AND GT PUSH2 0xC8C 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 0x524E47436861696E4C696E6B2F73756249642D67742D7A65726F000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3A4 JUMP JUMPDEST PUSH1 0x3 DUP1 SLOAD PUSH24 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x1 PUSH1 0xC0 SHL PUSH8 0xFFFFFFFFFFFFFFFF DUP5 AND SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH32 0x68DE96E24C66C14C012B5BD342251ABC26A6003EAA438002BFE530F28CA63FED SWAP1 PUSH1 0x20 ADD PUSH2 0xB3B JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xD06 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xD1D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xD36 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xD4F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xD69 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH1 0x20 DUP1 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0xD89 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP7 ADD SWAP2 POP DUP7 PUSH1 0x1F DUP4 ADD SLT PUSH2 0xD9D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0xDAF JUMPI PUSH2 0xDAF PUSH2 0xEDD JUMP JUMPDEST DUP1 PUSH1 0x5 SHL PUSH1 0x40 MLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 PUSH1 0x3F DUP4 ADD AND DUP2 ADD DUP2 DUP2 LT DUP6 DUP3 GT OR ISZERO PUSH2 0xDF2 JUMPI PUSH2 0xDF2 PUSH2 0xEDD JUMP JUMPDEST PUSH1 0x40 MSTORE DUP3 DUP2 MSTORE DUP6 DUP2 ADD SWAP4 POP DUP5 DUP7 ADD DUP3 DUP7 ADD DUP8 ADD DUP12 LT ISZERO PUSH2 0xE11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP6 POP JUMPDEST DUP4 DUP7 LT ISZERO PUSH2 0xE34 JUMPI DUP1 CALLDATALOAD DUP6 MSTORE PUSH1 0x1 SWAP6 SWAP1 SWAP6 ADD SWAP5 SWAP4 DUP7 ADD SWAP4 DUP7 ADD PUSH2 0xE16 JUMP JUMPDEST POP DUP1 SWAP7 POP POP POP POP POP POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xE57 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0xD1D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xE7D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0xD1D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP1 DUP4 AND DUP2 DUP2 EQ ISZERO PUSH2 0xEBD JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 ADD SWAP4 SWAP3 POP POP POP JUMP 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 0x5E BALANCE 0xF6 SWAP8 PUSH30 0x789E2EA185A5DB4CF5698EB3198898CF06F04F5D767120890540B64736F PUSH13 0x63430008060033000000000000 ",
              "sourceMap": "319:6154:34:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4215:120;4316:14;;-1:-1:-1;;;;;4316:14:34;4215:120;;;-1:-1:-1;;;;;2694:55:101;;;2676:74;;2664:2;2649:18;4215:120:34;;;;;;;;3760:128;;;;3817:16;3267:74:101;;;3372:2;3357:18;;3350:34;3240:18;3760:128:34;3222:168:101;3615:110:34;3706:14;;;;;;;3615:110;;7923:10:101;7911:23;;;7893:42;;7881:2;7866:18;3615:110:34;7848:93:101;6618:256:0;;;;;;:::i;:::-;;:::i;:::-;;3934:88:34;4010:7;;3934:88;;;3733:25:101;;;3721:2;3706:18;3934:88:34;3688:76:101;3198:178:34;;;;;;:::i;:::-;3333:33;;3300:16;3333:33;;;:13;:33;;;;;;:38;;;3198:178;;;;3560:14:101;;3553:22;3535:41;;3523:2;3508:18;3198:178:34;3490:92:101;1403:89:32;1477:8;;-1:-1:-1;;;;;1477:8:32;1403:89;;3147:129:33;;;:::i;4552:98:34:-;;;;;;:::i;:::-;;:::i;2508:94:33:-;;;:::i;2583:580:34:-;;;:::i;:::-;;;;8126:10:101;8163:15;;;8145:34;;8215:15;;;;8210:2;8195:18;;8188:43;8089:18;2583:580:34;8071:166:101;1814:85:33;1860:7;1886:6;-1:-1:-1;;;;;1886:6:33;1814:85;;3411:169:34;;;;;;:::i;:::-;3542:33;;3508:17;3542:33;;;:13;:33;;;;;;;3411:169;1744:123:32;;;;;;:::i;:::-;;:::i;4068:101:34:-;4150:14;;-1:-1:-1;;;4150:14:34;;;;4068:101;;8416:18:101;8404:31;;;8386:50;;8374:2;8359:18;4068:101:34;8341::101;2014::33;2095:13;;-1:-1:-1;;;;;2095:13:33;2014:101;;4381:125:34;;;;;;:::i;:::-;;:::i;2751:234:33:-;;;;;;:::i;:::-;;:::i;6618:256:0:-;6717:10;-1:-1:-1;;;;;6731:14:0;6717:28;;6713:109;;6762:53;;;;;6788:10;6762:53;;;2996:34:101;-1:-1:-1;;;;;6800:14:0;3066:15:101;3046:18;;;3039:43;2908:18;;6762:53:0;;;;;;;;6713:109;6827:42;6846:9;6857:11;6827:18;:42::i;:::-;6618:256;;:::o;3147:129:33:-;4050:13;;-1:-1:-1;;;;;4050:13:33;4036:10;:27;4028:71;;;;-1:-1:-1;;;4028:71:33;;6644:2:101;4028:71:33;;;6626:21:101;6683:2;6663:18;;;6656:30;6722:33;6702:18;;;6695:61;6773:18;;4028:71:33;6616:181:101;4028:71:33;3219:13:::1;::::0;3209:24:::1;::::0;-1:-1:-1;;;;;3219:13:33::1;3209:9;:24::i;:::-;3243:13;:26:::0;;-1:-1:-1;;3243:26:33::1;::::0;;3147:129::o;4552:98:34:-;3838:10:33;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:33;;3819:58;;;;-1:-1:-1;;;3819:58:33;;5933:2:101;3819:58:33;;;5915:21:101;5972:2;5952:18;;;5945:30;6011:26;5991:18;;;5984:54;6055:18;;3819:58:33;5905:174:101;3819:58:33;4624:21:34::1;4636:8;4624:11;:21::i;:::-;4552:98:::0;:::o;2508:94:33:-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:33;;3819:58;;;;-1:-1:-1;;;3819:58:33;;5933:2:101;3819:58:33;;;5915:21:101;5972:2;5952:18;;;5945:30;6011:26;5991:18;;;5984:54;6055:18;;3819:58:33;5905:174:101;3819:58:33;2574:21:::1;2592:1;2574:9;:21::i;:::-;2508:94::o:0;2583:580:34:-;2669:16;;2635:10:32;2622:9;1477:8;;-1:-1:-1;;;;;1477:8:32;;1403:89;2622:9;-1:-1:-1;;;;;2622:23:32;;2614:65;;;;-1:-1:-1;;;2614:65:32;;6286:2:101;2614:65:32;;;6268:21:101;6325:2;6305:18;;;6298:30;6364:31;6344:18;;;6337:59;6413:18;;2614:65:32;6258:179:101;2614:65:32;2737:14:34::1;::::0;;2778:7:::1;::::0;;2737:109:::1;::::0;;;;;;::::1;4053:25:101::0;-1:-1:-1;;;2793:14:34;::::1;;;4094:18:101::0;;;4087:59;4162:18;;;4155:47;;;;2824:7:34::1;4247:18:101::0;;;4240:43;2737:14:34;4299:19:101;;;4292:44;2713:21:34::1;::::0;-1:-1:-1;;;;;2737:14:34;;::::1;::::0;:33:::1;::::0;4025:19:101;;2737:109:34::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2853:14;:16:::0;;2713:133;;-1:-1:-1;2853:16:34;;;::::1;;;::::0;:14:::1;:16;::::0;::::1;:::i;:::-;::::0;;::::1;::::0;;;::::1;;::::0;;::::1;;::::0;;::::1;::::0;;::::1;;;::::0;;;2900:14:::1;::::0;-1:-1:-1;2954:34:34;;;:19:::1;:34;::::0;;;;;;;:52;;2900:14;;;::::1;::::0;::::1;2954:52:::0;;;::::1;::::0;::::1;::::0;;;3051:33;;;:16:::1;:33:::0;;;;;;:45;;;;::::1;3032:12;3051:45:::0;;::::1;;::::0;;;3108:50;;2900:14;;-1:-1:-1;3032:12:34;;-1:-1:-1;2900:14:34;;-1:-1:-1;3147:10:34::1;::::0;2900:14;;3108:50:::1;::::0;-1:-1:-1;3108:50:34::1;2707:456;;2583:580:::0;;:::o;1744:123:32:-;1813:4;3838:10:33;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:33;;3819:58;;;;-1:-1:-1;;;3819:58:33;;5933:2:101;3819:58:33;;;5915:21:101;5972:2;5952:18;;;5945:30;6011:26;5991:18;;;5984:54;6055:18;;3819:58:33;5905:174:101;3819:58:33;1836:24:32::1;1848:11;1836;:24::i;:::-;1829:31:::0;1744:123;-1:-1:-1;;1744:123:32:o;4381:125:34:-;3838:10:33;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:33;;3819:58;;;;-1:-1:-1;;;3819:58:33;;5933:2:101;3819:58:33;;;5915:21:101;5972:2;5952:18;;;5945:30;6011:26;5991:18;;;5984:54;6055:18;;3819:58:33;5905:174:101;3819:58:33;4466:35:34::1;4485:15;4466:18;:35::i;2751:234:33:-:0;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:33;;3819:58;;;;-1:-1:-1;;;3819:58:33;;5933:2:101;3819:58:33;;;5915:21:101;5972:2;5952:18;;;5945:30;6011:26;5991:18;;;5984:54;6055:18;;3819:58:33;5905:174:101;3819:58:33;-1:-1:-1;;;;;2834:23:33;::::1;2826:73;;;::::0;-1:-1:-1;;;2826:73:33;;7363:2:101;2826:73:33::1;::::0;::::1;7345:21:101::0;7402:2;7382:18;;;7375:30;7441:34;7421:18;;;7414:62;7512:7;7492:18;;;7485:35;7537:19;;2826:73:33::1;7335:227:101::0;2826:73:33::1;2910:13;:25:::0;;-1:-1:-1;;2910:25:33::1;-1:-1:-1::0;;;;;2910:25:33;::::1;::::0;;::::1;::::0;;;2951:27:::1;::::0;::::1;::::0;-1:-1:-1;;2951:27:33::1;2751:234:::0;:::o;5000:425:34:-;5116:25;5144:34;;;:19;:34;;;;;;;;5192:22;5184:67;;;;-1:-1:-1;;;5184:67:34;;4813:2:101;5184:67:34;;;4795:21:101;;;4832:18;;;4825:30;4891:34;4871:18;;;4864:62;4943:18;;5184:67:34;4785:182:101;5184:67:34;5258:21;5282:12;5295:1;5282:15;;;;;;;;:::i;:::-;;;;;;;;;;;;5303:33;;;;;;;:13;:33;;;;;;;:49;;;5364:56;3733:25:101;;;5282:15:34;;-1:-1:-1;5303:33:34;5364:56;;3706:18:101;5364:56:34;;;;;;;5110:315;;5000:425;;:::o;3470:174:33:-;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:33;;;-1:-1:-1;;3562:18:33;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;6292:179:34:-;6354:22;6346:65;;;;-1:-1:-1;;;6346:65:34;;7004:2:101;6346:65:34;;;6986:21:101;7043:2;7023:18;;;7016:30;7082:32;7062:18;;;7055:60;7132:18;;6346:65:34;6976:180:101;6346:65:34;6417:7;:18;;;6446:20;;3733:25:101;;;6446:20:34;;3721:2:101;3706:18;6446:20:34;;;;;;;;6292:179;:::o;2109:326:32:-;2211:8;;2168:4;;-1:-1:-1;;;;;2211:8:32;;;;2238:31;;;;;2230:79;;;;-1:-1:-1;;;2230:79:32;;5529:2:101;2230:79:32;;;5511:21:101;5568:2;5548:18;;;5541:30;5607:34;5587:18;;;5580:62;5678:5;5658:18;;;5651:33;5701:19;;2230:79:32;5501:225:101;2230:79:32;2320:8;:22;;-1:-1:-1;;2320:22:32;-1:-1:-1;;;;;2320:22:32;;;;;;;;;2358:49;;2320:22;;2358:49;;;;;-1:-1:-1;;2358:49:32;-1:-1:-1;2424:4:32;;2109:326;-1:-1:-1;;2109:326:32:o;5980:213:34:-;6073:1;6055:15;:19;;;6047:58;;;;-1:-1:-1;;;6047:58:34;;5174:2:101;6047:58:34;;;5156:21:101;5213:2;5193:18;;;5186:30;5252:28;5232:18;;;5225:56;5298:18;;6047:58:34;5146:176:101;6047:58:34;6111:14;:32;;;;-1:-1:-1;;;6111:32:34;;;;;;;;;;;;;6154:34;;8386:50:101;;;6154:34:34;;8374:2:101;8359:18;6154:34:34;8341:101:101;14:309;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:101;220:54;213:5;210:65;200:2;;289:1;286;279:12;200:2;312:5;84:239;-1:-1:-1;;;84:239:101:o;328:180::-;387:6;440:2;428:9;419:7;415:23;411:32;408:2;;;456:1;453;446:12;408:2;-1:-1:-1;479:23:101;;398:110;-1:-1:-1;398:110:101:o;513:184::-;583:6;636:2;624:9;615:7;611:23;607:32;604:2;;;652:1;649;642:12;604:2;-1:-1:-1;675:16:101;;594:103;-1:-1:-1;594:103:101:o;702:1253::-;795:6;803;856:2;844:9;835:7;831:23;827:32;824:2;;;872:1;869;862:12;824:2;908:9;895:23;885:33;;937:2;990;979:9;975:18;962:32;1013:18;1054:2;1046:6;1043:14;1040:2;;;1070:1;1067;1060:12;1040:2;1108:6;1097:9;1093:22;1083:32;;1153:7;1146:4;1142:2;1138:13;1134:27;1124:2;;1175:1;1172;1165:12;1124:2;1211;1198:16;1233:2;1229;1226:10;1223:2;;;1239:18;;:::i;:::-;1285:2;1282:1;1278:10;1317:2;1311:9;1376:66;1371:2;1367;1363:11;1359:84;1351:6;1347:97;1494:6;1482:10;1479:22;1474:2;1462:10;1459:18;1456:46;1453:2;;;1505:18;;:::i;:::-;1541:2;1534:22;1591:18;;;1625:15;;;;-1:-1:-1;1660:11:101;;;1690;;;1686:20;;1683:33;-1:-1:-1;1680:2:101;;;1729:1;1726;1719:12;1680:2;1751:1;1742:10;;1761:163;1775:2;1772:1;1769:9;1761:163;;;1832:17;;1820:30;;1793:1;1786:9;;;;;1870:12;;;;1902;;1761:163;;;1765:3;1943:6;1933:16;;;;;;;;814:1141;;;;;:::o;1960:276::-;2018:6;2071:2;2059:9;2050:7;2046:23;2042:32;2039:2;;;2087:1;2084;2077:12;2039:2;2126:9;2113:23;2176:10;2169:5;2165:22;2158:5;2155:33;2145:2;;2202:1;2199;2192:12;2241:284;2299:6;2352:2;2340:9;2331:7;2327:23;2323:32;2320:2;;;2368:1;2365;2358:12;2320:2;2407:9;2394:23;2457:18;2450:5;2446:30;2439:5;2436:41;2426:2;;2491:1;2488;2481:12;8447:355;8485:3;8513:10;8558:2;8551:5;8547:14;8585:2;8576:7;8573:15;8570:2;;;-1:-1:-1;;;8618:1:101;8611:88;8722:4;8719:1;8712:15;8750:4;8747:1;8740:15;8570:2;8794:1;8781:15;;8493:309;-1:-1:-1;;;8493:309:101:o;8807:184::-;-1:-1:-1;;;8856:1:101;8849:88;8956:4;8953:1;8946:15;8980:4;8977:1;8970:15;8996:184;-1:-1:-1;;;9045:1:101;9038:88;9145:4;9142:1;9135:15;9169:4;9166:1;9159:15"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "776200",
                "executionCost": "infinite",
                "totalCost": "infinite"
              },
              "external": {
                "claimOwnership()": "54508",
                "getKeyHash()": "2327",
                "getLastRequestId()": "2374",
                "getRequestFee()": "241",
                "getSubscriptionId()": "2379",
                "getVrfCoordinator()": "2333",
                "isRequestComplete(uint32)": "2558",
                "manager()": "2365",
                "owner()": "2387",
                "pendingOwner()": "2364",
                "randomNumber(uint32)": "2567",
                "rawFulfillRandomWords(uint256,uint256[])": "infinite",
                "renounceOwnership()": "28158",
                "requestRandomNumber()": "infinite",
                "setKeyhash(bytes32)": "25698",
                "setManager(address)": "30555",
                "setSubscriptionId(uint64)": "27882",
                "transferOwnership(address)": "27959"
              },
              "internal": {
                "_setKeyhash(bytes32)": "infinite",
                "_setSubscriptionId(uint64)": "infinite",
                "_setVRFCoordinator(contract VRFCoordinatorV2Interface)": "infinite",
                "fulfillRandomWords(uint256,uint256[] memory)": "infinite"
              }
            },
            "methodIdentifiers": {
              "claimOwnership()": "4e71e0c8",
              "getKeyHash()": "331bf125",
              "getLastRequestId()": "19c2b4c3",
              "getRequestFee()": "0d37b537",
              "getSubscriptionId()": "de3d9fb7",
              "getVrfCoordinator()": "0cb4a29d",
              "isRequestComplete(uint32)": "3a19b9bc",
              "manager()": "481c6a75",
              "owner()": "8da5cb5b",
              "pendingOwner()": "e30c3978",
              "randomNumber(uint32)": "9d2a5f98",
              "rawFulfillRandomWords(uint256,uint256[])": "1fe543e3",
              "renounceOwnership()": "715018a6",
              "requestRandomNumber()": "8678a7b2",
              "setKeyhash(bytes32)": "6309b773",
              "setManager(address)": "d0ebdbe7",
              "setSubscriptionId(uint64)": "ea7b4f77",
              "transferOwnership(address)": "f2fde38b"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_owner\",\"type\":\"address\"},{\"internalType\":\"contract VRFCoordinatorV2Interface\",\"name\":\"_vrfCoordinator\",\"type\":\"address\"},{\"internalType\":\"uint64\",\"name\":\"_subscriptionId\",\"type\":\"uint64\"},{\"internalType\":\"bytes32\",\"name\":\"_keyHash\",\"type\":\"bytes32\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"have\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"want\",\"type\":\"address\"}],\"name\":\"OnlyCoordinatorCanFulfill\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"bytes32\",\"name\":\"keyHash\",\"type\":\"bytes32\"}],\"name\":\"KeyHashSet\",\"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\":\"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\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"subscriptionId\",\"type\":\"uint64\"}],\"name\":\"SubscriptionIdSet\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract VRFCoordinatorV2Interface\",\"name\":\"vrfCoordinator\",\"type\":\"address\"}],\"name\":\"VrfCoordinatorSet\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"claimOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getKeyHash\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"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\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getSubscriptionId\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getVrfCoordinator\",\"outputs\":[{\"internalType\":\"contract VRFCoordinatorV2Interface\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"_internalRequestId\",\"type\":\"uint32\"}],\"name\":\"isRequestComplete\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"isCompleted\",\"type\":\"bool\"}],\"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\":\"_internalRequestId\",\"type\":\"uint32\"}],\"name\":\"randomNumber\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"randomNum\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"requestId\",\"type\":\"uint256\"},{\"internalType\":\"uint256[]\",\"name\":\"randomWords\",\"type\":\"uint256[]\"}],\"name\":\"rawFulfillRandomWords\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"requestRandomNumber\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"requestId\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"lockBlock\",\"type\":\"uint32\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"_keyHash\",\"type\":\"bytes32\"}],\"name\":\"setKeyhash\",\"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\":\"uint64\",\"name\":\"_subscriptionId\",\"type\":\"uint64\"}],\"name\":\"setSubscriptionId\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"events\":{\"KeyHashSet(bytes32)\":{\"params\":{\"keyHash\":\"Chainlink VRF keyHash\"}},\"SubscriptionIdSet(uint64)\":{\"params\":{\"subscriptionId\":\"Chainlink VRF subscription id\"}},\"VrfCoordinatorSet(address)\":{\"params\":{\"vrfCoordinator\":\"Address of the VRF Coordinator\"}}},\"kind\":\"dev\",\"methods\":{\"claimOwnership()\":{\"details\":\"This function is only callable by the `_pendingOwner`.\"},\"constructor\":{\"params\":{\"_keyHash\":\"Hash of the public key used to verify the VRF proof\",\"_owner\":\"Owner of the contract\",\"_subscriptionId\":\"Chainlink VRF subscription id\",\"_vrfCoordinator\":\"Address of the VRF Coordinator\"}},\"getKeyHash()\":{\"returns\":{\"_0\":\"bytes32 Chainlink VRF keyHash\"}},\"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\"}},\"getSubscriptionId()\":{\"returns\":{\"_0\":\"uint64 Chainlink VRF subscription id\"}},\"getVrfCoordinator()\":{\"returns\":{\"_0\":\"address Chainlink VRF coordinator address\"}},\"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\"}},\"manager()\":{\"returns\":{\"_0\":\"Current `_manager` address.\"}},\"pendingOwner()\":{\"returns\":{\"_0\":\"Current `_pendingOwner` address.\"}},\"randomNumber(uint32)\":{\"params\":{\"requestId\":\"The ID of the request used to get the results of the RNG service\"},\"returns\":{\"randomNum\":\"The random number\"}},\"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.\"},\"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\"}},\"setKeyhash(bytes32)\":{\"details\":\"This function is only callable by the owner.\",\"params\":{\"keyHash\":\"Chainlink VRF keyHash\"}},\"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.\"}},\"setSubscriptionId(uint64)\":{\"details\":\"This function is only callable by the owner.\",\"params\":{\"subscriptionId\":\"Chainlink VRF subscription id\"}},\"transferOwnership(address)\":{\"params\":{\"_newOwner\":\"Address to transfer ownership to.\"}}},\"stateVariables\":{\"chainlinkRequestIds\":{\"details\":\"A mapping from Chainlink request ids to internal request ids\"},\"keyHash\":{\"details\":\"Hash of the public key used to verify the VRF proof\"},\"randomNumbers\":{\"details\":\"A list of random numbers from past requests mapped by request id\"},\"requestCounter\":{\"details\":\"A counter for the number of requests made used for request ids\"},\"requestLockBlock\":{\"details\":\"A list of blocks to be locked at based on past requests mapped by request id\"},\"subscriptionId\":{\"details\":\"Chainlink VRF subscription id\"},\"vrfCoordinator\":{\"details\":\"Reference to the VRFCoordinatorV2 deployed contract\"}},\"version\":1},\"userdoc\":{\"events\":{\"KeyHashSet(bytes32)\":{\"notice\":\"Emitted when the Chainlink VRF keyHash is set\"},\"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\"},\"SubscriptionIdSet(uint64)\":{\"notice\":\"Emitted when the Chainlink VRF subscription id is set\"},\"VrfCoordinatorSet(address)\":{\"notice\":\"Emitted when the Chainlink VRF Coordinator address is set\"}},\"kind\":\"user\",\"methods\":{\"claimOwnership()\":{\"notice\":\"Allows the `_pendingOwner` address to finalize the transfer.\"},\"constructor\":{\"notice\":\"Constructor of the contract\"},\"getKeyHash()\":{\"notice\":\"Get Chainlink VRF keyHash associated with this contract.\"},\"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\"},\"getSubscriptionId()\":{\"notice\":\"Get Chainlink VRF subscription id associated with this contract.\"},\"getVrfCoordinator()\":{\"notice\":\"Get Chainlink VRF coordinator contract address associated with this contract.\"},\"isRequestComplete(uint32)\":{\"notice\":\"Checks if the request for randomness from the 3rd-party service has completed\"},\"manager()\":{\"notice\":\"Gets current `_manager`.\"},\"owner()\":{\"notice\":\"Returns the address of the current owner.\"},\"pendingOwner()\":{\"notice\":\"Gets current `_pendingOwner`.\"},\"randomNumber(uint32)\":{\"notice\":\"Gets the random number produced by the 3rd-party service\"},\"renounceOwnership()\":{\"notice\":\"Renounce ownership of the contract.\"},\"requestRandomNumber()\":{\"notice\":\"Sends a request for a random number to the 3rd-party service\"},\"setKeyhash(bytes32)\":{\"notice\":\"Set Chainlink VRF keyHash.\"},\"setManager(address)\":{\"notice\":\"Set or change of manager.\"},\"setSubscriptionId(uint64)\":{\"notice\":\"Set Chainlink VRF subscription id associated with this contract.\"},\"transferOwnership(address)\":{\"notice\":\"Allows current owner to set the `_pendingOwner` address.\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/pooltogether-rng-contracts/contracts/RNGChainlinkV2.sol\":\"RNGChainlinkV2\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@chainlink/contracts/src/v0.8/VRFConsumerBaseV2.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\npragma solidity ^0.8.0;\\n\\n/** ****************************************************************************\\n * @notice Interface for contracts using VRF randomness\\n * *****************************************************************************\\n * @dev PURPOSE\\n *\\n * @dev Reggie the Random Oracle (not his real job) wants to provide randomness\\n * @dev to Vera the verifier in such a way that Vera can be sure he's not\\n * @dev making his output up to suit himself. Reggie provides Vera a public key\\n * @dev to which he knows the secret key. Each time Vera provides a seed to\\n * @dev Reggie, he gives back a value which is computed completely\\n * @dev deterministically from the seed and the secret key.\\n *\\n * @dev Reggie provides a proof by which Vera can verify that the output was\\n * @dev correctly computed once Reggie tells it to her, but without that proof,\\n * @dev the output is indistinguishable to her from a uniform random sample\\n * @dev from the output space.\\n *\\n * @dev The purpose of this contract is to make it easy for unrelated contracts\\n * @dev to talk to Vera the verifier about the work Reggie is doing, to provide\\n * @dev simple access to a verifiable source of randomness. It ensures 2 things:\\n * @dev 1. The fulfillment came from the VRFCoordinator\\n * @dev 2. The consumer contract implements fulfillRandomWords.\\n * *****************************************************************************\\n * @dev USAGE\\n *\\n * @dev Calling contracts must inherit from VRFConsumerBase, and can\\n * @dev initialize VRFConsumerBase's attributes in their constructor as\\n * @dev shown:\\n *\\n * @dev   contract VRFConsumer {\\n * @dev     constructor(<other arguments>, address _vrfCoordinator, address _link)\\n * @dev       VRFConsumerBase(_vrfCoordinator) public {\\n * @dev         <initialization with other arguments goes here>\\n * @dev       }\\n * @dev   }\\n *\\n * @dev The oracle will have given you an ID for the VRF keypair they have\\n * @dev committed to (let's call it keyHash). Create subscription, fund it\\n * @dev and your consumer contract as a consumer of it (see VRFCoordinatorInterface\\n * @dev subscription management functions).\\n * @dev Call requestRandomWords(keyHash, subId, minimumRequestConfirmations,\\n * @dev callbackGasLimit, numWords),\\n * @dev see (VRFCoordinatorInterface for a description of the arguments).\\n *\\n * @dev Once the VRFCoordinator has received and validated the oracle's response\\n * @dev to your request, it will call your contract's fulfillRandomWords method.\\n *\\n * @dev The randomness argument to fulfillRandomWords is a set of random words\\n * @dev generated from your requestId and the blockHash of the request.\\n *\\n * @dev If your contract could have concurrent requests open, you can use the\\n * @dev requestId returned from requestRandomWords to track which response is associated\\n * @dev with which randomness request.\\n * @dev See \\\"SECURITY CONSIDERATIONS\\\" for principles to keep in mind,\\n * @dev if your contract could have multiple requests in flight simultaneously.\\n *\\n * @dev Colliding `requestId`s are cryptographically impossible as long as seeds\\n * @dev differ.\\n *\\n * *****************************************************************************\\n * @dev SECURITY CONSIDERATIONS\\n *\\n * @dev A method with the ability to call your fulfillRandomness method directly\\n * @dev could spoof a VRF response with any random value, so it's critical that\\n * @dev it cannot be directly called by anything other than this base contract\\n * @dev (specifically, by the VRFConsumerBase.rawFulfillRandomness method).\\n *\\n * @dev For your users to trust that your contract's random behavior is free\\n * @dev from malicious interference, it's best if you can write it so that all\\n * @dev behaviors implied by a VRF response are executed *during* your\\n * @dev fulfillRandomness method. If your contract must store the response (or\\n * @dev anything derived from it) and use it later, you must ensure that any\\n * @dev user-significant behavior which depends on that stored value cannot be\\n * @dev manipulated by a subsequent VRF request.\\n *\\n * @dev Similarly, both miners and the VRF oracle itself have some influence\\n * @dev over the order in which VRF responses appear on the blockchain, so if\\n * @dev your contract could have multiple VRF requests in flight simultaneously,\\n * @dev you must ensure that the order in which the VRF responses arrive cannot\\n * @dev be used to manipulate your contract's user-significant behavior.\\n *\\n * @dev Since the block hash of the block which contains the requestRandomness\\n * @dev call is mixed into the input to the VRF *last*, a sufficiently powerful\\n * @dev miner could, in principle, fork the blockchain to evict the block\\n * @dev containing the request, forcing the request to be included in a\\n * @dev different block with a different hash, and therefore a different input\\n * @dev to the VRF. However, such an attack would incur a substantial economic\\n * @dev cost. This cost scales with the number of blocks the VRF oracle waits\\n * @dev until it calls responds to a request. It is for this reason that\\n * @dev that you can signal to an oracle you'd like them to wait longer before\\n * @dev responding to the request (however this is not enforced in the contract\\n * @dev and so remains effective only in the case of unmodified oracle software).\\n */\\nabstract contract VRFConsumerBaseV2 {\\n  error OnlyCoordinatorCanFulfill(address have, address want);\\n  address private immutable vrfCoordinator;\\n\\n  /**\\n   * @param _vrfCoordinator address of VRFCoordinator contract\\n   */\\n  constructor(address _vrfCoordinator) {\\n    vrfCoordinator = _vrfCoordinator;\\n  }\\n\\n  /**\\n   * @notice fulfillRandomness handles the VRF response. Your contract must\\n   * @notice implement it. See \\\"SECURITY CONSIDERATIONS\\\" above for important\\n   * @notice principles to keep in mind when implementing your fulfillRandomness\\n   * @notice method.\\n   *\\n   * @dev VRFConsumerBaseV2 expects its subcontracts to have a method with this\\n   * @dev signature, and will call it once it has verified the proof\\n   * @dev associated with the randomness. (It is triggered via a call to\\n   * @dev rawFulfillRandomness, below.)\\n   *\\n   * @param requestId The Id initially returned by requestRandomness\\n   * @param randomWords the VRF output expanded to the requested number of words\\n   */\\n  function fulfillRandomWords(uint256 requestId, uint256[] memory randomWords) internal virtual;\\n\\n  // rawFulfillRandomness is called by VRFCoordinator when it receives a valid VRF\\n  // proof. rawFulfillRandomness then calls fulfillRandomness, after validating\\n  // the origin of the call\\n  function rawFulfillRandomWords(uint256 requestId, uint256[] memory randomWords) external {\\n    if (msg.sender != vrfCoordinator) {\\n      revert OnlyCoordinatorCanFulfill(msg.sender, vrfCoordinator);\\n    }\\n    fulfillRandomWords(requestId, randomWords);\\n  }\\n}\\n\",\"keccak256\":\"0xec8b7e3032e887dd0732d2a5f8552ddce64a99a81b0008ef0bcf6cad68a535fc\",\"license\":\"MIT\"},\"@chainlink/contracts/src/v0.8/interfaces/VRFCoordinatorV2Interface.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\npragma solidity ^0.8.0;\\n\\ninterface VRFCoordinatorV2Interface {\\n  /**\\n   * @notice Get configuration relevant for making requests\\n   * @return minimumRequestConfirmations global min for request confirmations\\n   * @return maxGasLimit global max for request gas limit\\n   * @return s_provingKeyHashes list of registered key hashes\\n   */\\n  function getRequestConfig()\\n    external\\n    view\\n    returns (\\n      uint16,\\n      uint32,\\n      bytes32[] memory\\n    );\\n\\n  /**\\n   * @notice Request a set of random words.\\n   * @param keyHash - Corresponds to a particular oracle job which uses\\n   * that key for generating the VRF proof. Different keyHash's have different gas price\\n   * ceilings, so you can select a specific one to bound your maximum per request cost.\\n   * @param subId  - The ID of the VRF subscription. Must be funded\\n   * with the minimum subscription balance required for the selected keyHash.\\n   * @param minimumRequestConfirmations - How many blocks you'd like the\\n   * oracle to wait before responding to the request. See SECURITY CONSIDERATIONS\\n   * for why you may want to request more. The acceptable range is\\n   * [minimumRequestBlockConfirmations, 200].\\n   * @param callbackGasLimit - How much gas you'd like to receive in your\\n   * fulfillRandomWords callback. Note that gasleft() inside fulfillRandomWords\\n   * may be slightly less than this amount because of gas used calling the function\\n   * (argument decoding etc.), so you may need to request slightly more than you expect\\n   * to have inside fulfillRandomWords. The acceptable range is\\n   * [0, maxGasLimit]\\n   * @param numWords - The number of uint256 random values you'd like to receive\\n   * in your fulfillRandomWords callback. Note these numbers are expanded in a\\n   * secure way by the VRFCoordinator from a single random value supplied by the oracle.\\n   * @return requestId - A unique identifier of the request. Can be used to match\\n   * a request to a response in fulfillRandomWords.\\n   */\\n  function requestRandomWords(\\n    bytes32 keyHash,\\n    uint64 subId,\\n    uint16 minimumRequestConfirmations,\\n    uint32 callbackGasLimit,\\n    uint32 numWords\\n  ) external returns (uint256 requestId);\\n\\n  /**\\n   * @notice Create a VRF subscription.\\n   * @return subId - A unique subscription id.\\n   * @dev You can manage the consumer set dynamically with addConsumer/removeConsumer.\\n   * @dev Note to fund the subscription, use transferAndCall. For example\\n   * @dev  LINKTOKEN.transferAndCall(\\n   * @dev    address(COORDINATOR),\\n   * @dev    amount,\\n   * @dev    abi.encode(subId));\\n   */\\n  function createSubscription() external returns (uint64 subId);\\n\\n  /**\\n   * @notice Get a VRF subscription.\\n   * @param subId - ID of the subscription\\n   * @return balance - LINK balance of the subscription in juels.\\n   * @return reqCount - number of requests for this subscription, determines fee tier.\\n   * @return owner - owner of the subscription.\\n   * @return consumers - list of consumer address which are able to use this subscription.\\n   */\\n  function getSubscription(uint64 subId)\\n    external\\n    view\\n    returns (\\n      uint96 balance,\\n      uint64 reqCount,\\n      address owner,\\n      address[] memory consumers\\n    );\\n\\n  /**\\n   * @notice Request subscription owner transfer.\\n   * @param subId - ID of the subscription\\n   * @param newOwner - proposed new owner of the subscription\\n   */\\n  function requestSubscriptionOwnerTransfer(uint64 subId, address newOwner) external;\\n\\n  /**\\n   * @notice Request subscription owner transfer.\\n   * @param subId - ID of the subscription\\n   * @dev will revert if original owner of subId has\\n   * not requested that msg.sender become the new owner.\\n   */\\n  function acceptSubscriptionOwnerTransfer(uint64 subId) external;\\n\\n  /**\\n   * @notice Add a consumer to a VRF subscription.\\n   * @param subId - ID of the subscription\\n   * @param consumer - New consumer which can use the subscription\\n   */\\n  function addConsumer(uint64 subId, address consumer) external;\\n\\n  /**\\n   * @notice Remove a consumer from a VRF subscription.\\n   * @param subId - ID of the subscription\\n   * @param consumer - Consumer to remove from the subscription\\n   */\\n  function removeConsumer(uint64 subId, address consumer) external;\\n\\n  /**\\n   * @notice Cancel a subscription\\n   * @param subId - ID of the subscription\\n   * @param to - Where to send the remaining LINK to\\n   */\\n  function cancelSubscription(uint64 subId, address to) external;\\n}\\n\",\"keccak256\":\"0xcb29ee50ee2b05441e4deebf8b4756a0feec4f5497e36b6a1ca320f7ce561802\",\"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/RNGChainlinkV2.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@chainlink/contracts/src/v0.8/interfaces/VRFCoordinatorV2Interface.sol\\\";\\nimport \\\"@chainlink/contracts/src/v0.8/VRFConsumerBaseV2.sol\\\";\\nimport \\\"@pooltogether/owner-manager-contracts/contracts/Manageable.sol\\\";\\n\\nimport \\\"./RNGChainlinkV2Interface.sol\\\";\\n\\ncontract RNGChainlinkV2 is RNGChainlinkV2Interface, VRFConsumerBaseV2, Manageable {\\n  /* ============ Global Variables ============ */\\n\\n  /// @dev Reference to the VRFCoordinatorV2 deployed contract\\n  VRFCoordinatorV2Interface internal vrfCoordinator;\\n\\n  /// @dev A counter for the number of requests made used for request ids\\n  uint32 internal requestCounter;\\n\\n  /// @dev Chainlink VRF subscription id\\n  uint64 internal subscriptionId;\\n\\n  /// @dev Hash of the public key used to verify the VRF proof\\n  bytes32 internal keyHash;\\n\\n  /// @dev A list of random numbers from past requests mapped by request id\\n  mapping(uint32 => uint256) internal randomNumbers;\\n\\n  /// @dev A list of blocks to be locked at based on past requests mapped by request id\\n  mapping(uint32 => uint32) internal requestLockBlock;\\n\\n  /// @dev A mapping from Chainlink request ids to internal request ids\\n  mapping(uint256 => uint32) internal chainlinkRequestIds;\\n\\n  /* ============ Events ============ */\\n\\n  /**\\n   * @notice Emitted when the Chainlink VRF keyHash is set\\n   * @param keyHash Chainlink VRF keyHash\\n   */\\n  event KeyHashSet(bytes32 keyHash);\\n\\n  /**\\n   * @notice Emitted when the Chainlink VRF subscription id is set\\n   * @param subscriptionId Chainlink VRF subscription id\\n   */\\n  event SubscriptionIdSet(uint64 subscriptionId);\\n\\n  /**\\n   * @notice Emitted when the Chainlink VRF Coordinator address is set\\n   * @param vrfCoordinator Address of the VRF Coordinator\\n   */\\n  event VrfCoordinatorSet(VRFCoordinatorV2Interface indexed vrfCoordinator);\\n\\n  /* ============ Constructor ============ */\\n\\n  /**\\n   * @notice Constructor of the contract\\n   * @param _owner Owner of the contract\\n   * @param _vrfCoordinator Address of the VRF Coordinator\\n   * @param _subscriptionId Chainlink VRF subscription id\\n   * @param _keyHash Hash of the public key used to verify the VRF proof\\n   */\\n  constructor(\\n    address _owner,\\n    VRFCoordinatorV2Interface _vrfCoordinator,\\n    uint64 _subscriptionId,\\n    bytes32 _keyHash\\n  ) Ownable(_owner) VRFConsumerBaseV2(address(_vrfCoordinator)) {\\n    _setVRFCoordinator(_vrfCoordinator);\\n    _setSubscriptionId(_subscriptionId);\\n    _setKeyhash(_keyHash);\\n  }\\n\\n  /* ============ External Functions ============ */\\n\\n  /// @inheritdoc RNGInterface\\n  function requestRandomNumber()\\n    external\\n    override\\n    onlyManager\\n    returns (uint32 requestId, uint32 lockBlock)\\n  {\\n    uint256 _vrfRequestId = vrfCoordinator.requestRandomWords(\\n      keyHash,\\n      subscriptionId,\\n      3,\\n      1000000,\\n      1\\n    );\\n\\n    requestCounter++;\\n    uint32 _requestCounter = requestCounter;\\n\\n    requestId = _requestCounter;\\n    chainlinkRequestIds[_vrfRequestId] = _requestCounter;\\n\\n    lockBlock = uint32(block.number);\\n    requestLockBlock[_requestCounter] = lockBlock;\\n\\n    emit RandomNumberRequested(_requestCounter, msg.sender);\\n  }\\n\\n  /// @inheritdoc RNGInterface\\n  function isRequestComplete(uint32 _internalRequestId)\\n    external\\n    view\\n    override\\n    returns (bool isCompleted)\\n  {\\n    return randomNumbers[_internalRequestId] != 0;\\n  }\\n\\n  /// @inheritdoc RNGInterface\\n  function randomNumber(uint32 _internalRequestId)\\n    external\\n    view\\n    override\\n    returns (uint256 randomNum)\\n  {\\n    return randomNumbers[_internalRequestId];\\n  }\\n\\n  /// @inheritdoc RNGInterface\\n  function getLastRequestId() external view override returns (uint32 requestId) {\\n    return requestCounter;\\n  }\\n\\n  /// @inheritdoc RNGInterface\\n  function getRequestFee() external pure override returns (address feeToken, uint256 requestFee) {\\n    return (address(0), 0);\\n  }\\n\\n  /// @inheritdoc RNGChainlinkV2Interface\\n  function getKeyHash() external view override returns (bytes32) {\\n    return keyHash;\\n  }\\n\\n  /// @inheritdoc RNGChainlinkV2Interface\\n  function getSubscriptionId() external view override returns (uint64) {\\n    return subscriptionId;\\n  }\\n\\n  /// @inheritdoc RNGChainlinkV2Interface\\n  function getVrfCoordinator() external view override returns (VRFCoordinatorV2Interface) {\\n    return vrfCoordinator;\\n  }\\n\\n  /// @inheritdoc RNGChainlinkV2Interface\\n  function setSubscriptionId(uint64 _subscriptionId) external override onlyOwner {\\n    _setSubscriptionId(_subscriptionId);\\n  }\\n\\n  /// @inheritdoc RNGChainlinkV2Interface\\n  function setKeyhash(bytes32 _keyHash) external override onlyOwner {\\n    _setKeyhash(_keyHash);\\n  }\\n\\n  /* ============ Internal Functions ============ */\\n\\n  /**\\n   * @notice Callback function called by VRF Coordinator\\n   * @dev The VRF Coordinator will only call it once it has verified the proof associated with the randomness.\\n   * @param _vrfRequestId Chainlink VRF request id\\n   * @param _randomWords Chainlink VRF array of random words\\n   */\\n  function fulfillRandomWords(uint256 _vrfRequestId, uint256[] memory _randomWords)\\n    internal\\n    override\\n  {\\n    uint32 _internalRequestId = chainlinkRequestIds[_vrfRequestId];\\n    require(_internalRequestId > 0, \\\"RNGChainLink/requestId-incorrect\\\");\\n\\n    uint256 _randomNumber = _randomWords[0];\\n    randomNumbers[_internalRequestId] = _randomNumber;\\n\\n    emit RandomNumberCompleted(_internalRequestId, _randomNumber);\\n  }\\n\\n  /**\\n   * @notice Set Chainlink VRF coordinator contract address.\\n   * @param _vrfCoordinator Chainlink VRF coordinator contract address\\n   */\\n  function _setVRFCoordinator(VRFCoordinatorV2Interface _vrfCoordinator) internal {\\n    require(address(_vrfCoordinator) != address(0), \\\"RNGChainLink/vrf-not-zero-addr\\\");\\n    vrfCoordinator = _vrfCoordinator;\\n    emit VrfCoordinatorSet(_vrfCoordinator);\\n  }\\n\\n  /**\\n   * @notice Set Chainlink VRF subscription id associated with this contract.\\n   * @param _subscriptionId Chainlink VRF subscription id\\n   */\\n  function _setSubscriptionId(uint64 _subscriptionId) internal {\\n    require(_subscriptionId > 0, \\\"RNGChainLink/subId-gt-zero\\\");\\n    subscriptionId = _subscriptionId;\\n    emit SubscriptionIdSet(_subscriptionId);\\n  }\\n\\n  /**\\n   * @notice Set Chainlink VRF keyHash.\\n   * @param _keyHash Chainlink VRF keyHash\\n   */\\n  function _setKeyhash(bytes32 _keyHash) internal {\\n    require(_keyHash != bytes32(0), \\\"RNGChainLink/keyHash-not-empty\\\");\\n    keyHash = _keyHash;\\n    emit KeyHashSet(_keyHash);\\n  }\\n}\\n\",\"keccak256\":\"0xa771db41fc9ab0c9ad0620adb126185fd66797fd7257bae7df3f777ad4b2a292\",\"license\":\"GPL-3.0\"},\"@pooltogether/pooltogether-rng-contracts/contracts/RNGChainlinkV2Interface.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@chainlink/contracts/src/v0.8/interfaces/VRFCoordinatorV2Interface.sol\\\";\\n\\nimport \\\"./RNGInterface.sol\\\";\\n\\n/**\\n * @title RNG Chainlink V2 Interface\\n * @notice Provides an interface for requesting random numbers from Chainlink VRF V2.\\n */\\ninterface RNGChainlinkV2Interface is RNGInterface {\\n  /**\\n   * @notice Get Chainlink VRF keyHash associated with this contract.\\n   * @return bytes32 Chainlink VRF keyHash\\n   */\\n  function getKeyHash() external view returns (bytes32);\\n\\n  /**\\n   * @notice Get Chainlink VRF subscription id associated with this contract.\\n   * @return uint64 Chainlink VRF subscription id\\n   */\\n  function getSubscriptionId() external view returns (uint64);\\n\\n  /**\\n   * @notice Get Chainlink VRF coordinator contract address associated with this contract.\\n   * @return address Chainlink VRF coordinator address\\n   */\\n  function getVrfCoordinator() external view returns (VRFCoordinatorV2Interface);\\n\\n  /**\\n   * @notice Set Chainlink VRF keyHash.\\n   * @dev This function is only callable by the owner.\\n   * @param keyHash Chainlink VRF keyHash\\n   */\\n  function setKeyhash(bytes32 keyHash) external;\\n\\n  /**\\n   * @notice Set Chainlink VRF subscription id associated with this contract.\\n   * @dev This function is only callable by the owner.\\n   * @param subscriptionId Chainlink VRF subscription id\\n   */\\n  function setSubscriptionId(uint64 subscriptionId) external;\\n}\\n\",\"keccak256\":\"0xc1fb0dfc19a27987253f98a9c7e9ebf57f1248004115f6f43308f85b5adaff71\",\"license\":\"GPL-3.0\"},\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\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..)\\n */\\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   */\\n  event RandomNumberRequested(uint32 indexed requestId, address indexed sender);\\n\\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   */\\n  event RandomNumberCompleted(uint32 indexed requestId, uint256 randomNumber);\\n\\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   */\\n  function getLastRequestId() external view returns (uint32 requestId);\\n\\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   */\\n  function getRequestFee() external view returns (address feeToken, uint256 requestFee);\\n\\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.\\n   * The calling contract should \\\"lock\\\" all activity until the result is available via the `requestId`\\n   */\\n  function requestRandomNumber() external returns (uint32 requestId, uint32 lockBlock);\\n\\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   */\\n  function isRequestComplete(uint32 requestId) external view returns (bool isCompleted);\\n\\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   */\\n  function randomNumber(uint32 requestId) external returns (uint256 randomNum);\\n}\\n\",\"keccak256\":\"0x24803ae776bba768a3a3f65d3b7e5fc100c7b5881a8e5e39d6c5df2735a3b5cb\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 5205,
                "contract": "@pooltogether/pooltogether-rng-contracts/contracts/RNGChainlinkV2.sol:RNGChainlinkV2",
                "label": "_owner",
                "offset": 0,
                "slot": "0",
                "type": "t_address"
              },
              {
                "astId": 5207,
                "contract": "@pooltogether/pooltogether-rng-contracts/contracts/RNGChainlinkV2.sol:RNGChainlinkV2",
                "label": "_pendingOwner",
                "offset": 0,
                "slot": "1",
                "type": "t_address"
              },
              {
                "astId": 5103,
                "contract": "@pooltogether/pooltogether-rng-contracts/contracts/RNGChainlinkV2.sol:RNGChainlinkV2",
                "label": "_manager",
                "offset": 0,
                "slot": "2",
                "type": "t_address"
              },
              {
                "astId": 5371,
                "contract": "@pooltogether/pooltogether-rng-contracts/contracts/RNGChainlinkV2.sol:RNGChainlinkV2",
                "label": "vrfCoordinator",
                "offset": 0,
                "slot": "3",
                "type": "t_contract(VRFCoordinatorV2Interface)146"
              },
              {
                "astId": 5374,
                "contract": "@pooltogether/pooltogether-rng-contracts/contracts/RNGChainlinkV2.sol:RNGChainlinkV2",
                "label": "requestCounter",
                "offset": 20,
                "slot": "3",
                "type": "t_uint32"
              },
              {
                "astId": 5377,
                "contract": "@pooltogether/pooltogether-rng-contracts/contracts/RNGChainlinkV2.sol:RNGChainlinkV2",
                "label": "subscriptionId",
                "offset": 24,
                "slot": "3",
                "type": "t_uint64"
              },
              {
                "astId": 5380,
                "contract": "@pooltogether/pooltogether-rng-contracts/contracts/RNGChainlinkV2.sol:RNGChainlinkV2",
                "label": "keyHash",
                "offset": 0,
                "slot": "4",
                "type": "t_bytes32"
              },
              {
                "astId": 5385,
                "contract": "@pooltogether/pooltogether-rng-contracts/contracts/RNGChainlinkV2.sol:RNGChainlinkV2",
                "label": "randomNumbers",
                "offset": 0,
                "slot": "5",
                "type": "t_mapping(t_uint32,t_uint256)"
              },
              {
                "astId": 5390,
                "contract": "@pooltogether/pooltogether-rng-contracts/contracts/RNGChainlinkV2.sol:RNGChainlinkV2",
                "label": "requestLockBlock",
                "offset": 0,
                "slot": "6",
                "type": "t_mapping(t_uint32,t_uint32)"
              },
              {
                "astId": 5395,
                "contract": "@pooltogether/pooltogether-rng-contracts/contracts/RNGChainlinkV2.sol:RNGChainlinkV2",
                "label": "chainlinkRequestIds",
                "offset": 0,
                "slot": "7",
                "type": "t_mapping(t_uint256,t_uint32)"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_bytes32": {
                "encoding": "inplace",
                "label": "bytes32",
                "numberOfBytes": "32"
              },
              "t_contract(VRFCoordinatorV2Interface)146": {
                "encoding": "inplace",
                "label": "contract VRFCoordinatorV2Interface",
                "numberOfBytes": "20"
              },
              "t_mapping(t_uint256,t_uint32)": {
                "encoding": "mapping",
                "key": "t_uint256",
                "label": "mapping(uint256 => uint32)",
                "numberOfBytes": "32",
                "value": "t_uint32"
              },
              "t_mapping(t_uint32,t_uint256)": {
                "encoding": "mapping",
                "key": "t_uint32",
                "label": "mapping(uint32 => uint256)",
                "numberOfBytes": "32",
                "value": "t_uint256"
              },
              "t_mapping(t_uint32,t_uint32)": {
                "encoding": "mapping",
                "key": "t_uint32",
                "label": "mapping(uint32 => uint32)",
                "numberOfBytes": "32",
                "value": "t_uint32"
              },
              "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": {
              "KeyHashSet(bytes32)": {
                "notice": "Emitted when the Chainlink VRF keyHash is set"
              },
              "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"
              },
              "SubscriptionIdSet(uint64)": {
                "notice": "Emitted when the Chainlink VRF subscription id is set"
              },
              "VrfCoordinatorSet(address)": {
                "notice": "Emitted when the Chainlink VRF Coordinator address is set"
              }
            },
            "kind": "user",
            "methods": {
              "claimOwnership()": {
                "notice": "Allows the `_pendingOwner` address to finalize the transfer."
              },
              "constructor": {
                "notice": "Constructor of the contract"
              },
              "getKeyHash()": {
                "notice": "Get Chainlink VRF keyHash associated with this contract."
              },
              "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"
              },
              "getSubscriptionId()": {
                "notice": "Get Chainlink VRF subscription id associated with this contract."
              },
              "getVrfCoordinator()": {
                "notice": "Get Chainlink VRF coordinator contract address associated with this contract."
              },
              "isRequestComplete(uint32)": {
                "notice": "Checks if the request for randomness from the 3rd-party service has completed"
              },
              "manager()": {
                "notice": "Gets current `_manager`."
              },
              "owner()": {
                "notice": "Returns the address of the current owner."
              },
              "pendingOwner()": {
                "notice": "Gets current `_pendingOwner`."
              },
              "randomNumber(uint32)": {
                "notice": "Gets the random number produced by the 3rd-party service"
              },
              "renounceOwnership()": {
                "notice": "Renounce ownership of the contract."
              },
              "requestRandomNumber()": {
                "notice": "Sends a request for a random number to the 3rd-party service"
              },
              "setKeyhash(bytes32)": {
                "notice": "Set Chainlink VRF keyHash."
              },
              "setManager(address)": {
                "notice": "Set or change of manager."
              },
              "setSubscriptionId(uint64)": {
                "notice": "Set Chainlink VRF subscription id associated with this contract."
              },
              "transferOwnership(address)": {
                "notice": "Allows current owner to set the `_pendingOwner` address."
              }
            },
            "version": 1
          }
        }
      },
      "@pooltogether/pooltogether-rng-contracts/contracts/RNGChainlinkV2Interface.sol": {
        "RNGChainlinkV2Interface": {
          "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": "getKeyHash",
              "outputs": [
                {
                  "internalType": "bytes32",
                  "name": "",
                  "type": "bytes32"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "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": [],
              "name": "getSubscriptionId",
              "outputs": [
                {
                  "internalType": "uint64",
                  "name": "",
                  "type": "uint64"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "getVrfCoordinator",
              "outputs": [
                {
                  "internalType": "contract VRFCoordinatorV2Interface",
                  "name": "",
                  "type": "address"
                }
              ],
              "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"
            },
            {
              "inputs": [
                {
                  "internalType": "bytes32",
                  "name": "keyHash",
                  "type": "bytes32"
                }
              ],
              "name": "setKeyhash",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint64",
                  "name": "subscriptionId",
                  "type": "uint64"
                }
              ],
              "name": "setSubscriptionId",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "kind": "dev",
            "methods": {
              "getKeyHash()": {
                "returns": {
                  "_0": "bytes32 Chainlink VRF keyHash"
                }
              },
              "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"
                }
              },
              "getSubscriptionId()": {
                "returns": {
                  "_0": "uint64 Chainlink VRF subscription id"
                }
              },
              "getVrfCoordinator()": {
                "returns": {
                  "_0": "address Chainlink VRF coordinator address"
                }
              },
              "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"
                }
              },
              "setKeyhash(bytes32)": {
                "details": "This function is only callable by the owner.",
                "params": {
                  "keyHash": "Chainlink VRF keyHash"
                }
              },
              "setSubscriptionId(uint64)": {
                "details": "This function is only callable by the owner.",
                "params": {
                  "subscriptionId": "Chainlink VRF subscription id"
                }
              }
            },
            "title": "RNG Chainlink V2 Interface",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "getKeyHash()": "331bf125",
              "getLastRequestId()": "19c2b4c3",
              "getRequestFee()": "0d37b537",
              "getSubscriptionId()": "de3d9fb7",
              "getVrfCoordinator()": "0cb4a29d",
              "isRequestComplete(uint32)": "3a19b9bc",
              "randomNumber(uint32)": "9d2a5f98",
              "requestRandomNumber()": "8678a7b2",
              "setKeyhash(bytes32)": "6309b773",
              "setSubscriptionId(uint64)": "ea7b4f77"
            }
          },
          "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\":\"getKeyHash\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"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\":[],\"name\":\"getSubscriptionId\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getVrfCoordinator\",\"outputs\":[{\"internalType\":\"contract VRFCoordinatorV2Interface\",\"name\":\"\",\"type\":\"address\"}],\"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\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"keyHash\",\"type\":\"bytes32\"}],\"name\":\"setKeyhash\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"subscriptionId\",\"type\":\"uint64\"}],\"name\":\"setSubscriptionId\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"getKeyHash()\":{\"returns\":{\"_0\":\"bytes32 Chainlink VRF keyHash\"}},\"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\"}},\"getSubscriptionId()\":{\"returns\":{\"_0\":\"uint64 Chainlink VRF subscription id\"}},\"getVrfCoordinator()\":{\"returns\":{\"_0\":\"address Chainlink VRF coordinator address\"}},\"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\"}},\"setKeyhash(bytes32)\":{\"details\":\"This function is only callable by the owner.\",\"params\":{\"keyHash\":\"Chainlink VRF keyHash\"}},\"setSubscriptionId(uint64)\":{\"details\":\"This function is only callable by the owner.\",\"params\":{\"subscriptionId\":\"Chainlink VRF subscription id\"}}},\"title\":\"RNG Chainlink V2 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\":{\"getKeyHash()\":{\"notice\":\"Get Chainlink VRF keyHash associated with this contract.\"},\"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\"},\"getSubscriptionId()\":{\"notice\":\"Get Chainlink VRF subscription id associated with this contract.\"},\"getVrfCoordinator()\":{\"notice\":\"Get Chainlink VRF coordinator contract address associated with this contract.\"},\"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\"},\"setKeyhash(bytes32)\":{\"notice\":\"Set Chainlink VRF keyHash.\"},\"setSubscriptionId(uint64)\":{\"notice\":\"Set Chainlink VRF subscription id associated with this contract.\"}},\"notice\":\"Provides an interface for requesting random numbers from Chainlink VRF V2.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/pooltogether-rng-contracts/contracts/RNGChainlinkV2Interface.sol\":\"RNGChainlinkV2Interface\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@chainlink/contracts/src/v0.8/interfaces/VRFCoordinatorV2Interface.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\npragma solidity ^0.8.0;\\n\\ninterface VRFCoordinatorV2Interface {\\n  /**\\n   * @notice Get configuration relevant for making requests\\n   * @return minimumRequestConfirmations global min for request confirmations\\n   * @return maxGasLimit global max for request gas limit\\n   * @return s_provingKeyHashes list of registered key hashes\\n   */\\n  function getRequestConfig()\\n    external\\n    view\\n    returns (\\n      uint16,\\n      uint32,\\n      bytes32[] memory\\n    );\\n\\n  /**\\n   * @notice Request a set of random words.\\n   * @param keyHash - Corresponds to a particular oracle job which uses\\n   * that key for generating the VRF proof. Different keyHash's have different gas price\\n   * ceilings, so you can select a specific one to bound your maximum per request cost.\\n   * @param subId  - The ID of the VRF subscription. Must be funded\\n   * with the minimum subscription balance required for the selected keyHash.\\n   * @param minimumRequestConfirmations - How many blocks you'd like the\\n   * oracle to wait before responding to the request. See SECURITY CONSIDERATIONS\\n   * for why you may want to request more. The acceptable range is\\n   * [minimumRequestBlockConfirmations, 200].\\n   * @param callbackGasLimit - How much gas you'd like to receive in your\\n   * fulfillRandomWords callback. Note that gasleft() inside fulfillRandomWords\\n   * may be slightly less than this amount because of gas used calling the function\\n   * (argument decoding etc.), so you may need to request slightly more than you expect\\n   * to have inside fulfillRandomWords. The acceptable range is\\n   * [0, maxGasLimit]\\n   * @param numWords - The number of uint256 random values you'd like to receive\\n   * in your fulfillRandomWords callback. Note these numbers are expanded in a\\n   * secure way by the VRFCoordinator from a single random value supplied by the oracle.\\n   * @return requestId - A unique identifier of the request. Can be used to match\\n   * a request to a response in fulfillRandomWords.\\n   */\\n  function requestRandomWords(\\n    bytes32 keyHash,\\n    uint64 subId,\\n    uint16 minimumRequestConfirmations,\\n    uint32 callbackGasLimit,\\n    uint32 numWords\\n  ) external returns (uint256 requestId);\\n\\n  /**\\n   * @notice Create a VRF subscription.\\n   * @return subId - A unique subscription id.\\n   * @dev You can manage the consumer set dynamically with addConsumer/removeConsumer.\\n   * @dev Note to fund the subscription, use transferAndCall. For example\\n   * @dev  LINKTOKEN.transferAndCall(\\n   * @dev    address(COORDINATOR),\\n   * @dev    amount,\\n   * @dev    abi.encode(subId));\\n   */\\n  function createSubscription() external returns (uint64 subId);\\n\\n  /**\\n   * @notice Get a VRF subscription.\\n   * @param subId - ID of the subscription\\n   * @return balance - LINK balance of the subscription in juels.\\n   * @return reqCount - number of requests for this subscription, determines fee tier.\\n   * @return owner - owner of the subscription.\\n   * @return consumers - list of consumer address which are able to use this subscription.\\n   */\\n  function getSubscription(uint64 subId)\\n    external\\n    view\\n    returns (\\n      uint96 balance,\\n      uint64 reqCount,\\n      address owner,\\n      address[] memory consumers\\n    );\\n\\n  /**\\n   * @notice Request subscription owner transfer.\\n   * @param subId - ID of the subscription\\n   * @param newOwner - proposed new owner of the subscription\\n   */\\n  function requestSubscriptionOwnerTransfer(uint64 subId, address newOwner) external;\\n\\n  /**\\n   * @notice Request subscription owner transfer.\\n   * @param subId - ID of the subscription\\n   * @dev will revert if original owner of subId has\\n   * not requested that msg.sender become the new owner.\\n   */\\n  function acceptSubscriptionOwnerTransfer(uint64 subId) external;\\n\\n  /**\\n   * @notice Add a consumer to a VRF subscription.\\n   * @param subId - ID of the subscription\\n   * @param consumer - New consumer which can use the subscription\\n   */\\n  function addConsumer(uint64 subId, address consumer) external;\\n\\n  /**\\n   * @notice Remove a consumer from a VRF subscription.\\n   * @param subId - ID of the subscription\\n   * @param consumer - Consumer to remove from the subscription\\n   */\\n  function removeConsumer(uint64 subId, address consumer) external;\\n\\n  /**\\n   * @notice Cancel a subscription\\n   * @param subId - ID of the subscription\\n   * @param to - Where to send the remaining LINK to\\n   */\\n  function cancelSubscription(uint64 subId, address to) external;\\n}\\n\",\"keccak256\":\"0xcb29ee50ee2b05441e4deebf8b4756a0feec4f5497e36b6a1ca320f7ce561802\",\"license\":\"MIT\"},\"@pooltogether/pooltogether-rng-contracts/contracts/RNGChainlinkV2Interface.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@chainlink/contracts/src/v0.8/interfaces/VRFCoordinatorV2Interface.sol\\\";\\n\\nimport \\\"./RNGInterface.sol\\\";\\n\\n/**\\n * @title RNG Chainlink V2 Interface\\n * @notice Provides an interface for requesting random numbers from Chainlink VRF V2.\\n */\\ninterface RNGChainlinkV2Interface is RNGInterface {\\n  /**\\n   * @notice Get Chainlink VRF keyHash associated with this contract.\\n   * @return bytes32 Chainlink VRF keyHash\\n   */\\n  function getKeyHash() external view returns (bytes32);\\n\\n  /**\\n   * @notice Get Chainlink VRF subscription id associated with this contract.\\n   * @return uint64 Chainlink VRF subscription id\\n   */\\n  function getSubscriptionId() external view returns (uint64);\\n\\n  /**\\n   * @notice Get Chainlink VRF coordinator contract address associated with this contract.\\n   * @return address Chainlink VRF coordinator address\\n   */\\n  function getVrfCoordinator() external view returns (VRFCoordinatorV2Interface);\\n\\n  /**\\n   * @notice Set Chainlink VRF keyHash.\\n   * @dev This function is only callable by the owner.\\n   * @param keyHash Chainlink VRF keyHash\\n   */\\n  function setKeyhash(bytes32 keyHash) external;\\n\\n  /**\\n   * @notice Set Chainlink VRF subscription id associated with this contract.\\n   * @dev This function is only callable by the owner.\\n   * @param subscriptionId Chainlink VRF subscription id\\n   */\\n  function setSubscriptionId(uint64 subscriptionId) external;\\n}\\n\",\"keccak256\":\"0xc1fb0dfc19a27987253f98a9c7e9ebf57f1248004115f6f43308f85b5adaff71\",\"license\":\"GPL-3.0\"},\"@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\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..)\\n */\\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   */\\n  event RandomNumberRequested(uint32 indexed requestId, address indexed sender);\\n\\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   */\\n  event RandomNumberCompleted(uint32 indexed requestId, uint256 randomNumber);\\n\\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   */\\n  function getLastRequestId() external view returns (uint32 requestId);\\n\\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   */\\n  function getRequestFee() external view returns (address feeToken, uint256 requestFee);\\n\\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.\\n   * The calling contract should \\\"lock\\\" all activity until the result is available via the `requestId`\\n   */\\n  function requestRandomNumber() external returns (uint32 requestId, uint32 lockBlock);\\n\\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   */\\n  function isRequestComplete(uint32 requestId) external view returns (bool isCompleted);\\n\\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   */\\n  function randomNumber(uint32 requestId) external returns (uint256 randomNum);\\n}\\n\",\"keccak256\":\"0x24803ae776bba768a3a3f65d3b7e5fc100c7b5881a8e5e39d6c5df2735a3b5cb\",\"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": {
              "getKeyHash()": {
                "notice": "Get Chainlink VRF keyHash associated with this contract."
              },
              "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"
              },
              "getSubscriptionId()": {
                "notice": "Get Chainlink VRF subscription id associated with this contract."
              },
              "getVrfCoordinator()": {
                "notice": "Get Chainlink VRF coordinator contract address associated with this contract."
              },
              "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"
              },
              "setKeyhash(bytes32)": {
                "notice": "Set Chainlink VRF keyHash."
              },
              "setSubscriptionId(uint64)": {
                "notice": "Set Chainlink VRF subscription id associated with this contract."
              }
            },
            "notice": "Provides an interface for requesting random numbers from Chainlink VRF V2.",
            "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.8.6;\\n\\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..)\\n */\\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   */\\n  event RandomNumberRequested(uint32 indexed requestId, address indexed sender);\\n\\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   */\\n  event RandomNumberCompleted(uint32 indexed requestId, uint256 randomNumber);\\n\\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   */\\n  function getLastRequestId() external view returns (uint32 requestId);\\n\\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   */\\n  function getRequestFee() external view returns (address feeToken, uint256 requestFee);\\n\\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.\\n   * The calling contract should \\\"lock\\\" all activity until the result is available via the `requestId`\\n   */\\n  function requestRandomNumber() external returns (uint32 requestId, uint32 lockBlock);\\n\\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   */\\n  function isRequestComplete(uint32 requestId) external view returns (bool isCompleted);\\n\\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   */\\n  function randomNumber(uint32 requestId) external returns (uint256 randomNum);\\n}\\n\",\"keccak256\":\"0x24803ae776bba768a3a3f65d3b7e5fc100c7b5881a8e5e39d6c5df2735a3b5cb\",\"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": {
                "@_2545": {
                  "entryPoint": null,
                  "id": 2545,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_311": {
                  "entryPoint": null,
                  "id": 311,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_5933": {
                  "entryPoint": null,
                  "id": 5933,
                  "parameterSlots": 4,
                  "returnSlots": 0
                },
                "@_954": {
                  "entryPoint": null,
                  "id": 954,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_buildDomainSeparator_2601": {
                  "entryPoint": null,
                  "id": 2601,
                  "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:101",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:101",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "78:622:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "127:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "136:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "139:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "129:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "129:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "129:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "106:6:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "114:4:101",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "102:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "102:17:101"
                                      },
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "121:3:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "98:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "98:27:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "91:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "91:35:101"
                              },
                              "nodeType": "YulIf",
                              "src": "88:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "152:23:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "168:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "162:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "162:13:101"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "156:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "184:28:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "202:2:101",
                                        "type": "",
                                        "value": "64"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "206:1:101",
                                        "type": "",
                                        "value": "1"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "198:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "198:10:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "210:1:101",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "194:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "194:18:101"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "188:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "235:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "237:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "237:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "237:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "227:2:101"
                                  },
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "231:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "224:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "224:10:101"
                              },
                              "nodeType": "YulIf",
                              "src": "221:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "266:17:101",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "280:2:101",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "not",
                                  "nodeType": "YulIdentifier",
                                  "src": "276:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "276:7:101"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "270:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "292:23:101",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "312:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "306:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "306:9:101"
                              },
                              "variables": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "296:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "324:71:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "346:6:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "name": "_1",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "370:2:101"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "374:4:101",
                                                    "type": "",
                                                    "value": "0x1f"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "add",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "366:3:101"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "366:13:101"
                                              },
                                              {
                                                "name": "_3",
                                                "nodeType": "YulIdentifier",
                                                "src": "381:2:101"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "and",
                                              "nodeType": "YulIdentifier",
                                              "src": "362:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "362:22:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "386:2:101",
                                            "type": "",
                                            "value": "63"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "358:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "358:31:101"
                                      },
                                      {
                                        "name": "_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "391:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "354:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "354:40:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "342:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "342:53:101"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "328:10:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "454:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "456:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "456:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "456:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "413:10:101"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "425:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "410:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "410:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "433:10:101"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "445:6:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "430:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "430:22:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "407:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "407:46:101"
                              },
                              "nodeType": "YulIf",
                              "src": "404:2:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "492:2:101",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "496:10:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "485:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "485:22:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "485:22:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "523:6:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "531:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "516:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "516:18:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "516:18:101"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "582:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "591:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "594:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "584:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "584:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "584:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "557:6:101"
                                          },
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "565:2:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "553:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "553:15:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "570:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "549:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "549:26:101"
                                  },
                                  {
                                    "name": "end",
                                    "nodeType": "YulIdentifier",
                                    "src": "577:3:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "546:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "546:35:101"
                              },
                              "nodeType": "YulIf",
                              "src": "543:2:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "633:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "641:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "629:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "629:17:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "652:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "660:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "648:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "648:17:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "667:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "607:21:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "607:63:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "607:63:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "679:15:101",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "688:6:101"
                              },
                              "variableNames": [
                                {
                                  "name": "array",
                                  "nodeType": "YulIdentifier",
                                  "src": "679:5:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_string_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "52:6:101",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "60:3:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "array",
                            "nodeType": "YulTypedName",
                            "src": "68:5:101",
                            "type": ""
                          }
                        ],
                        "src": "14:686:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "855:738:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "902:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "911:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "914:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "904:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "904:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "904:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "876:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "885:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "872:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "872:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "897:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "868:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "868:33:101"
                              },
                              "nodeType": "YulIf",
                              "src": "865:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "927:30:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "947:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "941:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "941:16:101"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "931:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "966:28:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "984:2:101",
                                        "type": "",
                                        "value": "64"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "988:1:101",
                                        "type": "",
                                        "value": "1"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "980:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "980:10:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "992:1:101",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "976:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "976:18:101"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "970:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1021:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1030:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1033:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1023:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1023:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1023:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1009:6:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1017:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1006:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1006:14:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1003:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1046:71:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1089:9:101"
                                      },
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "1100:6:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1085:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1085:22:101"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1109:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_string_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1056:28:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1056:61:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1046:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1126:41:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1152:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1163:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1148:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1148:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1142:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1142:25:101"
                              },
                              "variables": [
                                {
                                  "name": "offset_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1130:8:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1196:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1205:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1208:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1198:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1198:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1198:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1182:8:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1192:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1179:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1179:16:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1176:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1221:73:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1264:9:101"
                                      },
                                      {
                                        "name": "offset_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1275:8:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1260:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1260:24:101"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1286:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_string_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1231:28:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1231:63:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1221:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1303:38:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1326:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1337:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1322:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1322:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1316:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1316:25:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1307:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1389:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1398:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1401:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1391:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1391:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1391:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1363:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1374:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1381:4:101",
                                            "type": "",
                                            "value": "0xff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1370:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1370:16:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1360:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1360:27:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1353:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1353:35:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1350:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1414:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1424:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "1414:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1438:40:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1463:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1474:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1459:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1459:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1453:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1453:25:101"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1442:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1545:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1554:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1557:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1547:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1547:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1547:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1500:7:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "1513:7:101"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "1530:3:101",
                                                    "type": "",
                                                    "value": "160"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "1535:1:101",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1526:3:101"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "1526:11:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1539:1:101",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "1522:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1522:19:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1509:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1509:33:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1497:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1497:46:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1490:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1490:54:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1487:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1570:17:101",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "1580:7:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "1570:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint8t_address_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "797:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "808:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "820:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "828:6:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "836:6:101",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "844:6:101",
                            "type": ""
                          }
                        ],
                        "src": "705:888:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1648:208:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1658:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1678:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1672:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1672:12:101"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "1662:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "1700:3:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1705:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1693:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1693:19:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1693:19:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1747:5:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1754:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1743:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1743:16:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "1765:3:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1770:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1761:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1761:14:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1777:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1721:21:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1721:63:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1721:63:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1793:57:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "1808:3:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "1821:6:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1829:2:101",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "1817:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1817:15:101"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1838:2:101",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "not",
                                              "nodeType": "YulIdentifier",
                                              "src": "1834:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1834:7:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1813:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1813:29:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1804:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1804:39:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1845:4:101",
                                    "type": "",
                                    "value": "0x20"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1800:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1800:50:101"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "1793:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_string",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "1625:5:101",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "1632:3:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "1640:3:101",
                            "type": ""
                          }
                        ],
                        "src": "1598:258:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2074:276:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2084:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2096:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2107:3:101",
                                    "type": "",
                                    "value": "160"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2092:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2092:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2084:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2127:9:101"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "2138:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2120:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2120:25:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2120:25:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2165:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2176:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2161:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2161:18:101"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2181:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2154:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2154:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2154:34:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2208:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2219:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2204:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2204:18:101"
                                  },
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "2224:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2197:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2197:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2197:34:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2251:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2262:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2247:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2247:18:101"
                                  },
                                  {
                                    "name": "value3",
                                    "nodeType": "YulIdentifier",
                                    "src": "2267:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2240:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2240:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2240:34:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2294:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2305:3:101",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2290:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2290:19:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value4",
                                        "nodeType": "YulIdentifier",
                                        "src": "2315:6:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "2331:3:101",
                                                "type": "",
                                                "value": "160"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "2336:1:101",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "2327:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "2327:11:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2340:1:101",
                                            "type": "",
                                            "value": "1"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "sub",
                                          "nodeType": "YulIdentifier",
                                          "src": "2323:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2323:19:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2311:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2311:32:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2283:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2283:61:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2283:61:101"
                            }
                          ]
                        },
                        "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:101",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "2022:6:101",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "2030:6:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "2038:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2046:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2054:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2065:4:101",
                            "type": ""
                          }
                        ],
                        "src": "1861:489:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2548:268:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2565:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2576:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2558:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2558:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2558:21:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2588:59:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "2620:6:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2632:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2643:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2628:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2628:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_string",
                                  "nodeType": "YulIdentifier",
                                  "src": "2602:17:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2602:45:101"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2592:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2667:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2678:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2663:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2663:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "tail_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "2687:6:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2695:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2683:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2683:22:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2656:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2656:50:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2656:50:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2715:41:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2741:6:101"
                                  },
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2749:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_string",
                                  "nodeType": "YulIdentifier",
                                  "src": "2723:17:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2723:33:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2715:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2776:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2787:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2772:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2772:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value2",
                                        "nodeType": "YulIdentifier",
                                        "src": "2796:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2804:4:101",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2792:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2792:17:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2765:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2765:45:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2765:45:101"
                            }
                          ]
                        },
                        "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:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "2512:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2520:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2528:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2539:4:101",
                            "type": ""
                          }
                        ],
                        "src": "2355:461:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2995:182:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3012:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3023:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3005:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3005:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3005:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3046:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3057:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3042:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3042:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3062:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3035:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3035:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3035:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3085:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3096:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3081:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3081:18:101"
                                  },
                                  {
                                    "hexValue": "436f6e74726f6c6c6564546f6b656e2f646563696d616c732d67742d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3101:34:101",
                                    "type": "",
                                    "value": "ControlledToken/decimals-gt-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3074:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3074:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3074:62:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3145:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3157:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3168:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3153:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3153:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3145:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_39ddb2ff9bb2156ccdd7a7c5e12a2934405240522f8e0e9387326954ad27f9f0__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2972:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2986:4:101",
                            "type": ""
                          }
                        ],
                        "src": "2821:356:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3356:233:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3373:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3384:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3366:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3366:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3366:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3407:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3418:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3403:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3403:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3423:2:101",
                                    "type": "",
                                    "value": "43"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3396:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3396:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3396:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3446:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3457:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3442:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3442:18:101"
                                  },
                                  {
                                    "hexValue": "436f6e74726f6c6c6564546f6b656e2f636f6e74726f6c6c65722d6e6f742d7a",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3462:34:101",
                                    "type": "",
                                    "value": "ControlledToken/controller-not-z"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3435:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3435:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3435:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3517:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3528:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3513:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3513:18:101"
                                  },
                                  {
                                    "hexValue": "65726f2d61646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3533:13:101",
                                    "type": "",
                                    "value": "ero-address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3506:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3506:41:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3506:41:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3556:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3568:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3579:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3564:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3564:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3556:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7d588014210ba31b9120514699359e6ab0aa94fda2860a199e21904680ca2a54__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3333:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3347:4:101",
                            "type": ""
                          }
                        ],
                        "src": "3182:407:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3647:205:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3657:10:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3666:1:101",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "3661:1:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3726:63:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "3751:3:101"
                                            },
                                            {
                                              "name": "i",
                                              "nodeType": "YulIdentifier",
                                              "src": "3756:1:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "3747:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "3747:11:101"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "3770:3:101"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "3775:1:101"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "3766:3:101"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "3766:11:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "3760:5:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "3760:18:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "3740:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3740:39:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3740:39:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "3687:1:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "3690:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3684:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3684:13:101"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "3698:19:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "3700:15:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "3709:1:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3712:2:101",
                                          "type": "",
                                          "value": "32"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "3705:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3705:10:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "3700:1:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "3680:3:101",
                                "statements": []
                              },
                              "src": "3676:113:101"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3815:31:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "3828:3:101"
                                            },
                                            {
                                              "name": "length",
                                              "nodeType": "YulIdentifier",
                                              "src": "3833:6:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "3824:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "3824:16:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3842:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "3817:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3817:27:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3817:27:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "3804:1:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "3807:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3801:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3801:13:101"
                              },
                              "nodeType": "YulIf",
                              "src": "3798:2:101"
                            }
                          ]
                        },
                        "name": "copy_memory_to_memory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "src",
                            "nodeType": "YulTypedName",
                            "src": "3625:3:101",
                            "type": ""
                          },
                          {
                            "name": "dst",
                            "nodeType": "YulTypedName",
                            "src": "3630:3:101",
                            "type": ""
                          },
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "3635:6:101",
                            "type": ""
                          }
                        ],
                        "src": "3594:258:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3912:325:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3922:22:101",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3936:1:101",
                                    "type": "",
                                    "value": "1"
                                  },
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "3939:4:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "shr",
                                  "nodeType": "YulIdentifier",
                                  "src": "3932:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3932:12:101"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "3922:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3953:38:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "3983:4:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3989:1:101",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "3979:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3979:12:101"
                              },
                              "variables": [
                                {
                                  "name": "outOfPlaceEncoding",
                                  "nodeType": "YulTypedName",
                                  "src": "3957:18:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4030:31:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "4032:27:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "length",
                                          "nodeType": "YulIdentifier",
                                          "src": "4046:6:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4054:4:101",
                                          "type": "",
                                          "value": "0x7f"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "and",
                                        "nodeType": "YulIdentifier",
                                        "src": "4042:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4042:17:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "4032:6:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "4010:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "4003:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4003:26:101"
                              },
                              "nodeType": "YulIf",
                              "src": "4000:2:101"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4120:111:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4141:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "4148:3:101",
                                              "type": "",
                                              "value": "224"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "4153:10:101",
                                              "type": "",
                                              "value": "0x4e487b71"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "shl",
                                            "nodeType": "YulIdentifier",
                                            "src": "4144:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "4144:20:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "4134:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4134:31:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4134:31:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4185:1:101",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4188:4:101",
                                          "type": "",
                                          "value": "0x22"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "4178:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4178:15:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4178:15:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4213:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4216:4:101",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4206:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4206:15:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4206:15:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "4076:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "4099:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4107:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "4096:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4096:14:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "4073:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4073:38:101"
                              },
                              "nodeType": "YulIf",
                              "src": "4070:2:101"
                            }
                          ]
                        },
                        "name": "extract_byte_array_length",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "data",
                            "nodeType": "YulTypedName",
                            "src": "3892:4:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "3901:6:101",
                            "type": ""
                          }
                        ],
                        "src": "3857:380:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4274:95:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4291:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4298:3:101",
                                        "type": "",
                                        "value": "224"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4303:10:101",
                                        "type": "",
                                        "value": "0x4e487b71"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "4294:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4294:20:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4284:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4284:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4284:31:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4331:1:101",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4334:4:101",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4324:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4324:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4324:15:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4355:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4358:4:101",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "4348:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4348:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4348:15:101"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "4242:127:101"
                      }
                    ]
                  },
                  "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": 101,
                  "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:37:-:0;;;1129:95:7;1076:148;;1500:503:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1456:52:7;;;;;;;;;;;;;;;;;1495:4;2455:602:17;;;;;;;;;;;;;-1:-1:-1;;;2455:602:17;;;1682:5:37;1689:7;2037:5:4;2029;:13;;;;;;;;;;;;:::i;:::-;-1:-1:-1;2052:17:4;;;;:7;;:17;;;;;:::i;:::-;-1:-1:-1;;2541:22:17;;;;;;;;;;2597:25;;;;;;2778;;;;2813:31;;;;2873:13;2854:32;;;;-1:-1:-1;3633:73:17;;2651:117;3633:73;;;2120:25:101;;;2161:18;;;2154:34;;;-1:-1:-1;2204:18:101;;2197:34;;;2247:18;;;2240:34;;;;3700:4:17;2290:19:101;;;2283:61;3633:73:17;;;;;;;;;;2092:19:101;;3633:73:17;;3623:84;;;;;;;;2541:22;;-1:-1:-1;2597:25:17;2651:117;2896:85;;3014:4;2991:28;;;;3029:21;;-1:-1:-1;;;;;;;;;;1716:34:37;::::2;1708:90;;;::::0;-1:-1:-1;;;1708:90:37;;3384:2:101;1708:90:37::2;::::0;::::2;3366:21:101::0;3423:2;3403:18;;;3396:30;3462:34;3442:18;;;3435:62;-1:-1:-1;;;3513:18:101;;;3506:41;3564:19;;1708:90:37::2;;;;;;;;;-1:-1:-1::0;;;;;;1808:24:37::2;::::0;;;;::::2;::::0;1851:13:::2;::::0;::::2;1843:58;;;::::0;-1:-1:-1;;;1843:58:37;;3023:2:101;1843:58:37::2;::::0;::::2;3005:21:101::0;;;3042:18;;;3035:30;3101:34;3081:18;;;3074:62;3153:18;;1843:58:37::2;2995:182:101::0;1843:58:37::2;1911:21:::0;::::2;::::0;;;;::::2;::::0;1948:48:::2;::::0;-1:-1:-1;;;;;1948:48:37;::::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:37;;;-1:-1:-1;342:3626:37;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:686:101;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:101;;;221:2;;;237:18;;:::i;:::-;312:2;306:9;280:2;366:13;;-1:-1:-1;;362:22:101;;;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:101: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:101;;;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:101;;1497:46;;1487:2;;1557:1;1554;1547:12;1487:2;855:738;;;;-1:-1:-1;855:738:101;;-1:-1:-1;;855:738:101: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:101;1804:39;;;;1845:4;1800:50;;1648:208;-1:-1:-1;;1648:208:101: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:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@DOMAIN_SEPARATOR_1054": {
                  "entryPoint": 1161,
                  "id": 1054,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_afterTokenTransfer_811": {
                  "entryPoint": null,
                  "id": 811,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_approve_789": {
                  "entryPoint": 2310,
                  "id": 789,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_beforeTokenTransfer_800": {
                  "entryPoint": null,
                  "id": 800,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_buildDomainSeparator_2601": {
                  "entryPoint": null,
                  "id": 2601,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@_burn_744": {
                  "entryPoint": 3708,
                  "id": 744,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_domainSeparatorV4_2574": {
                  "entryPoint": 3190,
                  "id": 2574,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_hashTypedDataV4_2617": {
                  "entryPoint": 4137,
                  "id": 2617,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_mint_672": {
                  "entryPoint": 3485,
                  "id": 672,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_msgSender_1787": {
                  "entryPoint": null,
                  "id": 1787,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_throwError_2138": {
                  "entryPoint": 4519,
                  "id": 2138,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_transfer_616": {
                  "entryPoint": 2654,
                  "id": 616,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_useNonce_1083": {
                  "entryPoint": 4097,
                  "id": 1083,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@allowance_404": {
                  "entryPoint": null,
                  "id": 404,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@approve_425": {
                  "entryPoint": 943,
                  "id": 425,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@balanceOf_365": {
                  "entryPoint": null,
                  "id": 365,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@controllerBurnFrom_6002": {
                  "entryPoint": 1370,
                  "id": 6002,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@controllerBurn_5967": {
                  "entryPoint": 1619,
                  "id": 5967,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@controllerMint_5950": {
                  "entryPoint": 1236,
                  "id": 5950,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@controller_5848": {
                  "entryPoint": null,
                  "id": 5848,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@current_1815": {
                  "entryPoint": null,
                  "id": 1815,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@decimals_6012": {
                  "entryPoint": null,
                  "id": 6012,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@decreaseAllowance_539": {
                  "entryPoint": 1764,
                  "id": 539,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@increaseAllowance_500": {
                  "entryPoint": 1176,
                  "id": 500,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@increment_1829": {
                  "entryPoint": null,
                  "id": 1829,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@name_321": {
                  "entryPoint": 797,
                  "id": 321,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@nonces_1043": {
                  "entryPoint": 1587,
                  "id": 1043,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@permit_1027": {
                  "entryPoint": 1954,
                  "id": 1027,
                  "parameterSlots": 7,
                  "returnSlots": 0
                },
                "@recover_2404": {
                  "entryPoint": 4242,
                  "id": 2404,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "@symbol_331": {
                  "entryPoint": 1749,
                  "id": 331,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@toTypedDataHash_2463": {
                  "entryPoint": null,
                  "id": 2463,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@totalSupply_351": {
                  "entryPoint": null,
                  "id": 351,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@transferFrom_473": {
                  "entryPoint": 965,
                  "id": 473,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@transfer_386": {
                  "entryPoint": 1941,
                  "id": 386,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@tryRecover_2371": {
                  "entryPoint": 4282,
                  "id": 2371,
                  "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:101",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:101",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "63:147:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "73:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "95:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "82:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "82:20:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "73:5:101"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "188:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "197:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "200:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "190:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "190:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "190:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "124:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "135:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "142:42:101",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "131:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "131:54:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "121:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "121:65:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "114:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "114:73:101"
                              },
                              "nodeType": "YulIf",
                              "src": "111:2:101"
                            }
                          ]
                        },
                        "name": "abi_decode_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "42:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "53:5:101",
                            "type": ""
                          }
                        ],
                        "src": "14:196:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "285:116:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "331:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "340:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "343:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "333:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "333:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "333:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "306:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "315:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "302:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "302:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "327:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "298:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "298:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "295:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "356:39:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "385:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "366:18:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "366:29:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "356:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "251:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "262:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "274:6:101",
                            "type": ""
                          }
                        ],
                        "src": "215:186:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "493:173:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "539:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "548:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "551:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "541:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "541:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "541:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "514:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "523:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "510:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "510:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "535:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "506:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "506:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "503:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "564:39:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "593:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "574:18:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "574:29:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "564:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "612:48:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "645:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "656:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "641:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "641:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "622:18:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "622:38:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "612:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "451:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "462:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "474:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "482:6:101",
                            "type": ""
                          }
                        ],
                        "src": "406:260:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "775:224:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "821:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "830:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "833:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "823:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "823:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "823:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "796:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "805:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "792:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "792:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "817:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "788:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "788:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "785:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "846:39:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "875:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "856:18:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "856:29:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "846:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "894:48:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "927:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "938:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "923:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "923:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "904:18:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "904:38:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "894:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "951:42:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "978:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "989:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "974:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "974:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "961:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "961:32:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "951:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "725:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "736:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "748:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "756:6:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "764:6:101",
                            "type": ""
                          }
                        ],
                        "src": "671:328:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1174:523:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1221:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1230:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1233:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1223:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1223:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1223:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1195:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1204:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1191:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1191:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1216:3:101",
                                    "type": "",
                                    "value": "224"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1187:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1187:33:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1184:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1246:39:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1275:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1256:18:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1256:29:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1246:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1294:48:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1327:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1338:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1323:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1323:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1304:18:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1304:38:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1294:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1351:42:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1378:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1389:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1374:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1374:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1361:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1361:32:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "1351:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1402:42:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1429:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1440:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1425:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1425:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1412:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1412:32:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "1402:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1453:46:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1483:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1494:3:101",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1479:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1479:19:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1466:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1466:33:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1457:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1547:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1556:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1559:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1549:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1549:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1549:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1521:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1532:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1539:4:101",
                                            "type": "",
                                            "value": "0xff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1528:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1528:16:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1518:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1518:27:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1511:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1511:35:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1508:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1572:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1582:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value4",
                                  "nodeType": "YulIdentifier",
                                  "src": "1572:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1596:43:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1623:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1634:3:101",
                                        "type": "",
                                        "value": "160"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1619:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1619:19:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1606:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1606:33:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value5",
                                  "nodeType": "YulIdentifier",
                                  "src": "1596:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1648:43:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1675:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1686:3:101",
                                        "type": "",
                                        "value": "192"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1671:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1671:19:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1658:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1658:33:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value6",
                                  "nodeType": "YulIdentifier",
                                  "src": "1648:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1092:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1103:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1115:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1123:6:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "1131:6:101",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "1139:6:101",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "1147:6:101",
                            "type": ""
                          },
                          {
                            "name": "value5",
                            "nodeType": "YulTypedName",
                            "src": "1155:6:101",
                            "type": ""
                          },
                          {
                            "name": "value6",
                            "nodeType": "YulTypedName",
                            "src": "1163:6:101",
                            "type": ""
                          }
                        ],
                        "src": "1004:693:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1789:167:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1835:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1844:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1847:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1837:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1837:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1837:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1810:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1819:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1806:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1806:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1831:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1802:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1802:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1799:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1860:39:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1889:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1870:18:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1870:29:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1860:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1908:42:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1935:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1946:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1931:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1931:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1918:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1918:32:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1908:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1747:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1758:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1770:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1778:6:101",
                            "type": ""
                          }
                        ],
                        "src": "1702:254:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2209:196:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "2226:3:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2231:66:101",
                                    "type": "",
                                    "value": "0x1901000000000000000000000000000000000000000000000000000000000000"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2219:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2219:79:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2219:79:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "2318:3:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2323:1:101",
                                        "type": "",
                                        "value": "2"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2314:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2314:11:101"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "2327:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2307:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2307:27:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2307:27:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "2354:3:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2359:2:101",
                                        "type": "",
                                        "value": "34"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2350:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2350:12:101"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2364:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2343:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2343:28:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2343:28:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2380:19:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "2391:3:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2396:2:101",
                                    "type": "",
                                    "value": "66"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2387:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2387:12:101"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "2380:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "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:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2182:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2190:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "2201:3:101",
                            "type": ""
                          }
                        ],
                        "src": "1961:444:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2511:125:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2521:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2533:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2544:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2529:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2529:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2521:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2563:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "2578:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2586:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2574:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2574:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2556:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2556:74:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2556:74:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2480:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2491:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2502:4:101",
                            "type": ""
                          }
                        ],
                        "src": "2410:226:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2736:92:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2746:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2758:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2769:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2754:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2754:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2746:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2788:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "2813:6:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "2806:6:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2806:14:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "2799:6:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2799:22:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2781:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2781:41:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2781:41:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2705:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2716:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2727:4:101",
                            "type": ""
                          }
                        ],
                        "src": "2641:187:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2934:76:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2944:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2956:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2967:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2952:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2952:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2944:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2986:9:101"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "2997:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2979:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2979:25:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2979:25:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2903:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2914:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2925:4:101",
                            "type": ""
                          }
                        ],
                        "src": "2833:177:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3256:373:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3266:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3278:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3289:3:101",
                                    "type": "",
                                    "value": "192"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3274:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3274:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3266:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3309:9:101"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "3320:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3302:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3302:25:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3302:25:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3336:52:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3346:42:101",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3340:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3408:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3419:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3404:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3404:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "3428:6:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "3436:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3424:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3424:15:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3397:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3397:43:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3397:43:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3460:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3471:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3456:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3456:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value2",
                                        "nodeType": "YulIdentifier",
                                        "src": "3480:6:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "3488:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3476:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3476:15:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3449:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3449:43:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3449:43:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3512:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3523:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3508:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3508:18:101"
                                  },
                                  {
                                    "name": "value3",
                                    "nodeType": "YulIdentifier",
                                    "src": "3528:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3501:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3501:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3501:34:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3555:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3566:3:101",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3551:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3551:19:101"
                                  },
                                  {
                                    "name": "value4",
                                    "nodeType": "YulIdentifier",
                                    "src": "3572:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3544:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3544:35:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3544:35:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3599:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3610:3:101",
                                        "type": "",
                                        "value": "160"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3595:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3595:19:101"
                                  },
                                  {
                                    "name": "value5",
                                    "nodeType": "YulIdentifier",
                                    "src": "3616:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3588:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3588:35:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3588:35:101"
                            }
                          ]
                        },
                        "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:101",
                            "type": ""
                          },
                          {
                            "name": "value5",
                            "nodeType": "YulTypedName",
                            "src": "3196:6:101",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "3204:6:101",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "3212:6:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "3220:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "3228:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3236:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3247:4:101",
                            "type": ""
                          }
                        ],
                        "src": "3015:614:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3847:299:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3857:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3869:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3880:3:101",
                                    "type": "",
                                    "value": "160"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3865:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3865:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3857:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3900:9:101"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "3911:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3893:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3893:25:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3893:25:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3938:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3949:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3934:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3934:18:101"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3954:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3927:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3927:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3927:34:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3981:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3992:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3977:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3977:18:101"
                                  },
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "3997:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3970:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3970:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3970:34:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4024:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4035:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4020:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4020:18:101"
                                  },
                                  {
                                    "name": "value3",
                                    "nodeType": "YulIdentifier",
                                    "src": "4040:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4013:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4013:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4013:34:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4067:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4078:3:101",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4063:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4063:19:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value4",
                                        "nodeType": "YulIdentifier",
                                        "src": "4088:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4096:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4084:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4084:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4056:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4056:84:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4056:84:101"
                            }
                          ]
                        },
                        "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:101",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "3795:6:101",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "3803:6:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "3811:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "3819:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3827:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3838:4:101",
                            "type": ""
                          }
                        ],
                        "src": "3634:512:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4332:217:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "4342:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4354:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4365:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4350:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4350:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4342:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4385:9:101"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "4396:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4378:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4378:25:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4378:25:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4423:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4434:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4419:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4419:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "4443:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4451:4:101",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4439:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4439:17:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4412:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4412:45:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4412:45:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4477:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4488:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4473:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4473:18:101"
                                  },
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "4493:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4466:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4466:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4466:34:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4520:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4531:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4516:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4516:18:101"
                                  },
                                  {
                                    "name": "value3",
                                    "nodeType": "YulIdentifier",
                                    "src": "4536:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4509:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4509:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4509:34:101"
                            }
                          ]
                        },
                        "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:101",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "4288:6:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "4296:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "4304:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4312:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4323:4:101",
                            "type": ""
                          }
                        ],
                        "src": "4151:398:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4675:535:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4685:12:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "4695:2:101",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4689:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4713:9:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4724:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4706:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4706:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4706:21:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4736:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "4756:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4750:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4750:13:101"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "4740:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4783:9:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "4794:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4779:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4779:18:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "4799:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4772:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4772:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4772:34:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4815:10:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "4824:1:101",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "4819:1:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4884:90:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "headStart",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "4913:9:101"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "4924:1:101"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "4909:3:101"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "4909:17:101"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "4928:2:101",
                                              "type": "",
                                              "value": "64"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "4905:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "4905:26:101"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "arguments": [
                                                    {
                                                      "name": "value0",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "4947:6:101"
                                                    },
                                                    {
                                                      "name": "i",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "4955:1:101"
                                                    }
                                                  ],
                                                  "functionName": {
                                                    "name": "add",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "4943:3:101"
                                                  },
                                                  "nodeType": "YulFunctionCall",
                                                  "src": "4943:14:101"
                                                },
                                                {
                                                  "name": "_1",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "4959:2:101"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "4939:3:101"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "4939:23:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "4933:5:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "4933:30:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "4898:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4898:66:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4898:66:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "4845:1:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "4848:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4842:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4842:13:101"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "4856:19:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "4858:15:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "4867:1:101"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "4870:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "4863:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4863:10:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "4858:1:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "4838:3:101",
                                "statements": []
                              },
                              "src": "4834:140:101"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5008:66:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "headStart",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "5037:9:101"
                                                },
                                                {
                                                  "name": "length",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "5048:6:101"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "5033:3:101"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "5033:22:101"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "5057:2:101",
                                              "type": "",
                                              "value": "64"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "5029:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "5029:31:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5062:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "5022:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5022:42:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5022:42:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "4989:1:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "4992:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4986:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4986:13:101"
                              },
                              "nodeType": "YulIf",
                              "src": "4983:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5083:121:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5099:9:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "5118:6:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "5126:2:101",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "5114:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "5114:15:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "5131:66:101",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "5110:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "5110:88:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5095:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5095:104:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5201:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5091:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5091:113:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5083:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "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:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4655:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4666:4:101",
                            "type": ""
                          }
                        ],
                        "src": "4554:656:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5389:174:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5406:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5417:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5399:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5399:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5399:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5440:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5451:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5436:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5436:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5456:2:101",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5429:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5429:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5429:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5479:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5490:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5475:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5475:18:101"
                                  },
                                  {
                                    "hexValue": "45434453413a20696e76616c6964207369676e6174757265",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5495:26:101",
                                    "type": "",
                                    "value": "ECDSA: invalid signature"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5468:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5468:54:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5468:54:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5531:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5543:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5554:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5539:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5539:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5531:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_00043f6bf76368aa97c21698e9b9d4779e31902453daccf3525ddfb36e53e2be__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5366:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5380:4:101",
                            "type": ""
                          }
                        ],
                        "src": "5215:348:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5742:225:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5759:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5770:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5752:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5752:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5752:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5793:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5804:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5789:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5789:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5809:2:101",
                                    "type": "",
                                    "value": "35"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5782:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5782:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5782:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5832:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5843:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5828:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5828:18:101"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220746f20746865207a65726f2061646472",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5848:34:101",
                                    "type": "",
                                    "value": "ERC20: transfer to the zero addr"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5821:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5821:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5821:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5903:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5914:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5899:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5899:18:101"
                                  },
                                  {
                                    "hexValue": "657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5919:5:101",
                                    "type": "",
                                    "value": "ess"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5892:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5892:33:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5892:33:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5934:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5946:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5957:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5942:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5942:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5934:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5719:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5733:4:101",
                            "type": ""
                          }
                        ],
                        "src": "5568:399:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6146:224:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6163:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6174:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6156:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6156:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6156:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6197:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6208:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6193:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6193:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6213:2:101",
                                    "type": "",
                                    "value": "34"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6186:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6186:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6186:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6236:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6247:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6232:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6232:18:101"
                                  },
                                  {
                                    "hexValue": "45524332303a206275726e20616d6f756e7420657863656564732062616c616e",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6252:34:101",
                                    "type": "",
                                    "value": "ERC20: burn amount exceeds balan"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6225:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6225:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6225:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6307:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6318:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6303:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6303:18:101"
                                  },
                                  {
                                    "hexValue": "6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6323:4:101",
                                    "type": "",
                                    "value": "ce"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6296:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6296:32:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6296:32:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6337:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6349:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6360:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6345:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6345:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6337:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6123:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6137:4:101",
                            "type": ""
                          }
                        ],
                        "src": "5972:398:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6549:181:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6566:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6577:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6559:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6559:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6559:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6600:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6611:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6596:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6596:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6616:2:101",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6589:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6589:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6589:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6639:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6650:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6635:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6635:18:101"
                                  },
                                  {
                                    "hexValue": "45434453413a20696e76616c6964207369676e6174757265206c656e677468",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6655:33:101",
                                    "type": "",
                                    "value": "ECDSA: invalid signature length"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6628:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6628:61:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6628:61:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6698:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6710:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6721:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6706:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6706:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6698:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_1669ff3ba3cdf64474e1193492d05b8434e29b0b495e60095eb5f5c8ec14ce77__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6526:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6540:4:101",
                            "type": ""
                          }
                        ],
                        "src": "6375:355:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6909:224:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6926:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6937:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6919:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6919:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6919:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6960:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6971:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6956:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6956:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6976:2:101",
                                    "type": "",
                                    "value": "34"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6949:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6949:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6949:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6999:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7010:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6995:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6995:18:101"
                                  },
                                  {
                                    "hexValue": "45524332303a20617070726f766520746f20746865207a65726f206164647265",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7015:34:101",
                                    "type": "",
                                    "value": "ERC20: approve to the zero addre"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6988:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6988:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6988:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7070:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7081:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7066:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7066:18:101"
                                  },
                                  {
                                    "hexValue": "7373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7086:4:101",
                                    "type": "",
                                    "value": "ss"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7059:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7059:32:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7059:32:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7100:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7112:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7123:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7108:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7108:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7100:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6886:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6900:4:101",
                            "type": ""
                          }
                        ],
                        "src": "6735:398:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7312:179:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7329:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7340:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7322:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7322:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7322:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7363:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7374:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7359:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7359:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7379:2:101",
                                    "type": "",
                                    "value": "29"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7352:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7352:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7352:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7402:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7413:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7398:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7398:18:101"
                                  },
                                  {
                                    "hexValue": "45524332305065726d69743a206578706972656420646561646c696e65",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7418:31:101",
                                    "type": "",
                                    "value": "ERC20Permit: expired deadline"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7391:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7391:59:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7391:59:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7459:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7471:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7482:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7467:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7467:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7459:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_3e89525a63fb9c966b61cf8f5305156de8420bc773a2b60828a2f32c3c5797bd__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7289:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7303:4:101",
                            "type": ""
                          }
                        ],
                        "src": "7138:353:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7670:228:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7687:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7698:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7680:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7680:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7680:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7721:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7732:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7717:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7717:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7737:2:101",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7710:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7710:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7710:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7760:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7771:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7756:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7756:18:101"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732062",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7776:34:101",
                                    "type": "",
                                    "value": "ERC20: transfer amount exceeds b"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7749:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7749:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7749:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7831:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7842:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7827:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7827:18:101"
                                  },
                                  {
                                    "hexValue": "616c616e6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7847:8:101",
                                    "type": "",
                                    "value": "alance"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7820:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7820:36:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7820:36:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7865:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7877:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7888:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7873:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7873:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7865:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7647:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7661:4:101",
                            "type": ""
                          }
                        ],
                        "src": "7496:402:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8077:224:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8094:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8105:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8087:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8087:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8087:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8128:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8139:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8124:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8124:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8144:2:101",
                                    "type": "",
                                    "value": "34"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8117:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8117:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8117:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8167:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8178:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8163:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8163:18:101"
                                  },
                                  {
                                    "hexValue": "45434453413a20696e76616c6964207369676e6174757265202773272076616c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8183:34:101",
                                    "type": "",
                                    "value": "ECDSA: invalid signature 's' val"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8156:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8156:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8156:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8238:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8249:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8234:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8234:18:101"
                                  },
                                  {
                                    "hexValue": "7565",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8254:4:101",
                                    "type": "",
                                    "value": "ue"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8227:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8227:32:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8227:32:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8268:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8280:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8291:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8276:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8276:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8268:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_520d1f787dbcafbbfc007fd2c4ecf3d2711ec587f3ee9a1215c0b646c3e530bd__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8054:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8068:4:101",
                            "type": ""
                          }
                        ],
                        "src": "7903:398:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8480:224:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8497:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8508:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8490:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8490:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8490:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8531:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8542:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8527:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8527:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8547:2:101",
                                    "type": "",
                                    "value": "34"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8520:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8520:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8520:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8570:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8581:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8566:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8566:18:101"
                                  },
                                  {
                                    "hexValue": "45434453413a20696e76616c6964207369676e6174757265202776272076616c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8586:34:101",
                                    "type": "",
                                    "value": "ECDSA: invalid signature 'v' val"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8559:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8559:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8559:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8641:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8652:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8637:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8637:18:101"
                                  },
                                  {
                                    "hexValue": "7565",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8657:4:101",
                                    "type": "",
                                    "value": "ue"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8630:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8630:32:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8630:32:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8671:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8683:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8694:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8679:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8679:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8671:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_8522ee1b53216f595394db8e80a64d9e7d9bd512c0811c18debe9f40858597e4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8457:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8471:4:101",
                            "type": ""
                          }
                        ],
                        "src": "8306:398:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8883:180:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8900:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8911:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8893:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8893:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8893:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8934:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8945:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8930:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8930:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8950:2:101",
                                    "type": "",
                                    "value": "30"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8923:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8923:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8923:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8973:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8984:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8969:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8969:18:101"
                                  },
                                  {
                                    "hexValue": "45524332305065726d69743a20696e76616c6964207369676e6174757265",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8989:32:101",
                                    "type": "",
                                    "value": "ERC20Permit: invalid signature"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8962:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8962:60:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8962:60:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9031:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9043:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9054:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9039:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9039:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9031:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_94ca1ab58dfda790a1782ffbb0c0a140ec51d4148dbeecc6c39e37b25ff4b124__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8860:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8874:4:101",
                            "type": ""
                          }
                        ],
                        "src": "8709:354:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9242:230:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9259:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9270:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9252:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9252:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9252:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9293:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9304:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9289:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9289:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9309:2:101",
                                    "type": "",
                                    "value": "40"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9282:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9282:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9282:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9332:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9343:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9328:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9328:18:101"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732061",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9348:34:101",
                                    "type": "",
                                    "value": "ERC20: transfer amount exceeds a"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9321:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9321:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9321:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9403:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9414:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9399:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9399:18:101"
                                  },
                                  {
                                    "hexValue": "6c6c6f77616e6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9419:10:101",
                                    "type": "",
                                    "value": "llowance"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9392:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9392:38:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9392:38:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9439:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9451:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9462:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9447:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9447:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9439:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9219:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9233:4:101",
                            "type": ""
                          }
                        ],
                        "src": "9068:404:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9651:223:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9668:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9679:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9661:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9661:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9661:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9702:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9713:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9698:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9698:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9718:2:101",
                                    "type": "",
                                    "value": "33"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9691:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9691:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9691:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9741:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9752:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9737:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9737:18:101"
                                  },
                                  {
                                    "hexValue": "45524332303a206275726e2066726f6d20746865207a65726f20616464726573",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9757:34:101",
                                    "type": "",
                                    "value": "ERC20: burn from the zero addres"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9730:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9730:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9730:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9812:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9823:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9808:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9808:18:101"
                                  },
                                  {
                                    "hexValue": "73",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9828:3:101",
                                    "type": "",
                                    "value": "s"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9801:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9801:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9801:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9841:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9853:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9864:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9849:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9849:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9841:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9628:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9642:4:101",
                            "type": ""
                          }
                        ],
                        "src": "9477:397:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10053:227:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10070:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10081:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10063:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10063:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10063:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10104:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10115:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10100:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10100:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10120:2:101",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10093:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10093:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10093:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10143:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10154:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10139:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10139:18:101"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e736665722066726f6d20746865207a65726f206164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10159:34:101",
                                    "type": "",
                                    "value": "ERC20: transfer from the zero ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10132:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10132:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10132:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10214:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10225:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10210:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10210:18:101"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10230:7:101",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10203:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10203:35:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10203:35:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10247:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10259:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10270:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10255:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10255:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10247:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10030:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10044:4:101",
                            "type": ""
                          }
                        ],
                        "src": "9879:401:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10459:226:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10476:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10487:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10469:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10469:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10469:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10510:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10521:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10506:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10506:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10526:2:101",
                                    "type": "",
                                    "value": "36"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10499:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10499:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10499:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10549:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10560:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10545:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10545:18:101"
                                  },
                                  {
                                    "hexValue": "45524332303a20617070726f76652066726f6d20746865207a65726f20616464",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10565:34:101",
                                    "type": "",
                                    "value": "ERC20: approve from the zero add"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10538:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10538:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10538:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10620:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10631:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10616:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10616:18:101"
                                  },
                                  {
                                    "hexValue": "72657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10636:6:101",
                                    "type": "",
                                    "value": "ress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10609:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10609:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10609:34:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10652:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10664:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10675:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10660:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10660:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10652:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10436:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10450:4:101",
                            "type": ""
                          }
                        ],
                        "src": "10285:400:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10864:181:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10881:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10892:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10874:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10874:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10874:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10915:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10926:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10911:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10911:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10931:2:101",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10904:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10904:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10904:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10954:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10965:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10950:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10950:18:101"
                                  },
                                  {
                                    "hexValue": "436f6e74726f6c6c6564546f6b656e2f6f6e6c792d636f6e74726f6c6c6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10970:33:101",
                                    "type": "",
                                    "value": "ControlledToken/only-controller"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10943:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10943:61:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10943:61:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11013:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11025:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11036:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11021:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11021:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11013:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_ef56e6eb544946d3498735fdd4428248a65a688b6ca702fa3dbce5b90141cb35__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10841:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10855:4:101",
                            "type": ""
                          }
                        ],
                        "src": "10690:355:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11224:227:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11241:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11252:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11234:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11234:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11234:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11275:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11286:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11271:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11271:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11291:2:101",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11264:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11264:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11264:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11314:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11325:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11310:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11310:18:101"
                                  },
                                  {
                                    "hexValue": "45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11330:34:101",
                                    "type": "",
                                    "value": "ERC20: decreased allowance below"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11303:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11303:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11303:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11385:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11396:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11381:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11381:18:101"
                                  },
                                  {
                                    "hexValue": "207a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11401:7:101",
                                    "type": "",
                                    "value": " zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11374:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11374:35:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11374:35:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11418:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11430:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11441:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11426:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11426:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11418:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11201:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11215:4:101",
                            "type": ""
                          }
                        ],
                        "src": "11050:401:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11630:181:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11647:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11658:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11640:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11640:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11640:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11681:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11692:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11677:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11677:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11697:2:101",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11670:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11670:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11670:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11720:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11731:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11716:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11716:18:101"
                                  },
                                  {
                                    "hexValue": "45524332303a206d696e7420746f20746865207a65726f2061646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11736:33:101",
                                    "type": "",
                                    "value": "ERC20: mint to the zero address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11709:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11709:61:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11709:61:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11779:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11791:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11802:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11787:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11787:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11779:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11607:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11621:4:101",
                            "type": ""
                          }
                        ],
                        "src": "11456:355:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11917:76:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "11927:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11939:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11950:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11935:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11935:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11927:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11969:9:101"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "11980:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11962:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11962:25:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11962:25:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11886:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "11897:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11908:4:101",
                            "type": ""
                          }
                        ],
                        "src": "11816:177:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12095:87:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "12105:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12117:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12128:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12113:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12113:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12105:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12147:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "12162:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12170:4:101",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "12158:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12158:17:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12140:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12140:36:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12140:36:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12064:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "12075:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12086:4:101",
                            "type": ""
                          }
                        ],
                        "src": "11998:184:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12235:80:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "12262:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "12264:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12264:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "12264:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "12251:1:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "12258:1:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "12254:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12254:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "12248:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12248:13:101"
                              },
                              "nodeType": "YulIf",
                              "src": "12245:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12293:16:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "12304:1:101"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "12307:1:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12300:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12300:9:101"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "12293:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "12218:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "12221:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "12227:3:101",
                            "type": ""
                          }
                        ],
                        "src": "12187:128:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12369:76:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "12391:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "12393:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12393:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "12393:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "12385:1:101"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "12388:1:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "12382:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12382:8:101"
                              },
                              "nodeType": "YulIf",
                              "src": "12379:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12422:17:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "12434:1:101"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "12437:1:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "12430:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12430:9:101"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "12422:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "12351:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "12354:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "12360:4:101",
                            "type": ""
                          }
                        ],
                        "src": "12320:125:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12505:382:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "12515:22:101",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12529:1:101",
                                    "type": "",
                                    "value": "1"
                                  },
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "12532:4:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "shr",
                                  "nodeType": "YulIdentifier",
                                  "src": "12525:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12525:12:101"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "12515:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "12546:38:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "12576:4:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12582:1:101",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "12572:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12572:12:101"
                              },
                              "variables": [
                                {
                                  "name": "outOfPlaceEncoding",
                                  "nodeType": "YulTypedName",
                                  "src": "12550:18:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "12623:31:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "12625:27:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "length",
                                          "nodeType": "YulIdentifier",
                                          "src": "12639:6:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "12647:4:101",
                                          "type": "",
                                          "value": "0x7f"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "and",
                                        "nodeType": "YulIdentifier",
                                        "src": "12635:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12635:17:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "12625:6:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "12603:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "12596:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12596:26:101"
                              },
                              "nodeType": "YulIf",
                              "src": "12593:2:101"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "12713:168:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "12734:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "12737:77:101",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "12727:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12727:88:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "12727:88:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "12835:1:101",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "12838:4:101",
                                          "type": "",
                                          "value": "0x22"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "12828:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12828:15:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "12828:15:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "12863:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "12866:4:101",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "12856:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12856:15:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "12856:15:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "12669:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "12692:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12700:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "12689:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12689:14:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "12666:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12666:38:101"
                              },
                              "nodeType": "YulIf",
                              "src": "12663:2:101"
                            }
                          ]
                        },
                        "name": "extract_byte_array_length",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "data",
                            "nodeType": "YulTypedName",
                            "src": "12485:4:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "12494:6:101",
                            "type": ""
                          }
                        ],
                        "src": "12450:437:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12924:152:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12941:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12944:77:101",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12934:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12934:88:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12934:88:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13038:1:101",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13041:4:101",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13031:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13031:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13031:15:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13062:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13065:4:101",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "13055:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13055:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13055:15:101"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "12892:184:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13113:152:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13130:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13133:77:101",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13123:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13123:88:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13123:88:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13227:1:101",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13230:4:101",
                                    "type": "",
                                    "value": "0x21"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13220:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13220:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13220:15:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13251:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13254:4:101",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "13244:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13244:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13244:15:101"
                            }
                          ]
                        },
                        "name": "panic_error_0x21",
                        "nodeType": "YulFunctionDefinition",
                        "src": "13081:184:101"
                      }
                    ]
                  },
                  "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": 101,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {
                "943": [
                  {
                    "length": 32,
                    "start": 2038
                  }
                ],
                "2470": [
                  {
                    "length": 32,
                    "start": 3287
                  }
                ],
                "2472": [
                  {
                    "length": 32,
                    "start": 3245
                  }
                ],
                "2474": [
                  {
                    "length": 32,
                    "start": 3203
                  }
                ],
                "2476": [
                  {
                    "length": 32,
                    "start": 3370
                  }
                ],
                "2478": [
                  {
                    "length": 32,
                    "start": 3407
                  }
                ],
                "2480": [
                  {
                    "length": 32,
                    "start": 3328
                  }
                ],
                "5848": [
                  {
                    "length": 32,
                    "start": 739
                  },
                  {
                    "length": 32,
                    "start": 1247
                  },
                  {
                    "length": 32,
                    "start": 1381
                  },
                  {
                    "length": 32,
                    "start": 1630
                  }
                ],
                "5851": [
                  {
                    "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:37:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2141:98:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4238:166;;;;;;:::i;:::-;;:::i;:::-;;;2806:14:101;;2799:22;2781:41;;2769:2;2754:18;4238:166:4;2736:92:101;3229:106:4;3316:12;;3229:106;;;2979:25:101;;;2967:2;2952:18;3229:106:4;2934:76:101;4871:478:4;;;;;;:::i;:::-;;:::i;3868:98:37:-;;;12170:4:101;3950:9:37;12158:17:101;12140:36;;12128:2;12113:18;3868:98:37;12095:87:101;2506:113:7;;;:::i;5744:212:4:-;;;;;;:::i;:::-;;:::i;2328:171:37:-;;;;;;:::i;:::-;;:::i;:::-;;3357:312;;;;;;:::i;:::-;;:::i;3393:125:4:-;;;;;;:::i;:::-;-1:-1:-1;;;;;3493:18:4;3467:7;3493:18;;;;;;;;;;;;3393:125;2256:126:7;;;;;;:::i;:::-;;:::i;2774:171:37:-;;;;;;:::i;:::-;;:::i;2352:102:4:-;;;:::i;6443:405::-;;;;;;:::i;:::-;;:::i;3721:172::-;;;;;;:::i;:::-;;:::i;1569:626:7:-;;;;;;:::i;:::-;;:::i;3951:149:4:-;;;;;;:::i;:::-;-1:-1:-1;;;;;4066:18:4;;;4040:7;4066:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3951:149;540:44:37;;;;;;;;-1:-1:-1;;;;;2574:55:101;;;2556:74;;2544:2;2529:18;540:44:37;2511:125:101;2141:98:4;2195:13;2227:5;2220:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2141:98;:::o;4238:166::-;4321:4;4337:39;719:10:13;4360:7:4;4369:6;4337:8;:39::i;:::-;-1:-1:-1;4393:4:4;4238:166;;;;:::o;4871:478::-;5007:4;5023:36;5033:6;5041:9;5052:6;5023:9;:36::i;:::-;-1:-1:-1;;;;;5097:19:4;;5070:24;5097:19;;;:11;:19;;;;;;;;719:10:13;5097:33:4;;;;;;;;5148:26;;;;5140:79;;;;-1:-1:-1;;;5140:79:4;;9270:2:101;5140:79:4;;;9252:21:101;9309:2;9289:18;;;9282:30;9348:34;9328:18;;;9321:62;9419:10;9399:18;;;9392:38;9447:19;;5140:79:4;;;;;;;;;5253:57;5262:6;719:10:13;5303:6:4;5284:16;:25;5253:8;:57::i;:::-;-1:-1:-1;5338:4:4;;4871:478;-1:-1:-1;;;;4871:478:4:o;2506:113:7:-;2566:7;2592:20;:18;:20::i;:::-;2585:27;;2506:113;:::o;5744:212:4:-;719:10:13;5832:4:4;5880:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;5880:34:4;;;;;;;;;;5832:4;;5848:80;;5871:7;;5880:47;;5917:10;;5880:47;:::i;:::-;5848:8;:80::i;2328:171:37:-;1039:10;-1:-1:-1;;;;;1061:10:37;1039:33;;1031:77;;;;-1:-1:-1;;;1031:77:37;;10892:2:101;1031:77:37;;;10874:21:101;10931:2;10911:18;;;10904:30;10970:33;10950:18;;;10943:61;11021:18;;1031:77:37;10864:181:101;1031:77:37;2471:21:::1;2477:5;2484:7;2471:5;:21::i;:::-;2328:171:::0;;:::o;3357:312::-;1039:10;-1:-1:-1;;;;;1061:10:37;1039:33;;1031:77;;;;-1:-1:-1;;;1031:77:37;;10892:2:101;1031:77:37;;;10874:21:101;10931:2;10911:18;;;10904:30;10970:33;10950:18;;;10943:61;11021:18;;1031:77:37;10864:181:101;1031:77:37;3534:5:::1;-1:-1:-1::0;;;;;3521:18:37::1;:9;-1:-1:-1::0;;;;;3521:18:37::1;;3517:114;;-1:-1:-1::0;;;;;4066:18:4;;;4040:7;4066:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;3555:65:37::1;::::0;4066:18:4;;:27;;3582:37:37::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:7:-;-1:-1:-1;;;;;2351:14:7;;2325:7;2351:14;;;:7;:14;;;;;918::14;2351:24:7;2344:31;2256:126;-1:-1:-1;;2256:126:7:o;2774:171:37:-;1039:10;-1:-1:-1;;;;;1061:10:37;1039:33;;1031:77;;;;-1:-1:-1;;;1031:77:37;;10892:2:101;1031:77:37;;;10874:21:101;10931:2;10911:18;;;10904:30;10970:33;10950:18;;;10943:61;11021:18;;1031:77:37;10864:181:101;1031:77:37;2917:21:::1;2923:5;2930:7;2917:5;:21::i;2352:102:4:-:0;2408:13;2440:7;2433:14;;;;;:::i;6443:405::-;719:10:13;6536:4:4;6579:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;6579:34:4;;;;;;;;;;6631:35;;;;6623:85;;;;-1:-1:-1;;;6623:85:4;;11252:2:101;6623:85:4;;;11234:21:101;11291:2;11271:18;;;11264:30;11330:34;11310:18;;;11303:62;11401:7;11381:18;;;11374:35;11426:19;;6623:85:4;11224:227:101;6623:85:4;6742:67;719:10:13;6765:7:4;6793:15;6774:16;:34;6742:8;:67::i;:::-;-1:-1:-1;6837:4:4;;6443:405;-1:-1:-1;;;6443:405:4:o;3721:172::-;3807:4;3823:42;719:10:13;3847:9:4;3858:6;3823:9;:42::i;1569:626:7:-;1804:8;1785:15;:27;;1777:69;;;;-1:-1:-1;;;1777:69:7;;7340:2:101;1777:69:7;;;7322:21:101;7379:2;7359:18;;;7352:30;7418:31;7398:18;;;7391:59;7467:18;;1777:69:7;7312:179:101;1777:69:7;1857:18;1899:16;1917:5;1924:7;1933:5;1940:16;1950:5;1940:9;:16::i;:::-;1888:79;;;;;;3302:25:101;;;;-1:-1:-1;;;;;3424:15:101;;;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:7;;;;;;;;;;;;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:7;:6;-1:-1:-1;;;;;2096:15:7;;2088:58;;;;-1:-1:-1;;;2088:58:7;;8911:2:101;2088:58:7;;;8893:21:101;8950:2;8930:18;;;8923:30;8989:32;8969:18;;;8962:60;9039:18;;2088:58:7;8883:180:101;2088:58:7;2157:31;2166:5;2173:7;2182:5;2157:8;:31::i;:::-;1767:428;;;1569:626;;;;;;;:::o;10019:370:4:-;-1:-1:-1;;;;;10150:19:4;;10142:68;;;;-1:-1:-1;;;10142:68:4;;10487:2:101;10142:68:4;;;10469:21:101;10526:2;10506:18;;;10499:30;10565:34;10545:18;;;10538:62;10636:6;10616:18;;;10609:34;10660:19;;10142:68:4;10459:226:101;10142:68:4;-1:-1:-1;;;;;10228:21:4;;10220:68;;;;-1:-1:-1;;;10220:68:4;;6937:2:101;10220:68:4;;;6919:21:101;6976:2;6956:18;;;6949:30;7015:34;6995:18;;;6988:62;7086:4;7066:18;;;7059:32;7108:19;;10220:68:4;6909:224:101;10220:68:4;-1:-1:-1;;;;;10299:18:4;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10350:32;;2979:25:101;;;10350:32:4;;2952:18:101;10350:32:4;;;;;;;10019:370;;;:::o;7322:713::-;-1:-1:-1;;;;;7457:20:4;;7449:70;;;;-1:-1:-1;;;7449:70:4;;10081:2:101;7449:70:4;;;10063:21:101;10120:2;10100:18;;;10093:30;10159:34;10139:18;;;10132:62;10230:7;10210:18;;;10203:35;10255:19;;7449:70:4;10053:227:101;7449:70:4;-1:-1:-1;;;;;7537:23:4;;7529:71;;;;-1:-1:-1;;;7529:71:4;;5770:2:101;7529:71:4;;;5752:21:101;5809:2;5789:18;;;5782:30;5848:34;5828:18;;;5821:62;5919:5;5899:18;;;5892:33;5942:19;;7529:71:4;5742:225:101;7529:71:4;-1:-1:-1;;;;;7693:17:4;;7669:21;7693:17;;;;;;;;;;;7728:23;;;;7720:74;;;;-1:-1:-1;;;7720:74:4;;7698:2:101;7720:74:4;;;7680:21:101;7737:2;7717:18;;;7710:30;7776:34;7756:18;;;7749:62;7847:8;7827:18;;;7820:36;7873:19;;7720:74:4;7670:228:101;7720:74:4;-1:-1:-1;;;;;7828:17:4;;;: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:4;7945:6;-1:-1:-1;;;;;7936:35:4;;7964:6;7936:35;;;;2979:25:101;;2967:2;2952:18;;2934:76;7936:35:4;;;;;;;;7439:596;7322:713;;;:::o;3143:308:17:-;3196:7;3227:4;-1:-1:-1;;;;;3236:12:17;3219:29;;:66;;;;;3269:16;3252:13;:33;3219:66;3215:230;;;-1:-1:-1;3308:24:17;;3143:308::o;3215:230::-;-1:-1:-1;3633:73:17;;;3392:10;3633:73;;;;3893:25:101;;;;3404:12:17;3934:18:101;;;3927:34;3418:15:17;3977:18:101;;;3970:34;3677:13:17;4020:18:101;;;4013:34;3700:4:17;4063:19:101;;;;4056:84;;;;3633:73:17;;;;;;;;;;3865:19:101;;;;3633:73:17;;;3623:84;;;;;;2506:113:7:o;8311:389:4:-;-1:-1:-1;;;;;8394:21:4;;8386:65;;;;-1:-1:-1;;;8386:65:4;;11658:2:101;8386:65:4;;;11640:21:101;11697:2;11677:18;;;11670:30;11736:33;11716:18;;;11709:61;11787:18;;8386:65:4;11630:181:101;8386:65:4;8538:6;8522:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;8554:18:4;;:9;:18;;;;;;;;;;:28;;8576:6;;8554:9;:28;;8576:6;;8554:28;:::i;:::-;;;;-1:-1:-1;;8597:37:4;;2979:25:101;;;-1:-1:-1;;;;;8597:37:4;;;8614:1;;8597:37;;2967:2:101;2952:18;8597:37:4;;;;;;;2328:171:37;;:::o;9020:576:4:-;-1:-1:-1;;;;;9103:21:4;;9095:67;;;;-1:-1:-1;;;9095:67:4;;9679:2:101;9095:67:4;;;9661:21:101;9718:2;9698:18;;;9691:30;9757:34;9737:18;;;9730:62;9828:3;9808:18;;;9801:31;9849:19;;9095:67:4;9651:223:101;9095:67:4;-1:-1:-1;;;;;9258:18:4;;9233:22;9258:18;;;;;;;;;;;9294:24;;;;9286:71;;;;-1:-1:-1;;;9286:71:4;;6174:2:101;9286:71:4;;;6156:21:101;6213:2;6193:18;;;6186:30;6252:34;6232:18;;;6225:62;6323:4;6303:18;;;6296:32;6345:19;;9286:71:4;6146:224:101;9286:71:4;-1:-1:-1;;;;;9391:18:4;;: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:4;;2979:25:101;;;9519:1:4;;-1:-1:-1;;;;;9493:37:4;;;;;2967:2:101;2952:18;9493:37:4;;;;;;;3357:312:37;;;:::o;2750:203:7:-;-1:-1:-1;;;;;2870:14:7;;2810:15;2870:14;;;:7;:14;;;;;918::14;;1050:1;1032:19;;;;918:14;2929:17:7;2827:126;2750:203;;;:::o;4339:165:17:-;4416:7;4442:55;4464:20;:18;:20::i;:::-;4486:10;9254:57:16;;2231:66:101;9254:57:16;;;2219:79:101;2314:11;;;2307:27;;;2350:12;;;2343:28;;;9218:7:16;;2387:12:101;;9254:57:16;;;;;;;;;;;;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:16;7480:270;-1:-1:-1;;;;;7480:270:16:o;5744:1603::-;5870:7;;6794:66;6781:79;;6777:161;;;-1:-1:-1;6892:1:16;;-1:-1:-1;6896:30:16;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:16;;-1:-1:-1;7005:30:16;6985:51;;6947:100;7158:24;;;7141:14;7158:24;;;;;;;;;4378:25:101;;;4451:4;4439:17;;4419:18;;;4412:45;;;;4473:18;;;4466:34;;;4516:18;;;4509:34;;;7158:24:16;;4350:19:101;;7158:24:16;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;7158:24:16;;-1:-1:-1;;7158:24:16;;;-1:-1:-1;;;;;;;7196:20:16;;7192:101;;7248:1;7252:29;7232:50;;;;;;;7192:101;7311:6;-1:-1:-1;7319:20:16;;-1:-1:-1;5744:1603:16;;;;;;;;:::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:16;;5417:2:101;751:34:16;;;5399:21:101;5456:2;5436:18;;;5429:30;5495:26;5475:18;;;5468:54;5539:18;;751:34:16;5389:174:101;693:465:16;815:35;806:5;:44;;;;;;;;:::i;:::-;;802:356;;;866:41;;-1:-1:-1;;;866:41:16;;6577:2:101;866:41:16;;;6559:21:101;6616:2;6596:18;;;6589:30;6655:33;6635:18;;;6628:61;6706:18;;866:41:16;6549:181:101;802:356:16;937:30;928:5;:39;;;;;;;;:::i;:::-;;924:234;;;983:44;;-1:-1:-1;;;983:44:16;;8105:2:101;983:44:16;;;8087:21:101;8144:2;8124:18;;;8117:30;8183:34;8163:18;;;8156:62;8254:4;8234:18;;;8227:32;8276:19;;983:44:16;8077:224:101;924:234:16;1057:30;1048:5;:39;;;;;;;;:::i;:::-;;1044:114;;;1103:44;;-1:-1:-1;;;1103:44:16;;8508:2:101;1103:44:16;;;8490:21:101;8547:2;8527:18;;;8520:30;8586:34;8566:18;;;8559:62;8657:4;8637:18;;;8630:32;8679:19;;1103:44:16;8480:224:101;1044:114:16;533:631;:::o;14:196:101:-;82:20;;-1:-1:-1;;;;;131:54:101;;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:101: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:101;;;;1582:5;1634:3;1619:19;;1606:33;;-1:-1:-1;1686:3:101;1671:19;;;1658:33;;1174:523;-1:-1:-1;;1174:523:101: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:101: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:101;5114:15;-1:-1:-1;;5110:88:101;5095:104;;;;5201:2;5091:113;;4675:535;-1:-1:-1;;;4675:535:101:o;12187:128::-;12227:3;12258:1;12254:6;12251:1;12248:13;12245:2;;;12264:18;;:::i;:::-;-1:-1:-1;12300:9:101;;12235:80::o;12320:125::-;12360:4;12388:1;12385;12382:8;12379:2;;;12393:18;;:::i;:::-;-1:-1:-1;12430:9:101;;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:101;12727:88;12838:4;12835:1;12828:15;12866:4;12863:1;12856:15;12892:184;-1:-1:-1;;;12941:1:101;12934:88;13041:4;13038:1;13031:15;13065:4;13062:1;13055:15;13081:184;-1:-1:-1;;;13130:1:101;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": 282,
                "contract": "@pooltogether/v4-core/contracts/ControlledToken.sol:ControlledToken",
                "label": "_balances",
                "offset": 0,
                "slot": "0",
                "type": "t_mapping(t_address,t_uint256)"
              },
              {
                "astId": 288,
                "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": 290,
                "contract": "@pooltogether/v4-core/contracts/ControlledToken.sol:ControlledToken",
                "label": "_totalSupply",
                "offset": 0,
                "slot": "2",
                "type": "t_uint256"
              },
              {
                "astId": 292,
                "contract": "@pooltogether/v4-core/contracts/ControlledToken.sol:ControlledToken",
                "label": "_name",
                "offset": 0,
                "slot": "3",
                "type": "t_string_storage"
              },
              {
                "astId": 294,
                "contract": "@pooltogether/v4-core/contracts/ControlledToken.sol:ControlledToken",
                "label": "_symbol",
                "offset": 0,
                "slot": "4",
                "type": "t_string_storage"
              },
              {
                "astId": 938,
                "contract": "@pooltogether/v4-core/contracts/ControlledToken.sol:ControlledToken",
                "label": "_nonces",
                "offset": 0,
                "slot": "5",
                "type": "t_mapping(t_address,t_struct(Counter)1803_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)1803_storage)": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => struct Counters.Counter)",
                "numberOfBytes": "32",
                "value": "t_struct(Counter)1803_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)1803_storage": {
                "encoding": "inplace",
                "label": "struct Counters.Counter",
                "members": [
                  {
                    "astId": 1802,
                    "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": {
                "@_5230": {
                  "entryPoint": null,
                  "id": 5230,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_6196": {
                  "entryPoint": null,
                  "id": 6196,
                  "parameterSlots": 7,
                  "returnSlots": 0
                },
                "@_setBeaconPeriodSeconds_6869": {
                  "entryPoint": 648,
                  "id": 6869,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setDrawBuffer_6847": {
                  "entryPoint": 829,
                  "id": 6847,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_setOwner_5327": {
                  "entryPoint": 568,
                  "id": 5327,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setRngService_6678": {
                  "entryPoint": 1139,
                  "id": 6678,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setRngTimeout_6891": {
                  "entryPoint": 1213,
                  "id": 6891,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "abi_decode_tuple_t_addresst_contract$_IDrawBuffer_$10930t_contract$_RNGInterface_$5835t_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:4142:101",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:101",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "73:108:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "83:22:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "98:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "92:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "92:13:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "83:5:101"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "159:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "168:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "171:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "161:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "161:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "161:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "127:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "138:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "145:10:101",
                                            "type": "",
                                            "value": "0xffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "134:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "134:22:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "124:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "124:33:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "117:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "117:41:101"
                              },
                              "nodeType": "YulIf",
                              "src": "114:2:101"
                            }
                          ]
                        },
                        "name": "abi_decode_uint32_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "52:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "63:5:101",
                            "type": ""
                          }
                        ],
                        "src": "14:167:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "407:766:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "454:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "463:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "466:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "456:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "456:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "456:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "428:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "437:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "424:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "424:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "449:3:101",
                                    "type": "",
                                    "value": "224"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "420:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "420:33:101"
                              },
                              "nodeType": "YulIf",
                              "src": "417:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "479:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "498:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "492:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "492:16:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "483:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "542:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "517:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "517:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "517:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "557:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "567:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "557:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "581:40:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "606:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "617:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "602:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "602:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "596:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "596:25:101"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "585:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "655:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "630:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "630:33:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "630:33:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "672:17:101",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "682:7:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "672:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "698:40:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "723:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "734:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "719:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "719:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "713:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "713:25:101"
                              },
                              "variables": [
                                {
                                  "name": "value_2",
                                  "nodeType": "YulTypedName",
                                  "src": "702:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "772:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "747:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "747:33:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "747:33:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "789:17:101",
                              "value": {
                                "name": "value_2",
                                "nodeType": "YulIdentifier",
                                "src": "799:7:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "789:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "815:58:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "858:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "869:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "854:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "854:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "825:28:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "825:48:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "815:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "882:41:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "907:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "918:3:101",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "903:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "903:19:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "897:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "897:26:101"
                              },
                              "variables": [
                                {
                                  "name": "value_3",
                                  "nodeType": "YulTypedName",
                                  "src": "886:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "989:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "998:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1001:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "991:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "991:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "991:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "945:7:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value_3",
                                            "nodeType": "YulIdentifier",
                                            "src": "958:7:101"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "975:2:101",
                                                    "type": "",
                                                    "value": "64"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "979:1:101",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "971:3:101"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "971:10:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "983:1:101",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "967:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "967:18:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "954:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "954:32:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "942:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "942:45:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "935:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "935:53:101"
                              },
                              "nodeType": "YulIf",
                              "src": "932:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1014:17:101",
                              "value": {
                                "name": "value_3",
                                "nodeType": "YulIdentifier",
                                "src": "1024:7:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value4",
                                  "nodeType": "YulIdentifier",
                                  "src": "1014:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1040:59:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1083:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1094:3:101",
                                        "type": "",
                                        "value": "160"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1079:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1079:19:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1050:28:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1050:49:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value5",
                                  "nodeType": "YulIdentifier",
                                  "src": "1040:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1108:59:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1151:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1162:3:101",
                                        "type": "",
                                        "value": "192"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1147:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1147:19:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1118:28:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1118:49:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value6",
                                  "nodeType": "YulIdentifier",
                                  "src": "1108:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_contract$_IDrawBuffer_$10930t_contract$_RNGInterface_$5835t_uint32t_uint64t_uint32t_uint32_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "325:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "336:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "348:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "356:6:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "364:6:101",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "372:6:101",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "380:6:101",
                            "type": ""
                          },
                          {
                            "name": "value5",
                            "nodeType": "YulTypedName",
                            "src": "388:6:101",
                            "type": ""
                          },
                          {
                            "name": "value6",
                            "nodeType": "YulTypedName",
                            "src": "396:6:101",
                            "type": ""
                          }
                        ],
                        "src": "186:987:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1352:181:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1369:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1380:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1362:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1362:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1362:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1403:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1414:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1399:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1399:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1419:2:101",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1392:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1392:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1392:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1442:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1453:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1438:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1438:18:101"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f6e6578742d647261772d69642d6774652d6f6e65",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "1458:33:101",
                                    "type": "",
                                    "value": "DrawBeacon/next-draw-id-gte-one"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1431:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1431:61:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1431:61:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1501:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1513:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1524:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1509:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1509:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1501:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_2e1f6f2153738bab0f111b529052ab9d11cec8be1adca6d957057b7794d36189__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1329:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1343:4:101",
                            "type": ""
                          }
                        ],
                        "src": "1178:355:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1712:230:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1729:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1740:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1722:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1722:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1722:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1763:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1774:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1759:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1759:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1779:2:101",
                                    "type": "",
                                    "value": "40"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1752:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1752:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1752:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1802:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1813:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1798:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1798:18:101"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f6578697374696e672d647261772d686973746f7279",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "1818:34:101",
                                    "type": "",
                                    "value": "DrawBeacon/existing-draw-history"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1791:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1791:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1791:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1873:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1884:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1869:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1869:18:101"
                                  },
                                  {
                                    "hexValue": "2d61646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "1889:10:101",
                                    "type": "",
                                    "value": "-address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1862:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1862:38:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1862:38:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1909:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1921:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1932:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1917:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1917:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1909:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_3be8147c31d2884bcaa2a207df52248ea7ac3a0f8dc6f7310d73127aa47b7cbf__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1689:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1703:4:101",
                            "type": ""
                          }
                        ],
                        "src": "1538:404:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2121:232:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2138:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2149:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2131:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2131:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2131:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2172:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2183:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2168:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2168:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2188:2:101",
                                    "type": "",
                                    "value": "42"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2161:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2161:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2161:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2211:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2222:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2207:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2207:18:101"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f626561636f6e2d706572696f642d67726561746572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2227:34:101",
                                    "type": "",
                                    "value": "DrawBeacon/beacon-period-greater"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2200:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2200:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2200:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2282:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2293:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2278:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2278:18:101"
                                  },
                                  {
                                    "hexValue": "2d7468616e2d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2298:12:101",
                                    "type": "",
                                    "value": "-than-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2271:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2271:40:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2271:40:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2320:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2332:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2343:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2328:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2328:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2320:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_4450143396759a6f8e989ffcaefe78ca8a77a2cd7aa26f6cc28130ae479f43df__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2098:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2112:4:101",
                            "type": ""
                          }
                        ],
                        "src": "1947:406:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2532:223:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2549:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2560:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2542:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2542:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2542:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2583:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2594:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2579:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2579:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2599:2:101",
                                    "type": "",
                                    "value": "33"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2572:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2572:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2572:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2622:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2633:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2618:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2618:18:101"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f726e672d74696d656f75742d67742d36302d736563",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2638:34:101",
                                    "type": "",
                                    "value": "DrawBeacon/rng-timeout-gt-60-sec"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2611:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2611:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2611:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2693:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2704:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2689:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2689:18:101"
                                  },
                                  {
                                    "hexValue": "73",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2709:3:101",
                                    "type": "",
                                    "value": "s"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2682:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2682:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2682:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2722:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2734:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2745:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2730:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2730:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2722:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_660d0c484867e8909b8adf8f2abc0ff54cab3d27dba87c86925ba023c6c05bbe__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2509:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2523:4:101",
                            "type": ""
                          }
                        ],
                        "src": "2358:397:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2934:173:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2951:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2962:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2944:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2944:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2944:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2985:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2996:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2981:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2981:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3001:2:101",
                                    "type": "",
                                    "value": "23"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2974:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2974:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2974:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3024:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3035:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3020:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3020:18:101"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f726e672d6e6f742d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3040:25:101",
                                    "type": "",
                                    "value": "DrawBeacon/rng-not-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3013:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3013:53:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3013:53:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3075:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3087:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3098:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3083:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3083:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3075:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d15f1d335d4e5d31fe5a2ef60ebf117a328854d80ecc8b909c3df0aa87e4a529__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2911:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2925:4:101",
                            "type": ""
                          }
                        ],
                        "src": "2760:347:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3286:230:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3303:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3314:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3296:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3296:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3296:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3337:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3348:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3333:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3333:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3353:2:101",
                                    "type": "",
                                    "value": "40"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3326:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3326:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3326:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3376:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3387:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3372:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3372:18:101"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f647261772d686973746f72792d6e6f742d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3392:34:101",
                                    "type": "",
                                    "value": "DrawBeacon/draw-history-not-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3365:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3365:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3365:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3447:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3458:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3443:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3443:18:101"
                                  },
                                  {
                                    "hexValue": "2d61646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3463:10:101",
                                    "type": "",
                                    "value": "-address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3436:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3436:38:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3436:38:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3483:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3495:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3506:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3491:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3491:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3483:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_e9707589ebe071be995320b6578599274695e9c113fb818821beb7070c10f2a9__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3263:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3277:4:101",
                            "type": ""
                          }
                        ],
                        "src": "3112:404:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3620:93:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3630:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3642:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3653:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3638:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3638:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3630:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3672:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "3687:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3695:10:101",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3683:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3683:23:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3665:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3665:42:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3665:42:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3589:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3600:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3611:4:101",
                            "type": ""
                          }
                        ],
                        "src": "3521:192:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3843:161:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3853:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3865:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3876:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3861:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3861:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3853:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3895:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "3910:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3918:10:101",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3906:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3906:23:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3888:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3888:42:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3888:42:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3950:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3961:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3946:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3946:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "3970:6:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "3986:2:101",
                                                "type": "",
                                                "value": "64"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "3990:1:101",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "3982:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "3982:10:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "3994:1:101",
                                            "type": "",
                                            "value": "1"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "sub",
                                          "nodeType": "YulIdentifier",
                                          "src": "3978:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3978:18:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3966:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3966:31:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3939:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3939:59:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3939:59:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint32_t_uint64__to_t_uint32_t_uint64__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3804:9:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "3815:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3823:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3834:4:101",
                            "type": ""
                          }
                        ],
                        "src": "3718:286:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4054:86:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4118:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4127:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4130:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4120:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4120:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4120:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "4077:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "4088:5:101"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "4103:3:101",
                                                    "type": "",
                                                    "value": "160"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "4108:1:101",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "4099:3:101"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "4099:11:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "4112:1:101",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "4095:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4095:19:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "4084:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4084:31:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "4074:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4074:42:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "4067:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4067:50:101"
                              },
                              "nodeType": "YulIf",
                              "src": "4064:2:101"
                            }
                          ]
                        },
                        "name": "validator_revert_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "4043:5:101",
                            "type": ""
                          }
                        ],
                        "src": "4009:131:101"
                      }
                    ]
                  },
                  "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_$10930t_contract$_RNGInterface_$5835t_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": 101,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "60806040523480156200001157600080fd5b50604051620024293803806200242983398101604081905262000034916200058e565b86620000408162000238565b506000836001600160401b031611620000a25760405162461bcd60e51b815260206004820152602a6024820152600080516020620024098339815191526044820152692d7468616e2d7a65726f60b01b60648201526084015b60405180910390fd5b6001600160a01b038516620000fa5760405162461bcd60e51b815260206004820152601760248201527f44726177426561636f6e2f726e672d6e6f742d7a65726f000000000000000000604482015260640162000099565b60018463ffffffff161015620001535760405162461bcd60e51b815260206004820152601f60248201527f44726177426561636f6e2f6e6578742d647261772d69642d6774652d6f6e6500604482015260640162000099565b6005805463ffffffff861668010000000000000000026001600160601b03199091166001600160401b038616171790556200018e8262000288565b62000199866200033d565b50620001a58562000473565b620001b081620004bd565b6040805163ffffffff861681526001600160401b03851660208201527f3125f2f28108d5eabe48aa2a11adff21d6f9244f0436278992999404ba4fc5ad910160405180910390a16040516001600160401b038416907f9e5f7e6ac833c4735b5548bbeec59dac4d413789aa351fbe11a654dac0c4306c90600090a25050505050505062000652565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008163ffffffff1611620002e25760405162461bcd60e51b815260206004820152602a6024820152600080516020620024098339815191526044820152692d7468616e2d7a65726f60b01b606482015260840162000099565b6004805463ffffffff60c01b1916600160c01b63ffffffff8416908102919091179091556040519081527f4727494dbd863e2084366f539d6ec569aaf7ab78582a34f006f004266777cd19906020015b60405180910390a150565b6004546000906001600160a01b03908116908316620003b05760405162461bcd60e51b815260206004820152602860248201527f44726177426561636f6e2f647261772d686973746f72792d6e6f742d7a65726f6044820152672d6164647265737360c01b606482015260840162000099565b806001600160a01b0316836001600160a01b03161415620004255760405162461bcd60e51b815260206004820152602860248201527f44726177426561636f6e2f6578697374696e672d647261772d686973746f72796044820152672d6164647265737360c01b606482015260840162000099565b600480546001600160a01b0319166001600160a01b0385169081179091556040517feb70b03fab908e126e5efc33f8dfd2731fa89c716282a86769025f8dd4a6c1e090600090a25090919050565b600280546001600160a01b0319166001600160a01b0383169081179091556040517ff935763cc7c57ee8ed6318ed71e756cca0731294c9f46ff5b386f36d6ff1417a90600090a250565b603c8163ffffffff16116200051f5760405162461bcd60e51b815260206004820152602160248201527f44726177426561636f6e2f726e672d74696d656f75742d67742d36302d7365636044820152607360f81b606482015260840162000099565b6004805463ffffffff60a01b1916600160a01b63ffffffff8416908102919091179091556040519081527f521671714dd36d366adf3fe2efec91d3f58a3131aad68e268821d8144b5d08459060200162000332565b805163ffffffff811681146200058957600080fd5b919050565b600080600080600080600060e0888a031215620005aa57600080fd5b8751620005b78162000639565b6020890151909750620005ca8162000639565b6040890151909650620005dd8162000639565b9450620005ed6060890162000574565b60808901519094506001600160401b03811681146200060b57600080fd5b92506200061b60a0890162000574565b91506200062b60c0890162000574565b905092959891949750929550565b6001600160a01b03811681146200064f57600080fd5b50565b611da780620006626000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c8063738bbea811610104578063a104fd79116100a2578063d1e7765711610071578063d1e77657146103b5578063e30c3978146103bd578063e4a75bb8146103ce578063f2fde38b146103d657600080fd5b8063a104fd791461036d578063a3ae35ab14610375578063ab70d49c14610388578063c57708c21461039b57600080fd5b80637f4296d7116100de5780637f4296d71461032e57806389c36f8e146103415780638da5cb5b14610349578063919bead01461035a57600080fd5b8063738bbea81461030d57806375e38f16146103155780637ce52b181461031d57600080fd5b80633e7a39081161017c5780634e71e0c81161014b5780634e71e0c8146102d45780635020ea56146102dc5780636bea5344146102ef578063715018a61461030557600080fd5b80633e7a39081461028a5780634019f2d61461029f578063412a616a146102c45780634aba4f6b146102cc57600080fd5b80631b5344a2116101b85780631b5344a2146102165780632a7ad6091461024d5780632ae168a61461025b57806339f92c301461026357600080fd5b80630996f6e1146101df5780630bdeecbd146101fc578063111070e414610206575b600080fd5b6101e76103e9565b60405190151581526020015b60405180910390f35b61020461040a565b005b60035463ffffffff1615156101e7565b60045474010000000000000000000000000000000000000000900463ffffffff165b60405163ffffffff90911681526020016101f3565b60035463ffffffff16610238565b6102046107b9565b60055467ffffffffffffffff165b60405167ffffffffffffffff90911681526020016101f3565b600454600160c01b900463ffffffff16610238565b6004546001600160a01b03165b6040516001600160a01b0390911681526020016101f3565b610204610aae565b6101e7610b78565b610204610c17565b6102046102ea366004611ada565b610ca5565b600354640100000000900463ffffffff16610238565b610204610d22565b6101e7610d97565b610271610e16565b6002546001600160a01b03166102ac565b61020461033c366004611a54565b610e20565b610271610e9a565b6000546001600160a01b03166102ac565b610204610368366004611ada565b610ec7565b610271610f41565b610271610383366004611b4e565b610f4b565b6102ac610396366004611a54565b610f7e565b60055468010000000000000000900463ffffffff16610238565b6101e7610ff2565b6001546001600160a01b03166102ac565b6101e7610ffc565b6102046103e4366004611a54565b61101e565b60006103f361115a565b8015610405575060035463ffffffff16155b905090565b60035463ffffffff166104645760405162461bcd60e51b815260206004820152601c60248201527f44726177426561636f6e2f726e672d6e6f742d7265717565737465640000000060448201526064015b60405180910390fd5b61046c610b78565b6104b85760405162461bcd60e51b815260206004820152601b60248201527f44726177426561636f6e2f726e672d6e6f742d636f6d706c6574650000000000604482015260640161045b565b6002546003546040517f9d2a5f9800000000000000000000000000000000000000000000000000000000815263ffffffff90911660048201526000916001600160a01b031690639d2a5f9890602401602060405180830381600087803b15801561052157600080fd5b505af1158015610535573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105599190611ac1565b60055460045491925063ffffffff68010000000000000000820481169267ffffffffffffffff90921691600160c01b90041660006105944290565b6040805160a08101825287815263ffffffff8781166020830190815260035468010000000000000000900467ffffffffffffffff90811684860190815289821660608601908152898516608087019081526004805498517f089eb925000000000000000000000000000000000000000000000000000000008152885191810191909152945186166024860152915183166044850152519091166064830152519091166084820152929350916001600160a01b039091169063089eb9259060a401602060405180830381600087803b15801561066e57600080fd5b505af1158015610682573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106a69190611af7565b5060006106b4858585611180565b6005805467ffffffffffffffff191667ffffffffffffffff831617905590506106de866001611bfd565b6005805463ffffffff9290921668010000000000000000027fffffffffffffffffffffffffffffffffffffffff00000000ffffffffffffffff909216919091179055600380547fffffffffffffffffffffffffffffffff000000000000000000000000000000001690556040518781527f13f646a3648ee5b5a0e8d6bc3d2d623fddf38fa7c8c5dfdbdbe6a913112edc6c9060200160405180910390a160405167ffffffffffffffff8216907f9e5f7e6ac833c4735b5548bbeec59dac4d413789aa351fbe11a654dac0c4306c90600090a250505050505050565b6107c161115a565b6108335760405162461bcd60e51b815260206004820152602160248201527f44726177426561636f6e2f626561636f6e2d706572696f642d6e6f742d6f766560448201527f7200000000000000000000000000000000000000000000000000000000000000606482015260840161045b565b60035463ffffffff16156108895760405162461bcd60e51b815260206004820181905260248201527f44726177426561636f6e2f726e672d616c72656164792d726571756573746564604482015260640161045b565b600254604080517f0d37b537000000000000000000000000000000000000000000000000000000008152815160009384936001600160a01b0390911692630d37b5379260048083019392829003018186803b1580156108e757600080fd5b505afa1580156108fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061091f9190611a71565b90925090506001600160a01b0382161580159061093c5750600081115b1561095b5760025461095b906001600160a01b038481169116836111c5565b600254604080517f8678a7b2000000000000000000000000000000000000000000000000000000008152815160009384936001600160a01b0390911692638678a7b2926004808301939282900301818787803b1580156109ba57600080fd5b505af11580156109ce573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109f29190611b14565b6003805463ffffffff8084166401000000000267ffffffffffffffff19909216908516171790559092509050610a254290565b6003805467ffffffffffffffff9290921668010000000000000000027fffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffff90921691909117905560405163ffffffff82811682528316907f0de3a7af7d3c2126e4fb96a7065b39f8bb17e3b9111c092e11236942fb38ca619060200160405180910390a250505050565b610ab6610d97565b610b025760405162461bcd60e51b815260206004820152601b60248201527f44726177426561636f6e2f726e672d6e6f742d74696d65646f75740000000000604482015260640161045b565b600380547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811690915560405163ffffffff640100000000830481168083529216919082907f67638a3a7093a89cc6046dca58aa93d6343e30847e8f84fc3759d9d4a3e6e38b9060200160405180910390a25050565b6002546003546040517f3a19b9bc00000000000000000000000000000000000000000000000000000000815263ffffffff90911660048201526000916001600160a01b031690633a19b9bc9060240160206040518083038186803b158015610bdf57600080fd5b505afa158015610bf3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104059190611a9f565b6001546001600160a01b03163314610c715760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e657200604482015260640161045b565b600154610c86906001600160a01b03166112f5565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b33610cb86000546001600160a01b031690565b6001600160a01b031614610d0e5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161045b565b610d16611352565b610d1f816113cc565b50565b33610d356000546001600160a01b031690565b6001600160a01b031614610d8b5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161045b565b610d9560006112f5565b565b60035460009068010000000000000000900467ffffffffffffffff16610dbd5750600090565b4260035460045467ffffffffffffffff92831692610e0692680100000000000000009004169074010000000000000000000000000000000000000000900463ffffffff16611c25565b67ffffffffffffffff1610905090565b60006104056114cc565b33610e336000546001600160a01b031690565b6001600160a01b031614610e895760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161045b565b610e91611352565b610d1f81611508565b6005546004546000916104059167ffffffffffffffff90911690600160c01b900463ffffffff1642611180565b33610eda6000546001600160a01b031690565b6001600160a01b031614610f305760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161045b565b610f38611352565b610d1f8161155f565b6000610405611647565b600554600454600091610f789167ffffffffffffffff90911690600160c01b900463ffffffff1684611180565b92915050565b600033610f936000546001600160a01b031690565b6001600160a01b031614610fe95760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161045b565b610f7882611672565b600061040561115a565b600061100f60035463ffffffff16151590565b80156104055750610405610b78565b336110316000546001600160a01b031690565b6001600160a01b0316146110875760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161045b565b6001600160a01b0381166111035760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161045b565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b60004267ffffffffffffffff1661116f611647565b67ffffffffffffffff161115905090565b60008063ffffffff84166111948685611cc6565b61119e9190611c48565b90506111b063ffffffff851682611c96565b6111ba9086611c25565b9150505b9392505050565b6040517fdd62ed3e0000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b038381166024830152600091839186169063dd62ed3e9060440160206040518083038186803b15801561122a57600080fd5b505afa15801561123e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112629190611ac1565b61126c9190611be5565b604080516001600160a01b038616602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f095ea7b3000000000000000000000000000000000000000000000000000000001790529091506112ef9085906117db565b50505050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6003544390640100000000900463ffffffff1615806113805750600354640100000000900463ffffffff1681105b610d1f5760405162461bcd60e51b815260206004820152601860248201527f44726177426561636f6e2f726e672d696e2d666c696768740000000000000000604482015260640161045b565b603c8163ffffffff16116114485760405162461bcd60e51b815260206004820152602160248201527f44726177426561636f6e2f726e672d74696d656f75742d67742d36302d73656360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161045b565b600480547fffffffffffffffff00000000ffffffffffffffffffffffffffffffffffffffff167401000000000000000000000000000000000000000063ffffffff8416908102919091179091556040519081527f521671714dd36d366adf3fe2efec91d3f58a3131aad68e268821d8144b5d0845906020015b60405180910390a150565b6000806114d7611647565b90504267ffffffffffffffff808216908316116114f75760009250505090565b6115018183611cc6565b9250505090565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517ff935763cc7c57ee8ed6318ed71e756cca0731294c9f46ff5b386f36d6ff1417a90600090a250565b60008163ffffffff16116115db5760405162461bcd60e51b815260206004820152602a60248201527f44726177426561636f6e2f626561636f6e2d706572696f642d6772656174657260448201527f2d7468616e2d7a65726f00000000000000000000000000000000000000000000606482015260840161045b565b600480547fffffffff00000000ffffffffffffffffffffffffffffffffffffffffffffffff16600160c01b63ffffffff8416908102919091179091556040519081527f4727494dbd863e2084366f539d6ec569aaf7ab78582a34f006f004266777cd19906020016114c1565b60045460055460009161040591600160c01b90910463ffffffff169067ffffffffffffffff16611c25565b6004546000906001600160a01b039081169083166116f85760405162461bcd60e51b815260206004820152602860248201527f44726177426561636f6e2f647261772d686973746f72792d6e6f742d7a65726f60448201527f2d61646472657373000000000000000000000000000000000000000000000000606482015260840161045b565b806001600160a01b0316836001600160a01b031614156117805760405162461bcd60e51b815260206004820152602860248201527f44726177426561636f6e2f6578697374696e672d647261772d686973746f727960448201527f2d61646472657373000000000000000000000000000000000000000000000000606482015260840161045b565b6004805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385169081179091556040517feb70b03fab908e126e5efc33f8dfd2731fa89c716282a86769025f8dd4a6c1e090600090a25090919050565b6000611830826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166118c59092919063ffffffff16565b8051909150156118c0578080602001905181019061184e9190611a9f565b6118c05760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f74207375636365656400000000000000000000000000000000000000000000606482015260840161045b565b505050565b60606118d484846000856118dc565b949350505050565b6060824710156119545760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c0000000000000000000000000000000000000000000000000000606482015260840161045b565b843b6119a25760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161045b565b600080866001600160a01b031685876040516119be9190611b78565b60006040518083038185875af1925050503d80600081146119fb576040519150601f19603f3d011682016040523d82523d6000602084013e611a00565b606091505b5091509150611a10828286611a1b565b979650505050505050565b60608315611a2a5750816111be565b825115611a3a5782518084602001fd5b8160405162461bcd60e51b815260040161045b9190611b94565b600060208284031215611a6657600080fd5b81356111be81611d4a565b60008060408385031215611a8457600080fd5b8251611a8f81611d4a565b6020939093015192949293505050565b600060208284031215611ab157600080fd5b815180151581146111be57600080fd5b600060208284031215611ad357600080fd5b5051919050565b600060208284031215611aec57600080fd5b81356111be81611d5f565b600060208284031215611b0957600080fd5b81516111be81611d5f565b60008060408385031215611b2757600080fd5b8251611b3281611d5f565b6020840151909250611b4381611d5f565b809150509250929050565b600060208284031215611b6057600080fd5b813567ffffffffffffffff811681146111be57600080fd5b60008251611b8a818460208701611cef565b9190910192915050565b6020815260008251806020840152611bb3816040850160208701611cef565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b60008219821115611bf857611bf8611d1b565b500190565b600063ffffffff808316818516808303821115611c1c57611c1c611d1b565b01949350505050565b600067ffffffffffffffff808316818516808303821115611c1c57611c1c611d1b565b600067ffffffffffffffff80841680611c8a577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b92169190910492915050565b600067ffffffffffffffff80831681851681830481118215151615611cbd57611cbd611d1b565b02949350505050565b600067ffffffffffffffff83811690831681811015611ce757611ce7611d1b565b039392505050565b60005b83811015611d0a578181015183820152602001611cf2565b838111156112ef5750506000910152565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6001600160a01b0381168114610d1f57600080fd5b63ffffffff81168114610d1f57600080fdfea264697066735822122026a73622d5365663009325e2c371c24fd86c7196f0d37bc8dc1288bf1cf7bea564736f6c6343000806003344726177426561636f6e2f626561636f6e2d706572696f642d67726561746572",
              "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 0x26 0xA7 CALLDATASIZE 0x22 0xD5 CALLDATASIZE JUMP PUSH4 0x9325E2 0xC3 PUSH18 0xC24FD86C7196F0D37BC8DC1288BF1CF7BEA5 PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER DIFFICULTY PUSH19 0x6177426561636F6E2F626561636F6E2D706572 PUSH10 0x6F642D67726561746572 ",
              "sourceMap": "1131:14710:38:-:0;;;3923:841;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4161:6;1648:24:33;4161:6:38;1648:9:33;:24::i;:::-;1603:76;4208:1:38::1;4187:18;-1:-1:-1::0;;;;;4187:22:38::1;;4179:77;;;::::0;-1:-1:-1;;;4179:77:38;;2149:2:101;4179:77:38::1;::::0;::::1;2131:21:101::0;2188:2;2168:18;;;2161:30;-1:-1:-1;;;;;;;;;;;2207:18:101;;;2200:62;-1:-1:-1;;;2278:18:101;;;2271:40;2328:19;;4179:77:38::1;;;;;;;;;-1:-1:-1::0;;;;;4274:27:38;::::1;4266:63;;;::::0;-1:-1:-1;;;4266:63:38;;2962:2:101;4266:63:38::1;::::0;::::1;2944:21:101::0;3001:2;2981:18;;;2974:30;3040:25;3020:18;;;3013:53;3083:18;;4266:63:38::1;2934:173:101::0;4266:63:38::1;4362:1;4347:11;:16;;;;4339:60;;;::::0;-1:-1:-1;;;4339:60:38;;1380:2:101;4339:60:38::1;::::0;::::1;1362:21:101::0;1419:2;1399:18;;;1392:30;1458:33;1438:18;;;1431:61;1509:18;;4339:60:38::1;1352:181:101::0;4339:60:38::1;4410:21;:42:::0;;4462:24:::1;::::0;::::1;::::0;::::1;-1:-1:-1::0;;;;;;4462:24:38;;;-1:-1:-1;;;;;4410:42:38;::::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:38::1;4604:4:::0;4589:14:::1;:20::i;:::-;4619:27;4634:11:::0;4619:14:::1;:27::i;:::-;4662:41;::::0;;3918:10:101;3906:23;;3888:42;;-1:-1:-1;;;;;3966:31:101;;3961:2;3946:18;;3939:59;4662:41:38::1;::::0;3861:18:101;4662:41:38::1;;;;;;;4718:39;::::0;-1:-1:-1;;;;;4718:39:38;::::1;::::0;::::1;::::0;;;::::1;3923:841:::0;;;;;;;1131:14710;;3470:174:33;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:33;;;-1:-1:-1;;;;;;3562:18:33;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;15109:283:38:-;15221:1;15198:20;:24;;;15190:79;;;;-1:-1:-1;;;15190:79:38;;2149:2:101;15190:79:38;;;2131:21:101;2188:2;2168:18;;;2161:30;-1:-1:-1;;;;;;;;;;;2207:18:101;;;2200:62;-1:-1:-1;;;2278:18:101;;;2271:40;2328:19;;15190:79:38;2121:232:101;15190:79:38;15279:19;:42;;-1:-1:-1;;;;15279:42:38;-1:-1:-1;;;15279:42:38;;;;;;;;;;;;;15337:48;;3665:42:101;;;15337:48:38;;3653:2:101;3638:18;15337:48:38;;;;;;;;15109:283;:::o;14424:516::-;14551:10;;14494:11;;-1:-1:-1;;;;;14551:10:38;;;;14579:37;;14571:90;;;;-1:-1:-1;;;14571:90:38;;3314:2:101;14571:90:38;;;3296:21:101;3353:2;3333:18;;;3326:30;3392:34;3372:18;;;3365:62;-1:-1:-1;;;3443:18:101;;;3436:38;3491:19;;14571:90:38;3286:230:101;14571:90:38;14728:19;-1:-1:-1;;;;;14693:55:38;14701:14;-1:-1:-1;;;;;14693:55:38;;;14672:142;;;;-1:-1:-1;;;14672:142:38;;1740:2:101;14672:142:38;;;1722:21:101;1779:2;1759:18;;;1752:30;1818:34;1798:18;;;1791:62;-1:-1:-1;;;1869:18:101;;;1862:38;1917:19;;14672:142:38;1712:230:101;14672:142:38;14825:10;:27;;-1:-1:-1;;;;;;14825:27:38;-1:-1:-1;;;;;14825:27:38;;;;;;;;14868:33;;;;-1:-1:-1;;14868:33:38;-1:-1:-1;14919:14:38;;14424:516;-1:-1:-1;14424:516:38:o;11695:142::-;11768:3;:17;;-1:-1:-1;;;;;;11768:17:38;-1:-1:-1;;;;;11768:17:38;;;;;;;;11800:30;;;;-1:-1:-1;;11800:30:38;11695:142;:::o;15631:208::-;15716:2;15702:11;:16;;;15694:62;;;;-1:-1:-1;;;15694:62:38;;2560:2:101;15694:62:38;;;2542:21:101;2599:2;2579:18;;;2572:30;2638:34;2618:18;;;2611:62;-1:-1:-1;;;2689:18:101;;;2682:31;2730:19;;15694:62:38;2532:223:101;15694:62:38;15766:10;:24;;-1:-1:-1;;;;15766:24:38;-1:-1:-1;;;15766:24:38;;;;;;;;;;;;;15806:26;;3665:42:101;;;15806:26:38;;3653:2:101;3638:18;15806:26:38;3620:93:101;14:167;92:13;;145:10;134:22;;124:33;;114:2;;171:1;168;161:12;114:2;73:108;;;:::o;186:987::-;348:6;356;364;372;380;388;396;449:3;437:9;428:7;424:23;420:33;417:2;;;466:1;463;456:12;417:2;498:9;492:16;517:31;542:5;517:31;:::i;:::-;617:2;602:18;;596:25;567:5;;-1:-1:-1;630:33:101;596:25;630:33;:::i;:::-;734:2;719:18;;713:25;682:7;;-1:-1:-1;747:33:101;713:25;747:33;:::i;:::-;799:7;-1:-1:-1;825:48:101;869:2;854:18;;825:48;:::i;:::-;918:3;903:19;;897:26;815:58;;-1:-1:-1;;;;;;954:32:101;;942:45;;932:2;;1001:1;998;991:12;932:2;1024:7;-1:-1:-1;1050:49:101;1094:3;1079:19;;1050:49;:::i;:::-;1040:59;;1118:49;1162:3;1151:9;1147:19;1118:49;:::i;:::-;1108:59;;407:766;;;;;;;;;;:::o;4009:131::-;-1:-1:-1;;;;;4084:31:101;;4074:42;;4064:2;;4130:1;4127;4120:12;4064:2;4054:86;:::o;:::-;1131:14710:38;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@_beaconPeriodEndAt_6731": {
                  "entryPoint": 5703,
                  "id": 6731,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_beaconPeriodRemainingSeconds_6759": {
                  "entryPoint": 5324,
                  "id": 6759,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_calculateNextBeaconPeriodStartTime_6707": {
                  "entryPoint": 4480,
                  "id": 6707,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@_callOptionalReturn_1343": {
                  "entryPoint": 6107,
                  "id": 1343,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_currentTime_6720": {
                  "entryPoint": null,
                  "id": 6720,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_isBeaconPeriodOver_6772": {
                  "entryPoint": 4442,
                  "id": 6772,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_requireDrawNotStarted_6795": {
                  "entryPoint": 4946,
                  "id": 6795,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@_setBeaconPeriodSeconds_6869": {
                  "entryPoint": 5471,
                  "id": 6869,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setDrawBuffer_6847": {
                  "entryPoint": 5746,
                  "id": 6847,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_setOwner_5327": {
                  "entryPoint": 4853,
                  "id": 5327,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setRngService_6678": {
                  "entryPoint": 5384,
                  "id": 6678,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setRngTimeout_6891": {
                  "entryPoint": 5068,
                  "id": 6891,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@beaconPeriodEndAt_6442": {
                  "entryPoint": 3905,
                  "id": 6442,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@beaconPeriodRemainingSeconds_6431": {
                  "entryPoint": 3606,
                  "id": 6431,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@calculateNextBeaconPeriodStartTimeFromCurrentTime_6291": {
                  "entryPoint": 3738,
                  "id": 6291,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@calculateNextBeaconPeriodStartTime_6307": {
                  "entryPoint": 3915,
                  "id": 6307,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@canCompleteDraw_6277": {
                  "entryPoint": 4092,
                  "id": 6277,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@canStartDraw_6263": {
                  "entryPoint": 1001,
                  "id": 6263,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@cancelDraw_6337": {
                  "entryPoint": 2734,
                  "id": 6337,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@claimOwnership_5307": {
                  "entryPoint": 3095,
                  "id": 5307,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@completeDraw_6420": {
                  "entryPoint": 1034,
                  "id": 6420,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@functionCallWithValue_1639": {
                  "entryPoint": 6364,
                  "id": 1639,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "@functionCall_1569": {
                  "entryPoint": 6341,
                  "id": 1569,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@getBeaconPeriodSeconds_6450": {
                  "entryPoint": null,
                  "id": 6450,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getBeaconPeriodStartedAt_6458": {
                  "entryPoint": null,
                  "id": 6458,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getDrawBuffer_6467": {
                  "entryPoint": null,
                  "id": 6467,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getLastRngLockBlock_6486": {
                  "entryPoint": null,
                  "id": 6486,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getLastRngRequestId_6496": {
                  "entryPoint": null,
                  "id": 6496,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getNextDrawId_6475": {
                  "entryPoint": null,
                  "id": 6475,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getRngService_6505": {
                  "entryPoint": null,
                  "id": 6505,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getRngTimeout_6513": {
                  "entryPoint": null,
                  "id": 6513,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@isBeaconPeriodOver_6524": {
                  "entryPoint": 4082,
                  "id": 6524,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@isContract_1498": {
                  "entryPoint": null,
                  "id": 1498,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@isRngCompleted_6210": {
                  "entryPoint": 2936,
                  "id": 6210,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@isRngRequested_6223": {
                  "entryPoint": null,
                  "id": 6223,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@isRngTimedOut_6248": {
                  "entryPoint": 3479,
                  "id": 6248,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@owner_5239": {
                  "entryPoint": null,
                  "id": 5239,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@pendingOwner_5248": {
                  "entryPoint": null,
                  "id": 5248,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@renounceOwnership_5262": {
                  "entryPoint": 3362,
                  "id": 5262,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@safeIncreaseAllowance_1257": {
                  "entryPoint": 4549,
                  "id": 1257,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@setBeaconPeriodSeconds_6629": {
                  "entryPoint": 3783,
                  "id": 6629,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@setDrawBuffer_6542": {
                  "entryPoint": 3966,
                  "id": 6542,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@setRngService_6662": {
                  "entryPoint": 3616,
                  "id": 6662,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@setRngTimeout_6645": {
                  "entryPoint": 3237,
                  "id": 6645,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@startDraw_6613": {
                  "entryPoint": 1977,
                  "id": 6613,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@transferOwnership_5289": {
                  "entryPoint": 4126,
                  "id": 5289,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@verifyCallResult_1774": {
                  "entryPoint": 6683,
                  "id": 1774,
                  "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_$10930": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_contract$_RNGInterface_$5835": {
                  "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_$10930__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_RNGInterface_$5835__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_$10697_memory_ptr__to_t_struct$_Draw_$10697_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:14645:101",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:101",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "84:177:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "130:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "139:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "142:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "132:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "132:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "132:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "105:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "114:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "101:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "101:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "126:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "97:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "97:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "94:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "155:36:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "181:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "168:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "168:23:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "159:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "225:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "200:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "200:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "200:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "240:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "250:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "240:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "50:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "61:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "73:6:101",
                            "type": ""
                          }
                        ],
                        "src": "14:247:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "364:214:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "410:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "419:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "422:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "412:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "412:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "412:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "385:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "394:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "381:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "381:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "406:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "377:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "377:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "374:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "435:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "454:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "448:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "448:16:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "439:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "498:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "473:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "473:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "473:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "513:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "523:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "513:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "537:35:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "557:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "568:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "553:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "553:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "547:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "547:25:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "537:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint256_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "322:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "333:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "345:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "353:6:101",
                            "type": ""
                          }
                        ],
                        "src": "266:312:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "661:199:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "707:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "716:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "719:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "709:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "709:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "709:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "682:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "691:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "678:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "678:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "703:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "674:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "674:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "671:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "732:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "751:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "745:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "745:16:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "736:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "814:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "823:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "826:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "816:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "816:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "816:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "783:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "804:5:101"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "iszero",
                                              "nodeType": "YulIdentifier",
                                              "src": "797:6:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "797:13:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "790:6:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "790:21:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "780:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "780:32:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "773:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "773:40:101"
                              },
                              "nodeType": "YulIf",
                              "src": "770:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "839:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "849:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "839:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_bool_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "627:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "638:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "650:6:101",
                            "type": ""
                          }
                        ],
                        "src": "583:277:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "956:177:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1002:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1011:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1014:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1004:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1004:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1004:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "977:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "986:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "973:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "973:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "998:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "969:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "969:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "966:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1027:36:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1053:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1040:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1040:23:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1031:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1097:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1072:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1072:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1072:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1112:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1122:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1112:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_contract$_IDrawBuffer_$10930",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "922:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "933:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "945:6:101",
                            "type": ""
                          }
                        ],
                        "src": "865:268:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1229:177:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1275:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1284:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1287:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1277:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1277:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1277:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1250:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1259:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1246:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1246:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1271:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1242:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1242:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1239:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1300:36:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1326:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1313:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1313:23:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1304:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1370:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1345:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1345:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1345:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1385:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1395:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1385:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_contract$_RNGInterface_$5835",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1195:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1206:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1218:6:101",
                            "type": ""
                          }
                        ],
                        "src": "1138:268:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1492:103:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1538:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1547:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1550:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1540:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1540:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1540:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1513:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1522:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1509:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1509:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1534:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1505:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1505:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1502:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1563:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1579:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1573:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1573:16:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1563:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1458:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1469:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1481:6:101",
                            "type": ""
                          }
                        ],
                        "src": "1411:184:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1669:176:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1715:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1724:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1727:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1717:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1717:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1717:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1690:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1699:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1686:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1686:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1711:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1682:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1682:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1679:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1740:36:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1766:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1753:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1753:23:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1744:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1809:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "1785:23:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1785:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1785:30:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1824:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1834:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1824:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1635:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1646:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1658:6:101",
                            "type": ""
                          }
                        ],
                        "src": "1600:245:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1930:169:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1976:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1985:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1988:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1978:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1978:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1978:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1951:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1960:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1947:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1947:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1972:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1943:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1943:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1940:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2001:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2020:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2014:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2014:16:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2005:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "2063:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "2039:23:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2039:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2039:30:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2078:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2088:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2078:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint32_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1896:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1907:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1919:6:101",
                            "type": ""
                          }
                        ],
                        "src": "1850:249:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2200:285:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2246:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2255:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2258:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2248:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2248:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2248:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2221:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2230:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2217:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2217:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2242:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2213:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2213:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2210:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2271:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2290:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2284:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2284:16:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2275:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "2333:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "2309:23:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2309:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2309:30:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2348:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2358:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2348:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2372:40:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2397:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2408:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2393:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2393:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2387:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2387:25:101"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2376:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2445:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "2421:23:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2421:32:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2421:32:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2462:17:101",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "2472:7:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2462:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint32t_uint32_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2158:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2169:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2181:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2189:6:101",
                            "type": ""
                          }
                        ],
                        "src": "2104:381:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2559:215:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2605:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2614:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2617:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2607:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2607:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2607:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2580:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2589:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2576:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2576:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2601:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2572:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2572:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2569:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2630:36:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2656:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2643:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2643:23:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2634:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2728:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2737:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2740:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2730:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2730:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2730:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2688:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "2699:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2706:18:101",
                                            "type": "",
                                            "value": "0xffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "2695:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2695:30:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "2685:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2685:41:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "2678:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2678:49:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2675:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2753:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2763:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2753:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2525:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2536:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2548:6:101",
                            "type": ""
                          }
                        ],
                        "src": "2490:284:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2916:137:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2926:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "2946:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2940:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2940:13:101"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "2930:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "2988:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2996:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2984:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2984:17:101"
                                  },
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "3003:3:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "3008:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "2962:21:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2962:53:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2962:53:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3024:23:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "3035:3:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "3040:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3031:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3031:16:101"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "3024:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "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": "2892:3:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2897:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "2908:3:101",
                            "type": ""
                          }
                        ],
                        "src": "2779:274:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3159:125:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3169:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3181:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3192:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3177:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3177:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3169:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3211:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "3226:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3234:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3222:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3222:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3204:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3204:74:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3204:74:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3128:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3139:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3150:4:101",
                            "type": ""
                          }
                        ],
                        "src": "3058:226:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3418:198:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3428:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3440:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3451:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3436:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3436:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3428:4:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3463:52:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3473:42:101",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3467:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3531:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "3546:6:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "3554:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3542:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3542:15:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3524:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3524:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3524:34:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3578:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3589:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3574:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3574:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "3598:6:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "3606:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3594:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3594:15:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3567:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3567:43:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3567:43:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3379:9:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "3390:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3398:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3409:4:101",
                            "type": ""
                          }
                        ],
                        "src": "3289:327:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3750:168:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3760:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3772:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3783:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3768:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3768:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3760:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3802:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "3817:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3825:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3813:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3813:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3795:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3795:74:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3795:74:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3889:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3900:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3885:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3885:18:101"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3905:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3878:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3878:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3878:34:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3711:9:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "3722:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3730:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3741:4:101",
                            "type": ""
                          }
                        ],
                        "src": "3621:297:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4018:92:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "4028:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4040:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4051:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4036:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4036:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4028:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4070:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "4095:6:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "4088:6:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4088:14:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "4081:6:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4081:22:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4063:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4063:41:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4063:41:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3987:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3998:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4009:4:101",
                            "type": ""
                          }
                        ],
                        "src": "3923:187:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4237:125:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "4247:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4259:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4270:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4255:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4255:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4247:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4289:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "4304:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4312:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4300:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4300:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4282:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4282:74:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4282:74:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IDrawBuffer_$10930__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4206:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4217:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4228:4:101",
                            "type": ""
                          }
                        ],
                        "src": "4115:247:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4489:125:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "4499:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4511:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4522:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4507:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4507:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4499:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4541:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "4556:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4564:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4552:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4552:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4534:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4534:74:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4534:74:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_RNGInterface_$5835__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4458:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4469:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4480:4:101",
                            "type": ""
                          }
                        ],
                        "src": "4367:247:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4740:321:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4757:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4768:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4750:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4750:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4750:21:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4780:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "4800:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4794:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4794:13:101"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "4784:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4827:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4838:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4823:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4823:18:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "4843:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4816:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4816:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4816:34:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "4885:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4893:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4881:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4881:15:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4902:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4913:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4898:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4898:18:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "4918:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "4859:21:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4859:66:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4859:66:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4934:121:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4950:9:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "4969:6:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "4977:2:101",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "4965:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4965:15:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "4982:66:101",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "4961:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4961:88:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4946:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4946:104:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5052:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4942:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4942:113:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4934:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4709:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4720:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4731:4:101",
                            "type": ""
                          }
                        ],
                        "src": "4619:442:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5240:178:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5257:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5268:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5250:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5250:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5250:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5291:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5302:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5287:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5287:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5307:2:101",
                                    "type": "",
                                    "value": "28"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5280:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5280:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5280:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5330:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5341:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5326:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5326:18:101"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f726e672d6e6f742d726571756573746564",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5346:30:101",
                                    "type": "",
                                    "value": "DrawBeacon/rng-not-requested"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5319:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5319:58:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5319:58:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5386:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5398:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5409:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5394:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5394:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5386:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_2c3630652afe1a04dd2231790fc99ffb459bdb7330f49c8f20817dc286484280__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5217:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5231:4:101",
                            "type": ""
                          }
                        ],
                        "src": "5066:352:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5597:182:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5614:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5625:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5607:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5607:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5607:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5648:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5659:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5644:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5644:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5664:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5637:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5637:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5637:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5687:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5698:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5683:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5683:18:101"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f726e672d616c72656164792d726571756573746564",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5703:34:101",
                                    "type": "",
                                    "value": "DrawBeacon/rng-already-requested"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5676:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5676:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5676:62:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5747:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5759:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5770:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5755:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5755:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5747:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_2e18d8e745e19c95f7142708d51d3a5265c91aa34e14edc112d4234ceabbb69d__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5574:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5588:4:101",
                            "type": ""
                          }
                        ],
                        "src": "5423:356:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5958:230:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5975:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5986:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5968:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5968:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5968:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6009:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6020:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6005:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6005:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6025:2:101",
                                    "type": "",
                                    "value": "40"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5998:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5998:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5998:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6048:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6059:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6044:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6044:18:101"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f6578697374696e672d647261772d686973746f7279",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6064:34:101",
                                    "type": "",
                                    "value": "DrawBeacon/existing-draw-history"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6037:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6037:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6037:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6119:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6130:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6115:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6115:18:101"
                                  },
                                  {
                                    "hexValue": "2d61646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6135:10:101",
                                    "type": "",
                                    "value": "-address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6108:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6108:38:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6108:38:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6155:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6167:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6178:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6163:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6163:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6155:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_3be8147c31d2884bcaa2a207df52248ea7ac3a0f8dc6f7310d73127aa47b7cbf__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5935:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5949:4:101",
                            "type": ""
                          }
                        ],
                        "src": "5784:404:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6367:232:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6384:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6395:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6377:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6377:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6377:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6418:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6429:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6414:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6414:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6434:2:101",
                                    "type": "",
                                    "value": "42"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6407:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6407:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6407:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6457:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6468:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6453:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6453:18:101"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f626561636f6e2d706572696f642d67726561746572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6473:34:101",
                                    "type": "",
                                    "value": "DrawBeacon/beacon-period-greater"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6446:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6446:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6446:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6528:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6539:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6524:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6524:18:101"
                                  },
                                  {
                                    "hexValue": "2d7468616e2d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6544:12:101",
                                    "type": "",
                                    "value": "-than-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6517:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6517:40:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6517:40:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6566:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6578:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6589:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6574:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6574:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6566:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_4450143396759a6f8e989ffcaefe78ca8a77a2cd7aa26f6cc28130ae479f43df__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6344:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6358:4:101",
                            "type": ""
                          }
                        ],
                        "src": "6193:406:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6778:228:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6795:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6806:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6788:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6788:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6788:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6829:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6840:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6825:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6825:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6845:2:101",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6818:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6818:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6818:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6868:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6879:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6864:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6864:18:101"
                                  },
                                  {
                                    "hexValue": "416464726573733a20696e73756666696369656e742062616c616e636520666f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6884:34:101",
                                    "type": "",
                                    "value": "Address: insufficient balance fo"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6857:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6857:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6857:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6939:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6950:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6935:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6935:18:101"
                                  },
                                  {
                                    "hexValue": "722063616c6c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6955:8:101",
                                    "type": "",
                                    "value": "r call"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6928:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6928:36:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6928:36:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6973:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6985:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6996:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6981:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6981:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6973:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6755:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6769:4:101",
                            "type": ""
                          }
                        ],
                        "src": "6604:402:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7185:177:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7202:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7213:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7195:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7195:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7195:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7236:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7247:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7232:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7232:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7252:2:101",
                                    "type": "",
                                    "value": "27"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7225:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7225:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7225:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7275:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7286:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7271:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7271:18:101"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f726e672d6e6f742d636f6d706c657465",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7291:29:101",
                                    "type": "",
                                    "value": "DrawBeacon/rng-not-complete"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7264:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7264:57:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7264:57:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7330:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7342:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7353:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7338:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7338:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7330:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_60fe4ea05210616f96b292a0bef542d8f4e15701730bf655ba6a82515973dbfe__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7162:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7176:4:101",
                            "type": ""
                          }
                        ],
                        "src": "7011:351:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7541:174:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7558:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7569:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7551:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7551:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7551:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7592:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7603:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7588:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7588:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7608:2:101",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7581:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7581:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7581:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7631:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7642:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7627:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7627:18:101"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7647:26:101",
                                    "type": "",
                                    "value": "Ownable/caller-not-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7620:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7620:54:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7620:54:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7683:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7695:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7706:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7691:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7691:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7683:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7518:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7532:4:101",
                            "type": ""
                          }
                        ],
                        "src": "7367:348:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7894:223:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7911:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7922:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7904:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7904:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7904:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7945:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7956:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7941:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7941:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7961:2:101",
                                    "type": "",
                                    "value": "33"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7934:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7934:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7934:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7984:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7995:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7980:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7980:18:101"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f726e672d74696d656f75742d67742d36302d736563",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8000:34:101",
                                    "type": "",
                                    "value": "DrawBeacon/rng-timeout-gt-60-sec"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7973:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7973:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7973:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8055:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8066:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8051:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8051:18:101"
                                  },
                                  {
                                    "hexValue": "73",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8071:3:101",
                                    "type": "",
                                    "value": "s"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8044:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8044:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8044:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8084:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8096:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8107:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8092:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8092:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8084:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_660d0c484867e8909b8adf8f2abc0ff54cab3d27dba87c86925ba023c6c05bbe__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7871:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7885:4:101",
                            "type": ""
                          }
                        ],
                        "src": "7720:397:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8296:181:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8313:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8324:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8306:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8306:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8306:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8347:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8358:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8343:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8343:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8363:2:101",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8336:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8336:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8336:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8386:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8397:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8382:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8382:18:101"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8402:33:101",
                                    "type": "",
                                    "value": "Ownable/caller-not-pendingOwner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8375:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8375:61:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8375:61:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8445:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8457:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8468:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8453:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8453:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8445:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8273:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8287:4:101",
                            "type": ""
                          }
                        ],
                        "src": "8122:355:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8656:177:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8673:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8684:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8666:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8666:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8666:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8707:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8718:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8703:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8703:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8723:2:101",
                                    "type": "",
                                    "value": "27"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8696:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8696:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8696:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8746:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8757:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8742:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8742:18:101"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f726e672d6e6f742d74696d65646f7574",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8762:29:101",
                                    "type": "",
                                    "value": "DrawBeacon/rng-not-timedout"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8735:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8735:57:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8735:57:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8801:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8813:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8824:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8809:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8809:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8801:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_bc38701987d08ad045946a7ffa6b0638aef3d414cf835a4d20b4244572e13448__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8633:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8647:4:101",
                            "type": ""
                          }
                        ],
                        "src": "8482:351:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9012:223:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9029:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9040:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9022:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9022:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9022:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9063:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9074:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9059:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9059:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9079:2:101",
                                    "type": "",
                                    "value": "33"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9052:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9052:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9052:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9102:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9113:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9098:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9098:18:101"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f626561636f6e2d706572696f642d6e6f742d6f7665",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9118:34:101",
                                    "type": "",
                                    "value": "DrawBeacon/beacon-period-not-ove"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9091:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9091:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9091:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9173:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9184:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9169:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9169:18:101"
                                  },
                                  {
                                    "hexValue": "72",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9189:3:101",
                                    "type": "",
                                    "value": "r"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9162:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9162:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9162:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9202:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9214:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9225:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9210:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9210:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9202:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c11cf851f1db5cba405210987a8cab160410ee1c3cd1333983ce975b7fceef19__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8989:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9003:4:101",
                            "type": ""
                          }
                        ],
                        "src": "8838:397:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9414:179:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9431:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9442:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9424:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9424:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9424:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9465:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9476:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9461:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9461:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9481:2:101",
                                    "type": "",
                                    "value": "29"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9454:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9454:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9454:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9504:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9515:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9500:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9500:18:101"
                                  },
                                  {
                                    "hexValue": "416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9520:31:101",
                                    "type": "",
                                    "value": "Address: call to non-contract"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9493:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9493:59:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9493:59:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9561:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9573:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9584:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9569:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9569:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9561:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9391:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9405:4:101",
                            "type": ""
                          }
                        ],
                        "src": "9240:353:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9772:227:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9789:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9800:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9782:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9782:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9782:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9823:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9834:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9819:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9819:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9839:2:101",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9812:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9812:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9812:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9862:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9873:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9858:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9858:18:101"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d6164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9878:34:101",
                                    "type": "",
                                    "value": "Ownable/pendingOwner-not-zero-ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9851:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9851:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9851:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9933:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9944:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9929:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9929:18:101"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9949:7:101",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9922:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9922:35:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9922:35:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9966:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9978:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9989:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9974:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9974:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9966:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9749:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9763:4:101",
                            "type": ""
                          }
                        ],
                        "src": "9598:401:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10178:232:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10195:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10206:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10188:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10188:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10188:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10229:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10240:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10225:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10225:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10245:2:101",
                                    "type": "",
                                    "value": "42"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10218:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10218:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10218:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10268:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10279:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10264:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10264:18:101"
                                  },
                                  {
                                    "hexValue": "5361666545524332303a204552433230206f7065726174696f6e20646964206e",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10284:34:101",
                                    "type": "",
                                    "value": "SafeERC20: ERC20 operation did n"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10257:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10257:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10257:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10339:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10350:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10335:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10335:18:101"
                                  },
                                  {
                                    "hexValue": "6f742073756363656564",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10355:12:101",
                                    "type": "",
                                    "value": "ot succeed"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10328:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10328:40:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10328:40:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10377:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10389:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10400:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10385:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10385:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10377:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_e11ad79d1e4a7f2e5f376964cb99e8e8f7904e3fc16a109f7a7ecb9aa7956dcd__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10155:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10169:4:101",
                            "type": ""
                          }
                        ],
                        "src": "10004:406:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10589:230:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10606:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10617:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10599:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10599:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10599:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10640:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10651:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10636:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10636:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10656:2:101",
                                    "type": "",
                                    "value": "40"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10629:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10629:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10629:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10679:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10690:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10675:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10675:18:101"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f647261772d686973746f72792d6e6f742d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10695:34:101",
                                    "type": "",
                                    "value": "DrawBeacon/draw-history-not-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10668:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10668:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10668:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10750:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10761:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10746:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10746:18:101"
                                  },
                                  {
                                    "hexValue": "2d61646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10766:10:101",
                                    "type": "",
                                    "value": "-address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10739:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10739:38:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10739:38:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10786:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10798:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10809:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10794:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10794:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10786:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_e9707589ebe071be995320b6578599274695e9c113fb818821beb7070c10f2a9__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10566:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10580:4:101",
                            "type": ""
                          }
                        ],
                        "src": "10415:404:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10998:174:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11015:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11026:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11008:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11008:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11008:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11049:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11060:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11045:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11045:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11065:2:101",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11038:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11038:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11038:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11088:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11099:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11084:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11084:18:101"
                                  },
                                  {
                                    "hexValue": "44726177426561636f6e2f726e672d696e2d666c69676874",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11104:26:101",
                                    "type": "",
                                    "value": "DrawBeacon/rng-in-flight"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11077:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11077:54:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11077:54:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11140:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11152:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11163:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11148:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11148:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11140:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_eb3fd409b99aafcfccb46998551ef8c9b3d4ba898753e940771a0a3d4f33cc77__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10975:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10989:4:101",
                            "type": ""
                          }
                        ],
                        "src": "10824:348:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11324:524:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "11334:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11346:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11357:3:101",
                                    "type": "",
                                    "value": "160"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11342:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11342:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11334:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11377:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "11394:6:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "mload",
                                      "nodeType": "YulIdentifier",
                                      "src": "11388:5:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11388:13:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11370:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11370:32:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11370:32:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11411:44:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "11441:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11449:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11437:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11437:17:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "11431:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11431:24:101"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0",
                                  "nodeType": "YulTypedName",
                                  "src": "11415:12:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11464:20:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "11474:10:101",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "11468:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11504:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11515:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11500:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11500:20:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "memberValue0",
                                        "nodeType": "YulIdentifier",
                                        "src": "11526:12:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "11540:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "11522:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11522:21:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11493:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11493:51:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11493:51:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11553:46:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "11585:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11593:4:101",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11581:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11581:17:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "11575:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11575:24:101"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0_1",
                                  "nodeType": "YulTypedName",
                                  "src": "11557:14:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11608:28:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "11618:18:101",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "11612:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11656:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11667:4:101",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11652:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11652:20:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "memberValue0_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "11678:14:101"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "11694:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "11674:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11674:23:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11645:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11645:53:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11645:53:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11718:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11729:4:101",
                                        "type": "",
                                        "value": "0x60"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11714:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11714:20:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value0",
                                                "nodeType": "YulIdentifier",
                                                "src": "11750:6:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "11758:4:101",
                                                "type": "",
                                                "value": "0x60"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "11746:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "11746:17:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "11740:5:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "11740:24:101"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "11766:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "11736:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11736:33:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11707:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11707:63:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11707:63:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11790:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11801:4:101",
                                        "type": "",
                                        "value": "0x80"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11786:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11786:20:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value0",
                                                "nodeType": "YulIdentifier",
                                                "src": "11822:6:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "11830:4:101",
                                                "type": "",
                                                "value": "0x80"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "11818:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "11818:17:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "11812:5:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "11812:24:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "11838:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "11808:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11808:33:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11779:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11779:63:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11779:63:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_struct$_Draw_$10697_memory_ptr__to_t_struct$_Draw_$10697_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11293:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "11304:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11315:4:101",
                            "type": ""
                          }
                        ],
                        "src": "11177:671:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11954:76:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "11964:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11976:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11987:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11972:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11972:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11964:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12006:9:101"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "12017:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11999:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11999:25:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11999:25:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11923:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "11934:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11945:4:101",
                            "type": ""
                          }
                        ],
                        "src": "11853:177:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12134:93:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "12144:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12156:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12167:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12152:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12152:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12144:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12186:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "12201:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12209:10:101",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "12197:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12197:23:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12179:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12179:42:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12179:42:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12103:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "12114:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12125:4:101",
                            "type": ""
                          }
                        ],
                        "src": "12035:192:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12331:101:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "12341:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12353:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12364:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12349:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12349:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12341:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12383:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "12398:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12406:18:101",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "12394:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12394:31:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12376:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12376:50:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12376:50:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12300:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "12311:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12322:4:101",
                            "type": ""
                          }
                        ],
                        "src": "12232:200:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12485:80:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "12512:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "12514:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12514:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "12514:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "12501:1:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "12508:1:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "12504:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12504:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "12498:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12498:13:101"
                              },
                              "nodeType": "YulIf",
                              "src": "12495:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12543:16:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "12554:1:101"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "12557:1:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12550:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12550:9:101"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "12543:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "12468:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "12471:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "12477:3:101",
                            "type": ""
                          }
                        ],
                        "src": "12437:128:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12617:181:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "12627:20:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "12637:10:101",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "12631:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "12656:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "12671:1:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "12674:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "12667:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12667:10:101"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "12660:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "12686:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "12701:1:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "12704:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "12697:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12697:10:101"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "12690:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "12741:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "12743:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12743:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "12743:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "12722:3:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "12731:2:101"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "12735:3:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "12727:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12727:12:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "12719:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12719:21:101"
                              },
                              "nodeType": "YulIf",
                              "src": "12716:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12772:20:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "12783:3:101"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "12788:3:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12779:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12779:13:101"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "12772:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "12600:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "12603:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "12609:3:101",
                            "type": ""
                          }
                        ],
                        "src": "12570:228:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12850:189:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "12860:28:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "12870:18:101",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "12864:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "12897:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "12912:1:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "12915:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "12908:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12908:10:101"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "12901:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "12927:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "12942:1:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "12945:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "12938:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12938:10:101"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "12931:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "12982:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "12984:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12984:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "12984:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "12963:3:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "12972:2:101"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "12976:3:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "12968:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12968:12:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "12960:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12960:21:101"
                              },
                              "nodeType": "YulIf",
                              "src": "12957:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13013:20:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13024:3:101"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13029:3:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13020:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13020:13:101"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "13013:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "12833:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "12836:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "12842:3:101",
                            "type": ""
                          }
                        ],
                        "src": "12803:236:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13089:308:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13099:28:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "13109:18:101",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13103:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13136:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "13151:1:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13154:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "13147:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13147:10:101"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13140:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "13189:168:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "13210:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "13213:77:101",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "13203:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13203:88:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13203:88:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "13311:1:101",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "13314:4:101",
                                          "type": "",
                                          "value": "0x12"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "13304:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13304:15:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13304:15:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "13339:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "13342:4:101",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "13332:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13332:15:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13332:15:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13176:3:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "13169:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13169:11:101"
                              },
                              "nodeType": "YulIf",
                              "src": "13166:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13366:25:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "x",
                                        "nodeType": "YulIdentifier",
                                        "src": "13379:1:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "13382:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "13375:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13375:10:101"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13387:3:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "div",
                                  "nodeType": "YulIdentifier",
                                  "src": "13371:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13371:20:101"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "13366:1:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_div_t_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "13074:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "13077:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "13083:1:101",
                            "type": ""
                          }
                        ],
                        "src": "13044:353:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13453:219:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13463:28:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "13473:18:101",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13467:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13500:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "13515:1:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13518:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "13511:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13511:10:101"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13504:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13530:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "13545:1:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13548:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "13541:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13541:10:101"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13534:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "13611:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "13613:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13613:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13613:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "x_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "13581:3:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "13574:6:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "13574:11:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "13567:6:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13567:19:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "13591:3:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "13600:2:101"
                                          },
                                          {
                                            "name": "x_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "13604:3:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "div",
                                          "nodeType": "YulIdentifier",
                                          "src": "13596:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "13596:12:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "13588:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13588:21:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "13563:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13563:47:101"
                              },
                              "nodeType": "YulIf",
                              "src": "13560:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13642:24:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13657:3:101"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13662:3:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mul",
                                  "nodeType": "YulIdentifier",
                                  "src": "13653:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13653:13:101"
                              },
                              "variableNames": [
                                {
                                  "name": "product",
                                  "nodeType": "YulIdentifier",
                                  "src": "13642:7:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_mul_t_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "13432:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "13435:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "product",
                            "nodeType": "YulTypedName",
                            "src": "13441:7:101",
                            "type": ""
                          }
                        ],
                        "src": "13402:270:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13725:181:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13735:28:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "13745:18:101",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13739:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13772:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "13787:1:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13790:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "13783:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13783:10:101"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13776:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13802:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "13817:1:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13820:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "13813:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13813:10:101"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13806:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "13848:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "13850:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13850:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13850:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13838:3:101"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13843:3:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "13835:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13835:12:101"
                              },
                              "nodeType": "YulIf",
                              "src": "13832:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13879:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13891:3:101"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13896:3:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "13887:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13887:13:101"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "13879:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "13707:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "13710:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "13716:4:101",
                            "type": ""
                          }
                        ],
                        "src": "13677:229:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13964:205:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13974:10:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "13983:1:101",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "13978:1:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "14043:63:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "14068:3:101"
                                            },
                                            {
                                              "name": "i",
                                              "nodeType": "YulIdentifier",
                                              "src": "14073:1:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "14064:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "14064:11:101"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "14087:3:101"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "14092:1:101"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "14083:3:101"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "14083:11:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "14077:5:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "14077:18:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "14057:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14057:39:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "14057:39:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "14004:1:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "14007:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "14001:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14001:13:101"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "14015:19:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "14017:15:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "14026:1:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "14029:2:101",
                                          "type": "",
                                          "value": "32"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "14022:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14022:10:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "14017:1:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "13997:3:101",
                                "statements": []
                              },
                              "src": "13993:113:101"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "14132:31:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "14145:3:101"
                                            },
                                            {
                                              "name": "length",
                                              "nodeType": "YulIdentifier",
                                              "src": "14150:6:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "14141:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "14141:16:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "14159:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "14134:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14134:27:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "14134:27:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "14121:1:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "14124:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "14118:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14118:13:101"
                              },
                              "nodeType": "YulIf",
                              "src": "14115:2:101"
                            }
                          ]
                        },
                        "name": "copy_memory_to_memory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "src",
                            "nodeType": "YulTypedName",
                            "src": "13942:3:101",
                            "type": ""
                          },
                          {
                            "name": "dst",
                            "nodeType": "YulTypedName",
                            "src": "13947:3:101",
                            "type": ""
                          },
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "13952:6:101",
                            "type": ""
                          }
                        ],
                        "src": "13911:258:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14206:152:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14223:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14226:77:101",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14216:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14216:88:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14216:88:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14320:1:101",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14323:4:101",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14313:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14313:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14313:15:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14344:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14347:4:101",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "14337:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14337:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14337:15:101"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "14174:184:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14408:109:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "14495:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "14504:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "14507:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "14497:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14497:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "14497:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "14431:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "14442:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "14449:42:101",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "14438:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "14438:54:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "14428:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14428:65:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "14421:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14421:73:101"
                              },
                              "nodeType": "YulIf",
                              "src": "14418:2:101"
                            }
                          ]
                        },
                        "name": "validator_revert_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "14397:5:101",
                            "type": ""
                          }
                        ],
                        "src": "14363:154:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14566:77:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "14621:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "14630:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "14633:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "14623:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14623:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "14623:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "14589:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "14600:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "14607:10:101",
                                            "type": "",
                                            "value": "0xffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "14596:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "14596:22:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "14586:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14586:33:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "14579:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14579:41:101"
                              },
                              "nodeType": "YulIf",
                              "src": "14576:2:101"
                            }
                          ]
                        },
                        "name": "validator_revert_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "14555:5:101",
                            "type": ""
                          }
                        ],
                        "src": "14522:121:101"
                      }
                    ]
                  },
                  "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_$10930(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_$5835(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_$10930__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_$5835__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_$10697_memory_ptr__to_t_struct$_Draw_$10697_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": 101,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106101da5760003560e01c8063738bbea811610104578063a104fd79116100a2578063d1e7765711610071578063d1e77657146103b5578063e30c3978146103bd578063e4a75bb8146103ce578063f2fde38b146103d657600080fd5b8063a104fd791461036d578063a3ae35ab14610375578063ab70d49c14610388578063c57708c21461039b57600080fd5b80637f4296d7116100de5780637f4296d71461032e57806389c36f8e146103415780638da5cb5b14610349578063919bead01461035a57600080fd5b8063738bbea81461030d57806375e38f16146103155780637ce52b181461031d57600080fd5b80633e7a39081161017c5780634e71e0c81161014b5780634e71e0c8146102d45780635020ea56146102dc5780636bea5344146102ef578063715018a61461030557600080fd5b80633e7a39081461028a5780634019f2d61461029f578063412a616a146102c45780634aba4f6b146102cc57600080fd5b80631b5344a2116101b85780631b5344a2146102165780632a7ad6091461024d5780632ae168a61461025b57806339f92c301461026357600080fd5b80630996f6e1146101df5780630bdeecbd146101fc578063111070e414610206575b600080fd5b6101e76103e9565b60405190151581526020015b60405180910390f35b61020461040a565b005b60035463ffffffff1615156101e7565b60045474010000000000000000000000000000000000000000900463ffffffff165b60405163ffffffff90911681526020016101f3565b60035463ffffffff16610238565b6102046107b9565b60055467ffffffffffffffff165b60405167ffffffffffffffff90911681526020016101f3565b600454600160c01b900463ffffffff16610238565b6004546001600160a01b03165b6040516001600160a01b0390911681526020016101f3565b610204610aae565b6101e7610b78565b610204610c17565b6102046102ea366004611ada565b610ca5565b600354640100000000900463ffffffff16610238565b610204610d22565b6101e7610d97565b610271610e16565b6002546001600160a01b03166102ac565b61020461033c366004611a54565b610e20565b610271610e9a565b6000546001600160a01b03166102ac565b610204610368366004611ada565b610ec7565b610271610f41565b610271610383366004611b4e565b610f4b565b6102ac610396366004611a54565b610f7e565b60055468010000000000000000900463ffffffff16610238565b6101e7610ff2565b6001546001600160a01b03166102ac565b6101e7610ffc565b6102046103e4366004611a54565b61101e565b60006103f361115a565b8015610405575060035463ffffffff16155b905090565b60035463ffffffff166104645760405162461bcd60e51b815260206004820152601c60248201527f44726177426561636f6e2f726e672d6e6f742d7265717565737465640000000060448201526064015b60405180910390fd5b61046c610b78565b6104b85760405162461bcd60e51b815260206004820152601b60248201527f44726177426561636f6e2f726e672d6e6f742d636f6d706c6574650000000000604482015260640161045b565b6002546003546040517f9d2a5f9800000000000000000000000000000000000000000000000000000000815263ffffffff90911660048201526000916001600160a01b031690639d2a5f9890602401602060405180830381600087803b15801561052157600080fd5b505af1158015610535573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105599190611ac1565b60055460045491925063ffffffff68010000000000000000820481169267ffffffffffffffff90921691600160c01b90041660006105944290565b6040805160a08101825287815263ffffffff8781166020830190815260035468010000000000000000900467ffffffffffffffff90811684860190815289821660608601908152898516608087019081526004805498517f089eb925000000000000000000000000000000000000000000000000000000008152885191810191909152945186166024860152915183166044850152519091166064830152519091166084820152929350916001600160a01b039091169063089eb9259060a401602060405180830381600087803b15801561066e57600080fd5b505af1158015610682573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106a69190611af7565b5060006106b4858585611180565b6005805467ffffffffffffffff191667ffffffffffffffff831617905590506106de866001611bfd565b6005805463ffffffff9290921668010000000000000000027fffffffffffffffffffffffffffffffffffffffff00000000ffffffffffffffff909216919091179055600380547fffffffffffffffffffffffffffffffff000000000000000000000000000000001690556040518781527f13f646a3648ee5b5a0e8d6bc3d2d623fddf38fa7c8c5dfdbdbe6a913112edc6c9060200160405180910390a160405167ffffffffffffffff8216907f9e5f7e6ac833c4735b5548bbeec59dac4d413789aa351fbe11a654dac0c4306c90600090a250505050505050565b6107c161115a565b6108335760405162461bcd60e51b815260206004820152602160248201527f44726177426561636f6e2f626561636f6e2d706572696f642d6e6f742d6f766560448201527f7200000000000000000000000000000000000000000000000000000000000000606482015260840161045b565b60035463ffffffff16156108895760405162461bcd60e51b815260206004820181905260248201527f44726177426561636f6e2f726e672d616c72656164792d726571756573746564604482015260640161045b565b600254604080517f0d37b537000000000000000000000000000000000000000000000000000000008152815160009384936001600160a01b0390911692630d37b5379260048083019392829003018186803b1580156108e757600080fd5b505afa1580156108fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061091f9190611a71565b90925090506001600160a01b0382161580159061093c5750600081115b1561095b5760025461095b906001600160a01b038481169116836111c5565b600254604080517f8678a7b2000000000000000000000000000000000000000000000000000000008152815160009384936001600160a01b0390911692638678a7b2926004808301939282900301818787803b1580156109ba57600080fd5b505af11580156109ce573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109f29190611b14565b6003805463ffffffff8084166401000000000267ffffffffffffffff19909216908516171790559092509050610a254290565b6003805467ffffffffffffffff9290921668010000000000000000027fffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffff90921691909117905560405163ffffffff82811682528316907f0de3a7af7d3c2126e4fb96a7065b39f8bb17e3b9111c092e11236942fb38ca619060200160405180910390a250505050565b610ab6610d97565b610b025760405162461bcd60e51b815260206004820152601b60248201527f44726177426561636f6e2f726e672d6e6f742d74696d65646f75740000000000604482015260640161045b565b600380547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811690915560405163ffffffff640100000000830481168083529216919082907f67638a3a7093a89cc6046dca58aa93d6343e30847e8f84fc3759d9d4a3e6e38b9060200160405180910390a25050565b6002546003546040517f3a19b9bc00000000000000000000000000000000000000000000000000000000815263ffffffff90911660048201526000916001600160a01b031690633a19b9bc9060240160206040518083038186803b158015610bdf57600080fd5b505afa158015610bf3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104059190611a9f565b6001546001600160a01b03163314610c715760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e657200604482015260640161045b565b600154610c86906001600160a01b03166112f5565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b33610cb86000546001600160a01b031690565b6001600160a01b031614610d0e5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161045b565b610d16611352565b610d1f816113cc565b50565b33610d356000546001600160a01b031690565b6001600160a01b031614610d8b5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161045b565b610d9560006112f5565b565b60035460009068010000000000000000900467ffffffffffffffff16610dbd5750600090565b4260035460045467ffffffffffffffff92831692610e0692680100000000000000009004169074010000000000000000000000000000000000000000900463ffffffff16611c25565b67ffffffffffffffff1610905090565b60006104056114cc565b33610e336000546001600160a01b031690565b6001600160a01b031614610e895760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161045b565b610e91611352565b610d1f81611508565b6005546004546000916104059167ffffffffffffffff90911690600160c01b900463ffffffff1642611180565b33610eda6000546001600160a01b031690565b6001600160a01b031614610f305760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161045b565b610f38611352565b610d1f8161155f565b6000610405611647565b600554600454600091610f789167ffffffffffffffff90911690600160c01b900463ffffffff1684611180565b92915050565b600033610f936000546001600160a01b031690565b6001600160a01b031614610fe95760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161045b565b610f7882611672565b600061040561115a565b600061100f60035463ffffffff16151590565b80156104055750610405610b78565b336110316000546001600160a01b031690565b6001600160a01b0316146110875760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161045b565b6001600160a01b0381166111035760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161045b565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b60004267ffffffffffffffff1661116f611647565b67ffffffffffffffff161115905090565b60008063ffffffff84166111948685611cc6565b61119e9190611c48565b90506111b063ffffffff851682611c96565b6111ba9086611c25565b9150505b9392505050565b6040517fdd62ed3e0000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b038381166024830152600091839186169063dd62ed3e9060440160206040518083038186803b15801561122a57600080fd5b505afa15801561123e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112629190611ac1565b61126c9190611be5565b604080516001600160a01b038616602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f095ea7b3000000000000000000000000000000000000000000000000000000001790529091506112ef9085906117db565b50505050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6003544390640100000000900463ffffffff1615806113805750600354640100000000900463ffffffff1681105b610d1f5760405162461bcd60e51b815260206004820152601860248201527f44726177426561636f6e2f726e672d696e2d666c696768740000000000000000604482015260640161045b565b603c8163ffffffff16116114485760405162461bcd60e51b815260206004820152602160248201527f44726177426561636f6e2f726e672d74696d656f75742d67742d36302d73656360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161045b565b600480547fffffffffffffffff00000000ffffffffffffffffffffffffffffffffffffffff167401000000000000000000000000000000000000000063ffffffff8416908102919091179091556040519081527f521671714dd36d366adf3fe2efec91d3f58a3131aad68e268821d8144b5d0845906020015b60405180910390a150565b6000806114d7611647565b90504267ffffffffffffffff808216908316116114f75760009250505090565b6115018183611cc6565b9250505090565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517ff935763cc7c57ee8ed6318ed71e756cca0731294c9f46ff5b386f36d6ff1417a90600090a250565b60008163ffffffff16116115db5760405162461bcd60e51b815260206004820152602a60248201527f44726177426561636f6e2f626561636f6e2d706572696f642d6772656174657260448201527f2d7468616e2d7a65726f00000000000000000000000000000000000000000000606482015260840161045b565b600480547fffffffff00000000ffffffffffffffffffffffffffffffffffffffffffffffff16600160c01b63ffffffff8416908102919091179091556040519081527f4727494dbd863e2084366f539d6ec569aaf7ab78582a34f006f004266777cd19906020016114c1565b60045460055460009161040591600160c01b90910463ffffffff169067ffffffffffffffff16611c25565b6004546000906001600160a01b039081169083166116f85760405162461bcd60e51b815260206004820152602860248201527f44726177426561636f6e2f647261772d686973746f72792d6e6f742d7a65726f60448201527f2d61646472657373000000000000000000000000000000000000000000000000606482015260840161045b565b806001600160a01b0316836001600160a01b031614156117805760405162461bcd60e51b815260206004820152602860248201527f44726177426561636f6e2f6578697374696e672d647261772d686973746f727960448201527f2d61646472657373000000000000000000000000000000000000000000000000606482015260840161045b565b6004805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385169081179091556040517feb70b03fab908e126e5efc33f8dfd2731fa89c716282a86769025f8dd4a6c1e090600090a25090919050565b6000611830826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166118c59092919063ffffffff16565b8051909150156118c0578080602001905181019061184e9190611a9f565b6118c05760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f74207375636365656400000000000000000000000000000000000000000000606482015260840161045b565b505050565b60606118d484846000856118dc565b949350505050565b6060824710156119545760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c0000000000000000000000000000000000000000000000000000606482015260840161045b565b843b6119a25760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161045b565b600080866001600160a01b031685876040516119be9190611b78565b60006040518083038185875af1925050503d80600081146119fb576040519150601f19603f3d011682016040523d82523d6000602084013e611a00565b606091505b5091509150611a10828286611a1b565b979650505050505050565b60608315611a2a5750816111be565b825115611a3a5782518084602001fd5b8160405162461bcd60e51b815260040161045b9190611b94565b600060208284031215611a6657600080fd5b81356111be81611d4a565b60008060408385031215611a8457600080fd5b8251611a8f81611d4a565b6020939093015192949293505050565b600060208284031215611ab157600080fd5b815180151581146111be57600080fd5b600060208284031215611ad357600080fd5b5051919050565b600060208284031215611aec57600080fd5b81356111be81611d5f565b600060208284031215611b0957600080fd5b81516111be81611d5f565b60008060408385031215611b2757600080fd5b8251611b3281611d5f565b6020840151909250611b4381611d5f565b809150509250929050565b600060208284031215611b6057600080fd5b813567ffffffffffffffff811681146111be57600080fd5b60008251611b8a818460208701611cef565b9190910192915050565b6020815260008251806020840152611bb3816040850160208701611cef565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b60008219821115611bf857611bf8611d1b565b500190565b600063ffffffff808316818516808303821115611c1c57611c1c611d1b565b01949350505050565b600067ffffffffffffffff808316818516808303821115611c1c57611c1c611d1b565b600067ffffffffffffffff80841680611c8a577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b92169190910492915050565b600067ffffffffffffffff80831681851681830481118215151615611cbd57611cbd611d1b565b02949350505050565b600067ffffffffffffffff83811690831681811015611ce757611ce7611d1b565b039392505050565b60005b83811015611d0a578181015183820152602001611cf2565b838111156112ef5750506000910152565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6001600160a01b0381168114610d1f57600080fd5b63ffffffff81168114610d1f57600080fdfea264697066735822122026a73622d5365663009325e2c371c24fd86c7196f0d37bc8dc1288bf1cf7bea564736f6c63430008060033",
              "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 0x26 0xA7 CALLDATASIZE 0x22 0xD5 CALLDATASIZE JUMP PUSH4 0x9325E2 0xC3 PUSH18 0xC24FD86C7196F0D37BC8DC1288BF1CF7BEA5 PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "1131:14710:38:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5885:128;;;:::i;:::-;;;4088:14:101;;4081:22;4063:41;;4051:2;4036:18;5885:128:38;;;;;;;;7352:1377;;;:::i;:::-;;5277:104;5356:10;:13;;;:18;;5277:104;;9850:90;9923:10;;;;;;;9850:90;;;12209:10:101;12197:23;;;12179:42;;12167:2;12152:18;9850:90:38;12134:93:101;9641:108:38;9729:10;:13;;;9641:108;;10356:531;;;:::i;9173:112::-;9257:21;;;;9173:112;;;12406:18:101;12394:31;;;12376:50;;12364:2;12349:18;9173:112:38;12331:101:101;9059:108:38;9141:19;;-1:-1:-1;;;9141:19:38;;;;9059:108;;9291:95;9369:10;;-1:-1:-1;;;;;9369:10:38;9291:95;;;-1:-1:-1;;;;;3222:55:101;;;3204:74;;3192:2;3177:18;9291:95:38;3159:125:101;7034:280:38;;;:::i;4991:122::-;;;:::i;3147:129:33:-;;;:::i;11172:137:38:-;;;;;;:::i;:::-;;:::i;9520:115::-;9608:10;:20;;;;;;9520:115;;2508:94:33;;;:::i;5554:237:38:-;;;:::i;8767:135::-;;;:::i;9755:89::-;9834:3;;-1:-1:-1;;;;;9834:3:38;9755:89;;11347:179;;;;;;:::i;:::-;;:::i;6355:285::-;;;:::i;1814:85:33:-;1860:7;1886:6;-1:-1:-1;;;;;1886:6:33;1814:85;;10925:209:38;;;;;;:::i;:::-;;:::i;8940:113::-;;;:::i;6678:318::-;;;;;;:::i;:::-;;:::i;10129:189::-;;;;;;:::i;:::-;;:::i;9392:90::-;9465:10;;;;;;;9392:90;;9978:113;;;:::i;2014:101:33:-;2095:13;;-1:-1:-1;;;;;2095:13:33;2014:101;;6051:125:38;;;:::i;2751:234:33:-;;;;;;:::i;:::-;;:::i;5885:128:38:-;5941:4;5964:21;:19;:21::i;:::-;:42;;;;-1:-1:-1;5356:10:38;:13;;;:18;5964:42;5957:49;;5885:128;:::o;7352:1377::-;5356:10;:13;;;3235:57;;;;-1:-1:-1;;;3235:57:38;;5268:2:101;3235:57:38;;;5250:21:101;5307:2;5287:18;;;5280:30;5346;5326:18;;;5319:58;5394:18;;3235:57:38;;;;;;;;;3310:16;:14;:16::i;:::-;3302:56;;;;-1:-1:-1;;;3302:56:38;;7213:2:101;3302:56:38;;;7195:21:101;7252:2;7232:18;;;7225:30;7291:29;7271:18;;;7264:57;7338:18;;3302:56:38;7185:177:101;3302:56:38;7456:3:::1;::::0;7473:10:::1;:13:::0;7456:31:::1;::::0;;;;7473:13:::1;::::0;;::::1;7456:31;::::0;::::1;12179:42:101::0;7433:20:38::1;::::0;-1:-1:-1;;;;;7456:3:38::1;::::0;:16:::1;::::0;12152:18:101;;7456:31:38::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7518:10;::::0;7631:19:::1;::::0;7433:54;;-1:-1:-1;7518:10:38::1;::::0;;::::1;::::0;::::1;::::0;7570:21:::1;::::0;;::::1;::::0;-1:-1:-1;;;7631:19:38;::::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;;;;;11388:13:101;;8106:26:38;;::::1;11370:32:101::0;;;;11431:24;;11522:21;;11500:20;;;11493:51;11575:24;;11674:23;;11652:20;;;11645:53;11740:24;11736:33;;;11714:20;;;11707:63;11812:24;11808:33;;;11786:20;;;11779:63;7660:29:38;;-1:-1:-1;7762:333:38;-1:-1:-1;;;;;8106:10:38;;::::1;::::0;:19:::1;::::0;11342::101;;8106:26:38::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:38::1;;::::0;::::1;;::::0;;;-1:-1:-1;8503:15:38::1;:11:::0;-1:-1:-1;8503:15:38::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;11999:25:101;;;8634:27:38::1;::::0;11987:2:101;11972:18;8634:27:38::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:38;;9040:2:101;3022:67:38;;;9022:21:101;9079:2;9059:18;;;9052:30;9118:34;9098:18;;;9091:62;9189:3;9169:18;;;9162:31;9210:19;;3022:67:38;9012:223:101;3022:67:38;5356:10;:13;;;:18;3099:62;;;;-1:-1:-1;;;3099:62:38;;5625:2:101;3099:62:38;;;5607:21:101;;;5644:18;;;5637:30;5703:34;5683:18;;;5676:62;5755:18;;3099:62:38;5597:182:101;3099:62:38;10466:3:::1;::::0;:19:::1;::::0;;;;;;;10426:16:::1;::::0;;;-1:-1:-1;;;;;10466:3:38;;::::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:38;-1:-1:-1;;;;;;10500:22:38;::::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:38;;::::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:38;;::::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:38;;;10715:25;;::::1;10750:32:::0;::::1;::::0;;10641:64;;-1:-1:-1;10641:64:38;-1:-1:-1;10817:14:38::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;12197:23:101::0;;;12179:42;;10847:33:38;::::1;::::0;::::1;::::0;12167:2:101;12152:18;10847:33:38::1;;;;;;;10415:472;;;;10356:531::o:0;7034:280::-;7092:15;:13;:15::i;:::-;7084:55;;;;-1:-1:-1;;;7084:55:38;;8684:2:101;7084:55:38;;;8666:21:101;8723:2;8703:18;;;8696:30;8762:29;8742:18;;;8735:57;8809:18;;7084:55:38;8656:177:101;7084:55:38;7168:10;:13;;7240:17;;;;;;7272:35;;7168:13;7210:20;;;;;12179:42:101;;;7168:13:38;;;7210:20;7168:13;;7272:35;;12167:2:101;12152:18;7272:35:38;;;;;;;7074:240;;7034:280::o;4991:122::-;5070:3;;5092:10;:13;5070:36;;;;;5092:13;;;;5070:36;;;12179:42:101;5047:4:38;;-1:-1:-1;;;;;5070:3:38;;:21;;12152:18:101;;5070:36:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;3147:129:33:-;4050:13;;-1:-1:-1;;;;;4050:13:33;4036:10;:27;4028:71;;;;-1:-1:-1;;;4028:71:33;;8324:2:101;4028:71:33;;;8306:21:101;8363:2;8343:18;;;8336:30;8402:33;8382:18;;;8375:61;8453:18;;4028:71:33;8296:181:101;4028:71:33;3219:13:::1;::::0;3209:24:::1;::::0;-1:-1:-1;;;;;3219:13:33::1;3209:9;:24::i;:::-;3243:13;:26:::0;;-1:-1:-1;;3243:26:33::1;::::0;;3147:129::o;11172:137:38:-;3838:10:33;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:33;;3819:58;;;;-1:-1:-1;;;3819:58:33;;7569:2:101;3819:58:33;;;7551:21:101;7608:2;7588:18;;;7581:30;7647:26;7627:18;;;7620:54;7691:18;;3819:58:33;7541:174:101;3819:58:33;2933:24:38::1;:22;:24::i;:::-;11275:27:::2;11290:11;11275:14;:27::i;:::-;11172:137:::0;:::o;2508:94:33:-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:33;;3819:58;;;;-1:-1:-1;;;3819:58:33;;7569:2:101;3819:58:33;;;7551:21:101;7608:2;7588:18;;;7581:30;7647:26;7627:18;;;7620:54;7691:18;;3819:58:33;7541:174:101;3819:58:33;2574:21:::1;2592:1;2574:9;:21::i;:::-;2508:94::o:0;5554:237:38:-;5629:10;:22;5609:4;;5629:22;;;;;5625:160;;-1:-1:-1;5679:5:38;;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:33;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:33;;3819:58;;;;-1:-1:-1;;;3819:58:33;;7569:2:101;3819:58:33;;;7551:21:101;7608:2;7588:18;;;7581:30;7647:26;7627:18;;;7620:54;7691:18;;3819:58:33;7541:174:101;3819:58:33;2933:24:38::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:38;;;;12856:15;6476:35;:157::i;10925:209::-;3838:10:33;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:33;;3819:58;;;;-1:-1:-1;;;3819:58:33;;7569:2:101;3819:58:33;;;7551:21:101;7608:2;7588:18;;;7581:30;7647:26;7627:18;;;7620:54;7691:18;;3819:58:33;7541:174:101;3819:58:33;2933:24:38::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:38;;;;6970:5;6841:35;:148::i;:::-;6822:167;6678:318;-1:-1:-1;;6678:318:38:o;10129:189::-;10248:11;3838:10:33;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:33;;3819:58;;;;-1:-1:-1;;;3819:58:33;;7569:2:101;3819:58:33;;;7551:21:101;7608:2;7588:18;;;7581:30;7647:26;7627:18;;;7620:54;7691:18;;3819:58:33;7541:174:101;3819:58:33;10282:29:38::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:33:-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:33;;3819:58;;;;-1:-1:-1;;;3819:58:33;;7569:2:101;3819:58:33;;;7551:21:101;7608:2;7588:18;;;7581:30;7647:26;7627:18;;;7620:54;7691:18;;3819:58:33;7541:174:101;3819:58:33;-1:-1:-1;;;;;2834:23:33;::::1;2826:73;;;::::0;-1:-1:-1;;;2826:73:33;;9800:2:101;2826:73:33::1;::::0;::::1;9782:21:101::0;9839:2;9819:18;;;9812:30;9878:34;9858:18;;;9851:62;9949:7;9929:18;;;9922:35;9974:19;;2826:73:33::1;9772:227:101::0;2826:73:33::1;2910:13;:25:::0;;-1:-1:-1;;2910:25:33::1;-1:-1:-1::0;;;;;2910:25:33;::::1;::::0;;::::1;::::0;;;2951:27:::1;::::0;::::1;::::0;-1:-1:-1;;2951:27:33::1;2751:234:::0;:::o;13747:122:38:-;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:38;;;;12470:79;12592:37;:::i;:::-;12566:64;;:22;:64;:::i;:::-;12559:71;;;12280:357;;;;;;:::o;2022:310:9:-;2171:39;;;;;2195:4;2171:39;;;3524:34:101;-1:-1:-1;;;;;3594:15:101;;;3574:18;;;3567:43;2148:20:9;;2213:5;;2171:15;;;;;3436:18:101;;2171:39:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:47;;;;:::i;:::-;2255:69;;;-1:-1:-1;;;;;3813:55:101;;2255:69:9;;;3795:74:101;3885:18;;;;3878:34;;;2255:69:9;;;;;;;;;;3768:18:101;;;;2255:69:9;;;;;;;;;;2278:22;2255:69;;;3878:34:101;;-1:-1:-1;2228:97:9;;2248:5;;2228:19;:97::i;:::-;2138:194;2022:310;;;:::o;3470:174:33:-;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:33;;;-1:-1:-1;;3562:18:33;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;13940:246:38:-;14065:10;:20;14021:12;;14065:20;;;;;:25;;:64;;-1:-1:-1;14109:10:38;:20;;;;;;14094:35;;14065:64;14044:135;;;;-1:-1:-1;;;14044:135:38;;11026:2:101;14044:135:38;;;11008:21:101;11065:2;11045:18;;;11038:30;11104:26;11084:18;;;11077:54;11148:18;;14044:135:38;10998:174:101;15631:208:38;15716:2;15702:11;:16;;;15694:62;;;;-1:-1:-1;;;15694:62:38;;7922:2:101;15694:62:38;;;7904:21:101;7961:2;7941:18;;;7934:30;8000:34;7980:18;;;7973:62;8071:3;8051:18;;;8044:31;8092:19;;15694:62:38;7894:223:101;15694:62:38;15766:10;:24;;;;;;;;;;;;;;;;;;15806:26;;12179:42:101;;;15806:26:38;;12167:2:101;12152:18;15806:26:38;;;;;;;;15631:208;:::o;13347:254::-;13411:6;13429:12;13444:20;:18;:20::i;:::-;13429:35;-1:-1:-1;12856:15:38;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:38;-1:-1:-1;;;;;11768:17:38;;;;;;;;11800:30;;;;-1:-1:-1;;11800:30:38;11695:142;:::o;15109:283::-;15221:1;15198:20;:24;;;15190:79;;;;-1:-1:-1;;;15190:79:38;;6395:2:101;15190:79:38;;;6377:21:101;6434:2;6414:18;;;6407:30;6473:34;6453:18;;;6446:62;6544:12;6524:18;;;6517:40;6574:19;;15190:79:38;6367:232:101;15190:79:38;15279:19;:42;;;;-1:-1:-1;;;15279:42:38;;;;;;;;;;;;;15337:48;;12179:42:101;;;15337:48:38;;12167:2:101;12152:18;15337:48:38;12134:93:101;13031:128:38;13133:19;;13109:21;;13084:6;;13109:43;;-1:-1:-1;;;13133:19:38;;;;;;13109:21;;:43;:::i;14424:516::-;14551:10;;14494:11;;-1:-1:-1;;;;;14551:10:38;;;;14579:37;;14571:90;;;;-1:-1:-1;;;14571:90:38;;10617:2:101;14571:90:38;;;10599:21:101;10656:2;10636:18;;;10629:30;10695:34;10675:18;;;10668:62;10766:10;10746:18;;;10739:38;10794:19;;14571:90:38;10589:230:101;14571:90:38;14728:19;-1:-1:-1;;;;;14693:55:38;14701:14;-1:-1:-1;;;;;14693:55:38;;;14672:142;;;;-1:-1:-1;;;14672:142:38;;5986:2:101;14672:142:38;;;5968:21:101;6025:2;6005:18;;;5998:30;6064:34;6044:18;;;6037:62;6135:10;6115:18;;;6108:38;6163:19;;14672:142:38;5958:230:101;14672:142:38;14825:10;:27;;-1:-1:-1;;14825:27:38;-1:-1:-1;;;;;14825:27:38;;;;;;;;14868:33;;;;-1:-1:-1;;14868:33:38;-1:-1:-1;14919:14:38;;14424:516;-1:-1:-1;14424:516:38:o;3207:706:9:-;3626:23;3652:69;3680:4;3652:69;;;;;;;;;;;;;;;;;3660:5;-1:-1:-1;;;;;3652:27:9;;;:69;;;;;:::i;:::-;3735:17;;3626:95;;-1:-1:-1;3735:21:9;3731:176;;3830:10;3819:30;;;;;;;;;;;;:::i;:::-;3811:85;;;;-1:-1:-1;;;3811:85:9;;10206:2:101;3811:85:9;;;10188:21:101;10245:2;10225:18;;;10218:30;10284:34;10264:18;;;10257:62;10355:12;10335:18;;;10328:40;10385:19;;3811:85:9;10178:232:101;3811:85:9;3277:636;3207:706;;:::o;3514:223:12:-;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:12:o;4601:499::-;4766:12;4823:5;4798:21;:30;;4790:81;;;;-1:-1:-1;;;4790:81:12;;6806:2:101;4790:81:12;;;6788:21:101;6845:2;6825:18;;;6818:30;6884:34;6864:18;;;6857:62;6955:8;6935:18;;;6928:36;6981:19;;4790:81:12;6778:228:101;4790:81:12;1087:20;;4881:60;;;;-1:-1:-1;;;4881:60:12;;9442:2:101;4881:60:12;;;9424:21:101;9481:2;9461:18;;;9454:30;9520:31;9500:18;;;9493:59;9569:18;;4881:60:12;9414:179:101;4881:60:12;4953:12;4967:23;4994:6;-1:-1:-1;;;;;4994:11:12;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:12:o;7214:692::-;7360:12;7388:7;7384:516;;;-1:-1:-1;7418:10:12;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:12;;;;;;;;:::i;14:247:101:-;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:101: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;1411:184;1481:6;1534:2;1522:9;1513:7;1509:23;1505:32;1502:2;;;1550:1;1547;1540:12;1502:2;-1:-1:-1;1573:16:101;;1492:103;-1:-1:-1;1492:103:101:o;1600:245::-;1658:6;1711:2;1699:9;1690:7;1686:23;1682:32;1679:2;;;1727:1;1724;1717:12;1679:2;1766:9;1753:23;1785:30;1809:5;1785:30;:::i;1850:249::-;1919:6;1972:2;1960:9;1951:7;1947:23;1943:32;1940:2;;;1988:1;1985;1978:12;1940:2;2020:9;2014:16;2039:30;2063:5;2039:30;:::i;2104:381::-;2181:6;2189;2242:2;2230:9;2221:7;2217:23;2213:32;2210:2;;;2258:1;2255;2248:12;2210:2;2290:9;2284:16;2309:30;2333:5;2309:30;:::i;:::-;2408:2;2393:18;;2387:25;2358:5;;-1:-1:-1;2421:32:101;2387:25;2421:32;:::i;:::-;2472:7;2462:17;;;2200:285;;;;;:::o;2490:284::-;2548:6;2601:2;2589:9;2580:7;2576:23;2572:32;2569:2;;;2617:1;2614;2607:12;2569:2;2656:9;2643:23;2706:18;2699:5;2695:30;2688:5;2685:41;2675:2;;2740:1;2737;2730:12;2779:274;2908:3;2946:6;2940:13;2962:53;3008:6;3003:3;2996:4;2988:6;2984:17;2962:53;:::i;:::-;3031:16;;;;;2916:137;-1:-1:-1;;2916:137:101:o;4619:442::-;4768:2;4757:9;4750:21;4731:4;4800:6;4794:13;4843:6;4838:2;4827:9;4823:18;4816:34;4859:66;4918:6;4913:2;4902:9;4898:18;4893:2;4885:6;4881:15;4859:66;:::i;:::-;4977:2;4965:15;4982:66;4961:88;4946:104;;;;5052:2;4942:113;;4740:321;-1:-1:-1;;4740:321:101:o;12437:128::-;12477:3;12508:1;12504:6;12501:1;12498:13;12495:2;;;12514:18;;:::i;:::-;-1:-1:-1;12550:9:101;;12485:80::o;12570:228::-;12609:3;12637:10;12674:2;12671:1;12667:10;12704:2;12701:1;12697:10;12735:3;12731:2;12727:12;12722:3;12719:21;12716:2;;;12743:18;;:::i;:::-;12779:13;;12617:181;-1:-1:-1;;;;12617:181:101:o;12803:236::-;12842:3;12870:18;12915:2;12912:1;12908:10;12945:2;12942:1;12938:10;12976:3;12972:2;12968:12;12963:3;12960:21;12957:2;;;12984:18;;:::i;13044:353::-;13083:1;13109:18;13154:2;13151:1;13147:10;13176:3;13166:2;;13213:77;13210:1;13203:88;13314:4;13311:1;13304:15;13342:4;13339:1;13332:15;13166:2;13375:10;;13371:20;;;;;13089:308;-1:-1:-1;;13089:308:101:o;13402:270::-;13441:7;13473:18;13518:2;13515:1;13511:10;13548:2;13545:1;13541:10;13604:3;13600:2;13596:12;13591:3;13588:21;13581:3;13574:11;13567:19;13563:47;13560:2;;;13613:18;;:::i;:::-;13653:13;;13453:219;-1:-1:-1;;;;13453:219:101:o;13677:229::-;13716:4;13745:18;13813:10;;;;13783;;13835:12;;;13832:2;;;13850:18;;:::i;:::-;13887:13;;13725:181;-1:-1:-1;;;13725:181:101:o;13911:258::-;13983:1;13993:113;14007:6;14004:1;14001:13;13993:113;;;14083:11;;;14077:18;14064:11;;;14057:39;14029:2;14022:10;13993:113;;;14124:6;14121:1;14118:13;14115:2;;;-1:-1:-1;;14159:1:101;14141:16;;14134:27;13964:205::o;14174:184::-;14226:77;14223:1;14216:88;14323:4;14320:1;14313:15;14347:4;14344:1;14337:15;14363:154;-1:-1:-1;;;;;14442:5:101;14438:54;14431:5;14428:65;14418:2;;14507:1;14504;14497:12;14522:121;14607:10;14600:5;14596:22;14589:5;14586:33;14576:2;;14633:1;14630;14623: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.8.6;\\n\\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..)\\n */\\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   */\\n  event RandomNumberRequested(uint32 indexed requestId, address indexed sender);\\n\\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   */\\n  event RandomNumberCompleted(uint32 indexed requestId, uint256 randomNumber);\\n\\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   */\\n  function getLastRequestId() external view returns (uint32 requestId);\\n\\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   */\\n  function getRequestFee() external view returns (address feeToken, uint256 requestFee);\\n\\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.\\n   * The calling contract should \\\"lock\\\" all activity until the result is available via the `requestId`\\n   */\\n  function requestRandomNumber() external returns (uint32 requestId, uint32 lockBlock);\\n\\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   */\\n  function isRequestComplete(uint32 requestId) external view returns (bool isCompleted);\\n\\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   */\\n  function randomNumber(uint32 requestId) external returns (uint256 randomNum);\\n}\\n\",\"keccak256\":\"0x24803ae776bba768a3a3f65d3b7e5fc100c7b5881a8e5e39d6c5df2735a3b5cb\",\"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 rngRequest 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\":\"0xee85be5d2589d345c67eaed219009338addc41cf6ac3b74b1ebd8fdd7de404da\",\"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": 5205,
                "contract": "@pooltogether/v4-core/contracts/DrawBeacon.sol:DrawBeacon",
                "label": "_owner",
                "offset": 0,
                "slot": "0",
                "type": "t_address"
              },
              {
                "astId": 5207,
                "contract": "@pooltogether/v4-core/contracts/DrawBeacon.sol:DrawBeacon",
                "label": "_pendingOwner",
                "offset": 0,
                "slot": "1",
                "type": "t_address"
              },
              {
                "astId": 6038,
                "contract": "@pooltogether/v4-core/contracts/DrawBeacon.sol:DrawBeacon",
                "label": "rng",
                "offset": 0,
                "slot": "2",
                "type": "t_contract(RNGInterface)5835"
              },
              {
                "astId": 6042,
                "contract": "@pooltogether/v4-core/contracts/DrawBeacon.sol:DrawBeacon",
                "label": "rngRequest",
                "offset": 0,
                "slot": "3",
                "type": "t_struct(RngRequest)6065_storage"
              },
              {
                "astId": 6046,
                "contract": "@pooltogether/v4-core/contracts/DrawBeacon.sol:DrawBeacon",
                "label": "drawBuffer",
                "offset": 0,
                "slot": "4",
                "type": "t_contract(IDrawBuffer)10930"
              },
              {
                "astId": 6049,
                "contract": "@pooltogether/v4-core/contracts/DrawBeacon.sol:DrawBeacon",
                "label": "rngTimeout",
                "offset": 20,
                "slot": "4",
                "type": "t_uint32"
              },
              {
                "astId": 6052,
                "contract": "@pooltogether/v4-core/contracts/DrawBeacon.sol:DrawBeacon",
                "label": "beaconPeriodSeconds",
                "offset": 24,
                "slot": "4",
                "type": "t_uint32"
              },
              {
                "astId": 6055,
                "contract": "@pooltogether/v4-core/contracts/DrawBeacon.sol:DrawBeacon",
                "label": "beaconPeriodStartedAt",
                "offset": 0,
                "slot": "5",
                "type": "t_uint64"
              },
              {
                "astId": 6058,
                "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)10930": {
                "encoding": "inplace",
                "label": "contract IDrawBuffer",
                "numberOfBytes": "20"
              },
              "t_contract(RNGInterface)5835": {
                "encoding": "inplace",
                "label": "contract RNGInterface",
                "numberOfBytes": "20"
              },
              "t_struct(RngRequest)6065_storage": {
                "encoding": "inplace",
                "label": "struct DrawBeacon.RngRequest",
                "members": [
                  {
                    "astId": 6060,
                    "contract": "@pooltogether/v4-core/contracts/DrawBeacon.sol:DrawBeacon",
                    "label": "id",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_uint32"
                  },
                  {
                    "astId": 6062,
                    "contract": "@pooltogether/v4-core/contracts/DrawBeacon.sol:DrawBeacon",
                    "label": "lockBlock",
                    "offset": 4,
                    "slot": "0",
                    "type": "t_uint32"
                  },
                  {
                    "astId": 6064,
                    "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": {
                "@_5230": {
                  "entryPoint": null,
                  "id": 5230,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_6939": {
                  "entryPoint": null,
                  "id": 6939,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_setOwner_5327": {
                  "entryPoint": 102,
                  "id": 5327,
                  "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:101",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:101",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "110:352:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "156:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "165:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "168:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "158:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "158:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "158:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "131:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "140:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "127:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "127:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "152:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "123:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "123:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "120:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "181:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "200:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "194:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "194:16:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "185:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "273:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "282:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "285:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "275:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "275:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "275:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "232:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "243:5:101"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "258:3:101",
                                                    "type": "",
                                                    "value": "160"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "263:1:101",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "254:3:101"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "254:11:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "267:1:101",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "250:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "250:19:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "239:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "239:31:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "229:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "229:42:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "222:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "222:50:101"
                              },
                              "nodeType": "YulIf",
                              "src": "219:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "298:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "308:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "298:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "322:40:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "347:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "358:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "343:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "343:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "337:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "337:25:101"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "326:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "414:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "423:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "426:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "416:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "416:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "416:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "384:7:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "397:7:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "406:4:101",
                                            "type": "",
                                            "value": "0xff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "393:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "393:18:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "381:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "381:31:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "374:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "374:39:101"
                              },
                              "nodeType": "YulIf",
                              "src": "371:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "439:17:101",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "449:7:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "439:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint8_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "68:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "79:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "91:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "99:6:101",
                            "type": ""
                          }
                        ],
                        "src": "14:448:101"
                      }
                    ]
                  },
                  "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": 101,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b506040516117cb3803806117cb83398101604081905261002f916100b6565b8161003981610066565b50610203805463ffffffff60401b191660ff92909216680100000000000000000291909117905550610102565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080604083850312156100c957600080fd5b82516001600160a01b03811681146100e057600080fd5b602084015190925060ff811681146100f757600080fd5b809150509250929050565b6116ba806101116000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c80638da5cb5b11610097578063d0ebdbe711610066578063d0ebdbe714610209578063d7bcb86b1461022c578063e30c39781461023f578063f2fde38b1461025057600080fd5b80638da5cb5b146101b5578063c4df5fed146101c6578063caeef7ec146101ce578063d0bb78f3146101e957600080fd5b8063648b1b4f116100d3578063648b1b4f14610176578063715018a61461017e5780638200d8731461018657806383c34aaf146101a257600080fd5b8063089eb925146101055780630edb1d2e14610132578063481c6a75146101475780634e71e0c81461016c575b600080fd5b6101186101133660046113ed565b610263565b60405163ffffffff90911681526020015b60405180910390f35b61013a61032e565b6040516101299190611533565b6002546001600160a01b03165b6040516001600160a01b039091168152602001610129565b6101746103a3565b005b61013a610431565b610174610586565b61018f61010081565b60405161ffff9091168152602001610129565b61013a6101b0366004611482565b6105fb565b6000546001600160a01b0316610154565b6101186106f6565b6102035468010000000000000000900463ffffffff16610118565b6101fc6101f7366004611378565b610798565b604051610129919061149d565b61021c61021736600461134f565b610948565b6040519015158152602001610129565b61011861023a3660046113ed565b6109bc565b6001546001600160a01b0316610154565b61017461025e36600461134f565b610ba9565b6000336102786002546001600160a01b031690565b6001600160a01b031614806102a657503361029b6000546001600160a01b031690565b6001600160a01b0316145b61031d5760405162461bcd60e51b815260206004820152602660248201527f4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f7260448201527f2d6f776e6572000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61032682610ce5565b90505b919050565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152604080516060810182526102035463ffffffff808216835264010000000082048116602084015268010000000000000000909104169181019190915261039e90610ee7565b905090565b6001546001600160a01b031633146103fd5760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572006044820152606401610314565b600154610412906001600160a01b0316610f22565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152604080516060810182526102035463ffffffff808216835264010000000082048116602084018190526801000000000000000090920416928201929092529060009060039061010081106104b2576104b2611658565b6040805160a08101825260029290920292909201805482526001015463ffffffff808216602084015267ffffffffffffffff640100000000830481169484018590526c010000000000000000000000008304166060840152600160a01b909104166080820152915061058057506040805160a081018252600354815260045463ffffffff808216602084015267ffffffffffffffff64010000000083048116948401949094526c0100000000000000000000000082049093166060830152600160a01b900490911660808201525b92915050565b336105996000546001600160a01b031690565b6001600160a01b0316146105ef5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610314565b6105f96000610f22565b565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152604080516060810182526102035463ffffffff808216835264010000000082048116602084015268010000000000000000909104169181019190915260039061066f9084610f7f565b63ffffffff16610100811061068657610686611658565b6040805160a08101825260029290920292909201805482526001015463ffffffff808216602084015267ffffffffffffffff64010000000083048116948401949094526c0100000000000000000000000082049093166060830152600160a01b9004909116608082015292915050565b604080516060810182526102035463ffffffff80821680845264010000000083048216602085015268010000000000000000909204169282019290925260009161074257600091505090565b6020810151600363ffffffff8216610100811061076157610761611658565b6002020160010160049054906101000a900467ffffffffffffffff1667ffffffffffffffff16600014610580575060400151919050565b606060008267ffffffffffffffff8111156107b5576107b561166e565b60405190808252806020026020018201604052801561080e57816020015b6040805160a0810182526000808252602080830182905292820181905260608201819052608082015282526000199092019101816107d35790505b50604080516060810182526102035463ffffffff808216835264010000000082048116602084015268010000000000000000909104169181019190915290915060005b8481101561093e57600361088b8388888581811061087157610871611658565b90506020020160208101906108869190611482565b610f7f565b63ffffffff1661010081106108a2576108a2611658565b6040805160a08101825260029290920292909201805482526001015463ffffffff808216602084015267ffffffffffffffff64010000000083048116948401949094526c0100000000000000000000000082049093166060830152600160a01b90049091166080820152835184908390811061092057610920611658565b6020026020010181905250808061093690611605565b915050610851565b5090949350505050565b60003361095d6000546001600160a01b031690565b6001600160a01b0316146109b35760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610314565b61032682610f92565b6000336109d16000546001600160a01b031690565b6001600160a01b031614610a275760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610314565b604080516060810182526102035463ffffffff808216835264010000000082048116602080850191909152680100000000000000009092048116938301939093528401519091600091610a7d9184919061107e16565b90508360038263ffffffff166101008110610a9a57610a9a611658565b82516002919091029190910190815560208083015160019092018054604080860151606087015160809097015163ffffffff9687166bffffffffffffffffffffffff199094169390931764010000000067ffffffffffffffff92831602177fffffffffffffffff000000000000000000000000ffffffffffffffffffffffff166c0100000000000000000000000091909716027fffffffffffffffff00000000ffffffffffffffffffffffffffffffffffffffff1695909517600160a01b9185169190910217905586015191519116907fc6f337e5507fd1bdebc6d79ed14168145e8c109d7b7139459692e24f06baed1790610b97908790611533565b60405180910390a25050506020015190565b33610bbc6000546001600160a01b031690565b6001600160a01b031614610c125760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610314565b6001600160a01b038116610c8e5760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610314565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b604080516060810182526102035463ffffffff8082168352640100000000820481166020840181905268010000000000000000909204169282019290925260009183906003906101008110610d3c57610d3c611658565b825160029190910291909101908155602080830151600190920180546040850151606086015160809096015163ffffffff9586166bffffffffffffffffffffffff199093169290921764010000000067ffffffffffffffff92831602177fffffffffffffffff000000000000000000000000ffffffffffffffffffffffff166c0100000000000000000000000091909616027fffffffffffffffff00000000ffffffffffffffffffffffffffffffffffffffff1694909417600160a01b948416949094029390931790925590840151610e18918391906111ae16565b8051610203805460208085015160409586015163ffffffff90811668010000000000000000027fffffffffffffffffffffffffffffffffffffffff00000000ffffffffffffffff928216640100000000027fffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000909516968216969096179390931716939093179091559085015191519116907fc6f337e5507fd1bdebc6d79ed14168145e8c109d7b7139459692e24f06baed1790610ed6908690611533565b60405180910390a250506020015190565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152815160039061066f90849061107e565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000610f8b838361107e565b9392505050565b6002546000906001600160a01b0390811690831681141561101b5760405162461bcd60e51b815260206004820152602360248201527f4d616e61676561626c652f6578697374696e672d6d616e616765722d6164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610314565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385811691821790925560405190918316907f9cb45c728de594dab506a1f1a8554e24c8eeaf983618d5ec5dd7bc6f3c49feee90600090a350600192915050565b600061108983611299565b80156110a55750826000015163ffffffff168263ffffffff1611155b6110f15760405162461bcd60e51b815260206004820152600f60248201527f4452422f6675747572652d6472617700000000000000000000000000000000006044820152606401610314565b82516000906111019084906115e0565b9050836040015163ffffffff168163ffffffff16106111625760405162461bcd60e51b815260206004820152601060248201527f4452422f657870697265642d64726177000000000000000000000000000000006044820152606401610314565b6000611182856020015163ffffffff16866040015163ffffffff166112c1565b90506111a58163ffffffff168363ffffffff16876040015163ffffffff166112ef565b95945050505050565b60408051606081018252600080825260208201819052918101919091526111d483611299565b15806111f7575082516111e89060016115a1565b63ffffffff168263ffffffff16145b6112435760405162461bcd60e51b815260206004820152601260248201527f4452422f6d7573742d62652d636f6e74696700000000000000000000000000006044820152606401610314565b60405180606001604052808363ffffffff168152602001611278856020015163ffffffff16866040015163ffffffff16611307565b63ffffffff168152602001846040015163ffffffff16815250905092915050565b6000816020015163ffffffff1660001480156112ba5750815163ffffffff16155b1592915050565b6000816112d057506000610580565b610f8b60016112df8486611589565b6112e991906115c9565b83611317565b60006112ff836112df8487611589565b949350505050565b6000610f8b6112e9846001611589565b6000610f8b8284611620565b803563ffffffff8116811461032957600080fd5b803567ffffffffffffffff8116811461032957600080fd5b60006020828403121561136157600080fd5b81356001600160a01b0381168114610f8b57600080fd5b6000806020838503121561138b57600080fd5b823567ffffffffffffffff808211156113a357600080fd5b818501915085601f8301126113b757600080fd5b8135818111156113c657600080fd5b8660208260051b85010111156113db57600080fd5b60209290920196919550909350505050565b600060a082840312156113ff57600080fd5b60405160a0810181811067ffffffffffffffff8211171561143057634e487b7160e01b600052604160045260246000fd5b6040528235815261144360208401611323565b602082015261145460408401611337565b604082015261146560608401611337565b606082015261147660808401611323565b60808201529392505050565b60006020828403121561149457600080fd5b610f8b82611323565b6020808252825182820181905260009190848201906040850190845b818110156115275761151483855180518252602081015163ffffffff80821660208501526040830151915067ffffffffffffffff80831660408601528060608501511660608601525080608084015116608085015250505050565b9284019260a092909201916001016114b9565b50909695505050505050565b60a08101610580828480518252602081015163ffffffff80821660208501526040830151915067ffffffffffffffff80831660408601528060608501511660608601525080608084015116608085015250505050565b6000821982111561159c5761159c611642565b500190565b600063ffffffff8083168185168083038211156115c0576115c0611642565b01949350505050565b6000828210156115db576115db611642565b500390565b600063ffffffff838116908316818110156115fd576115fd611642565b039392505050565b600060001982141561161957611619611642565b5060010190565b60008261163d57634e487b7160e01b600052601260045260246000fd5b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fdfea26469706673582212200b97b7480c29687762a9b5b9d489d241913aa15911658b25fde2f6a2380c13b064736f6c63430008060033",
              "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 SIGNEXTEND SWAP8 0xB7 0x48 0xC 0x29 PUSH9 0x7762A9B5B9D489D241 SWAP2 GASPRICE LOG1 MSIZE GT PUSH6 0x8B25FDE2F6A2 CODESIZE 0xC SGT 0xB0 PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "1184:4988:39:-:0;;;1825:122;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1881:6;1648:24:33;1881:6:39;1648:9:33;:24::i;:::-;-1:-1:-1;1899:14:39::1;:41:::0;;-1:-1:-1;;;;1899:41:39::1;;::::0;;;::::1;::::0;::::1;::::0;;;::::1;::::0;;-1:-1:-1;1184:4988:39;;3470:174:33;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:33;;;-1:-1:-1;;;;;;3562:18:33;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;14:448:101:-;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:101;;229:42;;219:2;;285:1;282;275:12;219:2;358;343:18;;337:25;308:5;;-1:-1:-1;406:4:101;393:18;;381:31;;371:2;;426:1;423;416:12;371:2;449:7;439:17;;;110:352;;;;;:::o;:::-;1184:4988:39;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@MAX_CARDINALITY_6911": {
                  "entryPoint": null,
                  "id": 6911,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@_drawIdToDrawIndex_7202": {
                  "entryPoint": 3967,
                  "id": 7202,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@_getNewestDraw_7221": {
                  "entryPoint": 3815,
                  "id": 7221,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_pushDraw_7262": {
                  "entryPoint": 3301,
                  "id": 7262,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_setManager_5165": {
                  "entryPoint": 3986,
                  "id": 5165,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_setOwner_5327": {
                  "entryPoint": 3874,
                  "id": 5327,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@claimOwnership_5307": {
                  "entryPoint": 931,
                  "id": 5307,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@getBufferCardinality_6950": {
                  "entryPoint": null,
                  "id": 6950,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getDrawCount_7072": {
                  "entryPoint": 1782,
                  "id": 7072,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getDraw_6968": {
                  "entryPoint": 1531,
                  "id": 6968,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@getDraws_7030": {
                  "entryPoint": 1944,
                  "id": 7030,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@getIndex_11965": {
                  "entryPoint": 4222,
                  "id": 11965,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@getNewestDraw_7085": {
                  "entryPoint": 814,
                  "id": 7085,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getOldestDraw_7125": {
                  "entryPoint": 1073,
                  "id": 7125,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@isInitialized_11858": {
                  "entryPoint": 4761,
                  "id": 11858,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@manager_5119": {
                  "entryPoint": null,
                  "id": 5119,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@newestIndex_12442": {
                  "entryPoint": 4801,
                  "id": 12442,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@nextIndex_12460": {
                  "entryPoint": 4871,
                  "id": 12460,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@offset_12415": {
                  "entryPoint": 4847,
                  "id": 12415,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@owner_5239": {
                  "entryPoint": null,
                  "id": 5239,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@pendingOwner_5248": {
                  "entryPoint": null,
                  "id": 5248,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@pushDraw_7142": {
                  "entryPoint": 611,
                  "id": 7142,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@push_11902": {
                  "entryPoint": 4526,
                  "id": 11902,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@renounceOwnership_5262": {
                  "entryPoint": 1414,
                  "id": 5262,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@setDraw_7185": {
                  "entryPoint": 2492,
                  "id": 7185,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@setManager_5134": {
                  "entryPoint": 2376,
                  "id": 5134,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@transferOwnership_5289": {
                  "entryPoint": 2985,
                  "id": 5289,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@wrap_12393": {
                  "entryPoint": 4887,
                  "id": 12393,
                  "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_$10697_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_$10697_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_Draw_$10697_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_$10697_memory_ptr__to_t_struct$_Draw_$10697_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:9351:101",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:101",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "62:115:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "72:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "94:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "81:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "81:20:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "72:5:101"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "155:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "164:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "167:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "157:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "157:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "157:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "123:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "134:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "141:10:101",
                                            "type": "",
                                            "value": "0xffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "130:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "130:22:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "120:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "120:33:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "113:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "113:41:101"
                              },
                              "nodeType": "YulIf",
                              "src": "110:2:101"
                            }
                          ]
                        },
                        "name": "abi_decode_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "41:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "52:5:101",
                            "type": ""
                          }
                        ],
                        "src": "14:163:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "230:123:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "240:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "262:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "249:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "249:20:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "240:5:101"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "331:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "340:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "343:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "333:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "333:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "333:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "291:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "302:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "309:18:101",
                                            "type": "",
                                            "value": "0xffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "298:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "298:30:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "288:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "288:41:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "281:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "281:49:101"
                              },
                              "nodeType": "YulIf",
                              "src": "278:2:101"
                            }
                          ]
                        },
                        "name": "abi_decode_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "209:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "220:5:101",
                            "type": ""
                          }
                        ],
                        "src": "182:171:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "428:239:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "474:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "483:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "486:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "476:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "476:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "476:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "449:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "458:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "445:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "445:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "470:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "441:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "441:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "438:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "499:36:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "525:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "512:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "512:23:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "503:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "621:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "630:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "633:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "623:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "623:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "623:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "557:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "568:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "575:42:101",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "564:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "564:54:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "554:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "554:65:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "547:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "547:73:101"
                              },
                              "nodeType": "YulIf",
                              "src": "544:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "646:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "656:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "646:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "394:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "405:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "417:6:101",
                            "type": ""
                          }
                        ],
                        "src": "358:309:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "776:510:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "822:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "831:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "834:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "824:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "824:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "824:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "797:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "806:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "793:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "793:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "818:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "789:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "789:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "786:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "847:37:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "874:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "861:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "861:23:101"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "851:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "893:28:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "903:18:101",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "897:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "948:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "957:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "960:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "950:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "950:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "950:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "936:6:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "944:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "933:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "933:14:101"
                              },
                              "nodeType": "YulIf",
                              "src": "930:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "973:32:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "987:9:101"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "998:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "983:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "983:22:101"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "977:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1053:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1062:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1065:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1055:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1055:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1055:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "1032:2:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1036:4:101",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1028:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1028:13:101"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1043:7:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1024:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1024:27:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1017:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1017:35:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1014:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1078:30:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "1105:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1092:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1092:16:101"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "1082:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1135:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1144:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1147:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1137:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1137:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1137:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1123:6:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1131:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1120:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1120:14:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1117:2:101"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1209:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1218:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1221:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1211:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1211:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1211:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "1174:2:101"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1182:1:101",
                                                "type": "",
                                                "value": "5"
                                              },
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "1185:6:101"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "1178:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1178:14:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1170:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1170:23:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1195:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1166:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1166:32:101"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1200:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1163:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1163:45:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1160:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1234:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "1248:2:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1252:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1244:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1244:11:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1234:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1264:16:101",
                              "value": {
                                "name": "length",
                                "nodeType": "YulIdentifier",
                                "src": "1274:6:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1264:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_array$_t_uint32_$dyn_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "734:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "745:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "757:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "765:6:101",
                            "type": ""
                          }
                        ],
                        "src": "672:614:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1384:785:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1431:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1440:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1443:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1433:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1433:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1433:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1405:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1414:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1401:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1401:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1426:3:101",
                                    "type": "",
                                    "value": "160"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1397:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1397:33:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1394:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1456:23:101",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1476:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1470:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1470:9:101"
                              },
                              "variables": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "1460:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1488:34:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "1510:6:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1518:3:101",
                                    "type": "",
                                    "value": "160"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1506:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1506:16:101"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "1492:10:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1605:168:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1626:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1629:77:101",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1619:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1619:88:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1619:88:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1727:1:101",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1730:4:101",
                                          "type": "",
                                          "value": "0x41"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1720:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1720:15:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1720:15:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1755:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1758:4:101",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1748:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1748:15:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1748:15:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1540:10:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1552:18:101",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1537:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1537:34:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1576:10:101"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1588:6:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1573:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1573:22:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "1534:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1534:62:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1531:2:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1789:2:101",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "1793:10:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1782:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1782:22:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1782:22:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "1820:6:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1841:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "calldataload",
                                      "nodeType": "YulIdentifier",
                                      "src": "1828:12:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1828:23:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1813:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1813:39:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1813:39:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1872:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1880:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1868:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1868:15:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "1907:9:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1918:2:101",
                                            "type": "",
                                            "value": "32"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1903:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1903:18:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "1885:17:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1885:37:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1861:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1861:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1861:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1943:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1951:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1939:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1939:15:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "1978:9:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1989:2:101",
                                            "type": "",
                                            "value": "64"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1974:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1974:18:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint64",
                                      "nodeType": "YulIdentifier",
                                      "src": "1956:17:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1956:37:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1932:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1932:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1932:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "2014:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2022:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2010:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2010:15:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "2049:9:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2060:2:101",
                                            "type": "",
                                            "value": "96"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2045:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2045:18:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint64",
                                      "nodeType": "YulIdentifier",
                                      "src": "2027:17:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2027:37:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2003:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2003:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2003:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "2085:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2093:3:101",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2081:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2081:16:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "2121:9:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2132:3:101",
                                            "type": "",
                                            "value": "128"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2117:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2117:19:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "2099:17:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2099:38:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2074:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2074:64:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2074:64:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2147:16:101",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "2157:6:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2147:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_struct$_Draw_$10697_memory_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1350:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1361:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1373:6:101",
                            "type": ""
                          }
                        ],
                        "src": "1291:878:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2243:115:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2289:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2298:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2301:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2291:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2291:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2291:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2264:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2273:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2260:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2260:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2285:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2256:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2256:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2253:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2314:38:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2342:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "2324:17:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2324:28:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2314:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2209:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2220:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2232:6:101",
                            "type": ""
                          }
                        ],
                        "src": "2174:184:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2411:453:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "2428:3:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2439:5:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "mload",
                                      "nodeType": "YulIdentifier",
                                      "src": "2433:5:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2433:12:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2421:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2421:25:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2421:25:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2455:43:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2485:5:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2492:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2481:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2481:16:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2475:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2475:23:101"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0",
                                  "nodeType": "YulTypedName",
                                  "src": "2459:12:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2507:20:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "2517:10:101",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2511:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "2547:3:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2552:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2543:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2543:14:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "memberValue0",
                                        "nodeType": "YulIdentifier",
                                        "src": "2563:12:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "2577:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2559:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2559:21:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2536:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2536:45:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2536:45:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2590:45:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2622:5:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2629:4:101",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2618:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2618:16:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2612:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2612:23:101"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2594:14:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2644:28:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "2654:18:101",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "2648:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "2692:3:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2697:4:101",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2688:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2688:14:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "memberValue0_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "2708:14:101"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "2724:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2704:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2704:23:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2681:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2681:47:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2681:47:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "2748:3:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2753:4:101",
                                        "type": "",
                                        "value": "0x60"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2744:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2744:14:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "2774:5:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "2781:4:101",
                                                "type": "",
                                                "value": "0x60"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "2770:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "2770:16:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "2764:5:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2764:23:101"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "2789:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2760:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2760:32:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2737:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2737:56:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2737:56:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "2813:3:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2818:4:101",
                                        "type": "",
                                        "value": "0x80"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2809:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2809:14:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "2839:5:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "2846:4:101",
                                                "type": "",
                                                "value": "0x80"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "2835:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "2835:16:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "2829:5:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2829:23:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "2854:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2825:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2825:32:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2802:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2802:56:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2802:56:101"
                            }
                          ]
                        },
                        "name": "abi_encode_struct_Draw",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "2395:5:101",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "2402:3:101",
                            "type": ""
                          }
                        ],
                        "src": "2363:501:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2970:125:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2980:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2992:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3003:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2988:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2988:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2980:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3022:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "3037:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3045:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3033:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3033:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3015:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3015:74:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3015:74:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2939:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2950:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2961:4:101",
                            "type": ""
                          }
                        ],
                        "src": "2869:226:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3297:499:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3307:12:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3317:2:101",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3311:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3328:32:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3346:9:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3357:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3342:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3342:18:101"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3332:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3376:9:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3387:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3369:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3369:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3369:21:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3399:17:101",
                              "value": {
                                "name": "tail_1",
                                "nodeType": "YulIdentifier",
                                "src": "3410:6:101"
                              },
                              "variables": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulTypedName",
                                  "src": "3403:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3425:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "3445:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3439:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3439:13:101"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "3429:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3468:6:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "3476:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3461:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3461:22:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3461:22:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3492:25:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3503:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3514:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3499:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3499:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "3492:3:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3526:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "3544:6:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3552:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3540:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3540:15:101"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "3530:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3564:10:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3573:1:101",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "3568:1:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3632:138:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "srcPtr",
                                              "nodeType": "YulIdentifier",
                                              "src": "3675:6:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "3669:5:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "3669:13:101"
                                        },
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "3684:3:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "abi_encode_struct_Draw",
                                        "nodeType": "YulIdentifier",
                                        "src": "3646:22:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3646:42:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3646:42:101"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "3701:21:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "3712:3:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3717:4:101",
                                          "type": "",
                                          "value": "0xa0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "3708:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3708:14:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "3701:3:101"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "3735:25:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "3749:6:101"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "3757:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "3745:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3745:15:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "3735:6:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "3594:1:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "3597:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3591:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3591:13:101"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "3605:18:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "3607:14:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "3616:1:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3619:1:101",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "3612:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3612:9:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "3607:1:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "3587:3:101",
                                "statements": []
                              },
                              "src": "3583:187:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3779:11:101",
                              "value": {
                                "name": "pos",
                                "nodeType": "YulIdentifier",
                                "src": "3787:3:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3779:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_array$_t_struct$_Draw_$10697_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_Draw_$10697_memory_ptr_$dyn_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3266:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3277:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3288:4:101",
                            "type": ""
                          }
                        ],
                        "src": "3100:696:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3896:92:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3906:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3918:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3929:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3914:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3914:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3906:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3948:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "3973:6:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "3966:6:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3966:14:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "3959:6:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3959:22:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3941:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3941:41:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3941:41:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3865:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3876:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3887:4:101",
                            "type": ""
                          }
                        ],
                        "src": "3801:187:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4167:225:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4184:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4195:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4177:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4177:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4177:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4218:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4229:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4214:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4214:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4234:2:101",
                                    "type": "",
                                    "value": "35"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4207:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4207:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4207:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4257:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4268:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4253:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4253:18:101"
                                  },
                                  {
                                    "hexValue": "4d616e61676561626c652f6578697374696e672d6d616e616765722d61646472",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4273:34:101",
                                    "type": "",
                                    "value": "Manageable/existing-manager-addr"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4246:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4246:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4246:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4328:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4339:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4324:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4324:18:101"
                                  },
                                  {
                                    "hexValue": "657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4344:5:101",
                                    "type": "",
                                    "value": "ess"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4317:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4317:33:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4317:33:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4359:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4371:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4382:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4367:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4367:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4359:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4144:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4158:4:101",
                            "type": ""
                          }
                        ],
                        "src": "3993:399:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4571:174:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4588:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4599:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4581:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4581:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4581:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4622:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4633:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4618:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4618:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4638:2:101",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4611:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4611:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4611:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4661:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4672:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4657:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4657:18:101"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4677:26:101",
                                    "type": "",
                                    "value": "Ownable/caller-not-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4650:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4650:54:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4650:54:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4713:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4725:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4736:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4721:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4721:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4713:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4548:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4562:4:101",
                            "type": ""
                          }
                        ],
                        "src": "4397:348:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4924:181:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4941:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4952:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4934:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4934:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4934:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4975:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4986:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4971:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4971:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4991:2:101",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4964:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4964:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4964:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5014:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5025:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5010:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5010:18:101"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5030:33:101",
                                    "type": "",
                                    "value": "Ownable/caller-not-pendingOwner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5003:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5003:61:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5003:61:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5073:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5085:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5096:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5081:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5081:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5073:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4901:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4915:4:101",
                            "type": ""
                          }
                        ],
                        "src": "4750:355:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5284:165:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5301:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5312:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5294:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5294:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5294:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5335:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5346:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5331:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5331:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5351:2:101",
                                    "type": "",
                                    "value": "15"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5324:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5324:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5324:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5374:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5385:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5370:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5370:18:101"
                                  },
                                  {
                                    "hexValue": "4452422f6675747572652d64726177",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5390:17:101",
                                    "type": "",
                                    "value": "DRB/future-draw"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5363:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5363:45:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5363:45:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5417:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5429:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5440:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5425:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5425:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5417:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_834af838efd93eb4158cc9f06d3c7758fab673f4aea9693aaa5b4a88a4e5a67b__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5261:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5275:4:101",
                            "type": ""
                          }
                        ],
                        "src": "5110:339:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5628:228:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5645:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5656:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5638:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5638:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5638:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5679:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5690:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5675:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5675:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5695:2:101",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5668:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5668:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5668:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5718:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5729:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5714:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5714:18:101"
                                  },
                                  {
                                    "hexValue": "4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f72",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5734:34:101",
                                    "type": "",
                                    "value": "Manageable/caller-not-manager-or"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5707:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5707:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5707:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5789:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5800:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5785:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5785:18:101"
                                  },
                                  {
                                    "hexValue": "2d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5805:8:101",
                                    "type": "",
                                    "value": "-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5778:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5778:36:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5778:36:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5823:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5835:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5846:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5831:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5831:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5823:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5605:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5619:4:101",
                            "type": ""
                          }
                        ],
                        "src": "5454:402:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6035:166:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6052:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6063:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6045:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6045:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6045:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6086:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6097:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6082:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6082:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6102:2:101",
                                    "type": "",
                                    "value": "16"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6075:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6075:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6075:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6125:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6136:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6121:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6121:18:101"
                                  },
                                  {
                                    "hexValue": "4452422f657870697265642d64726177",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6141:18:101",
                                    "type": "",
                                    "value": "DRB/expired-draw"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6114:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6114:46:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6114:46:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6169:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6181:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6192:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6177:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6177:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6169:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c668e5b129491f4ee820ede260478053e92cbf01d162d1c6f57c368703371103__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6012:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6026:4:101",
                            "type": ""
                          }
                        ],
                        "src": "5861:340:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6380:227:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6397:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6408:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6390:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6390:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6390:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6431:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6442:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6427:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6427:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6447:2:101",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6420:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6420:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6420:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6470:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6481:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6466:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6466:18:101"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d6164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6486:34:101",
                                    "type": "",
                                    "value": "Ownable/pendingOwner-not-zero-ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6459:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6459:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6459:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6541:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6552:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6537:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6537:18:101"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6557:7:101",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6530:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6530:35:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6530:35:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6574:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6586:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6597:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6582:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6582:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6574:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6357:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6371:4:101",
                            "type": ""
                          }
                        ],
                        "src": "6206:401:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6786:168:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6803:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6814:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6796:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6796:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6796:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6837:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6848:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6833:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6833:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6853:2:101",
                                    "type": "",
                                    "value": "18"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6826:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6826:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6826:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6876:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6887:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6872:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6872:18:101"
                                  },
                                  {
                                    "hexValue": "4452422f6d7573742d62652d636f6e746967",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6892:20:101",
                                    "type": "",
                                    "value": "DRB/must-be-contig"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6865:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6865:48:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6865:48:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6922:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6934:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6945:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6930:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6930:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6922:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_dcdf15f61e637ae9dfec563023332cc7a707c946c03e324a5dc1b934aaf4a816__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6763:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6777:4:101",
                            "type": ""
                          }
                        ],
                        "src": "6612:342:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7106:93:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7116:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7128:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7139:3:101",
                                    "type": "",
                                    "value": "160"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7124:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7124:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7116:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "7175:6:101"
                                  },
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7183:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_struct_Draw",
                                  "nodeType": "YulIdentifier",
                                  "src": "7152:22:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7152:41:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7152:41:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_struct$_Draw_$10697_memory_ptr__to_t_struct$_Draw_$10697_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7075:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7086:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7097:4:101",
                            "type": ""
                          }
                        ],
                        "src": "6959:240:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7303:89:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7313:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7325:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7336:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7321:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7321:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7313:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7355:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "7370:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7378:6:101",
                                        "type": "",
                                        "value": "0xffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "7366:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7366:19:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7348:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7348:38:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7348:38:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint16__to_t_uint16__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7272:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7283:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7294:4:101",
                            "type": ""
                          }
                        ],
                        "src": "7204:188:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7496:93:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7506:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7518:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7529:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7514:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7514:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7506:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7548:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "7563:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7571:10:101",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "7559:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7559:23:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7541:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7541:42:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7541:42:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7465:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7476:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7487:4:101",
                            "type": ""
                          }
                        ],
                        "src": "7397:192:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7642:80:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7669:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "7671:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7671:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7671:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "7658:1:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "7665:1:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "7661:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7661:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "7655:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7655:13:101"
                              },
                              "nodeType": "YulIf",
                              "src": "7652:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7700:16:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "7711:1:101"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "7714:1:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7707:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7707:9:101"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "7700:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "7625:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "7628:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "7634:3:101",
                            "type": ""
                          }
                        ],
                        "src": "7594:128:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7774:181:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7784:20:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "7794:10:101",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7788:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7813:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "7828:1:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7831:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "7824:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7824:10:101"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7817:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7843:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "7858:1:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7861:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "7854:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7854:10:101"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7847:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7898:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "7900:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7900:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7900:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7879:3:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "7888:2:101"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "7892:3:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "7884:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7884:12:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "7876:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7876:21:101"
                              },
                              "nodeType": "YulIf",
                              "src": "7873:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7929:20:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7940:3:101"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7945:3:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7936:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7936:13:101"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "7929:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "7757:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "7760:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "7766:3:101",
                            "type": ""
                          }
                        ],
                        "src": "7727:228:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8009:76:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8031:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "8033:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8033:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8033:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8025:1:101"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8028:1:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "8022:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8022:8:101"
                              },
                              "nodeType": "YulIf",
                              "src": "8019:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8062:17:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8074:1:101"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8077:1:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "8070:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8070:9:101"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "8062:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "7991:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "7994:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "8000:4:101",
                            "type": ""
                          }
                        ],
                        "src": "7960:125:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8138:173:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8148:20:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "8158:10:101",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8152:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8177:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8192:1:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8195:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "8188:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8188:10:101"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8181:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8207:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8222:1:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8225:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "8218:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8218:10:101"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8211:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8253:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "8255:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8255:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8255:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8243:3:101"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8248:3:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "8240:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8240:12:101"
                              },
                              "nodeType": "YulIf",
                              "src": "8237:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8284:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8296:3:101"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8301:3:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "8292:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8292:13:101"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "8284:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "8120:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "8123:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "8129:4:101",
                            "type": ""
                          }
                        ],
                        "src": "8090:221:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8363:148:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8454:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "8456:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8456:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8456:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "8379:5:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8386:66:101",
                                    "type": "",
                                    "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "8376:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8376:77:101"
                              },
                              "nodeType": "YulIf",
                              "src": "8373:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8485:20:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "8496:5:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8503:1:101",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8492:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8492:13:101"
                              },
                              "variableNames": [
                                {
                                  "name": "ret",
                                  "nodeType": "YulIdentifier",
                                  "src": "8485:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "increment_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "8345:5:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "ret",
                            "nodeType": "YulTypedName",
                            "src": "8355:3:101",
                            "type": ""
                          }
                        ],
                        "src": "8316:195:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8554:228:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8585:168:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8606:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8609:77:101",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8599:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8599:88:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8599:88:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8707:1:101",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8710:4:101",
                                          "type": "",
                                          "value": "0x12"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8700:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8700:15:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8700:15:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8735:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8738:4:101",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "8728:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8728:15:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8728:15:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8574:1:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "8567:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8567:9:101"
                              },
                              "nodeType": "YulIf",
                              "src": "8564:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8762:14:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8771:1:101"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8774:1:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mod",
                                  "nodeType": "YulIdentifier",
                                  "src": "8767:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8767:9:101"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "8762:1:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "mod_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "8539:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "8542:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "8548:1:101",
                            "type": ""
                          }
                        ],
                        "src": "8516:266:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8819:152:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8836:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8839:77:101",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8829:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8829:88:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8829:88:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8933:1:101",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8936:4:101",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8926:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8926:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8926:15:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8957:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8960:4:101",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "8950:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8950:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8950:15:101"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "8787:184:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9008:152:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9025:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9028:77:101",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9018:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9018:88:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9018:88:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9122:1:101",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9125:4:101",
                                    "type": "",
                                    "value": "0x32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9115:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9115:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9115:15:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9146:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9149:4:101",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "9139:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9139:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9139:15:101"
                            }
                          ]
                        },
                        "name": "panic_error_0x32",
                        "nodeType": "YulFunctionDefinition",
                        "src": "8976:184:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9197:152:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9214:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9217:77:101",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9207:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9207:88:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9207:88:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9311:1:101",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9314:4:101",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9304:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9304:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9304:15:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9335:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9338:4:101",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "9328:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9328:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9328:15:101"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "9165:184:101"
                      }
                    ]
                  },
                  "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_$10697_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_$10697_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_Draw_$10697_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_$10697_memory_ptr__to_t_struct$_Draw_$10697_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": 101,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106101005760003560e01c80638da5cb5b11610097578063d0ebdbe711610066578063d0ebdbe714610209578063d7bcb86b1461022c578063e30c39781461023f578063f2fde38b1461025057600080fd5b80638da5cb5b146101b5578063c4df5fed146101c6578063caeef7ec146101ce578063d0bb78f3146101e957600080fd5b8063648b1b4f116100d3578063648b1b4f14610176578063715018a61461017e5780638200d8731461018657806383c34aaf146101a257600080fd5b8063089eb925146101055780630edb1d2e14610132578063481c6a75146101475780634e71e0c81461016c575b600080fd5b6101186101133660046113ed565b610263565b60405163ffffffff90911681526020015b60405180910390f35b61013a61032e565b6040516101299190611533565b6002546001600160a01b03165b6040516001600160a01b039091168152602001610129565b6101746103a3565b005b61013a610431565b610174610586565b61018f61010081565b60405161ffff9091168152602001610129565b61013a6101b0366004611482565b6105fb565b6000546001600160a01b0316610154565b6101186106f6565b6102035468010000000000000000900463ffffffff16610118565b6101fc6101f7366004611378565b610798565b604051610129919061149d565b61021c61021736600461134f565b610948565b6040519015158152602001610129565b61011861023a3660046113ed565b6109bc565b6001546001600160a01b0316610154565b61017461025e36600461134f565b610ba9565b6000336102786002546001600160a01b031690565b6001600160a01b031614806102a657503361029b6000546001600160a01b031690565b6001600160a01b0316145b61031d5760405162461bcd60e51b815260206004820152602660248201527f4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f7260448201527f2d6f776e6572000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61032682610ce5565b90505b919050565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152604080516060810182526102035463ffffffff808216835264010000000082048116602084015268010000000000000000909104169181019190915261039e90610ee7565b905090565b6001546001600160a01b031633146103fd5760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572006044820152606401610314565b600154610412906001600160a01b0316610f22565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152604080516060810182526102035463ffffffff808216835264010000000082048116602084018190526801000000000000000090920416928201929092529060009060039061010081106104b2576104b2611658565b6040805160a08101825260029290920292909201805482526001015463ffffffff808216602084015267ffffffffffffffff640100000000830481169484018590526c010000000000000000000000008304166060840152600160a01b909104166080820152915061058057506040805160a081018252600354815260045463ffffffff808216602084015267ffffffffffffffff64010000000083048116948401949094526c0100000000000000000000000082049093166060830152600160a01b900490911660808201525b92915050565b336105996000546001600160a01b031690565b6001600160a01b0316146105ef5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610314565b6105f96000610f22565b565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152604080516060810182526102035463ffffffff808216835264010000000082048116602084015268010000000000000000909104169181019190915260039061066f9084610f7f565b63ffffffff16610100811061068657610686611658565b6040805160a08101825260029290920292909201805482526001015463ffffffff808216602084015267ffffffffffffffff64010000000083048116948401949094526c0100000000000000000000000082049093166060830152600160a01b9004909116608082015292915050565b604080516060810182526102035463ffffffff80821680845264010000000083048216602085015268010000000000000000909204169282019290925260009161074257600091505090565b6020810151600363ffffffff8216610100811061076157610761611658565b6002020160010160049054906101000a900467ffffffffffffffff1667ffffffffffffffff16600014610580575060400151919050565b606060008267ffffffffffffffff8111156107b5576107b561166e565b60405190808252806020026020018201604052801561080e57816020015b6040805160a0810182526000808252602080830182905292820181905260608201819052608082015282526000199092019101816107d35790505b50604080516060810182526102035463ffffffff808216835264010000000082048116602084015268010000000000000000909104169181019190915290915060005b8481101561093e57600361088b8388888581811061087157610871611658565b90506020020160208101906108869190611482565b610f7f565b63ffffffff1661010081106108a2576108a2611658565b6040805160a08101825260029290920292909201805482526001015463ffffffff808216602084015267ffffffffffffffff64010000000083048116948401949094526c0100000000000000000000000082049093166060830152600160a01b90049091166080820152835184908390811061092057610920611658565b6020026020010181905250808061093690611605565b915050610851565b5090949350505050565b60003361095d6000546001600160a01b031690565b6001600160a01b0316146109b35760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610314565b61032682610f92565b6000336109d16000546001600160a01b031690565b6001600160a01b031614610a275760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610314565b604080516060810182526102035463ffffffff808216835264010000000082048116602080850191909152680100000000000000009092048116938301939093528401519091600091610a7d9184919061107e16565b90508360038263ffffffff166101008110610a9a57610a9a611658565b82516002919091029190910190815560208083015160019092018054604080860151606087015160809097015163ffffffff9687166bffffffffffffffffffffffff199094169390931764010000000067ffffffffffffffff92831602177fffffffffffffffff000000000000000000000000ffffffffffffffffffffffff166c0100000000000000000000000091909716027fffffffffffffffff00000000ffffffffffffffffffffffffffffffffffffffff1695909517600160a01b9185169190910217905586015191519116907fc6f337e5507fd1bdebc6d79ed14168145e8c109d7b7139459692e24f06baed1790610b97908790611533565b60405180910390a25050506020015190565b33610bbc6000546001600160a01b031690565b6001600160a01b031614610c125760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610314565b6001600160a01b038116610c8e5760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610314565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b604080516060810182526102035463ffffffff8082168352640100000000820481166020840181905268010000000000000000909204169282019290925260009183906003906101008110610d3c57610d3c611658565b825160029190910291909101908155602080830151600190920180546040850151606086015160809096015163ffffffff9586166bffffffffffffffffffffffff199093169290921764010000000067ffffffffffffffff92831602177fffffffffffffffff000000000000000000000000ffffffffffffffffffffffff166c0100000000000000000000000091909616027fffffffffffffffff00000000ffffffffffffffffffffffffffffffffffffffff1694909417600160a01b948416949094029390931790925590840151610e18918391906111ae16565b8051610203805460208085015160409586015163ffffffff90811668010000000000000000027fffffffffffffffffffffffffffffffffffffffff00000000ffffffffffffffff928216640100000000027fffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000909516968216969096179390931716939093179091559085015191519116907fc6f337e5507fd1bdebc6d79ed14168145e8c109d7b7139459692e24f06baed1790610ed6908690611533565b60405180910390a250506020015190565b6040805160a081018252600080825260208201819052918101829052606081018290526080810191909152815160039061066f90849061107e565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000610f8b838361107e565b9392505050565b6002546000906001600160a01b0390811690831681141561101b5760405162461bcd60e51b815260206004820152602360248201527f4d616e61676561626c652f6578697374696e672d6d616e616765722d6164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610314565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385811691821790925560405190918316907f9cb45c728de594dab506a1f1a8554e24c8eeaf983618d5ec5dd7bc6f3c49feee90600090a350600192915050565b600061108983611299565b80156110a55750826000015163ffffffff168263ffffffff1611155b6110f15760405162461bcd60e51b815260206004820152600f60248201527f4452422f6675747572652d6472617700000000000000000000000000000000006044820152606401610314565b82516000906111019084906115e0565b9050836040015163ffffffff168163ffffffff16106111625760405162461bcd60e51b815260206004820152601060248201527f4452422f657870697265642d64726177000000000000000000000000000000006044820152606401610314565b6000611182856020015163ffffffff16866040015163ffffffff166112c1565b90506111a58163ffffffff168363ffffffff16876040015163ffffffff166112ef565b95945050505050565b60408051606081018252600080825260208201819052918101919091526111d483611299565b15806111f7575082516111e89060016115a1565b63ffffffff168263ffffffff16145b6112435760405162461bcd60e51b815260206004820152601260248201527f4452422f6d7573742d62652d636f6e74696700000000000000000000000000006044820152606401610314565b60405180606001604052808363ffffffff168152602001611278856020015163ffffffff16866040015163ffffffff16611307565b63ffffffff168152602001846040015163ffffffff16815250905092915050565b6000816020015163ffffffff1660001480156112ba5750815163ffffffff16155b1592915050565b6000816112d057506000610580565b610f8b60016112df8486611589565b6112e991906115c9565b83611317565b60006112ff836112df8487611589565b949350505050565b6000610f8b6112e9846001611589565b6000610f8b8284611620565b803563ffffffff8116811461032957600080fd5b803567ffffffffffffffff8116811461032957600080fd5b60006020828403121561136157600080fd5b81356001600160a01b0381168114610f8b57600080fd5b6000806020838503121561138b57600080fd5b823567ffffffffffffffff808211156113a357600080fd5b818501915085601f8301126113b757600080fd5b8135818111156113c657600080fd5b8660208260051b85010111156113db57600080fd5b60209290920196919550909350505050565b600060a082840312156113ff57600080fd5b60405160a0810181811067ffffffffffffffff8211171561143057634e487b7160e01b600052604160045260246000fd5b6040528235815261144360208401611323565b602082015261145460408401611337565b604082015261146560608401611337565b606082015261147660808401611323565b60808201529392505050565b60006020828403121561149457600080fd5b610f8b82611323565b6020808252825182820181905260009190848201906040850190845b818110156115275761151483855180518252602081015163ffffffff80821660208501526040830151915067ffffffffffffffff80831660408601528060608501511660608601525080608084015116608085015250505050565b9284019260a092909201916001016114b9565b50909695505050505050565b60a08101610580828480518252602081015163ffffffff80821660208501526040830151915067ffffffffffffffff80831660408601528060608501511660608601525080608084015116608085015250505050565b6000821982111561159c5761159c611642565b500190565b600063ffffffff8083168185168083038211156115c0576115c0611642565b01949350505050565b6000828210156115db576115db611642565b500390565b600063ffffffff838116908316818110156115fd576115fd611642565b039392505050565b600060001982141561161957611619611642565b5060010190565b60008261163d57634e487b7160e01b600052601260045260246000fd5b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fdfea26469706673582212200b97b7480c29687762a9b5b9d489d241913aa15911658b25fde2f6a2380c13b064736f6c63430008060033",
              "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 SIGNEXTEND SWAP8 0xB7 0x48 0xC 0x29 PUSH9 0x7762A9B5B9D489D241 SWAP2 GASPRICE LOG1 MSIZE GT PUSH6 0x8B25FDE2F6A2 CODESIZE 0xC SGT 0xB0 PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "1184:4988:39:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4071:179;;;;;;:::i;:::-;;:::i;:::-;;;7571:10:101;7559:23;;;7541:42;;7529:2;7514:18;4071:179:39;;;;;;;;3396:136;;;:::i;:::-;;;;;;;:::i;1403:89:32:-;1477:8;;-1:-1:-1;;;;;1477:8:32;1403:89;;;-1:-1:-1;;;;;3033:55:101;;;3015:74;;3003:2;2988:18;1403:89:32;2970:125:101;3147:129:33;;;:::i;:::-;;3570:463:39;;;:::i;2508:94:33:-;;;:::i;1342:44:39:-;;1383:3;1342:44;;;;;7378:6:101;7366:19;;;7348:38;;7336:2;7321:18;1342:44:39;7303:89:101;2201:171:39;;;;;;:::i;:::-;;:::i;1814:85:33:-;1860:7;1886:6;-1:-1:-1;;;;;1886:6:33;1814:85;;2934:424:39;;;:::i;2041:122::-;2130:14;:26;;;;;;2041:122;;2410:486;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1744:123:32:-;;;;;;:::i;:::-;;:::i;:::-;;;3966:14:101;;3959:22;3941:41;;3929:2;3914:18;1744:123:32;3896:92:101;4288:348:39;;;;;;:::i;:::-;;:::i;2014:101:33:-;2095:13;;-1:-1:-1;;;;;2095:13:33;2014:101;;2751:234;;;;;;:::i;:::-;;:::i;4071:179:39:-;4198:6;2861:10:32;2848:9;1477:8;;-1:-1:-1;;;;;1477:8:32;;1403:89;2848:9;-1:-1:-1;;;;;2848:23:32;;:48;;;-1:-1:-1;2886:10:32;2875:7;1860::33;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;2875:7:32;-1:-1:-1;;;;;2875:21:32;;2848:48;2840:99;;;;-1:-1:-1;;;2840:99:32;;5656:2:101;2840:99:32;;;5638:21:101;5695:2;5675:18;;;5668:30;5734:34;5714:18;;;5707:62;5805:8;5785:18;;;5778:36;5831:19;;2840:99:32;;;;;;;;;4227:16:39::1;4237:5;4227:9;:16::i;:::-;4220:23;;2949:1:32;4071:179:39::0;;;:::o;3396:136::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3495:30:39;;;;;;;;3510:14;3495:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:14;:30::i;:::-;3488:37;;3396:136;:::o;3147:129:33:-;4050:13;;-1:-1:-1;;;;;4050:13:33;4036:10;:27;4028:71;;;;-1:-1:-1;;;4028:71:33;;4952:2:101;4028:71:33;;;4934:21:101;4991:2;4971:18;;;4964:30;5030:33;5010:18;;;5003:61;5081:18;;4028:71:33;4924:181:101;4028:71:33;3219:13:::1;::::0;3209:24:::1;::::0;-1:-1:-1;;;;;3219:13:33::1;3209:9;:24::i;:::-;3243:13;:26:::0;;-1:-1:-1;;3243:26:33::1;::::0;;3147:129::o;3570:463:39:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3737:55:39;;;;;;;;3778:14;3737:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:38;;3833:14;;3737:55;3833:32;;;;;;:::i;:::-;3802:63;;;;;;;;3833:32;;;;;;;;;3802:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;3802:63:39;;;;;;;;;-1:-1:-1;3876:129:39;;-1:-1:-1;3970:24:39;;;;;;;;3977:14;3970:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;3970:24:39;;;;;;;;;3876:129;4022:4;3570:463;-1:-1:-1;;3570:463:39:o;2508:94:33:-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:33;;3819:58;;;;-1:-1:-1;;;3819:58:33;;4599:2:101;3819:58:33;;;4581:21:101;4638:2;4618:18;;;4611:30;4677:26;4657:18;;;4650:54;4721:18;;3819:58:33;4571:174:101;3819:58:33;2574:21:::1;2592:1;2574:9;:21::i;:::-;2508:94::o:0;2201:171:39:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2322:42:39;;;;;;;;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:39;;;;;;;;;;2201:171;-1:-1:-1;;2201:171:39: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:39;;;;2934:424;-1:-1:-1;2934:424:39:o;2410:486::-;2520:25;2561:31;2618:8;2595:39;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2595:39:39;;-1:-1:-1;;2595:39:39;;;;;;;;;;;-1:-1:-1;2644:55:39;;;;;;;;2685:14;2644:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;2561:73;;-1:-1:-1;2644:38:39;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:39;;;;;;;;;:12;;:5;;2788;;2782:12;;;;;;:::i;:::-;;;;;;:74;;;;2759:7;;;;;:::i;:::-;;;;2710:157;;;-1:-1:-1;2884:5:39;;2410:486;-1:-1:-1;;;;2410:486:39:o;1744:123:32:-;1813:4;3838:10:33;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:33;;3819:58;;;;-1:-1:-1;;;3819:58:33;;4599:2:101;3819:58:33;;;4581:21:101;4638:2;4618:18;;;4611:30;4677:26;4657:18;;;4650:54;4721:18;;3819:58:33;4571:174:101;3819:58:33;1836:24:32::1;1848:11;1836;:24::i;4288:348:39:-:0;4376:6;3838:10:33;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:33;;3819:58;;;;-1:-1:-1;;;3819:58:33;;4599:2:101;3819:58:33;;;4581:21:101;4638:2;4618:18;;;4611:30;4677:26;4657:18;;;4650:54;4721:18;;3819:58:33;4571:174:101;3819:58:33;4394:55:39::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:39;;;;;;;;::::1;::::0;;::::1;;;::::0;;;;;;::::1;;::::0;;;;;;-1:-1:-1;;;4516:32:39;;::::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:39::1;;::::0;;4288:348::o;2751:234:33:-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:33;;3819:58;;;;-1:-1:-1;;;3819:58:33;;4599:2:101;3819:58:33;;;4581:21:101;4638:2;4618:18;;;4611:30;4677:26;4657:18;;;4650:54;4721:18;;3819:58:33;4571:174:101;3819:58:33;-1:-1:-1;;;;;2834:23:33;::::1;2826:73;;;::::0;-1:-1:-1;;;2826:73:33;;6408:2:101;2826:73:33::1;::::0;::::1;6390:21:101::0;6447:2;6427:18;;;6420:30;6486:34;6466:18;;;6459:62;6557:7;6537:18;;;6530:35;6582:19;;2826:73:33::1;6380:227:101::0;2826:73:33::1;2910:13;:25:::0;;-1:-1:-1;;2910:25:33::1;-1:-1:-1::0;;;;;2910:25:33;::::1;::::0;;::::1;::::0;;;2951:27:::1;::::0;::::1;::::0;-1:-1:-1;;2951:27:33::1;2751:234:::0;:::o;5825:345:39:-;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:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5980:44:39;;;;;;;;;;;;;;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:39;;;;5825:345::o;5384:217::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5574:18:39;;5542:14;;5557:36;;5574:7;;5557:16;:36::i;3470:174:33:-;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:33;;;-1:-1:-1;;3562:18:33;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;4960:193:39:-;5092:6;5121:25;:7;5138;5121:16;:25::i;:::-;5114:32;4960:193;-1:-1:-1;;;4960:193:39:o;2109:326:32:-;2211:8;;2168:4;;-1:-1:-1;;;;;2211:8:32;;;;2238:31;;;;;2230:79;;;;-1:-1:-1;;;2230:79:32;;4195:2:101;2230:79:32;;;4177:21:101;4234:2;4214:18;;;4207:30;4273:34;4253:18;;;4246:62;4344:5;4324:18;;;4317:33;4367:19;;2230:79:32;4167:225:101;2230:79:32;2320:8;:22;;-1:-1:-1;;2320:22:32;-1:-1:-1;;;;;2320:22:32;;;;;;;;;2358:49;;2320:22;;2358:49;;;;;-1:-1:-1;;2358:49:32;-1:-1:-1;2424:4:32;;2109:326;-1:-1:-1;;2109:326:32:o;1587:517:58:-;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:58;;5312:2:101;1685:83:58;;;5294:21:101;5351:2;5331:18;;;5324:30;5390:17;5370:18;;;5363:45;5425:18;;1685:83:58;5284:165:101;1685:83:58;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:58;;6063:2:101;1838:62:58;;;6045:21:101;6102:2;6082:18;;;6075:30;6141:18;6121;;;6114:46;6177:18;;1838:62:58;6035:166:101;1838:62:58;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:58:o;919:438::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;1029:22:58;1043:7;1029:13;:22::i;:::-;1028:23;:60;;;-1:-1:-1;1066:18:58;;:22;;1087:1;1066:22;:::i;:::-;1055:33;;:7;:33;;;1028:60;1020:91;;;;-1:-1:-1;;;1020:91:58;;6814:2:101;1020:91:58;;;6796:21:101;6853:2;6833:18;;;6826:30;6892:20;6872:18;;;6865:48;6930:18;;1020:91:58;6786:168:101;1020:91:58;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:58;;:23;;;692:49;690:52;;598:151;-1:-1:-1;;598:151:58:o;1666:262:62:-;1776:7;1803:17;1799:56;;-1:-1:-1;1843:1:62;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:62: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:101:-;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:101;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:101;;-1:-1:-1;;;;776:510:101:o;1291:878::-;1373:6;1426:3;1414:9;1405:7;1401:23;1397:33;1394:2;;;1443:1;1440;1433:12;1394:2;1476;1470:9;1518:3;1510:6;1506:16;1588:6;1576:10;1573:22;1552:18;1540:10;1537:34;1534:62;1531:2;;;-1:-1:-1;;;1626:1:101;1619:88;1730:4;1727:1;1720:15;1758:4;1755:1;1748:15;1531:2;1789;1782:22;1828:23;;1813:39;;1885:37;1918:2;1903:18;;1885:37;:::i;:::-;1880:2;1872:6;1868:15;1861:62;1956:37;1989:2;1978:9;1974:18;1956:37;:::i;:::-;1951:2;1943:6;1939:15;1932:62;2027:37;2060:2;2049:9;2045:18;2027:37;:::i;:::-;2022:2;2014:6;2010:15;2003:62;2099:38;2132:3;2121:9;2117:19;2099:38;:::i;:::-;2093:3;2081:16;;2074:64;2085:6;1384:785;-1:-1:-1;;;1384:785:101:o;2174:184::-;2232:6;2285:2;2273:9;2264:7;2260:23;2256:32;2253:2;;;2301:1;2298;2291:12;2253:2;2324:28;2342:9;2324:28;:::i;3100:696::-;3317:2;3369:21;;;3439:13;;3342:18;;;3461:22;;;3288:4;;3317:2;3540:15;;;;3514:2;3499:18;;;3288:4;3583:187;3597:6;3594:1;3591:13;3583:187;;;3646:42;3684:3;3675:6;3669:13;2439:5;2433:12;2428:3;2421:25;2492:4;2485:5;2481:16;2475:23;2517:10;2577:2;2563:12;2559:21;2552:4;2547:3;2543:14;2536:45;2629:4;2622:5;2618:16;2612:23;2590:45;;2654:18;2724:2;2708:14;2704:23;2697:4;2692:3;2688:14;2681:47;2789:2;2781:4;2774:5;2770:16;2764:23;2760:32;2753:4;2748:3;2744:14;2737:56;;2854:2;2846:4;2839:5;2835:16;2829:23;2825:32;2818:4;2813:3;2809:14;2802:56;;;2411:453;;;3646:42;3745:15;;;;3717:4;3708:14;;;;;3619:1;3612:9;3583:187;;;-1:-1:-1;3787:3:101;;3297:499;-1:-1:-1;;;;;;3297:499:101:o;6959:240::-;7139:3;7124:19;;7152:41;7128:9;7175:6;2439:5;2433:12;2428:3;2421:25;2492:4;2485:5;2481:16;2475:23;2517:10;2577:2;2563:12;2559:21;2552:4;2547:3;2543:14;2536:45;2629:4;2622:5;2618:16;2612:23;2590:45;;2654:18;2724:2;2708:14;2704:23;2697:4;2692:3;2688:14;2681:47;2789:2;2781:4;2774:5;2770:16;2764:23;2760:32;2753:4;2748:3;2744:14;2737:56;;2854:2;2846:4;2839:5;2835:16;2829:23;2825:32;2818:4;2813:3;2809:14;2802:56;;;2411:453;;;7594:128;7634:3;7665:1;7661:6;7658:1;7655:13;7652:2;;;7671:18;;:::i;:::-;-1:-1:-1;7707:9:101;;7642:80::o;7727:228::-;7766:3;7794:10;7831:2;7828:1;7824:10;7861:2;7858:1;7854:10;7892:3;7888:2;7884:12;7879:3;7876:21;7873:2;;;7900:18;;:::i;:::-;7936:13;;7774:181;-1:-1:-1;;;;7774:181:101:o;7960:125::-;8000:4;8028:1;8025;8022:8;8019:2;;;8033:18;;:::i;:::-;-1:-1:-1;8070:9:101;;8009:76::o;8090:221::-;8129:4;8158:10;8218;;;;8188;;8240:12;;;8237:2;;;8255:18;;:::i;:::-;8292:13;;8138:173;-1:-1:-1;;;8138:173:101:o;8316:195::-;8355:3;-1:-1:-1;;8379:5:101;8376:77;8373:2;;;8456:18;;:::i;:::-;-1:-1:-1;8503:1:101;8492:13;;8363:148::o;8516:266::-;8548:1;8574;8564:2;;-1:-1:-1;;;8606:1:101;8599:88;8710:4;8707:1;8700:15;8738:4;8735:1;8728:15;8564:2;-1:-1:-1;8767:9:101;;8554:228::o;8787:184::-;-1:-1:-1;;;8836:1:101;8829:88;8936:4;8933:1;8926:15;8960:4;8957:1;8950:15;8976:184;-1:-1:-1;;;9025:1:101;9018:88;9125:4;9122:1;9115:15;9149:4;9146:1;9139:15;9165:184;-1:-1:-1;;;9214:1:101;9207:88;9314:4;9311:1;9304:15;9338:4;9335:1;9328: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.8.6;\\n\\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..)\\n */\\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   */\\n  event RandomNumberRequested(uint32 indexed requestId, address indexed sender);\\n\\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   */\\n  event RandomNumberCompleted(uint32 indexed requestId, uint256 randomNumber);\\n\\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   */\\n  function getLastRequestId() external view returns (uint32 requestId);\\n\\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   */\\n  function getRequestFee() external view returns (address feeToken, uint256 requestFee);\\n\\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.\\n   * The calling contract should \\\"lock\\\" all activity until the result is available via the `requestId`\\n   */\\n  function requestRandomNumber() external returns (uint32 requestId, uint32 lockBlock);\\n\\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   */\\n  function isRequestComplete(uint32 requestId) external view returns (bool isCompleted);\\n\\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   */\\n  function randomNumber(uint32 requestId) external returns (uint256 randomNum);\\n}\\n\",\"keccak256\":\"0x24803ae776bba768a3a3f65d3b7e5fc100c7b5881a8e5e39d6c5df2735a3b5cb\",\"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": 5205,
                "contract": "@pooltogether/v4-core/contracts/DrawBuffer.sol:DrawBuffer",
                "label": "_owner",
                "offset": 0,
                "slot": "0",
                "type": "t_address"
              },
              {
                "astId": 5207,
                "contract": "@pooltogether/v4-core/contracts/DrawBuffer.sol:DrawBuffer",
                "label": "_pendingOwner",
                "offset": 0,
                "slot": "1",
                "type": "t_address"
              },
              {
                "astId": 5103,
                "contract": "@pooltogether/v4-core/contracts/DrawBuffer.sol:DrawBuffer",
                "label": "_manager",
                "offset": 0,
                "slot": "2",
                "type": "t_address"
              },
              {
                "astId": 6917,
                "contract": "@pooltogether/v4-core/contracts/DrawBuffer.sol:DrawBuffer",
                "label": "drawRingBuffer",
                "offset": 0,
                "slot": "3",
                "type": "t_array(t_struct(Draw)10697_storage)256_storage"
              },
              {
                "astId": 6921,
                "contract": "@pooltogether/v4-core/contracts/DrawBuffer.sol:DrawBuffer",
                "label": "bufferMetadata",
                "offset": 0,
                "slot": "515",
                "type": "t_struct(Buffer)11836_storage"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_array(t_struct(Draw)10697_storage)256_storage": {
                "base": "t_struct(Draw)10697_storage",
                "encoding": "inplace",
                "label": "struct IDrawBeacon.Draw[256]",
                "numberOfBytes": "16384"
              },
              "t_struct(Buffer)11836_storage": {
                "encoding": "inplace",
                "label": "struct DrawRingBufferLib.Buffer",
                "members": [
                  {
                    "astId": 11831,
                    "contract": "@pooltogether/v4-core/contracts/DrawBuffer.sol:DrawBuffer",
                    "label": "lastDrawId",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_uint32"
                  },
                  {
                    "astId": 11833,
                    "contract": "@pooltogether/v4-core/contracts/DrawBuffer.sol:DrawBuffer",
                    "label": "nextIndex",
                    "offset": 4,
                    "slot": "0",
                    "type": "t_uint32"
                  },
                  {
                    "astId": 11835,
                    "contract": "@pooltogether/v4-core/contracts/DrawBuffer.sol:DrawBuffer",
                    "label": "cardinality",
                    "offset": 8,
                    "slot": "0",
                    "type": "t_uint32"
                  }
                ],
                "numberOfBytes": "32"
              },
              "t_struct(Draw)10697_storage": {
                "encoding": "inplace",
                "label": "struct IDrawBeacon.Draw",
                "members": [
                  {
                    "astId": 10688,
                    "contract": "@pooltogether/v4-core/contracts/DrawBuffer.sol:DrawBuffer",
                    "label": "winningRandomNumber",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_uint256"
                  },
                  {
                    "astId": 10690,
                    "contract": "@pooltogether/v4-core/contracts/DrawBuffer.sol:DrawBuffer",
                    "label": "drawId",
                    "offset": 0,
                    "slot": "1",
                    "type": "t_uint32"
                  },
                  {
                    "astId": 10692,
                    "contract": "@pooltogether/v4-core/contracts/DrawBuffer.sol:DrawBuffer",
                    "label": "timestamp",
                    "offset": 4,
                    "slot": "1",
                    "type": "t_uint64"
                  },
                  {
                    "astId": 10694,
                    "contract": "@pooltogether/v4-core/contracts/DrawBuffer.sol:DrawBuffer",
                    "label": "beaconPeriodStartedAt",
                    "offset": 12,
                    "slot": "1",
                    "type": "t_uint64"
                  },
                  {
                    "astId": 10696,
                    "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 drawIds to consider",
                  "user": "The users address"
                },
                "returns": {
                  "_0": "Array of balances"
                }
              },
              "getPrizeDistributionBuffer()": {
                "returns": {
                  "_0": "IPrizeDistributionBuffer"
                }
              }
            },
            "title": "PoolTogether V4 DrawCalculator",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_7360": {
                  "entryPoint": null,
                  "id": 7360,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "abi_decode_tuple_t_contract$_ITicket_$11825t_contract$_IDrawBuffer_$10930t_contract$_IPrizeDistributionBuffer_$11079_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:1847:101",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:101",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "201:443:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "247:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "256:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "259:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "249:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "249:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "249:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "222:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "231:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "218:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "218:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "243:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "214:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "214:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "211:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "272:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "291:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "285:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "285:16:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "276:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "348:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_contract_IDrawBuffer",
                                  "nodeType": "YulIdentifier",
                                  "src": "310:37:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "310:44:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "310:44:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "363:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "373:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "363:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "387:40:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "412:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "423:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "408:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "408:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "402:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "402:25:101"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "391:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "474:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_contract_IDrawBuffer",
                                  "nodeType": "YulIdentifier",
                                  "src": "436:37:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "436:46:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "436:46:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "491:17:101",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "501:7:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "491:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "517:40:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "542:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "553:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "538:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "538:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "532:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "532:25:101"
                              },
                              "variables": [
                                {
                                  "name": "value_2",
                                  "nodeType": "YulTypedName",
                                  "src": "521:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "604:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_contract_IDrawBuffer",
                                  "nodeType": "YulIdentifier",
                                  "src": "566:37:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "566:46:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "566:46:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "621:17:101",
                              "value": {
                                "name": "value_2",
                                "nodeType": "YulIdentifier",
                                "src": "631:7:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "621:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_contract$_ITicket_$11825t_contract$_IDrawBuffer_$10930t_contract$_IPrizeDistributionBuffer_$11079_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "151:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "162:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "174:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "182:6:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "190:6:101",
                            "type": ""
                          }
                        ],
                        "src": "14:630:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "823:170:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "840:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "851:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "833:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "833:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "833:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "874:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "885:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "870:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "870:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "890:2:101",
                                    "type": "",
                                    "value": "20"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "863:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "863:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "863:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "913:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "924:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "909:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "909:18:101"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f64682d6e6f742d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "929:22:101",
                                    "type": "",
                                    "value": "DrawCalc/dh-not-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "902:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "902:50:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "902:50:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "961:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "973:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "984:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "969:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "969:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "961:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_27f43019067d008ae7755dedb9c2832ab30bf5276a64cdbec43625a7bb2b754f__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "800:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "814:4:101",
                            "type": ""
                          }
                        ],
                        "src": "649:344:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1172:174:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1189:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1200:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1182:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1182:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1182:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1223:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1234:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1219:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1219:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1239:2:101",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1212:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1212:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1212:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1262:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1273:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1258:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1258:18:101"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f7469636b65742d6e6f742d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "1278:26:101",
                                    "type": "",
                                    "value": "DrawCalc/ticket-not-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1251:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1251:54:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1251:54:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1314:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1326:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1337:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1322:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1322:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1314:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_97f3873537e71aa56dce348d17649053ade4d3da51033ce768e07f80af0ad017__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1149:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1163:4:101",
                            "type": ""
                          }
                        ],
                        "src": "998:348:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1525:171:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1542:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1553:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1535:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1535:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1535:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1576:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1587:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1572:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1572:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1592:2:101",
                                    "type": "",
                                    "value": "21"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1565:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1565:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1565:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1615:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1626:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1611:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1611:18:101"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f7064622d6e6f742d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "1631:23:101",
                                    "type": "",
                                    "value": "DrawCalc/pdb-not-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1604:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1604:51:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1604:51:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1664:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1676:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1687:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1672:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1672:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1664:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d954355df818473e9c891590ccb5ab60667fe994064169a5db37e6f060fa0e42__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1502:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1516:4:101",
                            "type": ""
                          }
                        ],
                        "src": "1351:345:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1759:86:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1823:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1832:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1835:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1825:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1825:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1825:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1782:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1793:5:101"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "1808:3:101",
                                                    "type": "",
                                                    "value": "160"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "1813:1:101",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1804:3:101"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "1804:11:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1817:1:101",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "1800:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1800:19:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1789:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1789:31:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1779:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1779:42:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1772:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1772:50:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1769:2:101"
                            }
                          ]
                        },
                        "name": "validator_revert_contract_IDrawBuffer",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "1748:5:101",
                            "type": ""
                          }
                        ],
                        "src": "1701:144:101"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_tuple_t_contract$_ITicket_$11825t_contract$_IDrawBuffer_$10930t_contract$_IPrizeDistributionBuffer_$11079_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": 101,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "60e06040523480156200001157600080fd5b5060405162002202380380620022028339810160408190526200003491620001a7565b6001600160a01b038316620000905760405162461bcd60e51b815260206004820152601860248201527f4472617743616c632f7469636b65742d6e6f742d7a65726f000000000000000060448201526064015b60405180910390fd5b6001600160a01b038116620000e85760405162461bcd60e51b815260206004820152601560248201527f4472617743616c632f7064622d6e6f742d7a65726f0000000000000000000000604482015260640162000087565b6001600160a01b038216620001405760405162461bcd60e51b815260206004820152601460248201527f4472617743616c632f64682d6e6f742d7a65726f000000000000000000000000604482015260640162000087565b6001600160601b0319606084811b821660a05283811b821660805282901b1660c0526040516001600160a01b0382811691848216918616907fc95935a66d15e0da5e412aca0ad27ae891d20b2fb91cf3994b6a3bf2b817808290600090a450505062000214565b600080600060608486031215620001bd57600080fd5b8351620001ca81620001fb565b6020850151909350620001dd81620001fb565b6040850151909250620001f081620001fb565b809150509250925092565b6001600160a01b03811681146200021157600080fd5b50565b60805160601c60a05160601c60c05160601c611f7f620002836000396000818160920152818161016e0152818161028c01526104b1015260008181610109015281816107dd015261087001526000818160e001528181610197015281816101d901526104200152611f7f6000f3fe608060405234801561001057600080fd5b50600436106100885760003560e01c8063aaca392e1161005b578063aaca392e1461014b578063bd97a2521461016c578063ce343bb614610192578063f8d0ca4c146101b957600080fd5b80630840bbdd1461008d5780634019f2d6146100de5780636cc25db7146101045780638045fbcf1461012b575b600080fd5b6100b47f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b7f00000000000000000000000000000000000000000000000000000000000000006100b4565b6100b47f000000000000000000000000000000000000000000000000000000000000000081565b61013e6101393660046114df565b6101d3565b6040516100d59190611afc565b61015e610159366004611532565b610352565b6040516100d5929190611b0f565b7f00000000000000000000000000000000000000000000000000000000000000006100b4565b6100b47f000000000000000000000000000000000000000000000000000000000000000081565b6101c1601081565b60405160ff90911681526020016100d5565b606060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d0bb78f385856040518363ffffffff1660e01b8152600401610232929190611b74565b60006040518083038186803b15801561024a57600080fd5b505afa15801561025e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261028691908101906116fd565b905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d30a5daf86866040518363ffffffff1660e01b81526004016102e5929190611b74565b60006040518083038186803b1580156102fd57600080fd5b505afa158015610311573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261033991908101906117f8565b90506103468683836105dd565b925050505b9392505050565b6060806000610363848601866115dd565b805190915086146103e05760405162461bcd60e51b8152602060048201526024808201527f4472617743616c632f696e76616c69642d7069636b2d696e64696365732d6c6560448201527f6e6774680000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6040517fd0bb78f300000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000169063d0bb78f390610457908b908b90600401611b74565b60006040518083038186803b15801561046f57600080fd5b505afa158015610483573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526104ab91908101906116fd565b905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d30a5daf8a8a6040518363ffffffff1660e01b815260040161050a929190611b74565b60006040518083038186803b15801561052257600080fd5b505afa158015610536573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261055e91908101906117f8565b9050600061056d8b84846105dd565b6040517fffffffffffffffffffffffffffffffffffffffff00000000000000000000000060608e901b1660208201529091506000906034016040516020818303038152906040528051906020012090506105ca8282868887610a48565b9650965050505050509550959350505050565b815160609060008167ffffffffffffffff8111156105fd576105fd611f08565b604051908082528060200260200182016040528015610626578160200160208202803683370190505b50905060008267ffffffffffffffff81111561064457610644611f08565b60405190808252806020026020018201604052801561066d578160200160208202803683370190505b50905060005b838163ffffffff16101561079c57858163ffffffff168151811061069957610699611ef2565b60200260200101516040015163ffffffff16878263ffffffff16815181106106c3576106c3611ef2565b60200260200101516040015103838263ffffffff16815181106106e8576106e8611ef2565b602002602001019067ffffffffffffffff16908167ffffffffffffffff1681525050858163ffffffff168151811061072257610722611ef2565b60200260200101516060015163ffffffff16878263ffffffff168151811061074c5761074c611ef2565b60200260200101516040015103828263ffffffff168151811061077157610771611ef2565b67ffffffffffffffff909216602092830291909101909101528061079481611e98565b915050610673565b506040517f68c7fd5700000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016906368c7fd5790610816908b9087908790600401611a31565b60006040518083038186803b15801561082e57600080fd5b505afa158015610842573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261086a9190810190611924565b905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16638e6d536a85856040518363ffffffff1660e01b81526004016108c9929190611bbf565b60006040518083038186803b1580156108e157600080fd5b505afa1580156108f5573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261091d9190810190611924565b905060008567ffffffffffffffff81111561093a5761093a611f08565b604051908082528060200260200182016040528015610963578160200160208202803683370190505b50905060005b86811015610a3a5782818151811061098357610983611ef2565b6020026020010151600014156109b85760008282815181106109a7576109a7611ef2565b602002602001018181525050610a28565b8281815181106109ca576109ca611ef2565b60200260200101518482815181106109e4576109e4611ef2565b6020026020010151670de0b6b3a76400006109ff9190611dff565b610a099190611cef565b828281518110610a1b57610a1b611ef2565b6020026020010181815250505b80610a3281611e7d565b915050610969565b509998505050505050505050565b6060806000875167ffffffffffffffff811115610a6757610a67611f08565b604051908082528060200260200182016040528015610a90578160200160208202803683370190505b5090506000885167ffffffffffffffff811115610aaf57610aaf611f08565b604051908082528060200260200182016040528015610ae257816020015b6060815260200190600190039081610acd5790505b5090504260005b88518163ffffffff161015610ccf57868163ffffffff1681518110610b1057610b10611ef2565b602002602001015160a0015163ffffffff16898263ffffffff1681518110610b3a57610b3a611ef2565b602002602001015160400151610b509190611c9e565b67ffffffffffffffff168267ffffffffffffffff1610610bb25760405162461bcd60e51b815260206004820152601560248201527f4472617743616c632f647261772d65787069726564000000000000000000000060448201526064016103d7565b6000610bfc888363ffffffff1681518110610bcf57610bcf611ef2565b60200260200101518d8463ffffffff1681518110610bef57610bef611ef2565b6020026020010151610d02565b9050610c768a8363ffffffff1681518110610c1957610c19611ef2565b6020026020010151600001518267ffffffffffffffff168d8c8663ffffffff1681518110610c4957610c49611ef2565b60200260200101518c8763ffffffff1681518110610c6957610c69611ef2565b6020026020010151610d3f565b868463ffffffff1681518110610c8e57610c8e611ef2565b60200260200101868563ffffffff1681518110610cad57610cad611ef2565b6020908102919091010191909152525080610cc781611e98565b915050610ae9565b5081604051602001610ce19190611a7c565b60405160208183030381529060405293508294505050509550959350505050565b6000670de0b6b3a76400008360c001516cffffffffffffffffffffffffff1683610d2c9190611dff565b610d369190611cef565b90505b92915050565b600060606000610d4e846110c4565b85516040805160108082526102208201909252929350909160009160208201610200803683370190505090506000866080015163ffffffff168363ffffffff161115610ddc5760405162461bcd60e51b815260206004820152601f60248201527f4472617743616c632f657863656564732d6d61782d757365722d7069636b730060448201526064016103d7565b60005b8363ffffffff168163ffffffff161015610ff4578a898263ffffffff1681518110610e0c57610e0c611ef2565b602002602001015167ffffffffffffffff1610610e6b5760405162461bcd60e51b815260206004820181905260248201527f4472617743616c632f696e73756666696369656e742d757365722d7069636b7360448201526064016103d7565b63ffffffff811615610f225788610e83600183611e35565b63ffffffff1681518110610e9957610e99611ef2565b602002602001015167ffffffffffffffff16898263ffffffff1681518110610ec357610ec3611ef2565b602002602001015167ffffffffffffffff1611610f225760405162461bcd60e51b815260206004820152601860248201527f4472617743616c632f7069636b732d617363656e64696e67000000000000000060448201526064016103d7565b60008a8a8363ffffffff1681518110610f3d57610f3d611ef2565b6020026020010151604051602001610f6992919091825267ffffffffffffffff16602082015260400190565b6040516020818303038152906040528051906020012060001c90506000610f91828f896111c9565b9050601060ff82161015610fdf578360ff168160ff161115610fb1578093505b848160ff1681518110610fc657610fc6611ef2565b602002602001018051809190610fdb90611e7d565b9052505b50508080610fec90611e98565b915050610ddf565b506000806110028984611268565b905060005b8360ff16811161109057600085828151811061102557611025611ef2565b6020026020010151111561107e5784818151811061104557611045611ef2565b602002602001015182828151811061105f5761105f611ef2565b60200260200101516110719190611dff565b61107b9084611c86565b92505b8061108881611e7d565b915050611007565b50633b9aca00896101000151836110a79190611dff565b6110b19190611cef565b9d939c50929a5050505050505050505050565b60606000826020015160ff1667ffffffffffffffff8111156110e8576110e8611f08565b604051908082528060200260200182016040528015611111578160200160208202803683370190505b508351909150600190611125906002611d54565b61112f9190611e1e565b8160008151811061114257611142611ef2565b602090810291909101015260015b836020015160ff168160ff1610156111c257835160ff1682611173600184611e5a565b60ff168151811061118657611186611ef2565b6020026020010151901b828260ff16815181106111a5576111a5611ef2565b6020908102919091010152806111ba81611ebc565b915050611150565b5092915050565b80516000908190815b8160ff168160ff16101561125d576000858260ff16815181106111f7576111f7611ef2565b602002602001015190508087168189161461123c578360ff168360ff16141561122757600094505050505061034b565b6112318484611e5a565b94505050505061034b565b8361124681611ebc565b94505050808061125590611ebc565b9150506111d2565b506103468282611e5a565b60606000611277836001611cca565b60ff1667ffffffffffffffff81111561129257611292611f08565b6040519080825280602002602001820160405280156112bb578160200160208202803683370190505b50905060005b8360ff168160ff161161130d576112db858260ff16611315565b828260ff16815181106112f0576112f0611ef2565b60209081029190910101528061130581611ebc565b9150506112c1565b509392505050565b6000808360e00151836010811061132e5761132e611ef2565b602002015163ffffffff169050600061134b856000015185611360565b90506113578183611cef565b95945050505050565b600081156113a657611373600183611e1e565b6113809060ff8516611dff565b6001901b6113918360ff8616611dff565b6001901b61139f9190611e1e565b9050610d39565b506001610d39565b803573ffffffffffffffffffffffffffffffffffffffff811681146113d257600080fd5b919050565b600082601f8301126113e857600080fd5b60405161020080820182811067ffffffffffffffff8211171561140d5761140d611f08565b604052818482810187101561142157600080fd5b600092505b601083101561144f57805161143a81611f1e565b82526001929092019160209182019101611426565b509195945050505050565b60008083601f84011261146c57600080fd5b50813567ffffffffffffffff81111561148457600080fd5b6020830191508360208260051b850101111561149f57600080fd5b9250929050565b80516cffffffffffffffffffffffffff811681146113d257600080fd5b80516113d281611f1e565b805160ff811681146113d257600080fd5b6000806000604084860312156114f457600080fd5b6114fd846113ae565b9250602084013567ffffffffffffffff81111561151957600080fd5b6115258682870161145a565b9497909650939450505050565b60008060008060006060868803121561154a57600080fd5b611553866113ae565b9450602086013567ffffffffffffffff8082111561157057600080fd5b61157c89838a0161145a565b9096509450604088013591508082111561159557600080fd5b818801915088601f8301126115a957600080fd5b8135818111156115b857600080fd5b8960208285010111156115ca57600080fd5b9699959850939650602001949392505050565b600060208083850312156115f057600080fd5b823567ffffffffffffffff8082111561160857600080fd5b818501915085601f83011261161c57600080fd5b813561162f61162a82611c62565b611c31565b80828252858201915085850189878560051b880101111561164f57600080fd5b60005b848110156116ee5781358681111561166957600080fd5b8701603f81018c1361167a57600080fd5b8881013561168a61162a82611c62565b808282528b82019150604084018f60408560051b87010111156116ac57600080fd5b600094505b838510156116d85780356116c481611f33565b835260019490940193918c01918c016116b1565b5087525050509287019290870190600101611652565b50909998505050505050505050565b6000602080838503121561171057600080fd5b825167ffffffffffffffff81111561172757600080fd5b8301601f8101851361173857600080fd5b805161174661162a82611c62565b8181528381019083850160a0808502860187018a101561176557600080fd5b60009550855b858110156117e95781838c031215611781578687fd5b611789611be4565b835181528884015161179a81611f1e565b818a01526040848101516117ad81611f33565b908201526060848101516117c081611f33565b908201526080848101516117d381611f1e565b908201528552938701939181019160010161176b565b50919998505050505050505050565b6000602080838503121561180b57600080fd5b825167ffffffffffffffff81111561182257600080fd5b8301601f8101851361183357600080fd5b805161184161162a82611c62565b81815283810190838501610300808502860187018a101561186157600080fd5b60009550855b858110156117e95781838c03121561187d578687fd5b611885611c0d565b61188e846114ce565b815261189b8985016114ce565b8982015260406118ac8186016114c3565b9082015260606118bd8582016114c3565b9082015260806118ce8582016114c3565b9082015260a06118df8582016114c3565b9082015260c06118f08582016114a6565b9082015260e06119028d8683016113d7565b908201526102e084015161010082015285529387019391810191600101611867565b6000602080838503121561193757600080fd5b825167ffffffffffffffff81111561194e57600080fd5b8301601f8101851361195f57600080fd5b805161196d61162a82611c62565b80828252848201915084840188868560051b870101111561198d57600080fd5b600094505b838510156119b0578051835260019490940193918501918501611992565b50979650505050505050565b600081518084526020808501945080840160005b838110156119ec578151875295820195908201906001016119d0565b509495945050505050565b600081518084526020808501945080840160005b838110156119ec57815167ffffffffffffffff1687529582019590820190600101611a0b565b73ffffffffffffffffffffffffffffffffffffffff84168152606060208201526000611a6060608301856119f7565b8281036040840152611a7281856119f7565b9695505050505050565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b82811015611aef577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc0888603018452611add8583516119bc565b94509285019290850190600101611aa3565b5092979650505050505050565b602081526000610d3660208301846119bc565b604081526000611b2260408301856119bc565b602083820381850152845180835260005b81811015611b4e578681018301518482018401528201611b33565b81811115611b5f5760008383860101525b50601f01601f19169190910101949350505050565b60208082528181018390526000908460408401835b86811015611bb4578235611b9c81611f1e565b63ffffffff1682529183019190830190600101611b89565b509695505050505050565b604081526000611bd260408301856119f7565b828103602084015261135781856119f7565b60405160a0810167ffffffffffffffff81118282101715611c0757611c07611f08565b60405290565b604051610120810167ffffffffffffffff81118282101715611c0757611c07611f08565b604051601f8201601f1916810167ffffffffffffffff81118282101715611c5a57611c5a611f08565b604052919050565b600067ffffffffffffffff821115611c7c57611c7c611f08565b5060051b60200190565b60008219821115611c9957611c99611edc565b500190565b600067ffffffffffffffff808316818516808303821115611cc157611cc1611edc565b01949350505050565b600060ff821660ff84168060ff03821115611ce757611ce7611edc565b019392505050565b600082611d0c57634e487b7160e01b600052601260045260246000fd5b500490565b600181815b80851115611d4c578160001904821115611d3257611d32611edc565b80851615611d3f57918102915b93841c9390800290611d16565b509250929050565b6000610d3660ff841683600082611d6d57506001610d39565b81611d7a57506000610d39565b8160018114611d905760028114611d9a57611db6565b6001915050610d39565b60ff841115611dab57611dab611edc565b50506001821b610d39565b5060208310610133831016604e8410600b8410161715611dd9575081810a610d39565b611de38383611d11565b8060001904821115611df757611df7611edc565b029392505050565b6000816000190483118215151615611e1957611e19611edc565b500290565b600082821015611e3057611e30611edc565b500390565b600063ffffffff83811690831681811015611e5257611e52611edc565b039392505050565b600060ff821660ff841680821015611e7457611e74611edc565b90039392505050565b6000600019821415611e9157611e91611edc565b5060010190565b600063ffffffff80831681811415611eb257611eb2611edc565b6001019392505050565b600060ff821660ff811415611ed357611ed3611edc565b60010192915050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b63ffffffff81168114611f3057600080fd5b50565b67ffffffffffffffff81168114611f3057600080fdfea264697066735822122063f00802638e8f7786e12a6b6f906d1ffa77b34b61bf700d495ddd8550a4f36164736f6c63430008060033",
              "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 PUSH4 0xF0080263 DUP15 DUP16 PUSH24 0x86E12A6B6F906D1FFA77B34B61BF700D495DDD8550A4F361 PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "876:16253:40:-:0;;;1642:580;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;1795:30:40;;1787:67;;;;-1:-1:-1;;;1787:67:40;;1200:2:101;1787:67:40;;;1182:21:101;1239:2;1219:18;;;1212:30;1278:26;1258:18;;;1251:54;1322:18;;1787:67:40;;;;;;;;;-1:-1:-1;;;;;1872:47:40;;1864:81;;;;-1:-1:-1;;;1864:81:40;;1553:2:101;1864:81:40;;;1535:21:101;1592:2;1572:18;;;1565:30;1631:23;1611:18;;;1604:51;1672:18;;1864:81:40;1525:171:101;1864:81:40;-1:-1:-1;;;;;1963:34:40;;1955:67;;;;-1:-1:-1;;;1955:67:40;;851:2:101;1955:67:40;;;833:21:101;890:2;870:18;;;863:30;929:22;909:18;;;902:50;969:18;;1955:67:40;823:170:101;1955:67:40;-1:-1:-1;;;;;;2033:16:40;;;;;;;;2059:24;;;;;;;2093:50;;;;;;2159:56;;-1:-1:-1;;;;;2093:50:40;;;;2059:24;;;;2033:16;;;2159:56;;;;;1642:580;;;876:16253;;14:630:101;174:6;182;190;243:2;231:9;222:7;218:23;214:32;211:2;;;259:1;256;249:12;211:2;291:9;285:16;310:44;348:5;310:44;:::i;:::-;423:2;408:18;;402:25;373:5;;-1:-1:-1;436:46:101;402:25;436:46;:::i;:::-;553:2;538:18;;532:25;501:7;;-1:-1:-1;566:46:101;532:25;566:46;:::i;:::-;631:7;621:17;;;201:443;;;;;:::o;1701:144::-;-1:-1:-1;;;;;1789:31:101;;1779:42;;1769:2;;1835:1;1832;1825:12;1769:2;1759:86;:::o;:::-;876:16253:40;;;;;;;;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@TIERS_LENGTH_7289": {
                  "entryPoint": null,
                  "id": 7289,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@_calculateNumberOfUserPicks_7674": {
                  "entryPoint": 3330,
                  "id": 7674,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@_calculatePrizeTierFraction_8207": {
                  "entryPoint": 4885,
                  "id": 8207,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@_calculatePrizeTierFractions_8256": {
                  "entryPoint": 4712,
                  "id": 8256,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@_calculatePrizesAwardable_7651": {
                  "entryPoint": 2632,
                  "id": 7651,
                  "parameterSlots": 5,
                  "returnSlots": 2
                },
                "@_calculateTierIndex_8113": {
                  "entryPoint": 4553,
                  "id": 8113,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@_calculate_8039": {
                  "entryPoint": 3391,
                  "id": 8039,
                  "parameterSlots": 5,
                  "returnSlots": 2
                },
                "@_createBitMasks_8176": {
                  "entryPoint": 4292,
                  "id": 8176,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_getNormalizedBalancesAt_7837": {
                  "entryPoint": 1501,
                  "id": 7837,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@_numberOfPrizesForIndex_8292": {
                  "entryPoint": 4960,
                  "id": 8292,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@calculate_7453": {
                  "entryPoint": 850,
                  "id": 7453,
                  "parameterSlots": 5,
                  "returnSlots": 2
                },
                "@drawBuffer_7277": {
                  "entryPoint": null,
                  "id": 7277,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@getDrawBuffer_7464": {
                  "entryPoint": null,
                  "id": 7464,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getNormalizedBalancesForDrawIds_7517": {
                  "entryPoint": 467,
                  "id": 7517,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@getPrizeDistributionBuffer_7475": {
                  "entryPoint": null,
                  "id": 7475,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@prizeDistributionBuffer_7285": {
                  "entryPoint": null,
                  "id": 7285,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@ticket_7281": {
                  "entryPoint": null,
                  "id": 7281,
                  "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_$10697_memory_ptr_$dyn_memory_ptr_fromMemory": {
                  "entryPoint": 5885,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_array$_t_struct$_PrizeDistribution_$11103_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_$10930__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_IPrizeDistributionBuffer_$11079__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_ITicket_$11825__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:23410:101",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:101",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "63:147:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "73:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "95:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "82:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "82:20:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "73:5:101"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "188:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "197:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "200:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "190:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "190:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "190:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "124:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "135:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "142:42:101",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "131:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "131:54:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "121:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "121:65:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "114:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "114:73:101"
                              },
                              "nodeType": "YulIf",
                              "src": "111:2:101"
                            }
                          ]
                        },
                        "name": "abi_decode_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "42:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "53:5:101",
                            "type": ""
                          }
                        ],
                        "src": "14:196:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "285:711:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "334:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "343:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "346:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "336:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "336:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "336:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "313:6:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "321:4:101",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "309:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "309:17:101"
                                      },
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "328:3:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "305:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "305:27:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "298:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "298:35:101"
                              },
                              "nodeType": "YulIf",
                              "src": "295:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "359:23:101",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "379:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "373:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "373:9:101"
                              },
                              "variables": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "363:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "391:13:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "401:3:101",
                                "type": "",
                                "value": "512"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "395:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "413:33:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "435:6:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "443:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "431:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "431:15:101"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "417:10:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "521:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "523:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "523:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "523:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "464:10:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "476:18:101",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "461:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "461:34:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "500:10:101"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "512:6:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "497:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "497:22:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "458:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "458:62:101"
                              },
                              "nodeType": "YulIf",
                              "src": "455:2:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "559:2:101",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "563:10:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "552:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "552:22:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "552:22:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "583:17:101",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "594:6:101"
                              },
                              "variables": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulTypedName",
                                  "src": "587:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "609:17:101",
                              "value": {
                                "name": "offset",
                                "nodeType": "YulIdentifier",
                                "src": "620:6:101"
                              },
                              "variables": [
                                {
                                  "name": "src",
                                  "nodeType": "YulTypedName",
                                  "src": "613:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "663:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "672:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "675:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "665:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "665:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "665:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "645:6:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "653:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "641:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "641:15:101"
                                  },
                                  {
                                    "name": "end",
                                    "nodeType": "YulIdentifier",
                                    "src": "658:3:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "638:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "638:24:101"
                              },
                              "nodeType": "YulIf",
                              "src": "635:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "688:10:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "697:1:101",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "692:1:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "754:212:101",
                                "statements": [
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "768:23:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "787:3:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mload",
                                        "nodeType": "YulIdentifier",
                                        "src": "781:5:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "781:10:101"
                                    },
                                    "variables": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulTypedName",
                                        "src": "772:5:101",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value",
                                          "nodeType": "YulIdentifier",
                                          "src": "828:5:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "validator_revert_uint32",
                                        "nodeType": "YulIdentifier",
                                        "src": "804:23:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "804:30:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "804:30:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "854:3:101"
                                        },
                                        {
                                          "name": "value",
                                          "nodeType": "YulIdentifier",
                                          "src": "859:5:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "847:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "847:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "847:18:101"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "878:14:101",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "888:4:101",
                                      "type": "",
                                      "value": "0x20"
                                    },
                                    "variables": [
                                      {
                                        "name": "_2",
                                        "nodeType": "YulTypedName",
                                        "src": "882:2:101",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "905:19:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "916:3:101"
                                        },
                                        {
                                          "name": "_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "921:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "912:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "912:12:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "dst",
                                        "nodeType": "YulIdentifier",
                                        "src": "905:3:101"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "937:19:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "948:3:101"
                                        },
                                        {
                                          "name": "_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "953:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "944:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "944:12:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "src",
                                        "nodeType": "YulIdentifier",
                                        "src": "937:3:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "718:1:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "721:4:101",
                                    "type": "",
                                    "value": "0x10"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "715:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "715:11:101"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "727:18:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "729:14:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "738:1:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "741:1:101",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "734:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "734:9:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "729:1:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "711:3:101",
                                "statements": []
                              },
                              "src": "707:259:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "975:15:101",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "984:6:101"
                              },
                              "variableNames": [
                                {
                                  "name": "array",
                                  "nodeType": "YulIdentifier",
                                  "src": "975:5:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_array_uint32_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "259:6:101",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "267:3:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "array",
                            "nodeType": "YulTypedName",
                            "src": "275:5:101",
                            "type": ""
                          }
                        ],
                        "src": "215:781:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1084:283:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1133:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1142:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1145:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1135:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1135:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1135:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "1112:6:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1120:4:101",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1108:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1108:17:101"
                                      },
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "1127:3:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1104:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1104:27:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1097:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1097:35:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1094:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1158:30:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1181:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1168:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1168:20:101"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "1158:6:101"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1231:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1240:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1243:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1233:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1233:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1233:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1203:6:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1211:18:101",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1200:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1200:30:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1197:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1256:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1272:6:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1280:4:101",
                                    "type": "",
                                    "value": "0x20"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1268:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1268:17:101"
                              },
                              "variableNames": [
                                {
                                  "name": "arrayPos",
                                  "nodeType": "YulIdentifier",
                                  "src": "1256:8:101"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1345:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1354:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1357:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1347:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1347:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1347:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "1308:6:101"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1320:1:101",
                                                "type": "",
                                                "value": "5"
                                              },
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "1323:6:101"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "1316:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1316:14:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1304:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1304:27:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1333:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1300:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1300:38:101"
                                  },
                                  {
                                    "name": "end",
                                    "nodeType": "YulIdentifier",
                                    "src": "1340:3:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1297:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1297:47:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1294:2:101"
                            }
                          ]
                        },
                        "name": "abi_decode_array_uint32_dyn_calldata",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "1047:6:101",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "1055:3:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "arrayPos",
                            "nodeType": "YulTypedName",
                            "src": "1063:8:101",
                            "type": ""
                          },
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "1073:6:101",
                            "type": ""
                          }
                        ],
                        "src": "1001:366:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1432:126:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1442:22:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1457:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1451:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1451:13:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "1442:5:101"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1536:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1545:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1548:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1538:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1538:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1538:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1486:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1497:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1504:28:101",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1493:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1493:40:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1483:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1483:51:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1476:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1476:59:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1473:2:101"
                            }
                          ]
                        },
                        "name": "abi_decode_uint104_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "1411:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "1422:5:101",
                            "type": ""
                          }
                        ],
                        "src": "1372:186:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1622:77:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1632:22:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1647:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1641:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1641:13:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "1632:5:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1687:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "1663:23:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1663:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1663:30:101"
                            }
                          ]
                        },
                        "name": "abi_decode_uint32_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "1601:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "1612:5:101",
                            "type": ""
                          }
                        ],
                        "src": "1563:136:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1762:102:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1772:22:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1787:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1781:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1781:13:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "1772:5:101"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1842:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1851:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1854:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1844:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1844:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1844:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1816:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1827:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1834:4:101",
                                            "type": "",
                                            "value": "0xff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1823:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1823:16:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1813:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1813:27:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1806:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1806:35:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1803:2:101"
                            }
                          ]
                        },
                        "name": "abi_decode_uint8_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "1741:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "1752:5:101",
                            "type": ""
                          }
                        ],
                        "src": "1704:160:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1990:388:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2036:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2045:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2048:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2038:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2038:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2038:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2011:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2020:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2007:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2007:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2032:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2003:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2003:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2000:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2061:39:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2090:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "2071:18:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2071:29:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2061:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2109:46:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2140:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2151:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2136:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2136:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2123:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2123:32:101"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "2113:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2198:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2207:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2210:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2200:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2200:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2200:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "2170:6:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2178:18:101",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2167:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2167:30:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2164:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2223:95:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2290:9:101"
                                      },
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "2301:6:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2286:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2286:22:101"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "2310:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_array_uint32_dyn_calldata",
                                  "nodeType": "YulIdentifier",
                                  "src": "2249:36:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2249:69:101"
                              },
                              "variables": [
                                {
                                  "name": "value1_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2227:8:101",
                                  "type": ""
                                },
                                {
                                  "name": "value2_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2237:8:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2327:18:101",
                              "value": {
                                "name": "value1_1",
                                "nodeType": "YulIdentifier",
                                "src": "2337:8:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2327:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2354:18:101",
                              "value": {
                                "name": "value2_1",
                                "nodeType": "YulIdentifier",
                                "src": "2364:8:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "2354:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_array$_t_uint32_$dyn_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1940:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1951:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1963:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1971:6:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "1979:6:101",
                            "type": ""
                          }
                        ],
                        "src": "1869:509:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2540:821:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2586:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2595:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2598:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2588:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2588:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2588:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2561:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2570:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2557:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2557:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2582:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2553:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2553:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2550:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2611:39:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2640:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "2621:18:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2621:29:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2611:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2659:46:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2690:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2701:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2686:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2686:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2673:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2673:32:101"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "2663:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2714:28:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "2724:18:101",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2718:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2769:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2778:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2781:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2771:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2771:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2771:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "2757:6:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2765:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2754:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2754:14:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2751:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2794:95:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2861:9:101"
                                      },
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "2872:6:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2857:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2857:22:101"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "2881:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_array_uint32_dyn_calldata",
                                  "nodeType": "YulIdentifier",
                                  "src": "2820:36:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2820:69:101"
                              },
                              "variables": [
                                {
                                  "name": "value1_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2798:8:101",
                                  "type": ""
                                },
                                {
                                  "name": "value2_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2808:8:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2898:18:101",
                              "value": {
                                "name": "value1_1",
                                "nodeType": "YulIdentifier",
                                "src": "2908:8:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2898:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2925:18:101",
                              "value": {
                                "name": "value2_1",
                                "nodeType": "YulIdentifier",
                                "src": "2935:8:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "2925:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2952:48:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2985:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2996:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2981:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2981:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2968:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2968:32:101"
                              },
                              "variables": [
                                {
                                  "name": "offset_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2956:8:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3029:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3038:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3041:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3031:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3031:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3031:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3015:8:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3025:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3012:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3012:16:101"
                              },
                              "nodeType": "YulIf",
                              "src": "3009:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3054:34:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3068:9:101"
                                  },
                                  {
                                    "name": "offset_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3079:8:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3064:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3064:24:101"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "3058:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3136:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3145:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3148:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3138:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3138:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3138:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "3115:2:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "3119:4:101",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "3111:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3111:13:101"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3126:7:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "3107:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3107:27:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "3100:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3100:35:101"
                              },
                              "nodeType": "YulIf",
                              "src": "3097:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3161:30:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "3188:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3175:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3175:16:101"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "3165:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3218:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3227:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3230:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3220:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3220:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3220:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "3206:6:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3214:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3203:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3203:14:101"
                              },
                              "nodeType": "YulIf",
                              "src": "3200:2:101"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3284:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3293:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3296:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3286:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3286:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3286:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "3257:2:101"
                                          },
                                          {
                                            "name": "length",
                                            "nodeType": "YulIdentifier",
                                            "src": "3261:6:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "3253:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3253:15:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3270:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3249:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3249:24:101"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "3275:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3246:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3246:37:101"
                              },
                              "nodeType": "YulIf",
                              "src": "3243:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3309:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "3323:2:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3327:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3319:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3319:11:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "3309:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3339:16:101",
                              "value": {
                                "name": "length",
                                "nodeType": "YulIdentifier",
                                "src": "3349:6:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value4",
                                  "nodeType": "YulIdentifier",
                                  "src": "3339:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "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:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2485:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2497:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2505:6:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "2513:6:101",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "2521:6:101",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "2529:6:101",
                            "type": ""
                          }
                        ],
                        "src": "2383:978:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3485:1707:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3495:12:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3505:2:101",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3499:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3552:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3561:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3564:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3554:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3554:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3554:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3527:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3536:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3523:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3523:23:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3548:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3519:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3519:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "3516:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3577:37:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3604:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3591:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3591:23:101"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "3581:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3623:28:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3633:18:101",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "3627:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3678:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3687:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3690:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3680:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3680:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3680:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "3666:6:101"
                                  },
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "3674:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3663:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3663:14:101"
                              },
                              "nodeType": "YulIf",
                              "src": "3660:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3703:32:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3717:9:101"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "3728:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3713:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3713:22:101"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "3707:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3783:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3792:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3795:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3785:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3785:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3785:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_3",
                                            "nodeType": "YulIdentifier",
                                            "src": "3762:2:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "3766:4:101",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "3758:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3758:13:101"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3773:7:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "3754:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3754:27:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "3747:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3747:35:101"
                              },
                              "nodeType": "YulIf",
                              "src": "3744:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3808:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "3831:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3818:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3818:16:101"
                              },
                              "variables": [
                                {
                                  "name": "_4",
                                  "nodeType": "YulTypedName",
                                  "src": "3812:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3843:80:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "_4",
                                        "nodeType": "YulIdentifier",
                                        "src": "3919:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "array_allocation_size_array_array_uint64_dyn_dyn",
                                      "nodeType": "YulIdentifier",
                                      "src": "3870:48:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3870:52:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "allocate_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "3854:15:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3854:69:101"
                              },
                              "variables": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulTypedName",
                                  "src": "3847:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3932:16:101",
                              "value": {
                                "name": "dst",
                                "nodeType": "YulIdentifier",
                                "src": "3945:3:101"
                              },
                              "variables": [
                                {
                                  "name": "dst_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3936:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "3964:3:101"
                                  },
                                  {
                                    "name": "_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "3969:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3957:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3957:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3957:15:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3981:19:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "3992:3:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3997:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3988:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3988:12:101"
                              },
                              "variableNames": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulIdentifier",
                                  "src": "3981:3:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4009:22:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "4024:2:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4028:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4020:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4020:11:101"
                              },
                              "variables": [
                                {
                                  "name": "src",
                                  "nodeType": "YulTypedName",
                                  "src": "4013:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4085:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4094:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4097:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4087:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4087:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4087:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_3",
                                            "nodeType": "YulIdentifier",
                                            "src": "4054:2:101"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "4062:1:101",
                                                "type": "",
                                                "value": "5"
                                              },
                                              {
                                                "name": "_4",
                                                "nodeType": "YulIdentifier",
                                                "src": "4065:2:101"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "4058:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4058:10:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "4050:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4050:19:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "4071:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4046:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4046:28:101"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "4076:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4043:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4043:41:101"
                              },
                              "nodeType": "YulIf",
                              "src": "4040:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4110:10:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "4119:1:101",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "4114:1:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4174:988:101",
                                "statements": [
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "4188:36:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "4220:3:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "calldataload",
                                        "nodeType": "YulIdentifier",
                                        "src": "4207:12:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4207:17:101"
                                    },
                                    "variables": [
                                      {
                                        "name": "innerOffset",
                                        "nodeType": "YulTypedName",
                                        "src": "4192:11:101",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "body": {
                                      "nodeType": "YulBlock",
                                      "src": "4260:16:101",
                                      "statements": [
                                        {
                                          "expression": {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "4269:1:101",
                                                "type": "",
                                                "value": "0"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "4272:1:101",
                                                "type": "",
                                                "value": "0"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "revert",
                                              "nodeType": "YulIdentifier",
                                              "src": "4262:6:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4262:12:101"
                                          },
                                          "nodeType": "YulExpressionStatement",
                                          "src": "4262:12:101"
                                        }
                                      ]
                                    },
                                    "condition": {
                                      "arguments": [
                                        {
                                          "name": "innerOffset",
                                          "nodeType": "YulIdentifier",
                                          "src": "4243:11:101"
                                        },
                                        {
                                          "name": "_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "4256:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "gt",
                                        "nodeType": "YulIdentifier",
                                        "src": "4240:2:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4240:19:101"
                                    },
                                    "nodeType": "YulIf",
                                    "src": "4237:2:101"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "4289:30:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "_3",
                                          "nodeType": "YulIdentifier",
                                          "src": "4303:2:101"
                                        },
                                        {
                                          "name": "innerOffset",
                                          "nodeType": "YulIdentifier",
                                          "src": "4307:11:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "4299:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4299:20:101"
                                    },
                                    "variables": [
                                      {
                                        "name": "_5",
                                        "nodeType": "YulTypedName",
                                        "src": "4293:2:101",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "body": {
                                      "nodeType": "YulBlock",
                                      "src": "4369:16:101",
                                      "statements": [
                                        {
                                          "expression": {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "4378:1:101",
                                                "type": "",
                                                "value": "0"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "4381:1:101",
                                                "type": "",
                                                "value": "0"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "revert",
                                              "nodeType": "YulIdentifier",
                                              "src": "4371:6:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4371:12:101"
                                          },
                                          "nodeType": "YulExpressionStatement",
                                          "src": "4371:12:101"
                                        }
                                      ]
                                    },
                                    "condition": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "_5",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "4350:2:101"
                                                },
                                                {
                                                  "kind": "number",
                                                  "nodeType": "YulLiteral",
                                                  "src": "4354:2:101",
                                                  "type": "",
                                                  "value": "63"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "4346:3:101"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "4346:11:101"
                                            },
                                            {
                                              "name": "dataEnd",
                                              "nodeType": "YulIdentifier",
                                              "src": "4359:7:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "slt",
                                            "nodeType": "YulIdentifier",
                                            "src": "4342:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "4342:25:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "iszero",
                                        "nodeType": "YulIdentifier",
                                        "src": "4335:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4335:33:101"
                                    },
                                    "nodeType": "YulIf",
                                    "src": "4332:2:101"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "4398:35:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "_5",
                                              "nodeType": "YulIdentifier",
                                              "src": "4425:2:101"
                                            },
                                            {
                                              "name": "_1",
                                              "nodeType": "YulIdentifier",
                                              "src": "4429:2:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "4421:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "4421:11:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "calldataload",
                                        "nodeType": "YulIdentifier",
                                        "src": "4408:12:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4408:25:101"
                                    },
                                    "variables": [
                                      {
                                        "name": "_6",
                                        "nodeType": "YulTypedName",
                                        "src": "4402:2:101",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "4446:82:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "_6",
                                              "nodeType": "YulIdentifier",
                                              "src": "4524:2:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "array_allocation_size_array_array_uint64_dyn_dyn",
                                            "nodeType": "YulIdentifier",
                                            "src": "4475:48:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "4475:52:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "allocate_memory",
                                        "nodeType": "YulIdentifier",
                                        "src": "4459:15:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4459:69:101"
                                    },
                                    "variables": [
                                      {
                                        "name": "dst_2",
                                        "nodeType": "YulTypedName",
                                        "src": "4450:5:101",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "4541:18:101",
                                    "value": {
                                      "name": "dst_2",
                                      "nodeType": "YulIdentifier",
                                      "src": "4554:5:101"
                                    },
                                    "variables": [
                                      {
                                        "name": "dst_3",
                                        "nodeType": "YulTypedName",
                                        "src": "4545:5:101",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "dst_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "4579:5:101"
                                        },
                                        {
                                          "name": "_6",
                                          "nodeType": "YulIdentifier",
                                          "src": "4586:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "4572:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4572:17:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4572:17:101"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "4602:23:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "dst_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "4615:5:101"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "4622:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "4611:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4611:14:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "dst_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "4602:5:101"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "4638:24:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "_5",
                                          "nodeType": "YulIdentifier",
                                          "src": "4655:2:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4659:2:101",
                                          "type": "",
                                          "value": "64"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "4651:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4651:11:101"
                                    },
                                    "variables": [
                                      {
                                        "name": "src_1",
                                        "nodeType": "YulTypedName",
                                        "src": "4642:5:101",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "body": {
                                      "nodeType": "YulBlock",
                                      "src": "4720:16:101",
                                      "statements": [
                                        {
                                          "expression": {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "4729:1:101",
                                                "type": "",
                                                "value": "0"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "4732:1:101",
                                                "type": "",
                                                "value": "0"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "revert",
                                              "nodeType": "YulIdentifier",
                                              "src": "4722:6:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4722:12:101"
                                          },
                                          "nodeType": "YulExpressionStatement",
                                          "src": "4722:12:101"
                                        }
                                      ]
                                    },
                                    "condition": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "_5",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "4689:2:101"
                                                },
                                                {
                                                  "arguments": [
                                                    {
                                                      "kind": "number",
                                                      "nodeType": "YulLiteral",
                                                      "src": "4697:1:101",
                                                      "type": "",
                                                      "value": "5"
                                                    },
                                                    {
                                                      "name": "_6",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "4700:2:101"
                                                    }
                                                  ],
                                                  "functionName": {
                                                    "name": "shl",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "4693:3:101"
                                                  },
                                                  "nodeType": "YulFunctionCall",
                                                  "src": "4693:10:101"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "4685:3:101"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "4685:19:101"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "4706:2:101",
                                              "type": "",
                                              "value": "64"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "4681:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "4681:28:101"
                                        },
                                        {
                                          "name": "dataEnd",
                                          "nodeType": "YulIdentifier",
                                          "src": "4711:7:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "gt",
                                        "nodeType": "YulIdentifier",
                                        "src": "4678:2:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4678:41:101"
                                    },
                                    "nodeType": "YulIf",
                                    "src": "4675:2:101"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "4749:12:101",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "4760:1:101",
                                      "type": "",
                                      "value": "0"
                                    },
                                    "variables": [
                                      {
                                        "name": "i_1",
                                        "nodeType": "YulTypedName",
                                        "src": "4753:3:101",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "body": {
                                      "nodeType": "YulBlock",
                                      "src": "4829:228:101",
                                      "statements": [
                                        {
                                          "nodeType": "YulVariableDeclaration",
                                          "src": "4847:32:101",
                                          "value": {
                                            "arguments": [
                                              {
                                                "name": "src_1",
                                                "nodeType": "YulIdentifier",
                                                "src": "4873:5:101"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "calldataload",
                                              "nodeType": "YulIdentifier",
                                              "src": "4860:12:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4860:19:101"
                                          },
                                          "variables": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulTypedName",
                                              "src": "4851:5:101",
                                              "type": ""
                                            }
                                          ]
                                        },
                                        {
                                          "expression": {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "4920:5:101"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "validator_revert_uint64",
                                              "nodeType": "YulIdentifier",
                                              "src": "4896:23:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4896:30:101"
                                          },
                                          "nodeType": "YulExpressionStatement",
                                          "src": "4896:30:101"
                                        },
                                        {
                                          "expression": {
                                            "arguments": [
                                              {
                                                "name": "dst_2",
                                                "nodeType": "YulIdentifier",
                                                "src": "4950:5:101"
                                              },
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "4957:5:101"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "mstore",
                                              "nodeType": "YulIdentifier",
                                              "src": "4943:6:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4943:20:101"
                                          },
                                          "nodeType": "YulExpressionStatement",
                                          "src": "4943:20:101"
                                        },
                                        {
                                          "nodeType": "YulAssignment",
                                          "src": "4980:23:101",
                                          "value": {
                                            "arguments": [
                                              {
                                                "name": "dst_2",
                                                "nodeType": "YulIdentifier",
                                                "src": "4993:5:101"
                                              },
                                              {
                                                "name": "_1",
                                                "nodeType": "YulIdentifier",
                                                "src": "5000:2:101"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "4989:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4989:14:101"
                                          },
                                          "variableNames": [
                                            {
                                              "name": "dst_2",
                                              "nodeType": "YulIdentifier",
                                              "src": "4980:5:101"
                                            }
                                          ]
                                        },
                                        {
                                          "nodeType": "YulAssignment",
                                          "src": "5020:23:101",
                                          "value": {
                                            "arguments": [
                                              {
                                                "name": "src_1",
                                                "nodeType": "YulIdentifier",
                                                "src": "5033:5:101"
                                              },
                                              {
                                                "name": "_1",
                                                "nodeType": "YulIdentifier",
                                                "src": "5040:2:101"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "5029:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "5029:14:101"
                                          },
                                          "variableNames": [
                                            {
                                              "name": "src_1",
                                              "nodeType": "YulIdentifier",
                                              "src": "5020:5:101"
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    "condition": {
                                      "arguments": [
                                        {
                                          "name": "i_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "4785:3:101"
                                        },
                                        {
                                          "name": "_6",
                                          "nodeType": "YulIdentifier",
                                          "src": "4790:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "lt",
                                        "nodeType": "YulIdentifier",
                                        "src": "4782:2:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4782:11:101"
                                    },
                                    "nodeType": "YulForLoop",
                                    "post": {
                                      "nodeType": "YulBlock",
                                      "src": "4794:22:101",
                                      "statements": [
                                        {
                                          "nodeType": "YulAssignment",
                                          "src": "4796:18:101",
                                          "value": {
                                            "arguments": [
                                              {
                                                "name": "i_1",
                                                "nodeType": "YulIdentifier",
                                                "src": "4807:3:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "4812:1:101",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "4803:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4803:11:101"
                                          },
                                          "variableNames": [
                                            {
                                              "name": "i_1",
                                              "nodeType": "YulIdentifier",
                                              "src": "4796:3:101"
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    "pre": {
                                      "nodeType": "YulBlock",
                                      "src": "4778:3:101",
                                      "statements": []
                                    },
                                    "src": "4774:283:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "5077:3:101"
                                        },
                                        {
                                          "name": "dst_3",
                                          "nodeType": "YulIdentifier",
                                          "src": "5082:5:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "5070:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5070:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5070:18:101"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "5101:19:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "5112:3:101"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "5117:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "5108:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5108:12:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "dst",
                                        "nodeType": "YulIdentifier",
                                        "src": "5101:3:101"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "5133:19:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "5144:3:101"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "5149:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "5140:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5140:12:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "src",
                                        "nodeType": "YulIdentifier",
                                        "src": "5133:3:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "4140:1:101"
                                  },
                                  {
                                    "name": "_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "4143:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4137:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4137:9:101"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "4147:18:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "4149:14:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "4158:1:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4161:1:101",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "4154:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4154:9:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "4149:1:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "4133:3:101",
                                "statements": []
                              },
                              "src": "4129:1033:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5171:15:101",
                              "value": {
                                "name": "dst_1",
                                "nodeType": "YulIdentifier",
                                "src": "5181:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "5171:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "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:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "3462:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3474:6:101",
                            "type": ""
                          }
                        ],
                        "src": "3366:1826:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5326:1606:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5336:12:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "5346:2:101",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "5340:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5393:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5402:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5405:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "5395:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5395:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5395:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "5368:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5377:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "5364:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5364:23:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "5389:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "5360:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5360:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "5357:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5418:30:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5438:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "5432:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5432:16:101"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "5422:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5491:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5500:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5503:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "5493:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5493:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5493:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "5463:6:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5471:18:101",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "5460:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5460:30:101"
                              },
                              "nodeType": "YulIf",
                              "src": "5457:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5516:32:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5530:9:101"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "5541:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5526:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5526:22:101"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "5520:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5596:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5605:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5608:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "5598:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5598:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5598:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "5575:2:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "5579:4:101",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "5571:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "5571:13:101"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "5586:7:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "5567:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5567:27:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "5560:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5560:35:101"
                              },
                              "nodeType": "YulIf",
                              "src": "5557:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5621:19:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "5637:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "5631:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5631:9:101"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "5625:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5649:80:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "5725:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "array_allocation_size_array_array_uint64_dyn_dyn",
                                      "nodeType": "YulIdentifier",
                                      "src": "5676:48:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5676:52:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "allocate_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "5660:15:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5660:69:101"
                              },
                              "variables": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulTypedName",
                                  "src": "5653:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5738:16:101",
                              "value": {
                                "name": "dst",
                                "nodeType": "YulIdentifier",
                                "src": "5751:3:101"
                              },
                              "variables": [
                                {
                                  "name": "dst_1",
                                  "nodeType": "YulTypedName",
                                  "src": "5742:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "5770:3:101"
                                  },
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "5775:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5763:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5763:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5763:15:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5787:19:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "5798:3:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "5803:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5794:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5794:12:101"
                              },
                              "variableNames": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulIdentifier",
                                  "src": "5787:3:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5815:22:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "5830:2:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "5834:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5826:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5826:11:101"
                              },
                              "variables": [
                                {
                                  "name": "src",
                                  "nodeType": "YulTypedName",
                                  "src": "5819:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5846:14:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "5856:4:101",
                                "type": "",
                                "value": "0xa0"
                              },
                              "variables": [
                                {
                                  "name": "_4",
                                  "nodeType": "YulTypedName",
                                  "src": "5850:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5915:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5924:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5927:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "5917:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5917:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5917:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "5883:2:101"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "name": "_3",
                                                "nodeType": "YulIdentifier",
                                                "src": "5891:2:101"
                                              },
                                              {
                                                "name": "_4",
                                                "nodeType": "YulIdentifier",
                                                "src": "5895:2:101"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "mul",
                                              "nodeType": "YulIdentifier",
                                              "src": "5887:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "5887:11:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "5879:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "5879:20:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "5901:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5875:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5875:29:101"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "5906:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "5872:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5872:42:101"
                              },
                              "nodeType": "YulIf",
                              "src": "5869:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5940:10:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "5949:1:101",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "5944:1:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5959:12:101",
                              "value": {
                                "name": "i",
                                "nodeType": "YulIdentifier",
                                "src": "5970:1:101"
                              },
                              "variables": [
                                {
                                  "name": "i_1",
                                  "nodeType": "YulTypedName",
                                  "src": "5963:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "6031:871:101",
                                "statements": [
                                  {
                                    "body": {
                                      "nodeType": "YulBlock",
                                      "src": "6075:16:101",
                                      "statements": [
                                        {
                                          "expression": {
                                            "arguments": [
                                              {
                                                "name": "i",
                                                "nodeType": "YulIdentifier",
                                                "src": "6084:1:101"
                                              },
                                              {
                                                "name": "i",
                                                "nodeType": "YulIdentifier",
                                                "src": "6087:1:101"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "revert",
                                              "nodeType": "YulIdentifier",
                                              "src": "6077:6:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "6077:12:101"
                                          },
                                          "nodeType": "YulExpressionStatement",
                                          "src": "6077:12:101"
                                        }
                                      ]
                                    },
                                    "condition": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dataEnd",
                                              "nodeType": "YulIdentifier",
                                              "src": "6056:7:101"
                                            },
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "6065:3:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "sub",
                                            "nodeType": "YulIdentifier",
                                            "src": "6052:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "6052:17:101"
                                        },
                                        {
                                          "name": "_4",
                                          "nodeType": "YulIdentifier",
                                          "src": "6071:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "slt",
                                        "nodeType": "YulIdentifier",
                                        "src": "6048:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6048:26:101"
                                    },
                                    "nodeType": "YulIf",
                                    "src": "6045:2:101"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "6104:35:101",
                                    "value": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "allocate_memory_4542",
                                        "nodeType": "YulIdentifier",
                                        "src": "6117:20:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6117:22:101"
                                    },
                                    "variables": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulTypedName",
                                        "src": "6108:5:101",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value",
                                          "nodeType": "YulIdentifier",
                                          "src": "6159:5:101"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "6172:3:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "6166:5:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "6166:10:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "6152:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6152:25:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6152:25:101"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "6190:34:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "6215:3:101"
                                            },
                                            {
                                              "name": "_1",
                                              "nodeType": "YulIdentifier",
                                              "src": "6220:2:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "6211:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "6211:12:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mload",
                                        "nodeType": "YulIdentifier",
                                        "src": "6205:5:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6205:19:101"
                                    },
                                    "variables": [
                                      {
                                        "name": "value_1",
                                        "nodeType": "YulTypedName",
                                        "src": "6194:7:101",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "6261:7:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "validator_revert_uint32",
                                        "nodeType": "YulIdentifier",
                                        "src": "6237:23:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6237:32:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6237:32:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "6293:5:101"
                                            },
                                            {
                                              "name": "_1",
                                              "nodeType": "YulIdentifier",
                                              "src": "6300:2:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "6289:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "6289:14:101"
                                        },
                                        {
                                          "name": "value_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "6305:7:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "6282:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6282:31:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6282:31:101"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "6326:12:101",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "6336:2:101",
                                      "type": "",
                                      "value": "64"
                                    },
                                    "variables": [
                                      {
                                        "name": "_5",
                                        "nodeType": "YulTypedName",
                                        "src": "6330:2:101",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "6351:34:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "6376:3:101"
                                            },
                                            {
                                              "name": "_5",
                                              "nodeType": "YulIdentifier",
                                              "src": "6381:2:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "6372:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "6372:12:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mload",
                                        "nodeType": "YulIdentifier",
                                        "src": "6366:5:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6366:19:101"
                                    },
                                    "variables": [
                                      {
                                        "name": "value_2",
                                        "nodeType": "YulTypedName",
                                        "src": "6355:7:101",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "6422:7:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "validator_revert_uint64",
                                        "nodeType": "YulIdentifier",
                                        "src": "6398:23:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6398:32:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6398:32:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "6454:5:101"
                                            },
                                            {
                                              "name": "_5",
                                              "nodeType": "YulIdentifier",
                                              "src": "6461:2:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "6450:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "6450:14:101"
                                        },
                                        {
                                          "name": "value_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "6466:7:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "6443:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6443:31:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6443:31:101"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "6487:12:101",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "6497:2:101",
                                      "type": "",
                                      "value": "96"
                                    },
                                    "variables": [
                                      {
                                        "name": "_6",
                                        "nodeType": "YulTypedName",
                                        "src": "6491:2:101",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "6512:34:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "6537:3:101"
                                            },
                                            {
                                              "name": "_6",
                                              "nodeType": "YulIdentifier",
                                              "src": "6542:2:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "6533:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "6533:12:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mload",
                                        "nodeType": "YulIdentifier",
                                        "src": "6527:5:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6527:19:101"
                                    },
                                    "variables": [
                                      {
                                        "name": "value_3",
                                        "nodeType": "YulTypedName",
                                        "src": "6516:7:101",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value_3",
                                          "nodeType": "YulIdentifier",
                                          "src": "6583:7:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "validator_revert_uint64",
                                        "nodeType": "YulIdentifier",
                                        "src": "6559:23:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6559:32:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6559:32:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "6615:5:101"
                                            },
                                            {
                                              "name": "_6",
                                              "nodeType": "YulIdentifier",
                                              "src": "6622:2:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "6611:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "6611:14:101"
                                        },
                                        {
                                          "name": "value_3",
                                          "nodeType": "YulIdentifier",
                                          "src": "6627:7:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "6604:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6604:31:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6604:31:101"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "6648:13:101",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "6658:3:101",
                                      "type": "",
                                      "value": "128"
                                    },
                                    "variables": [
                                      {
                                        "name": "_7",
                                        "nodeType": "YulTypedName",
                                        "src": "6652:2:101",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "6674:34:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "6699:3:101"
                                            },
                                            {
                                              "name": "_7",
                                              "nodeType": "YulIdentifier",
                                              "src": "6704:2:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "6695:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "6695:12:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mload",
                                        "nodeType": "YulIdentifier",
                                        "src": "6689:5:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6689:19:101"
                                    },
                                    "variables": [
                                      {
                                        "name": "value_4",
                                        "nodeType": "YulTypedName",
                                        "src": "6678:7:101",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value_4",
                                          "nodeType": "YulIdentifier",
                                          "src": "6745:7:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "validator_revert_uint32",
                                        "nodeType": "YulIdentifier",
                                        "src": "6721:23:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6721:32:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6721:32:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "6777:5:101"
                                            },
                                            {
                                              "name": "_7",
                                              "nodeType": "YulIdentifier",
                                              "src": "6784:2:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "6773:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "6773:14:101"
                                        },
                                        {
                                          "name": "value_4",
                                          "nodeType": "YulIdentifier",
                                          "src": "6789:7:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "6766:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6766:31:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6766:31:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "6817:3:101"
                                        },
                                        {
                                          "name": "value",
                                          "nodeType": "YulIdentifier",
                                          "src": "6822:5:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "6810:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6810:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6810:18:101"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "6841:19:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "6852:3:101"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "6857:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "6848:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6848:12:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "dst",
                                        "nodeType": "YulIdentifier",
                                        "src": "6841:3:101"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "6873:19:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "6884:3:101"
                                        },
                                        {
                                          "name": "_4",
                                          "nodeType": "YulIdentifier",
                                          "src": "6889:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "6880:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6880:12:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "src",
                                        "nodeType": "YulIdentifier",
                                        "src": "6873:3:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "5991:3:101"
                                  },
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "5996:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "5988:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5988:11:101"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "6000:22:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "6002:18:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "6013:3:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6018:1:101",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "6009:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6009:11:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6002:3:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "5984:3:101",
                                "statements": []
                              },
                              "src": "5980:922:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6911:15:101",
                              "value": {
                                "name": "dst_1",
                                "nodeType": "YulIdentifier",
                                "src": "6921:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "6911:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_array$_t_struct$_Draw_$10697_memory_ptr_$dyn_memory_ptr_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5292:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "5303:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5315:6:101",
                            "type": ""
                          }
                        ],
                        "src": "5197:1735:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7079:1796:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7089:12:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "7099:2:101",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7093:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7146:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7155:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7158:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "7148:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7148:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7148:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "7121:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7130:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "7117:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7117:23:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7142:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "7113:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7113:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "7110:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7171:30:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7191:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "7185:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7185:16:101"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "7175:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7244:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7253:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7256:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "7246:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7246:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7246:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "7216:6:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7224:18:101",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "7213:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7213:30:101"
                              },
                              "nodeType": "YulIf",
                              "src": "7210:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7269:32:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7283:9:101"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "7294:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7279:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7279:22:101"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "7273:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7349:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7358:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7361:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "7351:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7351:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7351:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "7328:2:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "7332:4:101",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "7324:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "7324:13:101"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "7339:7:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "7320:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7320:27:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "7313:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7313:35:101"
                              },
                              "nodeType": "YulIf",
                              "src": "7310:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7374:19:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "7390:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "7384:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7384:9:101"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "7378:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7402:80:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "7478:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "array_allocation_size_array_array_uint64_dyn_dyn",
                                      "nodeType": "YulIdentifier",
                                      "src": "7429:48:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7429:52:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "allocate_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "7413:15:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7413:69:101"
                              },
                              "variables": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulTypedName",
                                  "src": "7406:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7491:16:101",
                              "value": {
                                "name": "dst",
                                "nodeType": "YulIdentifier",
                                "src": "7504:3:101"
                              },
                              "variables": [
                                {
                                  "name": "dst_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7495:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "7523:3:101"
                                  },
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "7528:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7516:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7516:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7516:15:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7540:19:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "7551:3:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7556:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7547:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7547:12:101"
                              },
                              "variableNames": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulIdentifier",
                                  "src": "7540:3:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7568:22:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "7583:2:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7587:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7579:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7579:11:101"
                              },
                              "variables": [
                                {
                                  "name": "src",
                                  "nodeType": "YulTypedName",
                                  "src": "7572:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7599:16:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "7609:6:101",
                                "type": "",
                                "value": "0x0300"
                              },
                              "variables": [
                                {
                                  "name": "_4",
                                  "nodeType": "YulTypedName",
                                  "src": "7603:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7670:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7679:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7682:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "7672:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7672:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7672:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "7638:2:101"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "name": "_3",
                                                "nodeType": "YulIdentifier",
                                                "src": "7646:2:101"
                                              },
                                              {
                                                "name": "_4",
                                                "nodeType": "YulIdentifier",
                                                "src": "7650:2:101"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "mul",
                                              "nodeType": "YulIdentifier",
                                              "src": "7642:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "7642:11:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "7634:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "7634:20:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "7656:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7630:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7630:29:101"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "7661:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "7627:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7627:42:101"
                              },
                              "nodeType": "YulIf",
                              "src": "7624:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7695:10:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "7704:1:101",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "7699:1:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7714:12:101",
                              "value": {
                                "name": "i",
                                "nodeType": "YulIdentifier",
                                "src": "7725:1:101"
                              },
                              "variables": [
                                {
                                  "name": "i_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7718:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7786:1059:101",
                                "statements": [
                                  {
                                    "body": {
                                      "nodeType": "YulBlock",
                                      "src": "7830:16:101",
                                      "statements": [
                                        {
                                          "expression": {
                                            "arguments": [
                                              {
                                                "name": "i",
                                                "nodeType": "YulIdentifier",
                                                "src": "7839:1:101"
                                              },
                                              {
                                                "name": "i",
                                                "nodeType": "YulIdentifier",
                                                "src": "7842:1:101"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "revert",
                                              "nodeType": "YulIdentifier",
                                              "src": "7832:6:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "7832:12:101"
                                          },
                                          "nodeType": "YulExpressionStatement",
                                          "src": "7832:12:101"
                                        }
                                      ]
                                    },
                                    "condition": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dataEnd",
                                              "nodeType": "YulIdentifier",
                                              "src": "7811:7:101"
                                            },
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "7820:3:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "sub",
                                            "nodeType": "YulIdentifier",
                                            "src": "7807:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "7807:17:101"
                                        },
                                        {
                                          "name": "_4",
                                          "nodeType": "YulIdentifier",
                                          "src": "7826:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "slt",
                                        "nodeType": "YulIdentifier",
                                        "src": "7803:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7803:26:101"
                                    },
                                    "nodeType": "YulIf",
                                    "src": "7800:2:101"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "7859:35:101",
                                    "value": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "allocate_memory_4543",
                                        "nodeType": "YulIdentifier",
                                        "src": "7872:20:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7872:22:101"
                                    },
                                    "variables": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulTypedName",
                                        "src": "7863:5:101",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value",
                                          "nodeType": "YulIdentifier",
                                          "src": "7914:5:101"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "7949:3:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "abi_decode_uint8_fromMemory",
                                            "nodeType": "YulIdentifier",
                                            "src": "7921:27:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "7921:32:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "7907:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7907:47:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7907:47:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "7978:5:101"
                                            },
                                            {
                                              "name": "_1",
                                              "nodeType": "YulIdentifier",
                                              "src": "7985:2:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "7974:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "7974:14:101"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8022:3:101"
                                                },
                                                {
                                                  "name": "_1",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8027:2:101"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "8018:3:101"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "8018:12:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "abi_decode_uint8_fromMemory",
                                            "nodeType": "YulIdentifier",
                                            "src": "7990:27:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "7990:41:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "7967:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7967:65:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7967:65:101"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "8045:12:101",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "8055:2:101",
                                      "type": "",
                                      "value": "64"
                                    },
                                    "variables": [
                                      {
                                        "name": "_5",
                                        "nodeType": "YulTypedName",
                                        "src": "8049:2:101",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "8081:5:101"
                                            },
                                            {
                                              "name": "_5",
                                              "nodeType": "YulIdentifier",
                                              "src": "8088:2:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "8077:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8077:14:101"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8126:3:101"
                                                },
                                                {
                                                  "name": "_5",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8131:2:101"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "8122:3:101"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "8122:12:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "abi_decode_uint32_fromMemory",
                                            "nodeType": "YulIdentifier",
                                            "src": "8093:28:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8093:42:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8070:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8070:66:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8070:66:101"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "8149:12:101",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "8159:2:101",
                                      "type": "",
                                      "value": "96"
                                    },
                                    "variables": [
                                      {
                                        "name": "_6",
                                        "nodeType": "YulTypedName",
                                        "src": "8153:2:101",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "8185:5:101"
                                            },
                                            {
                                              "name": "_6",
                                              "nodeType": "YulIdentifier",
                                              "src": "8192:2:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "8181:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8181:14:101"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8230:3:101"
                                                },
                                                {
                                                  "name": "_6",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8235:2:101"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "8226:3:101"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "8226:12:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "abi_decode_uint32_fromMemory",
                                            "nodeType": "YulIdentifier",
                                            "src": "8197:28:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8197:42:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8174:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8174:66:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8174:66:101"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "8253:13:101",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "8263:3:101",
                                      "type": "",
                                      "value": "128"
                                    },
                                    "variables": [
                                      {
                                        "name": "_7",
                                        "nodeType": "YulTypedName",
                                        "src": "8257:2:101",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "8290:5:101"
                                            },
                                            {
                                              "name": "_7",
                                              "nodeType": "YulIdentifier",
                                              "src": "8297:2:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "8286:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8286:14:101"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8335:3:101"
                                                },
                                                {
                                                  "name": "_7",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8340:2:101"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "8331:3:101"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "8331:12:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "abi_decode_uint32_fromMemory",
                                            "nodeType": "YulIdentifier",
                                            "src": "8302:28:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8302:42:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8279:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8279:66:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8279:66:101"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "8358:13:101",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "8368:3:101",
                                      "type": "",
                                      "value": "160"
                                    },
                                    "variables": [
                                      {
                                        "name": "_8",
                                        "nodeType": "YulTypedName",
                                        "src": "8362:2:101",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "8395:5:101"
                                            },
                                            {
                                              "name": "_8",
                                              "nodeType": "YulIdentifier",
                                              "src": "8402:2:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "8391:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8391:14:101"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8440:3:101"
                                                },
                                                {
                                                  "name": "_8",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8445:2:101"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "8436:3:101"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "8436:12:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "abi_decode_uint32_fromMemory",
                                            "nodeType": "YulIdentifier",
                                            "src": "8407:28:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8407:42:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8384:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8384:66:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8384:66:101"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "8463:13:101",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "8473:3:101",
                                      "type": "",
                                      "value": "192"
                                    },
                                    "variables": [
                                      {
                                        "name": "_9",
                                        "nodeType": "YulTypedName",
                                        "src": "8467:2:101",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "8500:5:101"
                                            },
                                            {
                                              "name": "_9",
                                              "nodeType": "YulIdentifier",
                                              "src": "8507:2:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "8496:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8496:14:101"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8546:3:101"
                                                },
                                                {
                                                  "name": "_9",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8551:2:101"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "8542:3:101"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "8542:12:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "abi_decode_uint104_fromMemory",
                                            "nodeType": "YulIdentifier",
                                            "src": "8512:29:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8512:43:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8489:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8489:67:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8489:67:101"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "8569:14:101",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "8580:3:101",
                                      "type": "",
                                      "value": "224"
                                    },
                                    "variables": [
                                      {
                                        "name": "_10",
                                        "nodeType": "YulTypedName",
                                        "src": "8573:3:101",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "8607:5:101"
                                            },
                                            {
                                              "name": "_10",
                                              "nodeType": "YulIdentifier",
                                              "src": "8614:3:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "8603:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8603:15:101"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8659:3:101"
                                                },
                                                {
                                                  "name": "_10",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8664:3:101"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "8655:3:101"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "8655:13:101"
                                            },
                                            {
                                              "name": "dataEnd",
                                              "nodeType": "YulIdentifier",
                                              "src": "8670:7:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "abi_decode_array_uint32_fromMemory",
                                            "nodeType": "YulIdentifier",
                                            "src": "8620:34:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8620:58:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8596:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8596:83:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8596:83:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "8703:5:101"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "8710:6:101",
                                              "type": "",
                                              "value": "0x0100"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "8699:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8699:18:101"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8729:3:101"
                                                },
                                                {
                                                  "kind": "number",
                                                  "nodeType": "YulLiteral",
                                                  "src": "8734:3:101",
                                                  "type": "",
                                                  "value": "736"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "8725:3:101"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "8725:13:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "8719:5:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8719:20:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8692:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8692:48:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8692:48:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "8760:3:101"
                                        },
                                        {
                                          "name": "value",
                                          "nodeType": "YulIdentifier",
                                          "src": "8765:5:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8753:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8753:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8753:18:101"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "8784:19:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "8795:3:101"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "8800:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "8791:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8791:12:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "dst",
                                        "nodeType": "YulIdentifier",
                                        "src": "8784:3:101"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "8816:19:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "8827:3:101"
                                        },
                                        {
                                          "name": "_4",
                                          "nodeType": "YulIdentifier",
                                          "src": "8832:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "8823:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8823:12:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "src",
                                        "nodeType": "YulIdentifier",
                                        "src": "8816:3:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7746:3:101"
                                  },
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "7751:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "7743:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7743:11:101"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "7755:22:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "7757:18:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "7768:3:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7773:1:101",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "7764:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7764:11:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "7757:3:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "7739:3:101",
                                "statements": []
                              },
                              "src": "7735:1110:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8854:15:101",
                              "value": {
                                "name": "dst_1",
                                "nodeType": "YulIdentifier",
                                "src": "8864:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "8854:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_array$_t_struct$_PrizeDistribution_$11103_memory_ptr_$dyn_memory_ptr_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7045:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "7056:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7068:6:101",
                            "type": ""
                          }
                        ],
                        "src": "6937:1938:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8986:795:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8996:12:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "9006:2:101",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "9000:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9053:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9062:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9065:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "9055:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9055:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9055:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "9028:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9037:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "9024:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9024:23:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "9049:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "9020:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9020:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "9017:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9078:30:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9098:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "9092:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9092:16:101"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "9082:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9151:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9160:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9163:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "9153:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9153:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9153:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "9123:6:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9131:18:101",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "9120:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9120:30:101"
                              },
                              "nodeType": "YulIf",
                              "src": "9117:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9176:32:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9190:9:101"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "9201:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9186:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9186:22:101"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "9180:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9256:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9265:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9268:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "9258:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9258:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9258:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "9235:2:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "9239:4:101",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "9231:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "9231:13:101"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "9246:7:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "9227:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9227:27:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "9220:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9220:35:101"
                              },
                              "nodeType": "YulIf",
                              "src": "9217:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9281:19:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "9297:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "9291:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9291:9:101"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "9285:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9309:80:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "9385:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "array_allocation_size_array_array_uint64_dyn_dyn",
                                      "nodeType": "YulIdentifier",
                                      "src": "9336:48:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9336:52:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "allocate_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "9320:15:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9320:69:101"
                              },
                              "variables": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulTypedName",
                                  "src": "9313:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9398:16:101",
                              "value": {
                                "name": "dst",
                                "nodeType": "YulIdentifier",
                                "src": "9411:3:101"
                              },
                              "variables": [
                                {
                                  "name": "dst_1",
                                  "nodeType": "YulTypedName",
                                  "src": "9402:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "9430:3:101"
                                  },
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "9435:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9423:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9423:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9423:15:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9447:19:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "9458:3:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "9463:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9454:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9454:12:101"
                              },
                              "variableNames": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulIdentifier",
                                  "src": "9447:3:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9475:22:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "9490:2:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "9494:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9486:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9486:11:101"
                              },
                              "variables": [
                                {
                                  "name": "src",
                                  "nodeType": "YulTypedName",
                                  "src": "9479:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9551:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9560:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9563:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "9553:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9553:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9553:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "9520:2:101"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "9528:1:101",
                                                "type": "",
                                                "value": "5"
                                              },
                                              {
                                                "name": "_3",
                                                "nodeType": "YulIdentifier",
                                                "src": "9531:2:101"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "9524:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "9524:10:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "9516:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "9516:19:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "9537:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9512:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9512:28:101"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "9542:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "9509:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9509:41:101"
                              },
                              "nodeType": "YulIf",
                              "src": "9506:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9576:10:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "9585:1:101",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "9580:1:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9640:111:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "9661:3:101"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "9672:3:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "9666:5:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "9666:10:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "9654:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9654:23:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9654:23:101"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "9690:19:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "9701:3:101"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "9706:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "9697:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9697:12:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "dst",
                                        "nodeType": "YulIdentifier",
                                        "src": "9690:3:101"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "9722:19:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "9733:3:101"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "9738:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "9729:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9729:12:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "src",
                                        "nodeType": "YulIdentifier",
                                        "src": "9722:3:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "9606:1:101"
                                  },
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "9609:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "9603:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9603:9:101"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "9613:18:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "9615:14:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "9624:1:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9627:1:101",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "9620:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9620:9:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "9615:1:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "9599:3:101",
                                "statements": []
                              },
                              "src": "9595:156:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9760:15:101",
                              "value": {
                                "name": "dst_1",
                                "nodeType": "YulIdentifier",
                                "src": "9770:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "9760:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_array$_t_uint256_$dyn_memory_ptr_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8952:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "8963:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8975:6:101",
                            "type": ""
                          }
                        ],
                        "src": "8880:901:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9847:374:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9857:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "9877:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "9871:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9871:12:101"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "9861:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "9899:3:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "9904:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9892:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9892:19:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9892:19:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9920:14:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "9930:4:101",
                                "type": "",
                                "value": "0x20"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "9924:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9943:19:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "9954:3:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "9959:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9950:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9950:12:101"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "9943:3:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9971:28:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "9989:5:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "9996:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9985:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9985:14:101"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "9975:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "10008:10:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "10017:1:101",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "10012:1:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "10076:120:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "10097:3:101"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "srcPtr",
                                              "nodeType": "YulIdentifier",
                                              "src": "10108:6:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "10102:5:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "10102:13:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "10090:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10090:26:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "10090:26:101"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "10129:19:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "10140:3:101"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "10145:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "10136:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10136:12:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "10129:3:101"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "10161:25:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "10175:6:101"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "10183:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "10171:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10171:15:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "10161:6:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "10038:1:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "10041:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "10035:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10035:13:101"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "10049:18:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "10051:14:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "10060:1:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "10063:1:101",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "10056:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10056:9:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "10051:1:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "10031:3:101",
                                "statements": []
                              },
                              "src": "10027:169:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10205:10:101",
                              "value": {
                                "name": "pos",
                                "nodeType": "YulIdentifier",
                                "src": "10212:3:101"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "10205:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_array_uint256_dyn",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "9824:5:101",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "9831:3:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "9839:3:101",
                            "type": ""
                          }
                        ],
                        "src": "9786:435:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10286:399:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "10296:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "10316:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "10310:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10310:12:101"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "10300:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "10338:3:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "10343:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10331:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10331:19:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10331:19:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "10359:14:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "10369:4:101",
                                "type": "",
                                "value": "0x20"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "10363:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10382:19:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "10393:3:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "10398:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10389:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10389:12:101"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "10382:3:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "10410:28:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "10428:5:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "10435:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10424:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10424:14:101"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "10414:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "10447:10:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "10456:1:101",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "10451:1:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "10515:145:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "10536:3:101"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "srcPtr",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "10551:6:101"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "mload",
                                                "nodeType": "YulIdentifier",
                                                "src": "10545:5:101"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "10545:13:101"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "10560:18:101",
                                              "type": "",
                                              "value": "0xffffffffffffffff"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "and",
                                            "nodeType": "YulIdentifier",
                                            "src": "10541:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "10541:38:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "10529:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10529:51:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "10529:51:101"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "10593:19:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "10604:3:101"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "10609:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "10600:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10600:12:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "10593:3:101"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "10625:25:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "10639:6:101"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "10647:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "10635:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10635:15:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "10625:6:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "10477:1:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "10480:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "10474:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10474:13:101"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "10488:18:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "10490:14:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "10499:1:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "10502:1:101",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "10495:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10495:9:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "10490:1:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "10470:3:101",
                                "statements": []
                              },
                              "src": "10466:194:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10669:10:101",
                              "value": {
                                "name": "pos",
                                "nodeType": "YulIdentifier",
                                "src": "10676:3:101"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "10669:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_array_uint64_dyn",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "10263:5:101",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "10270:3:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "10278:3:101",
                            "type": ""
                          }
                        ],
                        "src": "10226:459:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10809:145:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "10826:3:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "10839:2:101",
                                            "type": "",
                                            "value": "96"
                                          },
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "10843:6:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "shl",
                                          "nodeType": "YulIdentifier",
                                          "src": "10835:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "10835:15:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10852:66:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "10831:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10831:88:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10819:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10819:101:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10819:101:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10929:19:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "10940:3:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10945:2:101",
                                    "type": "",
                                    "value": "20"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10936:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10936:12:101"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "10929:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_packed_t_address__to_t_address__nonPadded_inplace_fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "10785:3:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "10790:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "10801:3:101",
                            "type": ""
                          }
                        ],
                        "src": "10690:264:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11212:326:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11229:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "11244:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11252:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "11240:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11240:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11222:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11222:74:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11222:74:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11316:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11327:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11312:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11312:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11332:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11305:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11305:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11305:30:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11344:69:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "11386:6:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11398:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11409:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11394:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11394:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_array_uint64_dyn",
                                  "nodeType": "YulIdentifier",
                                  "src": "11358:27:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11358:55:101"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "11348:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11433:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11444:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11429:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11429:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "tail_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "11453:6:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11461:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "11449:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11449:22:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11422:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11422:50:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11422:50:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11481:51:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "11517:6:101"
                                  },
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "11525:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_array_uint64_dyn",
                                  "nodeType": "YulIdentifier",
                                  "src": "11489:27:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11489:43:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11481:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "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": "11165:9:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "11176:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "11184:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "11192:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11203:4:101",
                            "type": ""
                          }
                        ],
                        "src": "10959:579:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11744:702:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11754:12:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "11764:2:101",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "11758:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11775:32:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11793:9:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "11804:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11789:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11789:18:101"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "11779:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11823:9:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "11834:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11816:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11816:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11816:21:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11846:17:101",
                              "value": {
                                "name": "tail_1",
                                "nodeType": "YulIdentifier",
                                "src": "11857:6:101"
                              },
                              "variables": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulTypedName",
                                  "src": "11850:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11872:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "11892:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "11886:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11886:13:101"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "11876:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "11915:6:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "11923:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11908:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11908:22:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11908:22:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11939:25:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11950:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11961:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11946:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11946:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "11939:3:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11973:53:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11995:9:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "12010:1:101",
                                            "type": "",
                                            "value": "5"
                                          },
                                          {
                                            "name": "length",
                                            "nodeType": "YulIdentifier",
                                            "src": "12013:6:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "shl",
                                          "nodeType": "YulIdentifier",
                                          "src": "12006:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "12006:14:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11991:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11991:30:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12023:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11987:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11987:39:101"
                              },
                              "variables": [
                                {
                                  "name": "tail_2",
                                  "nodeType": "YulTypedName",
                                  "src": "11977:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "12035:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "12053:6:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "12061:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12049:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12049:15:101"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "12039:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "12073:10:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "12082:1:101",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "12077:1:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "12141:276:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "12162:3:101"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "tail_2",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "12175:6:101"
                                                },
                                                {
                                                  "name": "headStart",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "12183:9:101"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "sub",
                                                "nodeType": "YulIdentifier",
                                                "src": "12171:3:101"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "12171:22:101"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "12195:66:101",
                                              "type": "",
                                              "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc0"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "12167:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "12167:95:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "12155:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12155:108:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "12155:108:101"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "12276:61:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "srcPtr",
                                              "nodeType": "YulIdentifier",
                                              "src": "12321:6:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "12315:5:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "12315:13:101"
                                        },
                                        {
                                          "name": "tail_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "12330:6:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "abi_encode_array_uint256_dyn",
                                        "nodeType": "YulIdentifier",
                                        "src": "12286:28:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12286:51:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "tail_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "12276:6:101"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "12350:25:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "12364:6:101"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "12372:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "12360:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12360:15:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "12350:6:101"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "12388:19:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "12399:3:101"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "12404:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "12395:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12395:12:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "12388:3:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "12103:1:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "12106:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "12100:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12100:13:101"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "12114:18:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "12116:14:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "12125:1:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "12128:1:101",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "12121:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12121:9:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "12116:1:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "12096:3:101",
                                "statements": []
                              },
                              "src": "12092:325:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12426:14:101",
                              "value": {
                                "name": "tail_2",
                                "nodeType": "YulIdentifier",
                                "src": "12434:6:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12426:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "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": "11713:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "11724:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11735:4:101",
                            "type": ""
                          }
                        ],
                        "src": "11543:903:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12602:110:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12619:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12630:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12612:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12612:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12612:21:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12642:64:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "12679:6:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12691:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12702:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12687:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12687:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_array_uint256_dyn",
                                  "nodeType": "YulIdentifier",
                                  "src": "12650:28:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12650:56:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12642:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "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": "12571:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "12582:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12593:4:101",
                            "type": ""
                          }
                        ],
                        "src": "12451:261:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12914:652:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12931:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12942:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12924:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12924:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12924:21:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "12954:70:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "12997:6:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13009:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13020:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13005:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13005:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_array_uint256_dyn",
                                  "nodeType": "YulIdentifier",
                                  "src": "12968:28:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12968:56:101"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "12958:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13033:12:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "13043:2:101",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13037:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13065:9:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "13076:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13061:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13061:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "tail_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "13085:6:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13093:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "13081:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13081:22:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13054:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13054:50:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13054:50:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13113:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13133:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "13127:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13127:13:101"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "13117:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13156:6:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "13164:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13149:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13149:22:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13149:22:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13180:10:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "13189:1:101",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "13184:1:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "13249:87:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "tail_1",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "13278:6:101"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "13286:1:101"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "13274:3:101"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "13274:14:101"
                                            },
                                            {
                                              "name": "_1",
                                              "nodeType": "YulIdentifier",
                                              "src": "13290:2:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "13270:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "13270:23:101"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "arguments": [
                                                    {
                                                      "name": "value1",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "13309:6:101"
                                                    },
                                                    {
                                                      "name": "i",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "13317:1:101"
                                                    }
                                                  ],
                                                  "functionName": {
                                                    "name": "add",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "13305:3:101"
                                                  },
                                                  "nodeType": "YulFunctionCall",
                                                  "src": "13305:14:101"
                                                },
                                                {
                                                  "name": "_1",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "13321:2:101"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "13301:3:101"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "13301:23:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "13295:5:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "13295:30:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "13263:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13263:63:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13263:63:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "13210:1:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "13213:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "13207:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13207:13:101"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "13221:19:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "13223:15:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "13232:1:101"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "13235:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "13228:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13228:10:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "13223:1:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "13203:3:101",
                                "statements": []
                              },
                              "src": "13199:137:101"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "13370:63:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "tail_1",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "13399:6:101"
                                                },
                                                {
                                                  "name": "length",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "13407:6:101"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "13395:3:101"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "13395:19:101"
                                            },
                                            {
                                              "name": "_1",
                                              "nodeType": "YulIdentifier",
                                              "src": "13416:2:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "13391:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "13391:28:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "13421:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "13384:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13384:39:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13384:39:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "13351:1:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "13354:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "13348:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13348:13:101"
                              },
                              "nodeType": "YulIf",
                              "src": "13345:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13442:118:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "tail_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "13458:6:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "13474:6:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "13482:2:101",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "13470:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "13470:15:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "13487:66:101",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "13466:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "13466:88:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13454:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13454:101:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13557:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13450:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13450:110:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "13442:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "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": "12875:9:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "12886:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "12894:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12905:4:101",
                            "type": ""
                          }
                        ],
                        "src": "12717:849:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13730:534:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13740:12:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "13750:2:101",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13744:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13761:32:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13779:9:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13790:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13775:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13775:18:101"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13765:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13809:9:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13820:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13802:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13802:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13802:21:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13832:17:101",
                              "value": {
                                "name": "tail_1",
                                "nodeType": "YulIdentifier",
                                "src": "13843:6:101"
                              },
                              "variables": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulTypedName",
                                  "src": "13836:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13865:6:101"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13873:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13858:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13858:22:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13858:22:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13889:25:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13900:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13911:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13896:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13896:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "13889:3:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13923:20:101",
                              "value": {
                                "name": "value0",
                                "nodeType": "YulIdentifier",
                                "src": "13937:6:101"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "13927:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13952:10:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "13961:1:101",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "13956:1:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "14020:218:101",
                                "statements": [
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "14034:33:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "14060:6:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "calldataload",
                                        "nodeType": "YulIdentifier",
                                        "src": "14047:12:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14047:20:101"
                                    },
                                    "variables": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulTypedName",
                                        "src": "14038:5:101",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value",
                                          "nodeType": "YulIdentifier",
                                          "src": "14104:5:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "validator_revert_uint32",
                                        "nodeType": "YulIdentifier",
                                        "src": "14080:23:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14080:30:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "14080:30:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "14130:3:101"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "value",
                                              "nodeType": "YulIdentifier",
                                              "src": "14139:5:101"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "14146:10:101",
                                              "type": "",
                                              "value": "0xffffffff"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "and",
                                            "nodeType": "YulIdentifier",
                                            "src": "14135:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "14135:22:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "14123:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14123:35:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "14123:35:101"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "14171:19:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "14182:3:101"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "14187:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "14178:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14178:12:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "14171:3:101"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "14203:25:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "14217:6:101"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "14225:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "14213:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14213:15:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "14203:6:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "13982:1:101"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13985:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "13979:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13979:13:101"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "13993:18:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "13995:14:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "14004:1:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "14007:1:101",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "14000:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14000:9:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "13995:1:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "13975:3:101",
                                "statements": []
                              },
                              "src": "13971:267:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "14247:11:101",
                              "value": {
                                "name": "pos",
                                "nodeType": "YulIdentifier",
                                "src": "14255:3:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "14247:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "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": "13691:9:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "13702:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "13710:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "13721:4:101",
                            "type": ""
                          }
                        ],
                        "src": "13571:693:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14494:234:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14511:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14522:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14504:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14504:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14504:21:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "14534:69:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "14576:6:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14588:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14599:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14584:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14584:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_array_uint64_dyn",
                                  "nodeType": "YulIdentifier",
                                  "src": "14548:27:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14548:55:101"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "14538:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14623:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14634:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14619:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14619:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "tail_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "14643:6:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14651:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "14639:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14639:22:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14612:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14612:50:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14612:50:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "14671:51:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "14707:6:101"
                                  },
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "14715:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_array_uint64_dyn",
                                  "nodeType": "YulIdentifier",
                                  "src": "14679:27:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14679:43:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "14671:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "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": "14455:9:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "14466:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "14474:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "14485:4:101",
                            "type": ""
                          }
                        ],
                        "src": "14269:459:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14860:144:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "14870:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14882:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14893:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "14878:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14878:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "14870:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14912:9:101"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "14923:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14905:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14905:25:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14905:25:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14950:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14961:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14946:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14946:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "14970:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14978:18:101",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "14966:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14966:31:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14939:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14939:59:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14939:59:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bytes32_t_uint64__to_t_bytes32_t_uint64__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "14821:9:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "14832:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "14840:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "14851:4:101",
                            "type": ""
                          }
                        ],
                        "src": "14733:271:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15131:125:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "15141:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15153:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15164:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "15149:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15149:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "15141:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15183:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "15198:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15206:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "15194:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15194:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15176:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15176:74:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15176:74:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IDrawBuffer_$10930__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "15100:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "15111:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "15122:4:101",
                            "type": ""
                          }
                        ],
                        "src": "15009:247:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15396:125:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "15406:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15418:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15429:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "15414:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15414:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "15406:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15448:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "15463:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15471:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "15459:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15459:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15441:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15441:74:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15441:74:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IPrizeDistributionBuffer_$11079__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "15365:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "15376:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "15387:4:101",
                            "type": ""
                          }
                        ],
                        "src": "15261:260:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15644:125:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "15654:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15666:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15677:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "15662:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15662:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "15654:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15696:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "15711:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15719:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "15707:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15707:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15689:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15689:74:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15689:74:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_ITicket_$11825__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "15613:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "15624:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "15635:4:101",
                            "type": ""
                          }
                        ],
                        "src": "15526:243:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15948:171:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15965:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15976:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15958:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15958:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15958:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15999:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16010:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15995:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15995:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16015:2:101",
                                    "type": "",
                                    "value": "21"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15988:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15988:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15988:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16038:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16049:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16034:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16034:18:101"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f647261772d65787069726564",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "16054:23:101",
                                    "type": "",
                                    "value": "DrawCalc/draw-expired"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16027:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16027:51:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16027:51:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "16087:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16099:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16110:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "16095:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16095:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "16087:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_1976ce19fba2ed4af824906e710f82ad5e923c6e2bb37bad7064f18f24b13670__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "15925:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "15939:4:101",
                            "type": ""
                          }
                        ],
                        "src": "15774:345:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "16298:226:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16315:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16326:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16308:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16308:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16308:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16349:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16360:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16345:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16345:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16365:2:101",
                                    "type": "",
                                    "value": "36"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16338:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16338:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16338:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16388:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16399:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16384:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16384:18:101"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f696e76616c69642d7069636b2d696e64696365732d6c65",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "16404:34:101",
                                    "type": "",
                                    "value": "DrawCalc/invalid-pick-indices-le"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16377:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16377:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16377:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16459:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16470:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16455:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16455:18:101"
                                  },
                                  {
                                    "hexValue": "6e677468",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "16475:6:101",
                                    "type": "",
                                    "value": "ngth"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16448:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16448:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16448:34:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "16491:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16503:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16514:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "16499:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16499:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "16491:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7781a2e3604663c8228eaa4817f5b713c66f0b42b6081abd7ca2d4cbfa5ceb9f__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "16275:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "16289:4:101",
                            "type": ""
                          }
                        ],
                        "src": "16124:400:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "16703:181:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16720:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16731:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16713:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16713:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16713:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16754:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16765:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16750:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16750:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16770:2:101",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16743:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16743:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16743:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16793:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16804:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16789:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16789:18:101"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f657863656564732d6d61782d757365722d7069636b73",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "16809:33:101",
                                    "type": "",
                                    "value": "DrawCalc/exceeds-max-user-picks"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16782:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16782:61:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16782:61:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "16852:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16864:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16875:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "16860:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16860:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "16852:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c2807ca2e4d515be2d8d4f0d4ab4c36568b97e1c8724e1736fcb1de14cc3bc81__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "16680:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "16694:4:101",
                            "type": ""
                          }
                        ],
                        "src": "16529:355:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "17063:174:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "17080:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17091:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17073:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17073:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17073:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17114:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17125:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17110:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17110:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17130:2:101",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17103:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17103:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17103:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17153:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17164:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17149:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17149:18:101"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f7069636b732d617363656e64696e67",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "17169:26:101",
                                    "type": "",
                                    "value": "DrawCalc/picks-ascending"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17142:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17142:54:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17142:54:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "17205:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "17217:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17228:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "17213:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17213:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "17205:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d36fbc8f1fa527d40c21ada4b1e8e25893503e22cd273dea34def54b9b1a0da3__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "17040:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "17054:4:101",
                            "type": ""
                          }
                        ],
                        "src": "16889:348:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "17416:182:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "17433:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17444:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17426:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17426:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17426:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17467:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17478:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17463:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17463:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17483:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17456:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17456:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17456:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17506:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17517:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17502:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17502:18:101"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f696e73756666696369656e742d757365722d7069636b73",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "17522:34:101",
                                    "type": "",
                                    "value": "DrawCalc/insufficient-user-picks"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17495:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17495:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17495:62:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "17566:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "17578:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17589:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "17574:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17574:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "17566:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_e0df5dcf79e53fe4f72b2a4e3054273c70174113b6487e87dde19881765b01db__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "17393:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "17407:4:101",
                            "type": ""
                          }
                        ],
                        "src": "17242:356:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "17700:87:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "17710:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "17722:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17733:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "17718:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17718:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "17710:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "17752:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "17767:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17775:4:101",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "17763:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17763:17:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17745:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17745:36:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17745:36:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "17669:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "17680:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "17691:4:101",
                            "type": ""
                          }
                        ],
                        "src": "17603:184:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "17838:207:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "17848:19:101",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17864:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "17858:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17858:9:101"
                              },
                              "variableNames": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulIdentifier",
                                  "src": "17848:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "17876:35:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "17898:6:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17906:4:101",
                                    "type": "",
                                    "value": "0xa0"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "17894:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17894:17:101"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "17880:10:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "17986:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "17988:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "17988:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "17988:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "17929:10:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17941:18:101",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "17926:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17926:34:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "17965:10:101"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "17977:6:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "17962:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17962:22:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "17923:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17923:62:101"
                              },
                              "nodeType": "YulIf",
                              "src": "17920:2:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18024:2:101",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "18028:10:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18017:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18017:22:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18017:22:101"
                            }
                          ]
                        },
                        "name": "allocate_memory_4542",
                        "nodeType": "YulFunctionDefinition",
                        "returnVariables": [
                          {
                            "name": "memPtr",
                            "nodeType": "YulTypedName",
                            "src": "17827:6:101",
                            "type": ""
                          }
                        ],
                        "src": "17792:253:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "18096:209:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "18106:19:101",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18122:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "18116:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18116:9:101"
                              },
                              "variableNames": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulIdentifier",
                                  "src": "18106:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "18134:37:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "18156:6:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18164:6:101",
                                    "type": "",
                                    "value": "0x0120"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "18152:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18152:19:101"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "18138:10:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "18246:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "18248:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "18248:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "18248:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "18189:10:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18201:18:101",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "18186:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18186:34:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "18225:10:101"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "18237:6:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "18222:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18222:22:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "18183:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18183:62:101"
                              },
                              "nodeType": "YulIf",
                              "src": "18180:2:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18284:2:101",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "18288:10:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18277:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18277:22:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18277:22:101"
                            }
                          ]
                        },
                        "name": "allocate_memory_4543",
                        "nodeType": "YulFunctionDefinition",
                        "returnVariables": [
                          {
                            "name": "memPtr",
                            "nodeType": "YulTypedName",
                            "src": "18085:6:101",
                            "type": ""
                          }
                        ],
                        "src": "18050:255:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "18355:289:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "18365:19:101",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18381:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "18375:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18375:9:101"
                              },
                              "variableNames": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulIdentifier",
                                  "src": "18365:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "18393:117:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "18415:6:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "size",
                                            "nodeType": "YulIdentifier",
                                            "src": "18431:4:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "18437:2:101",
                                            "type": "",
                                            "value": "31"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "18427:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "18427:13:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18442:66:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "18423:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18423:86:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "18411:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18411:99:101"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "18397:10:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "18585:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "18587:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "18587:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "18587:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "18528:10:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18540:18:101",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "18525:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18525:34:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "18564:10:101"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "18576:6:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "18561:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18561:22:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "18522:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18522:62:101"
                              },
                              "nodeType": "YulIf",
                              "src": "18519:2:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18623:2:101",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "18627:10:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18616:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18616:22:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18616:22:101"
                            }
                          ]
                        },
                        "name": "allocate_memory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "size",
                            "nodeType": "YulTypedName",
                            "src": "18335:4:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "memPtr",
                            "nodeType": "YulTypedName",
                            "src": "18344:6:101",
                            "type": ""
                          }
                        ],
                        "src": "18310:334:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "18727:114:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "18771:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "18773:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "18773:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "18773:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "18743:6:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18751:18:101",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "18740:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18740:30:101"
                              },
                              "nodeType": "YulIf",
                              "src": "18737:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "18802:33:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18818:1:101",
                                        "type": "",
                                        "value": "5"
                                      },
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "18821:6:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "18814:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18814:14:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18830:4:101",
                                    "type": "",
                                    "value": "0x20"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "18810:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18810:25:101"
                              },
                              "variableNames": [
                                {
                                  "name": "size",
                                  "nodeType": "YulIdentifier",
                                  "src": "18802:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "array_allocation_size_array_array_uint64_dyn_dyn",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "18707:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "size",
                            "nodeType": "YulTypedName",
                            "src": "18718:4:101",
                            "type": ""
                          }
                        ],
                        "src": "18649:192:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "18894:80:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "18921:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "18923:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "18923:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "18923:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "18910:1:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "18917:1:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "18913:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18913:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "18907:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18907:13:101"
                              },
                              "nodeType": "YulIf",
                              "src": "18904:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "18952:16:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "18963:1:101"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "18966:1:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "18959:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18959:9:101"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "18952:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "18877:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "18880:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "18886:3:101",
                            "type": ""
                          }
                        ],
                        "src": "18846:128:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "19026:189:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "19036:28:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "19046:18:101",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "19040:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "19073:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "19088:1:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "19091:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "19084:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19084:10:101"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "19077:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "19103:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "19118:1:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "19121:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "19114:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19114:10:101"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "19107:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "19158:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "19160:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "19160:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "19160:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "19139:3:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "19148:2:101"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "19152:3:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "19144:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19144:12:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "19136:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19136:21:101"
                              },
                              "nodeType": "YulIf",
                              "src": "19133:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "19189:20:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "19200:3:101"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "19205:3:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "19196:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19196:13:101"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "19189:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "19009:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "19012:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "19018:3:101",
                            "type": ""
                          }
                        ],
                        "src": "18979:236:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "19266:158:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "19276:23:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "19291:1:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19294:4:101",
                                    "type": "",
                                    "value": "0xff"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "19287:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19287:12:101"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "19280:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "19308:23:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "19323:1:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19326:4:101",
                                    "type": "",
                                    "value": "0xff"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "19319:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19319:12:101"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "19312:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "19367:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "19369:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "19369:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "19369:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "19346:3:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "19355:4:101",
                                        "type": "",
                                        "value": "0xff"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "19361:3:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "19351:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19351:14:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "19343:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19343:23:101"
                              },
                              "nodeType": "YulIf",
                              "src": "19340:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "19398:20:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "19409:3:101"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "19414:3:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "19405:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19405:13:101"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "19398:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "19249:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "19252:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "19258:3:101",
                            "type": ""
                          }
                        ],
                        "src": "19220:204:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "19475:228:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "19506:168:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "19527:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "19530:77:101",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "19520:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "19520:88:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "19520:88:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "19628:1:101",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "19631:4:101",
                                          "type": "",
                                          "value": "0x12"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "19621:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "19621:15:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "19621:15:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "19656:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "19659:4:101",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "19649:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "19649:15:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "19649:15:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "19495:1:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "19488:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19488:9:101"
                              },
                              "nodeType": "YulIf",
                              "src": "19485:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "19683:14:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "19692:1:101"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "19695:1:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "div",
                                  "nodeType": "YulIdentifier",
                                  "src": "19688:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19688:9:101"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "19683:1:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_div_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "19460:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "19463:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "19469:1:101",
                            "type": ""
                          }
                        ],
                        "src": "19429:274:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "19772:418:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "19782:16:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "19797:1:101",
                                "type": "",
                                "value": "1"
                              },
                              "variables": [
                                {
                                  "name": "power_1",
                                  "nodeType": "YulTypedName",
                                  "src": "19786:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "19807:16:101",
                              "value": {
                                "name": "power_1",
                                "nodeType": "YulIdentifier",
                                "src": "19816:7:101"
                              },
                              "variableNames": [
                                {
                                  "name": "power",
                                  "nodeType": "YulIdentifier",
                                  "src": "19807:5:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "19832:13:101",
                              "value": {
                                "name": "_base",
                                "nodeType": "YulIdentifier",
                                "src": "19840:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "base",
                                  "nodeType": "YulIdentifier",
                                  "src": "19832:4:101"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "19896:288:101",
                                "statements": [
                                  {
                                    "body": {
                                      "nodeType": "YulBlock",
                                      "src": "20001:22:101",
                                      "statements": [
                                        {
                                          "expression": {
                                            "arguments": [],
                                            "functionName": {
                                              "name": "panic_error_0x11",
                                              "nodeType": "YulIdentifier",
                                              "src": "20003:16:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "20003:18:101"
                                          },
                                          "nodeType": "YulExpressionStatement",
                                          "src": "20003:18:101"
                                        }
                                      ]
                                    },
                                    "condition": {
                                      "arguments": [
                                        {
                                          "name": "base",
                                          "nodeType": "YulIdentifier",
                                          "src": "19916:4:101"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "19926:66:101",
                                              "type": "",
                                              "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                            },
                                            {
                                              "name": "base",
                                              "nodeType": "YulIdentifier",
                                              "src": "19994:4:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "div",
                                            "nodeType": "YulIdentifier",
                                            "src": "19922:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "19922:77:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "gt",
                                        "nodeType": "YulIdentifier",
                                        "src": "19913:2:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "19913:87:101"
                                    },
                                    "nodeType": "YulIf",
                                    "src": "19910:2:101"
                                  },
                                  {
                                    "body": {
                                      "nodeType": "YulBlock",
                                      "src": "20062:29:101",
                                      "statements": [
                                        {
                                          "nodeType": "YulAssignment",
                                          "src": "20064:25:101",
                                          "value": {
                                            "arguments": [
                                              {
                                                "name": "power",
                                                "nodeType": "YulIdentifier",
                                                "src": "20077:5:101"
                                              },
                                              {
                                                "name": "base",
                                                "nodeType": "YulIdentifier",
                                                "src": "20084:4:101"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "mul",
                                              "nodeType": "YulIdentifier",
                                              "src": "20073:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "20073:16:101"
                                          },
                                          "variableNames": [
                                            {
                                              "name": "power",
                                              "nodeType": "YulIdentifier",
                                              "src": "20064:5:101"
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    "condition": {
                                      "arguments": [
                                        {
                                          "name": "exponent",
                                          "nodeType": "YulIdentifier",
                                          "src": "20043:8:101"
                                        },
                                        {
                                          "name": "power_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "20053:7:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "and",
                                        "nodeType": "YulIdentifier",
                                        "src": "20039:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "20039:22:101"
                                    },
                                    "nodeType": "YulIf",
                                    "src": "20036:2:101"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "20104:23:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "base",
                                          "nodeType": "YulIdentifier",
                                          "src": "20116:4:101"
                                        },
                                        {
                                          "name": "base",
                                          "nodeType": "YulIdentifier",
                                          "src": "20122:4:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mul",
                                        "nodeType": "YulIdentifier",
                                        "src": "20112:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "20112:15:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "base",
                                        "nodeType": "YulIdentifier",
                                        "src": "20104:4:101"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "20140:34:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "power_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "20156:7:101"
                                        },
                                        {
                                          "name": "exponent",
                                          "nodeType": "YulIdentifier",
                                          "src": "20165:8:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "shr",
                                        "nodeType": "YulIdentifier",
                                        "src": "20152:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "20152:22:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "exponent",
                                        "nodeType": "YulIdentifier",
                                        "src": "20140:8:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "exponent",
                                    "nodeType": "YulIdentifier",
                                    "src": "19865:8:101"
                                  },
                                  {
                                    "name": "power_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "19875:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "19862:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19862:21:101"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "19884:3:101",
                                "statements": []
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "19858:3:101",
                                "statements": []
                              },
                              "src": "19854:330:101"
                            }
                          ]
                        },
                        "name": "checked_exp_helper",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "_base",
                            "nodeType": "YulTypedName",
                            "src": "19736:5:101",
                            "type": ""
                          },
                          {
                            "name": "exponent",
                            "nodeType": "YulTypedName",
                            "src": "19743:8:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "power",
                            "nodeType": "YulTypedName",
                            "src": "19756:5:101",
                            "type": ""
                          },
                          {
                            "name": "base",
                            "nodeType": "YulTypedName",
                            "src": "19763:4:101",
                            "type": ""
                          }
                        ],
                        "src": "19708:482:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "20263:72:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "20273:56:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "base",
                                    "nodeType": "YulIdentifier",
                                    "src": "20303:4:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "exponent",
                                        "nodeType": "YulIdentifier",
                                        "src": "20313:8:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "20323:4:101",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "20309:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "20309:19:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "checked_exp_unsigned",
                                  "nodeType": "YulIdentifier",
                                  "src": "20282:20:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20282:47:101"
                              },
                              "variableNames": [
                                {
                                  "name": "power",
                                  "nodeType": "YulIdentifier",
                                  "src": "20273:5:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_exp_t_uint256_t_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "base",
                            "nodeType": "YulTypedName",
                            "src": "20234:4:101",
                            "type": ""
                          },
                          {
                            "name": "exponent",
                            "nodeType": "YulTypedName",
                            "src": "20240:8:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "power",
                            "nodeType": "YulTypedName",
                            "src": "20253:5:101",
                            "type": ""
                          }
                        ],
                        "src": "20195:140:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "20399:807:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "20437:52:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "20451:10:101",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "20460:1:101",
                                      "type": "",
                                      "value": "1"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "power",
                                        "nodeType": "YulIdentifier",
                                        "src": "20451:5:101"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulLeave",
                                    "src": "20474:5:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "exponent",
                                    "nodeType": "YulIdentifier",
                                    "src": "20419:8:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "20412:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20412:16:101"
                              },
                              "nodeType": "YulIf",
                              "src": "20409:2:101"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "20522:52:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "20536:10:101",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "20545:1:101",
                                      "type": "",
                                      "value": "0"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "power",
                                        "nodeType": "YulIdentifier",
                                        "src": "20536:5:101"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulLeave",
                                    "src": "20559:5:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "base",
                                    "nodeType": "YulIdentifier",
                                    "src": "20508:4:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "20501:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20501:12:101"
                              },
                              "nodeType": "YulIf",
                              "src": "20498:2:101"
                            },
                            {
                              "cases": [
                                {
                                  "body": {
                                    "nodeType": "YulBlock",
                                    "src": "20610:52:101",
                                    "statements": [
                                      {
                                        "nodeType": "YulAssignment",
                                        "src": "20624:10:101",
                                        "value": {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "20633:1:101",
                                          "type": "",
                                          "value": "1"
                                        },
                                        "variableNames": [
                                          {
                                            "name": "power",
                                            "nodeType": "YulIdentifier",
                                            "src": "20624:5:101"
                                          }
                                        ]
                                      },
                                      {
                                        "nodeType": "YulLeave",
                                        "src": "20647:5:101"
                                      }
                                    ]
                                  },
                                  "nodeType": "YulCase",
                                  "src": "20603:59:101",
                                  "value": {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "20608:1:101",
                                    "type": "",
                                    "value": "1"
                                  }
                                },
                                {
                                  "body": {
                                    "nodeType": "YulBlock",
                                    "src": "20678:123:101",
                                    "statements": [
                                      {
                                        "body": {
                                          "nodeType": "YulBlock",
                                          "src": "20713:22:101",
                                          "statements": [
                                            {
                                              "expression": {
                                                "arguments": [],
                                                "functionName": {
                                                  "name": "panic_error_0x11",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "20715:16:101"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "20715:18:101"
                                              },
                                              "nodeType": "YulExpressionStatement",
                                              "src": "20715:18:101"
                                            }
                                          ]
                                        },
                                        "condition": {
                                          "arguments": [
                                            {
                                              "name": "exponent",
                                              "nodeType": "YulIdentifier",
                                              "src": "20698:8:101"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "20708:3:101",
                                              "type": "",
                                              "value": "255"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "gt",
                                            "nodeType": "YulIdentifier",
                                            "src": "20695:2:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "20695:17:101"
                                        },
                                        "nodeType": "YulIf",
                                        "src": "20692:2:101"
                                      },
                                      {
                                        "nodeType": "YulAssignment",
                                        "src": "20748:25:101",
                                        "value": {
                                          "arguments": [
                                            {
                                              "name": "exponent",
                                              "nodeType": "YulIdentifier",
                                              "src": "20761:8:101"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "20771:1:101",
                                              "type": "",
                                              "value": "1"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "shl",
                                            "nodeType": "YulIdentifier",
                                            "src": "20757:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "20757:16:101"
                                        },
                                        "variableNames": [
                                          {
                                            "name": "power",
                                            "nodeType": "YulIdentifier",
                                            "src": "20748:5:101"
                                          }
                                        ]
                                      },
                                      {
                                        "nodeType": "YulLeave",
                                        "src": "20786:5:101"
                                      }
                                    ]
                                  },
                                  "nodeType": "YulCase",
                                  "src": "20671:130:101",
                                  "value": {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "20676:1:101",
                                    "type": "",
                                    "value": "2"
                                  }
                                }
                              ],
                              "expression": {
                                "name": "base",
                                "nodeType": "YulIdentifier",
                                "src": "20590:4:101"
                              },
                              "nodeType": "YulSwitch",
                              "src": "20583:218:101"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "20899:70:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "20913:28:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "base",
                                          "nodeType": "YulIdentifier",
                                          "src": "20926:4:101"
                                        },
                                        {
                                          "name": "exponent",
                                          "nodeType": "YulIdentifier",
                                          "src": "20932:8:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "exp",
                                        "nodeType": "YulIdentifier",
                                        "src": "20922:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "20922:19:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "power",
                                        "nodeType": "YulIdentifier",
                                        "src": "20913:5:101"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulLeave",
                                    "src": "20954:5:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "base",
                                            "nodeType": "YulIdentifier",
                                            "src": "20823:4:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "20829:2:101",
                                            "type": "",
                                            "value": "11"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "lt",
                                          "nodeType": "YulIdentifier",
                                          "src": "20820:2:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "20820:12:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "exponent",
                                            "nodeType": "YulIdentifier",
                                            "src": "20837:8:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "20847:2:101",
                                            "type": "",
                                            "value": "78"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "lt",
                                          "nodeType": "YulIdentifier",
                                          "src": "20834:2:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "20834:16:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "20816:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "20816:35:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "base",
                                            "nodeType": "YulIdentifier",
                                            "src": "20860:4:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "20866:3:101",
                                            "type": "",
                                            "value": "307"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "lt",
                                          "nodeType": "YulIdentifier",
                                          "src": "20857:2:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "20857:13:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "exponent",
                                            "nodeType": "YulIdentifier",
                                            "src": "20875:8:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "20885:2:101",
                                            "type": "",
                                            "value": "32"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "lt",
                                          "nodeType": "YulIdentifier",
                                          "src": "20872:2:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "20872:16:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "20853:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "20853:36:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "20813:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20813:77:101"
                              },
                              "nodeType": "YulIf",
                              "src": "20810:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "20978:57:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "base",
                                    "nodeType": "YulIdentifier",
                                    "src": "21020:4:101"
                                  },
                                  {
                                    "name": "exponent",
                                    "nodeType": "YulIdentifier",
                                    "src": "21026:8:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "checked_exp_helper",
                                  "nodeType": "YulIdentifier",
                                  "src": "21001:18:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21001:34:101"
                              },
                              "variables": [
                                {
                                  "name": "power_1",
                                  "nodeType": "YulTypedName",
                                  "src": "20982:7:101",
                                  "type": ""
                                },
                                {
                                  "name": "base_1",
                                  "nodeType": "YulTypedName",
                                  "src": "20991:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "21140:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "21142:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "21142:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "21142:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "power_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21050:7:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "21063:66:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                      },
                                      {
                                        "name": "base_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "21131:6:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "div",
                                      "nodeType": "YulIdentifier",
                                      "src": "21059:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "21059:79:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "21047:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21047:92:101"
                              },
                              "nodeType": "YulIf",
                              "src": "21044:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "21171:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "power_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21184:7:101"
                                  },
                                  {
                                    "name": "base_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21193:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mul",
                                  "nodeType": "YulIdentifier",
                                  "src": "21180:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21180:20:101"
                              },
                              "variableNames": [
                                {
                                  "name": "power",
                                  "nodeType": "YulIdentifier",
                                  "src": "21171:5:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_exp_unsigned",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "base",
                            "nodeType": "YulTypedName",
                            "src": "20370:4:101",
                            "type": ""
                          },
                          {
                            "name": "exponent",
                            "nodeType": "YulTypedName",
                            "src": "20376:8:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "power",
                            "nodeType": "YulTypedName",
                            "src": "20389:5:101",
                            "type": ""
                          }
                        ],
                        "src": "20340:866:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "21263:176:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "21382:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "21384:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "21384:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "21384:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "x",
                                            "nodeType": "YulIdentifier",
                                            "src": "21294:1:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "21287:6:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "21287:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "21280:6:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "21280:17:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "21302:1:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "21309:66:101",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                          },
                                          {
                                            "name": "x",
                                            "nodeType": "YulIdentifier",
                                            "src": "21377:1:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "div",
                                          "nodeType": "YulIdentifier",
                                          "src": "21305:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "21305:74:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "21299:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "21299:81:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "21276:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21276:105:101"
                              },
                              "nodeType": "YulIf",
                              "src": "21273:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "21413:20:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "21428:1:101"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "21431:1:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mul",
                                  "nodeType": "YulIdentifier",
                                  "src": "21424:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21424:9:101"
                              },
                              "variableNames": [
                                {
                                  "name": "product",
                                  "nodeType": "YulIdentifier",
                                  "src": "21413:7:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_mul_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "21242:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "21245:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "product",
                            "nodeType": "YulTypedName",
                            "src": "21251:7:101",
                            "type": ""
                          }
                        ],
                        "src": "21211:228:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "21493:76:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "21515:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "21517:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "21517:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "21517:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "21509:1:101"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "21512:1:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "21506:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21506:8:101"
                              },
                              "nodeType": "YulIf",
                              "src": "21503:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "21546:17:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "21558:1:101"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "21561:1:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "21554:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21554:9:101"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "21546:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "21475:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "21478:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "21484:4:101",
                            "type": ""
                          }
                        ],
                        "src": "21444:125:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "21622:173:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "21632:20:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "21642:10:101",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "21636:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "21661:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "21676:1:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21679:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "21672:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21672:10:101"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "21665:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "21691:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "21706:1:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21709:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "21702:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21702:10:101"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "21695:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "21737:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "21739:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "21739:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "21739:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21727:3:101"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21732:3:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "21724:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21724:12:101"
                              },
                              "nodeType": "YulIf",
                              "src": "21721:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "21768:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21780:3:101"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21785:3:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "21776:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21776:13:101"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "21768:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "21604:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "21607:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "21613:4:101",
                            "type": ""
                          }
                        ],
                        "src": "21574:221:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "21847:148:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "21857:23:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "21872:1:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "21875:4:101",
                                    "type": "",
                                    "value": "0xff"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "21868:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21868:12:101"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "21861:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "21889:23:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "21904:1:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "21907:4:101",
                                    "type": "",
                                    "value": "0xff"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "21900:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21900:12:101"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "21893:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "21937:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "21939:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "21939:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "21939:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21927:3:101"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21932:3:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "21924:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21924:12:101"
                              },
                              "nodeType": "YulIf",
                              "src": "21921:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "21968:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21980:3:101"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21985:3:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "21976:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21976:13:101"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "21968:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "21829:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "21832:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "21838:4:101",
                            "type": ""
                          }
                        ],
                        "src": "21800:195:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "22047:148:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "22138:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "22140:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "22140:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "22140:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "22063:5:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22070:66:101",
                                    "type": "",
                                    "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "22060:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22060:77:101"
                              },
                              "nodeType": "YulIf",
                              "src": "22057:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "22169:20:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "22180:5:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22187:1:101",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "22176:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22176:13:101"
                              },
                              "variableNames": [
                                {
                                  "name": "ret",
                                  "nodeType": "YulIdentifier",
                                  "src": "22169:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "increment_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "22029:5:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "ret",
                            "nodeType": "YulTypedName",
                            "src": "22039:3:101",
                            "type": ""
                          }
                        ],
                        "src": "22000:195:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "22246:155:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "22256:20:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "22266:10:101",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "22260:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "22285:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "22304:5:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22311:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "22300:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22300:14:101"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "22289:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "22342:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "22344:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "22344:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "22344:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22329:7:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22338:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "22326:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22326:15:101"
                              },
                              "nodeType": "YulIf",
                              "src": "22323:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "22373:22:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22384:7:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22393:1:101",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "22380:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22380:15:101"
                              },
                              "variableNames": [
                                {
                                  "name": "ret",
                                  "nodeType": "YulIdentifier",
                                  "src": "22373:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "increment_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "22228:5:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "ret",
                            "nodeType": "YulTypedName",
                            "src": "22238:3:101",
                            "type": ""
                          }
                        ],
                        "src": "22200:201:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "22451:130:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "22461:31:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "22480:5:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22487:4:101",
                                    "type": "",
                                    "value": "0xff"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "22476:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22476:16:101"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "22465:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "22522:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "22524:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "22524:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "22524:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22507:7:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22516:4:101",
                                    "type": "",
                                    "value": "0xff"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "22504:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22504:17:101"
                              },
                              "nodeType": "YulIf",
                              "src": "22501:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "22553:22:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22564:7:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22573:1:101",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "22560:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22560:15:101"
                              },
                              "variableNames": [
                                {
                                  "name": "ret",
                                  "nodeType": "YulIdentifier",
                                  "src": "22553:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "increment_t_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "22433:5:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "ret",
                            "nodeType": "YulTypedName",
                            "src": "22443:3:101",
                            "type": ""
                          }
                        ],
                        "src": "22406:175:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "22618:152:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22635:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22638:77:101",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "22628:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22628:88:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "22628:88:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22732:1:101",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22735:4:101",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "22725:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22725:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "22725:15:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22756:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22759:4:101",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "22749:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22749:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "22749:15:101"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "22586:184:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "22807:152:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22824:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22827:77:101",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "22817:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22817:88:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "22817:88:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22921:1:101",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22924:4:101",
                                    "type": "",
                                    "value": "0x32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "22914:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22914:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "22914:15:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22945:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22948:4:101",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "22938:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22938:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "22938:15:101"
                            }
                          ]
                        },
                        "name": "panic_error_0x32",
                        "nodeType": "YulFunctionDefinition",
                        "src": "22775:184:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "22996:152:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "23013:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "23016:77:101",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "23006:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23006:88:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "23006:88:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "23110:1:101",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "23113:4:101",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "23103:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23103:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "23103:15:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "23134:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "23137:4:101",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "23127:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23127:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "23127:15:101"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "22964:184:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "23197:77:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "23252:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "23261:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "23264:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "23254:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "23254:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "23254:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "23220:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "23231:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "23238:10:101",
                                            "type": "",
                                            "value": "0xffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "23227:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "23227:22:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "23217:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "23217:33:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "23210:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23210:41:101"
                              },
                              "nodeType": "YulIf",
                              "src": "23207:2:101"
                            }
                          ]
                        },
                        "name": "validator_revert_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "23186:5:101",
                            "type": ""
                          }
                        ],
                        "src": "23153:121:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "23323:85:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "23386:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "23395:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "23398:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "23388:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "23388:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "23388:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "23346:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "23357:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "23364:18:101",
                                            "type": "",
                                            "value": "0xffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "23353:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "23353:30:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "23343:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "23343:41:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "23336:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23336:49:101"
                              },
                              "nodeType": "YulIf",
                              "src": "23333:2:101"
                            }
                          ]
                        },
                        "name": "validator_revert_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "23312:5:101",
                            "type": ""
                          }
                        ],
                        "src": "23279:129:101"
                      }
                    ]
                  },
                  "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_$10697_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_$11103_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_$10930__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_$11079__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_$11825__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": 101,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {
                "7277": [
                  {
                    "length": 32,
                    "start": 224
                  },
                  {
                    "length": 32,
                    "start": 407
                  },
                  {
                    "length": 32,
                    "start": 473
                  },
                  {
                    "length": 32,
                    "start": 1056
                  }
                ],
                "7281": [
                  {
                    "length": 32,
                    "start": 265
                  },
                  {
                    "length": 32,
                    "start": 2013
                  },
                  {
                    "length": 32,
                    "start": 2160
                  }
                ],
                "7285": [
                  {
                    "length": 32,
                    "start": 146
                  },
                  {
                    "length": 32,
                    "start": 366
                  },
                  {
                    "length": 32,
                    "start": 652
                  },
                  {
                    "length": 32,
                    "start": 1201
                  }
                ]
              },
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106100885760003560e01c8063aaca392e1161005b578063aaca392e1461014b578063bd97a2521461016c578063ce343bb614610192578063f8d0ca4c146101b957600080fd5b80630840bbdd1461008d5780634019f2d6146100de5780636cc25db7146101045780638045fbcf1461012b575b600080fd5b6100b47f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b7f00000000000000000000000000000000000000000000000000000000000000006100b4565b6100b47f000000000000000000000000000000000000000000000000000000000000000081565b61013e6101393660046114df565b6101d3565b6040516100d59190611afc565b61015e610159366004611532565b610352565b6040516100d5929190611b0f565b7f00000000000000000000000000000000000000000000000000000000000000006100b4565b6100b47f000000000000000000000000000000000000000000000000000000000000000081565b6101c1601081565b60405160ff90911681526020016100d5565b606060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d0bb78f385856040518363ffffffff1660e01b8152600401610232929190611b74565b60006040518083038186803b15801561024a57600080fd5b505afa15801561025e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261028691908101906116fd565b905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d30a5daf86866040518363ffffffff1660e01b81526004016102e5929190611b74565b60006040518083038186803b1580156102fd57600080fd5b505afa158015610311573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261033991908101906117f8565b90506103468683836105dd565b925050505b9392505050565b6060806000610363848601866115dd565b805190915086146103e05760405162461bcd60e51b8152602060048201526024808201527f4472617743616c632f696e76616c69642d7069636b2d696e64696365732d6c6560448201527f6e6774680000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6040517fd0bb78f300000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000169063d0bb78f390610457908b908b90600401611b74565b60006040518083038186803b15801561046f57600080fd5b505afa158015610483573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526104ab91908101906116fd565b905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d30a5daf8a8a6040518363ffffffff1660e01b815260040161050a929190611b74565b60006040518083038186803b15801561052257600080fd5b505afa158015610536573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261055e91908101906117f8565b9050600061056d8b84846105dd565b6040517fffffffffffffffffffffffffffffffffffffffff00000000000000000000000060608e901b1660208201529091506000906034016040516020818303038152906040528051906020012090506105ca8282868887610a48565b9650965050505050509550959350505050565b815160609060008167ffffffffffffffff8111156105fd576105fd611f08565b604051908082528060200260200182016040528015610626578160200160208202803683370190505b50905060008267ffffffffffffffff81111561064457610644611f08565b60405190808252806020026020018201604052801561066d578160200160208202803683370190505b50905060005b838163ffffffff16101561079c57858163ffffffff168151811061069957610699611ef2565b60200260200101516040015163ffffffff16878263ffffffff16815181106106c3576106c3611ef2565b60200260200101516040015103838263ffffffff16815181106106e8576106e8611ef2565b602002602001019067ffffffffffffffff16908167ffffffffffffffff1681525050858163ffffffff168151811061072257610722611ef2565b60200260200101516060015163ffffffff16878263ffffffff168151811061074c5761074c611ef2565b60200260200101516040015103828263ffffffff168151811061077157610771611ef2565b67ffffffffffffffff909216602092830291909101909101528061079481611e98565b915050610673565b506040517f68c7fd5700000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016906368c7fd5790610816908b9087908790600401611a31565b60006040518083038186803b15801561082e57600080fd5b505afa158015610842573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261086a9190810190611924565b905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16638e6d536a85856040518363ffffffff1660e01b81526004016108c9929190611bbf565b60006040518083038186803b1580156108e157600080fd5b505afa1580156108f5573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261091d9190810190611924565b905060008567ffffffffffffffff81111561093a5761093a611f08565b604051908082528060200260200182016040528015610963578160200160208202803683370190505b50905060005b86811015610a3a5782818151811061098357610983611ef2565b6020026020010151600014156109b85760008282815181106109a7576109a7611ef2565b602002602001018181525050610a28565b8281815181106109ca576109ca611ef2565b60200260200101518482815181106109e4576109e4611ef2565b6020026020010151670de0b6b3a76400006109ff9190611dff565b610a099190611cef565b828281518110610a1b57610a1b611ef2565b6020026020010181815250505b80610a3281611e7d565b915050610969565b509998505050505050505050565b6060806000875167ffffffffffffffff811115610a6757610a67611f08565b604051908082528060200260200182016040528015610a90578160200160208202803683370190505b5090506000885167ffffffffffffffff811115610aaf57610aaf611f08565b604051908082528060200260200182016040528015610ae257816020015b6060815260200190600190039081610acd5790505b5090504260005b88518163ffffffff161015610ccf57868163ffffffff1681518110610b1057610b10611ef2565b602002602001015160a0015163ffffffff16898263ffffffff1681518110610b3a57610b3a611ef2565b602002602001015160400151610b509190611c9e565b67ffffffffffffffff168267ffffffffffffffff1610610bb25760405162461bcd60e51b815260206004820152601560248201527f4472617743616c632f647261772d65787069726564000000000000000000000060448201526064016103d7565b6000610bfc888363ffffffff1681518110610bcf57610bcf611ef2565b60200260200101518d8463ffffffff1681518110610bef57610bef611ef2565b6020026020010151610d02565b9050610c768a8363ffffffff1681518110610c1957610c19611ef2565b6020026020010151600001518267ffffffffffffffff168d8c8663ffffffff1681518110610c4957610c49611ef2565b60200260200101518c8763ffffffff1681518110610c6957610c69611ef2565b6020026020010151610d3f565b868463ffffffff1681518110610c8e57610c8e611ef2565b60200260200101868563ffffffff1681518110610cad57610cad611ef2565b6020908102919091010191909152525080610cc781611e98565b915050610ae9565b5081604051602001610ce19190611a7c565b60405160208183030381529060405293508294505050509550959350505050565b6000670de0b6b3a76400008360c001516cffffffffffffffffffffffffff1683610d2c9190611dff565b610d369190611cef565b90505b92915050565b600060606000610d4e846110c4565b85516040805160108082526102208201909252929350909160009160208201610200803683370190505090506000866080015163ffffffff168363ffffffff161115610ddc5760405162461bcd60e51b815260206004820152601f60248201527f4472617743616c632f657863656564732d6d61782d757365722d7069636b730060448201526064016103d7565b60005b8363ffffffff168163ffffffff161015610ff4578a898263ffffffff1681518110610e0c57610e0c611ef2565b602002602001015167ffffffffffffffff1610610e6b5760405162461bcd60e51b815260206004820181905260248201527f4472617743616c632f696e73756666696369656e742d757365722d7069636b7360448201526064016103d7565b63ffffffff811615610f225788610e83600183611e35565b63ffffffff1681518110610e9957610e99611ef2565b602002602001015167ffffffffffffffff16898263ffffffff1681518110610ec357610ec3611ef2565b602002602001015167ffffffffffffffff1611610f225760405162461bcd60e51b815260206004820152601860248201527f4472617743616c632f7069636b732d617363656e64696e67000000000000000060448201526064016103d7565b60008a8a8363ffffffff1681518110610f3d57610f3d611ef2565b6020026020010151604051602001610f6992919091825267ffffffffffffffff16602082015260400190565b6040516020818303038152906040528051906020012060001c90506000610f91828f896111c9565b9050601060ff82161015610fdf578360ff168160ff161115610fb1578093505b848160ff1681518110610fc657610fc6611ef2565b602002602001018051809190610fdb90611e7d565b9052505b50508080610fec90611e98565b915050610ddf565b506000806110028984611268565b905060005b8360ff16811161109057600085828151811061102557611025611ef2565b6020026020010151111561107e5784818151811061104557611045611ef2565b602002602001015182828151811061105f5761105f611ef2565b60200260200101516110719190611dff565b61107b9084611c86565b92505b8061108881611e7d565b915050611007565b50633b9aca00896101000151836110a79190611dff565b6110b19190611cef565b9d939c50929a5050505050505050505050565b60606000826020015160ff1667ffffffffffffffff8111156110e8576110e8611f08565b604051908082528060200260200182016040528015611111578160200160208202803683370190505b508351909150600190611125906002611d54565b61112f9190611e1e565b8160008151811061114257611142611ef2565b602090810291909101015260015b836020015160ff168160ff1610156111c257835160ff1682611173600184611e5a565b60ff168151811061118657611186611ef2565b6020026020010151901b828260ff16815181106111a5576111a5611ef2565b6020908102919091010152806111ba81611ebc565b915050611150565b5092915050565b80516000908190815b8160ff168160ff16101561125d576000858260ff16815181106111f7576111f7611ef2565b602002602001015190508087168189161461123c578360ff168360ff16141561122757600094505050505061034b565b6112318484611e5a565b94505050505061034b565b8361124681611ebc565b94505050808061125590611ebc565b9150506111d2565b506103468282611e5a565b60606000611277836001611cca565b60ff1667ffffffffffffffff81111561129257611292611f08565b6040519080825280602002602001820160405280156112bb578160200160208202803683370190505b50905060005b8360ff168160ff161161130d576112db858260ff16611315565b828260ff16815181106112f0576112f0611ef2565b60209081029190910101528061130581611ebc565b9150506112c1565b509392505050565b6000808360e00151836010811061132e5761132e611ef2565b602002015163ffffffff169050600061134b856000015185611360565b90506113578183611cef565b95945050505050565b600081156113a657611373600183611e1e565b6113809060ff8516611dff565b6001901b6113918360ff8616611dff565b6001901b61139f9190611e1e565b9050610d39565b506001610d39565b803573ffffffffffffffffffffffffffffffffffffffff811681146113d257600080fd5b919050565b600082601f8301126113e857600080fd5b60405161020080820182811067ffffffffffffffff8211171561140d5761140d611f08565b604052818482810187101561142157600080fd5b600092505b601083101561144f57805161143a81611f1e565b82526001929092019160209182019101611426565b509195945050505050565b60008083601f84011261146c57600080fd5b50813567ffffffffffffffff81111561148457600080fd5b6020830191508360208260051b850101111561149f57600080fd5b9250929050565b80516cffffffffffffffffffffffffff811681146113d257600080fd5b80516113d281611f1e565b805160ff811681146113d257600080fd5b6000806000604084860312156114f457600080fd5b6114fd846113ae565b9250602084013567ffffffffffffffff81111561151957600080fd5b6115258682870161145a565b9497909650939450505050565b60008060008060006060868803121561154a57600080fd5b611553866113ae565b9450602086013567ffffffffffffffff8082111561157057600080fd5b61157c89838a0161145a565b9096509450604088013591508082111561159557600080fd5b818801915088601f8301126115a957600080fd5b8135818111156115b857600080fd5b8960208285010111156115ca57600080fd5b9699959850939650602001949392505050565b600060208083850312156115f057600080fd5b823567ffffffffffffffff8082111561160857600080fd5b818501915085601f83011261161c57600080fd5b813561162f61162a82611c62565b611c31565b80828252858201915085850189878560051b880101111561164f57600080fd5b60005b848110156116ee5781358681111561166957600080fd5b8701603f81018c1361167a57600080fd5b8881013561168a61162a82611c62565b808282528b82019150604084018f60408560051b87010111156116ac57600080fd5b600094505b838510156116d85780356116c481611f33565b835260019490940193918c01918c016116b1565b5087525050509287019290870190600101611652565b50909998505050505050505050565b6000602080838503121561171057600080fd5b825167ffffffffffffffff81111561172757600080fd5b8301601f8101851361173857600080fd5b805161174661162a82611c62565b8181528381019083850160a0808502860187018a101561176557600080fd5b60009550855b858110156117e95781838c031215611781578687fd5b611789611be4565b835181528884015161179a81611f1e565b818a01526040848101516117ad81611f33565b908201526060848101516117c081611f33565b908201526080848101516117d381611f1e565b908201528552938701939181019160010161176b565b50919998505050505050505050565b6000602080838503121561180b57600080fd5b825167ffffffffffffffff81111561182257600080fd5b8301601f8101851361183357600080fd5b805161184161162a82611c62565b81815283810190838501610300808502860187018a101561186157600080fd5b60009550855b858110156117e95781838c03121561187d578687fd5b611885611c0d565b61188e846114ce565b815261189b8985016114ce565b8982015260406118ac8186016114c3565b9082015260606118bd8582016114c3565b9082015260806118ce8582016114c3565b9082015260a06118df8582016114c3565b9082015260c06118f08582016114a6565b9082015260e06119028d8683016113d7565b908201526102e084015161010082015285529387019391810191600101611867565b6000602080838503121561193757600080fd5b825167ffffffffffffffff81111561194e57600080fd5b8301601f8101851361195f57600080fd5b805161196d61162a82611c62565b80828252848201915084840188868560051b870101111561198d57600080fd5b600094505b838510156119b0578051835260019490940193918501918501611992565b50979650505050505050565b600081518084526020808501945080840160005b838110156119ec578151875295820195908201906001016119d0565b509495945050505050565b600081518084526020808501945080840160005b838110156119ec57815167ffffffffffffffff1687529582019590820190600101611a0b565b73ffffffffffffffffffffffffffffffffffffffff84168152606060208201526000611a6060608301856119f7565b8281036040840152611a7281856119f7565b9695505050505050565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b82811015611aef577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc0888603018452611add8583516119bc565b94509285019290850190600101611aa3565b5092979650505050505050565b602081526000610d3660208301846119bc565b604081526000611b2260408301856119bc565b602083820381850152845180835260005b81811015611b4e578681018301518482018401528201611b33565b81811115611b5f5760008383860101525b50601f01601f19169190910101949350505050565b60208082528181018390526000908460408401835b86811015611bb4578235611b9c81611f1e565b63ffffffff1682529183019190830190600101611b89565b509695505050505050565b604081526000611bd260408301856119f7565b828103602084015261135781856119f7565b60405160a0810167ffffffffffffffff81118282101715611c0757611c07611f08565b60405290565b604051610120810167ffffffffffffffff81118282101715611c0757611c07611f08565b604051601f8201601f1916810167ffffffffffffffff81118282101715611c5a57611c5a611f08565b604052919050565b600067ffffffffffffffff821115611c7c57611c7c611f08565b5060051b60200190565b60008219821115611c9957611c99611edc565b500190565b600067ffffffffffffffff808316818516808303821115611cc157611cc1611edc565b01949350505050565b600060ff821660ff84168060ff03821115611ce757611ce7611edc565b019392505050565b600082611d0c57634e487b7160e01b600052601260045260246000fd5b500490565b600181815b80851115611d4c578160001904821115611d3257611d32611edc565b80851615611d3f57918102915b93841c9390800290611d16565b509250929050565b6000610d3660ff841683600082611d6d57506001610d39565b81611d7a57506000610d39565b8160018114611d905760028114611d9a57611db6565b6001915050610d39565b60ff841115611dab57611dab611edc565b50506001821b610d39565b5060208310610133831016604e8410600b8410161715611dd9575081810a610d39565b611de38383611d11565b8060001904821115611df757611df7611edc565b029392505050565b6000816000190483118215151615611e1957611e19611edc565b500290565b600082821015611e3057611e30611edc565b500390565b600063ffffffff83811690831681811015611e5257611e52611edc565b039392505050565b600060ff821660ff841680821015611e7457611e74611edc565b90039392505050565b6000600019821415611e9157611e91611edc565b5060010190565b600063ffffffff80831681811415611eb257611eb2611edc565b6001019392505050565b600060ff821660ff811415611ed357611ed3611edc565b60010192915050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b63ffffffff81168114611f3057600080fd5b50565b67ffffffffffffffff81168114611f3057600080fdfea264697066735822122063f00802638e8f7786e12a6b6f906d1ffa77b34b61bf700d495ddd8550a4f36164736f6c63430008060033",
              "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 PUSH4 0xF0080263 DUP15 DUP16 PUSH24 0x86E12A6B6F906D1FFA77B34B61BF700D495DDD8550A4F361 PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "876:16253:40:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1176:65;;;;;;;;15206:42:101;15194:55;;;15176:74;;15164:2;15149:18;1176:65:40;;;;;;;;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;;;;;17775:4:101;17763:17;;;17745:36;;17733:2;17718:18;1287:39:40;17700:87:101;4030:481:40;4178:16;4210:32;4245:10;:19;;;4265:8;;4245:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;4245:29:40;;;;;;;;;;;;:::i;:::-;4210:64;;4284:71;4358:23;:58;;;4417:8;;4358:68;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;4358:68:40;;;;;;;;;;;;:::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:40;;2612:86;;;;-1:-1:-1;;;2612:86:40;;16326:2:101;2612:86:40;;;16308:21:101;16365:2;16345:18;;;16338:30;16404:34;16384:18;;;16377:62;16475:6;16455:18;;;16448:34;16499:19;;2612:86:40;;;;;;;;;2818:29;;;;;2784:31;;2818:19;:10;:19;;;;:29;;2838:8;;;;2818:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;2818:29:40;;;;;;;;;;;;:::i;:::-;2784:63;;2943:71;3017:23;:58;;;3076:8;;3017:68;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;3017:68:40;;;;;;;;;;;;:::i;:::-;2943:142;;3194:29;3226:59;3251:5;3258;3265:19;3226:24;:59::i;:::-;3379:23;;10852:66:101;10839:2;10835:15;;;10831:88;3379:23:40;;;10819:101:101;3194:91:40;;-1:-1:-1;3341:25:40;;10936:12:101;;3379:23:40;;;;;;;;;;;;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;7644:1699::-;7903:13;;7853:16;;7881:19;7903:13;7976:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7976:25:40;;7926:75;;8011:45;8072:11;8059:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8059:25:40;;8011:73;;8165:8;8160:366;8183:11;8179:1;:15;;;8160:366;;;8322:19;8342:1;8322:22;;;;;;;;;;:::i;:::-;;;;;;;:43;;;8300:65;;:6;8307:1;8300:9;;;;;;;;;;:::i;:::-;;;;;;;:19;;;:65;8243:31;8275:1;8243:34;;;;;;;;;;:::i;:::-;;;;;;:122;;;;;;;;;;;8460:19;8480:1;8460:22;;;;;;;;;;:::i;:::-;;;;;;;:41;;;8438:63;;:6;8445:1;8438:9;;;;;;;;;;:::i;:::-;;;;;;;:19;;;:63;8383:29;8413:1;8383:32;;;;;;;;;;:::i;:::-;:118;;;;:32;;;;;;;;;;;:118;8196:3;;;;:::i;:::-;;;;8160:366;;;-1:-1:-1;8564:149:40;;;;;8536:25;;8564:32;:6;:32;;;;:149;;8610:5;;8629:31;;8674:29;;8564:149;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;8564:149:40;;;;;;;;;;;;:::i;:::-;8536:177;;8724:30;8757:6;:37;;;8808:31;8853:29;8757:135;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;8757:135:40;;;;;;;;;;;;:::i;:::-;8724:168;;8903:35;8955:11;8941:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8941:26:40;;8903:64;;9040:9;9035:266;9059:11;9055:1;:15;9035:266;;;9094:13;9108:1;9094:16;;;;;;;;:::i;:::-;;;;;;;9114:1;9094:21;9091:200;;;9158:1;9134:18;9153:1;9134:21;;;;;;;;:::i;:::-;;;;;;:25;;;;;9091:200;;;9260:13;9274:1;9260:16;;;;;;;;:::i;:::-;;;;;;;9235:8;9244:1;9235:11;;;;;;;;:::i;:::-;;;;;;;9249:7;9235:21;;;;:::i;:::-;9234:42;;;;:::i;:::-;9210:18;9229:1;9210:21;;;;;;;;:::i;:::-;;;;;;:66;;;;;9091:200;9072:3;;;;:::i;:::-;;;;9035:266;;;-1:-1:-1;9318:18:40;7644:1699;-1:-1:-1;;;;;;;;;7644:1699:40:o;5045:1489::-;5365:32;5399:24;5436:33;5486:23;:30;5472:45;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5472:45:40;;5436:81;;5527:31;5577:23;:30;5561:47;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5527:81:40;-1:-1:-1;5643:15:40;5619:14;5729:706;5768:6;:13;5756:9;:25;;;5729:706;;;5858:19;5878:9;5858:30;;;;;;;;;;:::i;:::-;;;;;;;:45;;;5828:75;;:6;5835:9;5828:17;;;;;;;;;;:::i;:::-;;;;;;;:27;;;:75;;;;:::i;:::-;5818:85;;:7;:85;;;5810:119;;;;-1:-1:-1;;;5810:119:40;;15976:2:101;5810:119:40;;;15958:21:101;16015:2;15995:18;;;15988:30;16054:23;16034:18;;;16027:51;16095:18;;5810:119:40;15948:171:101;5810:119:40;5944:21;5968:141;6013:19;6033:9;6013:30;;;;;;;;;;:::i;:::-;;;;;;;6061:23;6085:9;6061:34;;;;;;;;;;:::i;:::-;;;;;;;5968:27;:141::i;:::-;5944:165;;6181:243;6209:6;6216:9;6209:17;;;;;;;;;;:::i;:::-;;;;;;;:37;;;6264:14;6181:243;;6296:17;6331:20;6352:9;6331:31;;;;;;;;;;:::i;:::-;;;;;;;6380:19;6400:9;6380:30;;;;;;;;;;:::i;:::-;;;;;;;6181:10;:243::i;:::-;6125:16;6142:9;6125:27;;;;;;;;;;:::i;:::-;;;;;;6154:12;6167:9;6154:23;;;;;;;;;;:::i;:::-;;;;;;;;;;6124:300;;;;;-1:-1:-1;5783:11:40;;;;:::i;:::-;;;;5729:706;;;;6470:12;6459:24;;;;;;;;:::i;:::-;;;;;;;;;;;;;6445:38;;6511:16;6493:34;;5425:1109;;;5045:1489;;;;;;;;:::o;6995:293::-;7179:6;7273:7;7237:18;:32;;;7212:57;;:22;:57;;;;:::i;:::-;7211:69;;;;:::i;:::-;7197:84;;6995:293;;;;;:::o;9837:2698::-;10102:13;10117:28;10211:22;10236:35;10252:18;10236:15;:35::i;:::-;10309:13;;10365:46;;;10379:31;10365:46;;;;;;;;;10211:60;;-1:-1:-1;10309:13:40;;10281:18;;10365:46;;;;;;;;;;-1:-1:-1;10365:46:40;10333:78;;10422:25;10498:18;:34;;;10483:49;;:11;:49;;;;10462:127;;;;-1:-1:-1;;;10462:127:40;;16731:2:101;10462:127:40;;;16713:21:101;16770:2;16750:18;;;16743:30;16809:33;16789:18;;;16782:61;16860:18;;10462:127:40;16703:181:101;10462:127:40;10703:12;10698:937;10729:11;10721:19;;:5;:19;;;10698:937;;;10789:15;10773:6;10780:5;10773:13;;;;;;;;;;:::i;:::-;;;;;;;:31;;;10765:76;;;;-1:-1:-1;;;10765:76:40;;17444:2:101;10765:76:40;;;17426:21:101;;;17463:18;;;17456:30;17522:34;17502:18;;;17495:62;17574:18;;10765:76:40;17416:182:101;10765:76:40;10860:9;;;;10856:118;;10913:6;10920:9;10928:1;10920:5;:9;:::i;:::-;10913:17;;;;;;;;;;:::i;:::-;;;;;;;10897:33;;:6;10904:5;10897:13;;;;;;;;;;:::i;:::-;;;;;;;:33;;;10889:70;;;;-1:-1:-1;;;10889:70:40;;17091:2:101;10889:70:40;;;17073:21:101;17130:2;17110:18;;;17103:30;17169:26;17149:18;;;17142:54;17213:18;;10889:70:40;17063:174:101;10889:70:40;11051:28;11128:17;11147:6;11154:5;11147:13;;;;;;;;;;:::i;:::-;;;;;;;11117:44;;;;;;;;14905:25:101;;;14978:18;14966:31;14961:2;14946:18;;14939:59;14893:2;14878:18;;14860:144;11117:44:40;;;;;;;;;;;;;11107:55;;;;;;11082:94;;11051:125;;11191:16;11210:132;11247:20;11285;11323:5;11210:19;:132::i;:::-;11191:151;-1:-1:-1;1324:2:40;11411:25;;;;11407:218;;;11473:19;11460:32;;:10;:32;;;11456:111;;;11538:10;11516:32;;11456:111;11584:12;11597:10;11584:24;;;;;;;;;;:::i;:::-;;;;;;:26;;;;;;;;:::i;:::-;;;-1:-1:-1;11407:218:40;10751:884;;10742:7;;;;;:::i;:::-;;;;10698:937;;;;11702:21;11737:36;11776:103;11818:18;11850:19;11776:28;:103::i;:::-;11737:142;;11977:23;11959:360;12037:19;12018:38;;:15;:38;11959:360;;12148:1;12116:12;12129:15;12116:29;;;;;;;;:::i;:::-;;;;;;;:33;12112:197;;;12265:12;12278:15;12265:29;;;;;;;;:::i;:::-;;;;;;;12206:19;12226:15;12206:36;;;;;;;;:::i;:::-;;;;;;;:88;;;;:::i;:::-;12169:125;;;;:::i;:::-;;;12112:197;12070:17;;;;:::i;:::-;;;;11959:360;;;;12489:3;12461:18;:24;;;12445:13;:40;;;;:::i;:::-;12444:48;;;;:::i;:::-;12436:56;12516:12;;-1:-1:-1;9837:2698:40;;-1:-1:-1;;;;;;;;;;;9837:2698:40:o;14101:621::-;14243:16;14275:22;14314:18;:35;;;14300:50;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14300:50:40;-1:-1:-1;14376:31:40;;14275:75;;-1:-1:-1;14411:1:40;;14373:34;;:1;:34;:::i;:::-;14372:40;;;;:::i;:::-;14360:5;14366:1;14360:8;;;;;;;;:::i;:::-;;;;;;;;;;:52;14446:1;14423:270;14461:18;:35;;;14449:47;;:9;:47;;;14423:270;;;14651:31;;14627:55;;:5;14633:13;14645:1;14633:9;:13;:::i;:::-;14627:20;;;;;;;;;;:::i;:::-;;;;;;;:55;;14608:5;14614:9;14608:16;;;;;;;;;;:::i;:::-;;;;;;;;;;:74;14498:11;;;;:::i;:::-;;;;14423:270;;;-1:-1:-1;14710:5:40;14101:621;-1:-1:-1;;14101:621:40:o;12928:932::-;13174:13;;13096:5;;;;;13236:571;13276:11;13263:24;;:10;:24;;;13236:571;;;13317:12;13332:6;13339:10;13332:18;;;;;;;;;;:::i;:::-;;;;;;;13317:33;;13427:4;13404:20;:27;13394:4;13370:21;:28;13369:63;13365:362;;13564:15;13549:30;;:11;:30;;;13545:168;;;13610:1;13603:8;;;;;;;;13545:168;13665:29;13679:15;13665:11;:29;:::i;:::-;13658:36;;;;;;;;13545:168;13779:17;;;;:::i;:::-;;;;13303:504;13289:12;;;;;:::i;:::-;;;;13236:571;;;-1:-1:-1;13824:29:40;13838:15;13824:11;:29;:::i;15914:577::-;16094:16;16122:43;16195:23;:19;16217:1;16195:23;:::i;:::-;16168:60;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16168:60:40;;16122:106;;16244:7;16239:202;16262:19;16257:24;;:1;:24;;;16239:202;;16334:96;16379:18;16415:1;16334:96;;:27;:96::i;:::-;16302:26;16329:1;16302:29;;;;;;;;;;:::i;:::-;;;;;;;;;;:128;16283:3;;;;:::i;:::-;;;;16239:202;;;-1:-1:-1;16458:26:40;15914:577;-1:-1:-1;;;15914:577:40:o;15062:::-;15239:7;15307:21;15331:18;:24;;;15356:15;15331:41;;;;;;;:::i;:::-;;;;;15307:65;;;;15436:30;15469:107;15506:18;:31;;;15551:15;15469:23;:107::i;:::-;15436:140;-1:-1:-1;15594:38:40;15436:140;15594:13;:38;:::i;:::-;15587:45;15062:577;-1:-1:-1;;;;;15062:577:40:o;16787:340::-;16913:7;16940:19;;16936:185;;17049:19;17067:1;17049:15;:19;:::i;:::-;17032:37;;;;;;:::i;:::-;17027:1;:42;;16989:31;17005:15;16989:31;;;;:::i;:::-;16984:1;:36;;16982:89;;;;:::i;:::-;16975:96;;;;16936:185;-1:-1:-1;17109:1:40;17102:8;;14:196:101;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:101;;;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:101;;285:711;-1:-1:-1;;;;;285:711:101: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:101;;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:101;;-1:-1:-1;;;;1990:388:101: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:101;-1:-1:-1;2996:2:101;2981:18;;2968:32;;-1:-1:-1;3012:16:101;;;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:101;;-1:-1:-1;3327:2:101;3319:11;;3349:6;2540:821;-1:-1:-1;;;2540:821:101: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:101;;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:101;;-1:-1:-1;;;5108:12:101;;;;5140;;;;4161:1;4154:9;4129:1033;;;-1:-1:-1;5181:5:101;;3485:1707;-1:-1:-1;;;;;;;;;3485:1707:101:o;5197:1735::-;5315:6;5346:2;5389;5377:9;5368:7;5364:23;5360:32;5357:2;;;5405:1;5402;5395:12;5357:2;5438:9;5432:16;5471:18;5463:6;5460:30;5457:2;;;5503:1;5500;5493:12;5457:2;5526:22;;5579:4;5571:13;;5567:27;-1:-1:-1;5557:2:101;;5608:1;5605;5598:12;5557:2;5637;5631:9;5660:69;5676:52;5725:2;5676:52;:::i;5660:69::-;5763:15;;;5794:12;;;;5826:11;;;5856:4;5887:11;;;5879:20;;5875:29;;5872:42;-1:-1:-1;5869:2:101;;;5927:1;5924;5917:12;5869:2;5949:1;5940:10;;5970:1;5980:922;5996:2;5991:3;5988:11;5980:922;;;6071:2;6065:3;6056:7;6052:17;6048:26;6045:2;;;6087:1;6084;6077:12;6045:2;6117:22;;:::i;:::-;6172:3;6166:10;6159:5;6152:25;6220:2;6215:3;6211:12;6205:19;6237:32;6261:7;6237:32;:::i;:::-;6289:14;;;6282:31;6336:2;6372:12;;;6366:19;6398:32;6366:19;6398:32;:::i;:::-;6450:14;;;6443:31;6497:2;6533:12;;;6527:19;6559:32;6527:19;6559:32;:::i;:::-;6611:14;;;6604:31;6658:3;6695:12;;;6689:19;6721:32;6689:19;6721:32;:::i;:::-;6773:14;;;6766:31;6810:18;;6848:12;;;;6880;;;;6018:1;6009:11;5980:922;;;-1:-1:-1;6921:5:101;;5326:1606;-1:-1:-1;;;;;;;;;5326:1606:101:o;6937:1938::-;7068:6;7099:2;7142;7130:9;7121:7;7117:23;7113:32;7110:2;;;7158:1;7155;7148:12;7110:2;7191:9;7185:16;7224:18;7216:6;7213:30;7210:2;;;7256:1;7253;7246:12;7210:2;7279:22;;7332:4;7324:13;;7320:27;-1:-1:-1;7310:2:101;;7361:1;7358;7351:12;7310:2;7390;7384:9;7413:69;7429:52;7478:2;7429:52;:::i;7413:69::-;7516:15;;;7547:12;;;;7579:11;;;7609:6;7642:11;;;7634:20;;7630:29;;7627:42;-1:-1:-1;7624:2:101;;;7682:1;7679;7672:12;7624:2;7704:1;7695:10;;7725:1;7735:1110;7751:2;7746:3;7743:11;7735:1110;;;7826:2;7820:3;7811:7;7807:17;7803:26;7800:2;;;7842:1;7839;7832:12;7800:2;7872:22;;:::i;:::-;7921:32;7949:3;7921:32;:::i;:::-;7914:5;7907:47;7990:41;8027:2;8022:3;8018:12;7990:41;:::i;:::-;7985:2;7978:5;7974:14;7967:65;8055:2;8093:42;8131:2;8126:3;8122:12;8093:42;:::i;:::-;8077:14;;;8070:66;8159:2;8197:42;8226:12;;;8197:42;:::i;:::-;8181:14;;;8174:66;8263:3;8302:42;8331:12;;;8302:42;:::i;:::-;8286:14;;;8279:66;8368:3;8407:42;8436:12;;;8407:42;:::i;:::-;8391:14;;;8384:66;8473:3;8512:43;8542:12;;;8512:43;:::i;:::-;8496:14;;;8489:67;8580:3;8620:58;8670:7;8655:13;;;8620:58;:::i;:::-;8603:15;;;8596:83;8734:3;8725:13;;8719:20;8710:6;8699:18;;8692:48;8753:18;;8791:12;;;;8823;;;;7773:1;7764:11;7735:1110;;8880:901;8975:6;9006:2;9049;9037:9;9028:7;9024:23;9020:32;9017:2;;;9065:1;9062;9055:12;9017:2;9098:9;9092:16;9131:18;9123:6;9120:30;9117:2;;;9163:1;9160;9153:12;9117:2;9186:22;;9239:4;9231:13;;9227:27;-1:-1:-1;9217:2:101;;9268:1;9265;9258:12;9217:2;9297;9291:9;9320:69;9336:52;9385:2;9336:52;:::i;9320:69::-;9411:3;9435:2;9430:3;9423:15;9463:2;9458:3;9454:12;9447:19;;9494:2;9490;9486:11;9542:7;9537:2;9531;9528:1;9524:10;9520:2;9516:19;9512:28;9509:41;9506:2;;;9563:1;9560;9553:12;9506:2;9585:1;9576:10;;9595:156;9609:2;9606:1;9603:9;9595:156;;;9666:10;;9654:23;;9627:1;9620:9;;;;;9697:12;;;;9729;;9595:156;;;-1:-1:-1;9770:5:101;8986:795;-1:-1:-1;;;;;;;8986:795:101:o;9786:435::-;9839:3;9877:5;9871:12;9904:6;9899:3;9892:19;9930:4;9959:2;9954:3;9950:12;9943:19;;9996:2;9989:5;9985:14;10017:1;10027:169;10041:6;10038:1;10035:13;10027:169;;;10102:13;;10090:26;;10136:12;;;;10171:15;;;;10063:1;10056:9;10027:169;;;-1:-1:-1;10212:3:101;;9847:374;-1:-1:-1;;;;;9847:374:101:o;10226:459::-;10278:3;10316:5;10310:12;10343:6;10338:3;10331:19;10369:4;10398:2;10393:3;10389:12;10382:19;;10435:2;10428:5;10424:14;10456:1;10466:194;10480:6;10477:1;10474:13;10466:194;;;10545:13;;10560:18;10541:38;10529:51;;10600:12;;;;10635:15;;;;10502:1;10495:9;10466:194;;10959:579;11252:42;11244:6;11240:55;11229:9;11222:74;11332:2;11327;11316:9;11312:18;11305:30;11203:4;11358:55;11409:2;11398:9;11394:18;11386:6;11358:55;:::i;:::-;11461:9;11453:6;11449:22;11444:2;11433:9;11429:18;11422:50;11489:43;11525:6;11517;11489:43;:::i;:::-;11481:51;11212:326;-1:-1:-1;;;;;;11212:326:101:o;11543:903::-;11735:4;11764:2;11804;11793:9;11789:18;11834:2;11823:9;11816:21;11857:6;11892;11886:13;11923:6;11915;11908:22;11961:2;11950:9;11946:18;11939:25;;12023:2;12013:6;12010:1;12006:14;11995:9;11991:30;11987:39;11973:53;;12061:2;12053:6;12049:15;12082:1;12092:325;12106:6;12103:1;12100:13;12092:325;;;12195:66;12183:9;12175:6;12171:22;12167:95;12162:3;12155:108;12286:51;12330:6;12321;12315:13;12286:51;:::i;:::-;12276:61;-1:-1:-1;12395:12:101;;;;12360:15;;;;12128:1;12121:9;12092:325;;;-1:-1:-1;12434:6:101;;11744:702;-1:-1:-1;;;;;;;11744:702:101:o;12451:261::-;12630:2;12619:9;12612:21;12593:4;12650:56;12702:2;12691:9;12687:18;12679:6;12650:56;:::i;12717:849::-;12942:2;12931:9;12924:21;12905:4;12968:56;13020:2;13009:9;13005:18;12997:6;12968:56;:::i;:::-;13043:2;13093:9;13085:6;13081:22;13076:2;13065:9;13061:18;13054:50;13133:6;13127:13;13164:6;13156;13149:22;13189:1;13199:137;13213:6;13210:1;13207:13;13199:137;;;13305:14;;;13301:23;;13295:30;13274:14;;;13270:23;;13263:63;13228:10;;13199:137;;;13354:6;13351:1;13348:13;13345:2;;;13421:1;13416:2;13407:6;13399;13395:19;13391:28;13384:39;13345:2;-1:-1:-1;13482:2:101;13470:15;-1:-1:-1;;13466:88:101;13454:101;;;;13450:110;;12914:652;-1:-1:-1;;;;12914:652:101:o;13571:693::-;13750:2;13802:21;;;13775:18;;;13858:22;;;13721:4;;13937:6;13911:2;13896:18;;13721:4;13971:267;13985:6;13982:1;13979:13;13971:267;;;14060:6;14047:20;14080:30;14104:5;14080:30;:::i;:::-;14146:10;14135:22;14123:35;;14213:15;;;;14178:12;;;;14007:1;14000:9;13971:267;;;-1:-1:-1;14255:3:101;13730:534;-1:-1:-1;;;;;;13730:534:101:o;14269:459::-;14522:2;14511:9;14504:21;14485:4;14548:55;14599:2;14588:9;14584:18;14576:6;14548:55;:::i;:::-;14651:9;14643:6;14639:22;14634:2;14623:9;14619:18;14612:50;14679:43;14715:6;14707;14679:43;:::i;17792:253::-;17864:2;17858:9;17906:4;17894:17;;17941:18;17926:34;;17962:22;;;17923:62;17920:2;;;17988:18;;:::i;:::-;18024:2;18017:22;17838:207;:::o;18050:255::-;18122:2;18116:9;18164:6;18152:19;;18201:18;18186:34;;18222:22;;;18183:62;18180:2;;;18248:18;;:::i;18310:334::-;18381:2;18375:9;18437:2;18427:13;;-1:-1:-1;;18423:86:101;18411:99;;18540:18;18525:34;;18561:22;;;18522:62;18519:2;;;18587:18;;:::i;:::-;18623:2;18616:22;18355:289;;-1:-1:-1;18355:289:101:o;18649:192::-;18718:4;18751:18;18743:6;18740:30;18737:2;;;18773:18;;:::i;:::-;-1:-1:-1;18818:1:101;18814:14;18830:4;18810:25;;18727:114::o;18846:128::-;18886:3;18917:1;18913:6;18910:1;18907:13;18904:2;;;18923:18;;:::i;:::-;-1:-1:-1;18959:9:101;;18894:80::o;18979:236::-;19018:3;19046:18;19091:2;19088:1;19084:10;19121:2;19118:1;19114:10;19152:3;19148:2;19144:12;19139:3;19136:21;19133:2;;;19160:18;;:::i;:::-;19196:13;;19026:189;-1:-1:-1;;;;19026:189:101:o;19220:204::-;19258:3;19294:4;19291:1;19287:12;19326:4;19323:1;19319:12;19361:3;19355:4;19351:14;19346:3;19343:23;19340:2;;;19369:18;;:::i;:::-;19405:13;;19266:158;-1:-1:-1;;;19266:158:101:o;19429:274::-;19469:1;19495;19485:2;;-1:-1:-1;;;19527:1:101;19520:88;19631:4;19628:1;19621:15;19659:4;19656:1;19649:15;19485:2;-1:-1:-1;19688:9:101;;19475:228::o;19708:482::-;19797:1;19840:5;19797:1;19854:330;19875:7;19865:8;19862:21;19854:330;;;19994:4;-1:-1:-1;;19922:77:101;19916:4;19913:87;19910:2;;;20003:18;;:::i;:::-;20053:7;20043:8;20039:22;20036:2;;;20073:16;;;;20036:2;20152:22;;;;20112:15;;;;19854:330;;;19858:3;19772:418;;;;;:::o;20195:140::-;20253:5;20282:47;20323:4;20313:8;20309:19;20303:4;20389:5;20419:8;20409:2;;-1:-1:-1;20460:1:101;20474:5;;20409:2;20508:4;20498:2;;-1:-1:-1;20545:1:101;20559:5;;20498:2;20590:4;20608:1;20603:59;;;;20676:1;20671:130;;;;20583:218;;20603:59;20633:1;20624:10;;20647:5;;;20671:130;20708:3;20698:8;20695:17;20692:2;;;20715:18;;:::i;:::-;-1:-1:-1;;20771:1:101;20757:16;;20786:5;;20583:218;;20885:2;20875:8;20872:16;20866:3;20860:4;20857:13;20853:36;20847:2;20837:8;20834:16;20829:2;20823:4;20820:12;20816:35;20813:77;20810:2;;;-1:-1:-1;20922:19:101;;;20954:5;;20810:2;21001:34;21026:8;21020:4;21001:34;:::i;:::-;21131:6;-1:-1:-1;;21059:79:101;21050:7;21047:92;21044:2;;;21142:18;;:::i;:::-;21180:20;;20399:807;-1:-1:-1;;;20399:807:101:o;21211:228::-;21251:7;21377:1;-1:-1:-1;;21305:74:101;21302:1;21299:81;21294:1;21287:9;21280:17;21276:105;21273:2;;;21384:18;;:::i;:::-;-1:-1:-1;21424:9:101;;21263:176::o;21444:125::-;21484:4;21512:1;21509;21506:8;21503:2;;;21517:18;;:::i;:::-;-1:-1:-1;21554:9:101;;21493:76::o;21574:221::-;21613:4;21642:10;21702;;;;21672;;21724:12;;;21721:2;;;21739:18;;:::i;:::-;21776:13;;21622:173;-1:-1:-1;;;21622:173:101:o;21800:195::-;21838:4;21875;21872:1;21868:12;21907:4;21904:1;21900:12;21932:3;21927;21924:12;21921:2;;;21939:18;;:::i;:::-;21976:13;;;21847:148;-1:-1:-1;;;21847:148:101:o;22000:195::-;22039:3;-1:-1:-1;;22063:5:101;22060:77;22057:2;;;22140:18;;:::i;:::-;-1:-1:-1;22187:1:101;22176:13;;22047:148::o;22200:201::-;22238:3;22266:10;22311:2;22304:5;22300:14;22338:2;22329:7;22326:15;22323:2;;;22344:18;;:::i;:::-;22393:1;22380:15;;22246:155;-1:-1:-1;;;22246:155:101:o;22406:175::-;22443:3;22487:4;22480:5;22476:16;22516:4;22507:7;22504:17;22501:2;;;22524:18;;:::i;:::-;22573:1;22560:15;;22451:130;-1:-1:-1;;22451:130:101:o;22586:184::-;-1:-1:-1;;;22635:1:101;22628:88;22735:4;22732:1;22725:15;22759:4;22756:1;22749:15;22775:184;-1:-1:-1;;;22824:1:101;22817:88;22924:4;22921:1;22914:15;22948:4;22945:1;22938:15;22964:184;-1:-1:-1;;;23013:1:101;23006:88;23113:4;23110:1;23103:15;23137:4;23134:1;23127:15;23153:121;23238:10;23231:5;23227:22;23220:5;23217:33;23207:2;;23264:1;23261;23254:12;23207:2;23197:77;:::o;23279:129::-;23364:18;23357:5;23353:30;23346:5;23343:41;23333:2;;23398:1;23395;23388: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 IPrizeDistributionSource.PrizeDistribution memory)": "infinite",
                "_calculateNumberOfUserPicks(struct IPrizeDistributionSource.PrizeDistribution memory,uint256)": "infinite",
                "_calculatePrizeTierFraction(struct IPrizeDistributionSource.PrizeDistribution memory,uint256)": "infinite",
                "_calculatePrizeTierFractions(struct IPrizeDistributionSource.PrizeDistribution memory,uint8)": "infinite",
                "_calculatePrizesAwardable(uint256[] memory,bytes32,struct IDrawBeacon.Draw memory[] memory,uint64[] memory[] memory,struct IPrizeDistributionSource.PrizeDistribution memory[] memory)": "infinite",
                "_calculateTierIndex(uint256,uint256,uint256[] memory)": "infinite",
                "_createBitMasks(struct IPrizeDistributionSource.PrizeDistribution memory)": "infinite",
                "_getNormalizedBalancesAt(address,struct IDrawBeacon.Draw memory[] memory,struct IPrizeDistributionSource.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 drawIds to consider\",\"user\":\"The users address\"},\"returns\":{\"_0\":\"Array of balances\"}},\"getPrizeDistributionBuffer()\":{\"returns\":{\"_0\":\"IPrizeDistributionBuffer\"}}},\"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 prizeDistributionBuffer 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.8.6;\\n\\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..)\\n */\\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   */\\n  event RandomNumberRequested(uint32 indexed requestId, address indexed sender);\\n\\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   */\\n  event RandomNumberCompleted(uint32 indexed requestId, uint256 randomNumber);\\n\\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   */\\n  function getLastRequestId() external view returns (uint32 requestId);\\n\\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   */\\n  function getRequestFee() external view returns (address feeToken, uint256 requestFee);\\n\\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.\\n   * The calling contract should \\\"lock\\\" all activity until the result is available via the `requestId`\\n   */\\n  function requestRandomNumber() external returns (uint32 requestId, uint32 lockBlock);\\n\\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   */\\n  function isRequestComplete(uint32 requestId) external view returns (bool isCompleted);\\n\\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   */\\n  function randomNumber(uint32 requestId) external returns (uint256 randomNum);\\n}\\n\",\"keccak256\":\"0x24803ae776bba768a3a3f65d3b7e5fc100c7b5881a8e5e39d6c5df2735a3b5cb\",\"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        // calculate prizes awardable for each Draw passed\\n        for (uint32 drawIndex = 0; drawIndex < _draws.length; drawIndex++) {\\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\\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\":\"0xac5b78f969f2f2dd3bbec9c177740e0b4857099f2b7a5830f2b324528e1b90f0\",\"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 IPrizeDistributionSource\\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\":\"0xdfcc3dc33457e44d8917f33185925eff78ea21e5018250b3accf2db8a7aa0242\",\"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 prizeDistributionBuffer variable.\\n     * @return IPrizeDistributionBuffer\\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 drawIds 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\":\"0x51b3bacbdd715929d909063e66519096c2ef858b646e80f66691d155ccc8d520\",\"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\\nimport \\\"./IPrizeDistributionSource.sol\\\";\\n\\n/** @title  IPrizeDistributionBuffer\\n * @author PoolTogether Inc Team\\n * @notice The PrizeDistributionBuffer interface.\\n */\\ninterface IPrizeDistributionBuffer is IPrizeDistributionSource {\\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 (\\n            IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution,\\n            uint32 drawId\\n        );\\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 (\\n            IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution,\\n            uint32 drawId\\n        );\\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(\\n        uint32 drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata draw\\n    ) external returns (uint32);\\n}\\n\",\"keccak256\":\"0xa66b0d958502adda03e80924381bae30802f1c8d80823a9b787b8c66f6a7d835\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionSource.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/** @title IPrizeDistributionSource\\n * @author PoolTogether Inc Team\\n * @notice The PrizeDistributionSource interface.\\n */\\ninterface IPrizeDistributionSource {\\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 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 (PrizeDistribution[] memory);\\n}\\n\",\"keccak256\":\"0x05ec47edc2684790a869a866576e7338229cc4eeafe1171bfc8cd7fa1c0cc9a0\",\"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 valid 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\":\"0x9d90a364aafbb26a680259ad470222368aabe139cd6200eeb02ec0c6b93bc317\",\"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 buffer) 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 of 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 seven year minimum,\\n                of accurate historical lookups with current estimates of 1 new block\\n                every 15 seconds - assuming each block contains 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\":\"0x446d8221329601d40464981a50a0e31f3fd48da0ebf0fea646c5a089ccfbdff4\",\"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 prizeDistributionBuffer 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 IPrizeDistributionSource.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 IPrizeDistributionSource.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 IPrizeDistributionSource.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 IPrizeDistributionSource.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 IPrizeDistributionSource.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 IPrizeDistributionSource.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 IPrizeDistributionSource.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": {
                "@_5230": {
                  "entryPoint": null,
                  "id": 5230,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_8352": {
                  "entryPoint": null,
                  "id": 8352,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_setOwner_5327": {
                  "entryPoint": 162,
                  "id": 5327,
                  "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:101",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:101",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "110:352:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "156:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "165:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "168:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "158:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "158:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "158:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "131:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "140:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "127:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "127:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "152:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "123:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "123:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "120:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "181:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "200:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "194:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "194:16:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "185:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "273:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "282:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "285:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "275:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "275:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "275:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "232:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "243:5:101"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "258:3:101",
                                                    "type": "",
                                                    "value": "160"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "263:1:101",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "254:3:101"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "254:11:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "267:1:101",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "250:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "250:19:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "239:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "239:31:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "229:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "229:42:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "222:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "222:50:101"
                              },
                              "nodeType": "YulIf",
                              "src": "219:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "298:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "308:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "298:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "322:40:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "347:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "358:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "343:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "343:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "337:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "337:25:101"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "326:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "414:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "423:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "426:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "416:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "416:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "416:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "384:7:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "397:7:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "406:4:101",
                                            "type": "",
                                            "value": "0xff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "393:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "393:18:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "381:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "381:31:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "374:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "374:39:101"
                              },
                              "nodeType": "YulIf",
                              "src": "371:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "439:17:101",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "449:7:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "439:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint8_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "68:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "79:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "91:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "99:6:101",
                            "type": ""
                          }
                        ],
                        "src": "14:448:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "564:87:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "574:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "586:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "597:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "582:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "582:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "574:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "616:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "631:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "639:4:101",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "627:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "627:17:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "609:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "609:36:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "609:36:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "533:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "544:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "555:4:101",
                            "type": ""
                          }
                        ],
                        "src": "467:184:101"
                      }
                    ]
                  },
                  "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": 101,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "60806040523480156200001157600080fd5b50604051620020b2380380620020b28339810160408190526200003491620000f2565b816200004081620000a2565b50610403805463ffffffff60401b191660ff8316680100000000000000008102919091179091556040519081527f7da7688769fade6088b3de366e63c95090bc5b0db6e9b43f043dee741d7544fe9060200160405180910390a1505062000141565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080604083850312156200010657600080fd5b82516001600160a01b03811681146200011e57600080fd5b602084015190925060ff811681146200013657600080fd5b809150509250929050565b611f6180620001516000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063d0ebdbe711610066578063d0ebdbe7146101f3578063d30a5daf14610206578063e30c397814610226578063f2fde38b1461023757600080fd5b8063715018a6146101ac5780638da5cb5b146101b4578063caeef7ec146101c5578063ce336ce9146101e057600080fd5b806324c21446116100d357806324c21446146101555780633cd8e2d51461015d578063481c6a751461017d5780634e71e0c8146101a257600080fd5b80631124e1dc146100fa57806321e98ad9146101225780632439093a1461013f575b600080fd5b61010d610108366004611822565b61024a565b60405190151581526020015b60405180910390f35b61012a610317565b60405163ffffffff9091168152602001610119565b61014761039e565b604051610119929190611adb565b610147610671565b61017061016b366004611805565b610804565b6040516101199190611acc565b6002546001600160a01b03165b6040516001600160a01b039091168152602001610119565b6101aa610852565b005b6101aa6108e0565b6000546001600160a01b031661018a565b6104035468010000000000000000900463ffffffff1661012a565b61012a6101ee366004611822565b610955565b61010d610201366004611760565b610a84565b610219610214366004611790565b610afd565b60405161011991906119b9565b6001546001600160a01b031661018a565b6101aa610245366004611760565b610c08565b60003361025f6002546001600160a01b031690565b6001600160a01b0316148061028d5750336102826000546001600160a01b031690565b6001600160a01b0316145b6103045760405162461bcd60e51b815260206004820152602660248201527f4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f7260448201527f2d6f776e6572000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61030e8383610d44565b90505b92915050565b604080516060810182526104035463ffffffff80821680845264010000000083048216602085015268010000000000000000909204169282019290925260009161036357600091505090565b6020810151600363ffffffff8216610100811061038257610382611c7d565b6004020154610100900460ff1615610311575060400151919050565b6103a66116cd565b604080516060810182526104035463ffffffff8082168352640100000000820481166020840181905268010000000000000000909204169282019290925260009160039061010081106103fb576103fb611c7d565b604080516101208101825260049290920292909201805460ff8082168452610100820416602084015262010000810463ffffffff9081168486015266010000000000008204811660608501526a01000000000000000000008204811660808501526e01000000000000000000000000000082041660a0840152720100000000000000000000000000000000000090046cffffffffffffffffffffffffff1660c083015282516102008101938490529192909160e08401916001840190601090826000855b82829054906101000a900463ffffffff1663ffffffff16815260200190600401906020826003010492830192600103820291508084116104bf5750505092845250505060039190910154602090910152815190935063ffffffff166105275760009150509091565b825160ff1661065f5760408051610120810182526003805460ff8082168452610100820416602084015263ffffffff62010000820481168486015266010000000000008204811660608501526a01000000000000000000008204811660808501526e01000000000000000000000000000082041660a08401526cffffffffffffffffffffffffff72010000000000000000000000000000000000009091041660c083015282516102008101938490529192909160e0840191600490601090826000855b82829054906101000a900463ffffffff1663ffffffff16815260200190600401906020826003010492830192600103820291508084116105ea575050509284525050506003919091015460209182015282015182519194509061064e906001611b16565b6106589190611b76565b9150509091565b6040810151815161064e906001611b16565b6106796116cd565b604080516060810182526104035463ffffffff808216808452640100000000830482166020850152680100000000000000009092048116938301939093526000926003916106ca9184919061119916565b63ffffffff1661010081106106e1576106e1611c7d565b8251604080516101208101825260049390930293909301805460ff8082168552610100820416602085015262010000810463ffffffff9081168587015266010000000000008204811660608601526a01000000000000000000008204811660808601526e01000000000000000000000000000082041660a0850152720100000000000000000000000000000000000090046cffffffffffffffffffffffffff1660c084015283516102008101948590529093919291849160e08401916001840190601090826000855b82829054906101000a900463ffffffff1663ffffffff16815260200190600401906020826003010492830192600103820291508084116107aa57905050505050508152602001600382015481525050915092509250509091565b61080c6116cd565b604080516060810182526104035463ffffffff808216835264010000000082048116602084015268010000000000000000909104169181019190915261031190836112c9565b6001546001600160a01b031633146108ac5760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e65720060448201526064016102fb565b6001546108c1906001600160a01b031661140f565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b336108f36000546001600160a01b031690565b6001600160a01b0316146109495760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016102fb565b610953600061140f565b565b60003361096a6000546001600160a01b031690565b6001600160a01b0316146109c05760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016102fb565b604080516060810182526104035463ffffffff80821683526401000000008204811660208401526801000000000000000090910481169282019290925290600090610a0f908390879061119916565b90508360038263ffffffff166101008110610a2c57610a2c611c7d565b60040201610a3a8282611cc3565b9050508463ffffffff167f2d81da839b2f3db2ed762907f74df3acecdc30461dba4813694c225ba911e1f685604051610a739190611a08565b60405180910390a250929392505050565b600033610a996000546001600160a01b031690565b6001600160a01b031614610aef5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016102fb565b6103118261146c565b919050565b60408051606081810183526104035463ffffffff8082168452640100000000820481166020850152680100000000000000009091041692820192909252829060008267ffffffffffffffff811115610b5757610b57611c93565b604051908082528060200260200182016040528015610b9057816020015b610b7d6116cd565b815260200190600190039081610b755790505b50905060005b83811015610bfe57610bce83888884818110610bb457610bb4611c7d565b9050602002016020810190610bc99190611805565b6112c9565b828281518110610be057610be0611c7d565b60200260200101819052508080610bf690611c04565b915050610b96565b5095945050505050565b33610c1b6000546001600160a01b031690565b6001600160a01b031614610c715760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016102fb565b6001600160a01b038116610ced5760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016102fb565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b6000808363ffffffff1611610d9b5760405162461bcd60e51b815260206004820152601560248201527f4472617743616c632f647261772d69642d67742d30000000000000000000000060448201526064016102fb565b6000610dad6040840160208501611883565b60ff1611610dfd5760405162461bcd60e51b815260206004820152601e60248201527f4472617743616c632f6d6174636843617264696e616c6974792d67742d30000060448201526064016102fb565b610e0d6040830160208401611883565b610e1c9060ff16610100611b3e565b61ffff16610e2d6020840184611883565b60ff161115610e7e5760405162461bcd60e51b815260206004820152601f60248201527f4472617743616c632f62697452616e676553697a652d746f6f2d6c617267650060448201526064016102fb565b6000610e8d6020840184611883565b60ff1611610edd5760405162461bcd60e51b815260206004820152601a60248201527f4472617743616c632f62697452616e676553697a652d67742d3000000000000060448201526064016102fb565b6000610eef60a0840160808501611805565b63ffffffff1611610f425760405162461bcd60e51b815260206004820152601d60248201527f4472617743616c632f6d61785069636b73506572557365722d67742d3000000060448201526064016102fb565b6000610f5460c0840160a08501611805565b63ffffffff1611610fa75760405162461bcd60e51b815260206004820152601c60248201527f4472617743616c632f6578706972794475726174696f6e2d67742d300000000060448201526064016102fb565b60006010815b818110156110075760008560e0018260108110610fcc57610fcc611c7d565b602002016020810190610fdf9190611805565b63ffffffff169050610ff18185611afe565b9350508080610fff90611c04565b915050610fad565b50633b9aca0082111561105c5760405162461bcd60e51b815260206004820152601660248201527f4472617743616c632f74696572732d67742d313030250000000000000000000060448201526064016102fb565b604080516060810182526104035463ffffffff8082168352640100000000820481166020840181905268010000000000000000909204169282019290925290859060039061010081106110b1576110b1611c7d565b600402016110bf8282611cc3565b506110cc90508187611558565b80516104038054602084015160409485015163ffffffff90811668010000000000000000027fffffffffffffffffffffffffffffffffffffffff00000000ffffffffffffffff928216640100000000027fffffffffffffffffffffffffffffffffffffffffffffffff00000000000000009094169582169590951792909217169290921790559051908716907f2d81da839b2f3db2ed762907f74df3acecdc30461dba4813694c225ba911e1f690611185908890611a08565b60405180910390a250600195945050505050565b60006111a483611643565b80156111c05750826000015163ffffffff168263ffffffff1611155b61120c5760405162461bcd60e51b815260206004820152600f60248201527f4452422f6675747572652d64726177000000000000000000000000000000000060448201526064016102fb565b825160009061121c908490611b76565b9050836040015163ffffffff168163ffffffff161061127d5760405162461bcd60e51b815260206004820152601060248201527f4452422f657870697265642d647261770000000000000000000000000000000060448201526064016102fb565b600061129d856020015163ffffffff16866040015163ffffffff1661166b565b90506112c08163ffffffff168363ffffffff16876040015163ffffffff16611699565b95945050505050565b6112d16116cd565b60036112dd8484611199565b63ffffffff1661010081106112f4576112f4611c7d565b604080516101208101825260049290920292909201805460ff8082168452610100820416602084015262010000810463ffffffff9081168486015266010000000000008204811660608501526a01000000000000000000008204811660808501526e01000000000000000000000000000082041660a0840152720100000000000000000000000000000000000090046cffffffffffffffffffffffffff1660c083015282516102008101938490529192909160e08401916001840190601090826000855b82829054906101000a900463ffffffff1663ffffffff16815260200190600401906020826003010492830192600103820291508084116113b857905050505050508152602001600382015481525050905092915050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6002546000906001600160a01b039081169083168114156114f55760405162461bcd60e51b815260206004820152602360248201527f4d616e61676561626c652f6578697374696e672d6d616e616765722d6164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016102fb565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385811691821790925560405190918316907f9cb45c728de594dab506a1f1a8554e24c8eeaf983618d5ec5dd7bc6f3c49feee90600090a350600192915050565b604080516060810182526000808252602082018190529181019190915261157e83611643565b15806115a157508251611592906001611b16565b63ffffffff168263ffffffff16145b6115ed5760405162461bcd60e51b815260206004820152601260248201527f4452422f6d7573742d62652d636f6e746967000000000000000000000000000060448201526064016102fb565b60405180606001604052808363ffffffff168152602001611622856020015163ffffffff16866040015163ffffffff166116b1565b63ffffffff168152602001846040015163ffffffff16815250905092915050565b6000816020015163ffffffff1660001480156116645750815163ffffffff16155b1592915050565b60008161167a57506000610311565b61030e60016116898486611afe565b6116939190611b5f565b836116c1565b60006116a9836116898487611afe565b949350505050565b600061030e611693846001611afe565b600061030e8284611c3d565b6040805161012081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c081019190915260e08101611713611720565b8152602001600081525090565b6040518061020001604052806010906020820280368337509192915050565b8035610af881611eec565b8035610af881611f0a565b8035610af881611f1c565b60006020828403121561177257600080fd5b81356001600160a01b038116811461178957600080fd5b9392505050565b600080602083850312156117a357600080fd5b823567ffffffffffffffff808211156117bb57600080fd5b818501915085601f8301126117cf57600080fd5b8135818111156117de57600080fd5b8660208260051b85010111156117f357600080fd5b60209290920196919550909350505050565b60006020828403121561181757600080fd5b813561178981611f0a565b60008082840361032081121561183757600080fd5b833561184281611f0a565b92506103007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08201121561187557600080fd5b506020830190509250929050565b60006020828403121561189557600080fd5b813561178981611f1c565b8060005b60108110156118d35781356118b881611f0a565b63ffffffff16845260209384019391909101906001016118a4565b50505050565b8060005b60108110156118d357815163ffffffff168452602093840193909101906001016118dd565b60ff815116825260ff6020820151166020830152604081015161192d604084018263ffffffff169052565b506060810151611945606084018263ffffffff169052565b50608081015161195d608084018263ffffffff169052565b5060a081015161197560a084018263ffffffff169052565b5060c081015161199660c08401826cffffffffffffffffffffffffff169052565b5060e08101516119a960e08401826118d9565b5061010001516102e09190910152565b6020808252825182820181905260009190848201906040850190845b818110156119fc576119e8838551611902565b9284019261030092909201916001016119d5565b50909695505050505050565b61030081018235611a1881611f1c565b60ff168252611a2960208401611755565b60ff166020830152611a3d6040840161174a565b63ffffffff166040830152611a546060840161174a565b63ffffffff166060830152611a6b6080840161174a565b63ffffffff166080830152611a8260a0840161174a565b63ffffffff1660a0830152611a9960c0840161173f565b6cffffffffffffffffffffffffff1660c0830152611abd60e08084019085016118a0565b6102e092830135919092015290565b61030081016103118284611902565b6103208101611aea8285611902565b63ffffffff83166103008301529392505050565b60008219821115611b1157611b11611c51565b500190565b600063ffffffff808316818516808303821115611b3557611b35611c51565b01949350505050565b600061ffff80841680611b5357611b53611c67565b92169190910492915050565b600082821015611b7157611b71611c51565b500390565b600063ffffffff83811690831681811015611b9357611b93611c51565b039392505050565b81816000805b6010811015611bfc578335611bb581611f0a565b835463ffffffff600385901b81811b801990931693909116901b1617835560209390930192600490910190601c821115611bf457600091506001830192505b600101611ba1565b505050505050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415611c3657611c36611c51565b5060010190565b600082611c4c57611c4c611c67565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6000813561031181611eec565b6000813561031181611f0a565b8135611cce81611f1c565b60ff811690508154817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0082161783556020840135611d0b81611f1c565b61ff008160081b16837fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000841617178455505050611d84611d4d60408401611cb6565b82547fffffffffffffffffffffffffffffffffffffffffffffffffffff00000000ffff1660109190911b65ffffffff000016178255565b611dce611d9360608401611cb6565b82547fffffffffffffffffffffffffffffffffffffffffffff00000000ffffffffffff1660309190911b69ffffffff00000000000016178255565b611e1c611ddd60808401611cb6565b82547fffffffffffffffffffffffffffffffffffff00000000ffffffffffffffffffff1660509190911b6dffffffff0000000000000000000016178255565b611e6e611e2b60a08401611cb6565b82547fffffffffffffffffffffffffffff00000000ffffffffffffffffffffffffffff1660709190911b71ffffffff000000000000000000000000000016178255565b611ecd611e7d60c08401611ca9565b82547fff00000000000000000000000000ffffffffffffffffffffffffffffffffffff1660909190911b7effffffffffffffffffffffffff00000000000000000000000000000000000016178255565b611edd60e0830160018301611b9b565b6102e082013560038201555050565b6cffffffffffffffffffffffffff81168114611f0757600080fd5b50565b63ffffffff81168114611f0757600080fd5b60ff81168114611f0757600080fdfea2646970667358221220fe58078264c23fea006f3d81d198ad1419ad3f3722ad066dc6c72656a468d64564736f6c63430008060033",
              "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 INVALID PC SMOD DUP3 PUSH5 0xC23FEA006F RETURNDATASIZE DUP2 0xD1 SWAP9 0xAD EQ NOT 0xAD EXTCODEHASH CALLDATACOPY 0x22 0xAD MOD PUSH14 0xC6C72656A468D64564736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "904:8038:41:-:0;;;2191:159;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2247:6;1648:24:33;2247:6:41;1648:9:33;:24::i;:::-;-1:-1:-1;2265:14:41::1;:41:::0;;-1:-1:-1;;;;2265:41:41::1;;::::0;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;2321:22:::1;::::0;609:36:101;;;2321:22:41::1;::::0;597:2:101;582:18;2321:22:41::1;;;;;;;2191:159:::0;;904:8038;;3470:174:33;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:33;;;-1:-1:-1;;;;;;3562:18:33;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;14:448:101:-;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:101;;229:42;;219:2;;285:1;282;275:12;219:2;358;343:18;;337:25;308:5;;-1:-1:-1;406:4:101;393:18;;381:31;;371:2;;426:1;423;416:12;371:2;449:7;439:17;;;110:352;;;;;:::o;564:87::-;904:8038:41;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@_getPrizeDistribution_8665": {
                  "entryPoint": 4809,
                  "id": 8665,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@_pushPrizeDistribution_8795": {
                  "entryPoint": 3396,
                  "id": 8795,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@_setManager_5165": {
                  "entryPoint": 5228,
                  "id": 5165,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_setOwner_5327": {
                  "entryPoint": 5135,
                  "id": 5327,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@claimOwnership_5307": {
                  "entryPoint": 2130,
                  "id": 5307,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@getBufferCardinality_8363": {
                  "entryPoint": null,
                  "id": 8363,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getIndex_11965": {
                  "entryPoint": 4505,
                  "id": 11965,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@getNewestPrizeDistribution_8513": {
                  "entryPoint": 1649,
                  "id": 8513,
                  "parameterSlots": 0,
                  "returnSlots": 2
                },
                "@getOldestPrizeDistribution_8583": {
                  "entryPoint": 926,
                  "id": 8583,
                  "parameterSlots": 0,
                  "returnSlots": 2
                },
                "@getPrizeDistributionCount_8484": {
                  "entryPoint": 791,
                  "id": 8484,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getPrizeDistribution_8379": {
                  "entryPoint": 2052,
                  "id": 8379,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@getPrizeDistributions_8442": {
                  "entryPoint": 2813,
                  "id": 8442,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@isInitialized_11858": {
                  "entryPoint": 5699,
                  "id": 11858,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@manager_5119": {
                  "entryPoint": null,
                  "id": 5119,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@newestIndex_12442": {
                  "entryPoint": 5739,
                  "id": 12442,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@nextIndex_12460": {
                  "entryPoint": 5809,
                  "id": 12460,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@offset_12415": {
                  "entryPoint": 5785,
                  "id": 12415,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@owner_5239": {
                  "entryPoint": null,
                  "id": 5239,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@pendingOwner_5248": {
                  "entryPoint": null,
                  "id": 5248,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@pushPrizeDistribution_8603": {
                  "entryPoint": 586,
                  "id": 8603,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@push_11902": {
                  "entryPoint": 5464,
                  "id": 11902,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@renounceOwnership_5262": {
                  "entryPoint": 2272,
                  "id": 5262,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@setManager_5134": {
                  "entryPoint": 2692,
                  "id": 5134,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@setPrizeDistribution_8645": {
                  "entryPoint": 2389,
                  "id": 8645,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@transferOwnership_5289": {
                  "entryPoint": 3080,
                  "id": 5289,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@wrap_12393": {
                  "entryPoint": 5825,
                  "id": 12393,
                  "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_$11103_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_$11103_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_PrizeDistribution_$11103_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_$11103_calldata_ptr__to_t_struct$_PrizeDistribution_$11103_memory_ptr__fromStack_reversed": {
                  "entryPoint": 6664,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_struct$_PrizeDistribution_$11103_memory_ptr__to_t_struct$_PrizeDistribution_$11103_memory_ptr__fromStack_reversed": {
                  "entryPoint": 6860,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_struct$_PrizeDistribution_$11103_memory_ptr_t_uint32__to_t_struct$_PrizeDistribution_$11103_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_$11103_calldata_ptr_to_t_struct$_PrizeDistribution_$11103_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:19379:101",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:101",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "63:85:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "73:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "95:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "82:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "82:20:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "73:5:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "136:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint104",
                                  "nodeType": "YulIdentifier",
                                  "src": "111:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "111:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "111:31:101"
                            }
                          ]
                        },
                        "name": "abi_decode_uint104",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "42:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "53:5:101",
                            "type": ""
                          }
                        ],
                        "src": "14:134:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "201:84:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "211:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "233:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "220:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "220:20:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "211:5:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "273:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "249:23:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "249:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "249:30:101"
                            }
                          ]
                        },
                        "name": "abi_decode_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "180:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "191:5:101",
                            "type": ""
                          }
                        ],
                        "src": "153:132:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "337:83:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "347:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "369:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "356:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "356:20:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "347:5:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "408:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint8",
                                  "nodeType": "YulIdentifier",
                                  "src": "385:22:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "385:29:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "385:29:101"
                            }
                          ]
                        },
                        "name": "abi_decode_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "316:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "327:5:101",
                            "type": ""
                          }
                        ],
                        "src": "290:130:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "495:239:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "541:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "550:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "553:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "543:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "543:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "543:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "516:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "525:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "512:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "512:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "537:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "508:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "508:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "505:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "566:36:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "592:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "579:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "579:23:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "570:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "688:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "697:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "700:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "690:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "690:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "690:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "624:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "635:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "642:42:101",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "631:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "631:54:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "621:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "621:65:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "614:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "614:73:101"
                              },
                              "nodeType": "YulIf",
                              "src": "611:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "713:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "723:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "713:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "461:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "472:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "484:6:101",
                            "type": ""
                          }
                        ],
                        "src": "425:309:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "843:510:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "889:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "898:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "901:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "891:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "891:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "891:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "864:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "873:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "860:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "860:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "885:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "856:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "856:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "853:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "914:37:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "941:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "928:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "928:23:101"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "918:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "960:28:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "970:18:101",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "964:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1015:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1024:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1027:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1017:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1017:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1017:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1003:6:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1011:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1000:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1000:14:101"
                              },
                              "nodeType": "YulIf",
                              "src": "997:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1040:32:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1054:9:101"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1065:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1050:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1050:22:101"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "1044:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1120:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1129:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1132:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1122:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1122:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1122:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "1099:2:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1103:4:101",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1095:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1095:13:101"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1110:7:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1091:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1091:27:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1084:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1084:35:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1081:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1145:30:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "1172:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1159:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1159:16:101"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "1149:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1202:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1211:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1214:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1204:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1204:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1204:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1190:6:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1198:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1187:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1187:14:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1184:2:101"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1276:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1285:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1288:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1278:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1278:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1278:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "1241:2:101"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1249:1:101",
                                                "type": "",
                                                "value": "5"
                                              },
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "1252:6:101"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "1245:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1245:14:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1237:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1237:23:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1262:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1233:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1233:32:101"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1267:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1230:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1230:45:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1227:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1301:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "1315:2:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1319:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1311:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1311:11:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1301:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1331:16:101",
                              "value": {
                                "name": "length",
                                "nodeType": "YulIdentifier",
                                "src": "1341:6:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1331:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_array$_t_uint32_$dyn_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "801:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "812:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "824:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "832:6:101",
                            "type": ""
                          }
                        ],
                        "src": "739:614:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1427:176:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1473:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1482:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1485:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1475:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1475:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1475:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1448:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1457:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1444:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1444:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1469:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1440:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1440:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1437:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1498:36:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1524:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1511:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1511:23:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1502:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1567:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "1543:23:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1543:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1543:30:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1582:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1592:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1582:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1393:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1404:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1416:6:101",
                            "type": ""
                          }
                        ],
                        "src": "1358:245:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1732:349:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1742:33:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1756:7:101"
                                  },
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1765:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "1752:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1752:23:101"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1746:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1800:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1809:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1812:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1802:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1802:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1802:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1791:2:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1795:3:101",
                                    "type": "",
                                    "value": "800"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1787:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1787:12:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1784:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1825:36:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1851:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1838:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1838:23:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1829:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1894:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "1870:23:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1870:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1870:30:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1909:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1919:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1909:6:101"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2022:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2031:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2034:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2024:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2024:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2024:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1944:2:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1948:66:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1940:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1940:75:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2017:3:101",
                                    "type": "",
                                    "value": "768"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1936:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1936:85:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1933:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2047:28:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2061:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2072:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2057:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2057:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2047:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint32t_struct$_PrizeDistribution_$11103_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1690:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1701:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1713:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1721:6:101",
                            "type": ""
                          }
                        ],
                        "src": "1608:473:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2154:175:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2200:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2209:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2212:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2202:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2202:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2202:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2175:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2184:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2171:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2171:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2196:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2167:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2167:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2164:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2225:36:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2251:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2238:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2238:23:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2229:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "2293:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint8",
                                  "nodeType": "YulIdentifier",
                                  "src": "2270:22:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2270:29:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2270:29:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2308:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2318:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2308:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2120:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2131:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2143:6:101",
                            "type": ""
                          }
                        ],
                        "src": "2086:243:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2392:380:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2402:10:101",
                              "value": {
                                "name": "pos",
                                "nodeType": "YulIdentifier",
                                "src": "2409:3:101"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "2402:3:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2421:19:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2435:5:101"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "2425:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2449:10:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "2458:1:101",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "2453:1:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2515:251:101",
                                "statements": [
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "2529:35:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "2557:6:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "calldataload",
                                        "nodeType": "YulIdentifier",
                                        "src": "2544:12:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2544:20:101"
                                    },
                                    "variables": [
                                      {
                                        "name": "value_1",
                                        "nodeType": "YulTypedName",
                                        "src": "2533:7:101",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "2601:7:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "validator_revert_uint32",
                                        "nodeType": "YulIdentifier",
                                        "src": "2577:23:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2577:32:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2577:32:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "2629:3:101"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "value_1",
                                              "nodeType": "YulIdentifier",
                                              "src": "2638:7:101"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "2647:10:101",
                                              "type": "",
                                              "value": "0xffffffff"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "and",
                                            "nodeType": "YulIdentifier",
                                            "src": "2634:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "2634:24:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "2622:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2622:37:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2622:37:101"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "2672:14:101",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "2682:4:101",
                                      "type": "",
                                      "value": "0x20"
                                    },
                                    "variables": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulTypedName",
                                        "src": "2676:2:101",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "2699:19:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "2710:3:101"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "2715:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "2706:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2706:12:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "2699:3:101"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "2731:25:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "2745:6:101"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "2753:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "2741:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2741:15:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "2731:6:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "2479:1:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2482:4:101",
                                    "type": "",
                                    "value": "0x10"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2476:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2476:11:101"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "2488:18:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "2490:14:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "2499:1:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2502:1:101",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "2495:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2495:9:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "2490:1:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "2472:3:101",
                                "statements": []
                              },
                              "src": "2468:298:101"
                            }
                          ]
                        },
                        "name": "abi_encode_array_uint32_calldata",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "2376:5:101",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "2383:3:101",
                            "type": ""
                          }
                        ],
                        "src": "2334:438:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2826:293:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2836:10:101",
                              "value": {
                                "name": "pos",
                                "nodeType": "YulIdentifier",
                                "src": "2843:3:101"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "2836:3:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2855:19:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2869:5:101"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "2859:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2883:10:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "2892:1:101",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "2887:1:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2949:164:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "2970:3:101"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "srcPtr",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "2985:6:101"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "mload",
                                                "nodeType": "YulIdentifier",
                                                "src": "2979:5:101"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "2979:13:101"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "2994:10:101",
                                              "type": "",
                                              "value": "0xffffffff"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "and",
                                            "nodeType": "YulIdentifier",
                                            "src": "2975:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "2975:30:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "2963:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2963:43:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2963:43:101"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "3019:14:101",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "3029:4:101",
                                      "type": "",
                                      "value": "0x20"
                                    },
                                    "variables": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulTypedName",
                                        "src": "3023:2:101",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "3046:19:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "3057:3:101"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "3062:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "3053:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3053:12:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "3046:3:101"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "3078:25:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "3092:6:101"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "3100:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "3088:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3088:15:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "3078:6:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "2913:1:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2916:4:101",
                                    "type": "",
                                    "value": "0x10"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2910:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2910:11:101"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "2922:18:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "2924:14:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "2933:1:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2936:1:101",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "2929:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2929:9:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "2924:1:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "2906:3:101",
                                "statements": []
                              },
                              "src": "2902:211:101"
                            }
                          ]
                        },
                        "name": "abi_encode_array_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "2810:5:101",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "2817:3:101",
                            "type": ""
                          }
                        ],
                        "src": "2777:342:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3185:854:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "3202:3:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "3217:5:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "3211:5:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3211:12:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3225:4:101",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3207:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3207:23:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3195:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3195:36:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3195:36:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "3251:3:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3256:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3247:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3247:14:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "3277:5:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "3284:4:101",
                                                "type": "",
                                                "value": "0x20"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "3273:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "3273:16:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "3267:5:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3267:23:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3292:4:101",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3263:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3263:34:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3240:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3240:58:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3240:58:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3307:43:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "3337:5:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3344:4:101",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3333:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3333:16:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3327:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3327:23:101"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0",
                                  "nodeType": "YulTypedName",
                                  "src": "3311:12:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memberValue0",
                                    "nodeType": "YulIdentifier",
                                    "src": "3377:12:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "3395:3:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3400:4:101",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3391:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3391:14:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "3359:17:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3359:47:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3359:47:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3415:45:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "3447:5:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3454:4:101",
                                        "type": "",
                                        "value": "0x60"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3443:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3443:16:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3437:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3437:23:101"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3419:14:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memberValue0_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3487:14:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "3507:3:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3512:4:101",
                                        "type": "",
                                        "value": "0x60"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3503:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3503:14:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "3469:17:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3469:49:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3469:49:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3527:45:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "3559:5:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3566:4:101",
                                        "type": "",
                                        "value": "0x80"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3555:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3555:16:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3549:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3549:23:101"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0_2",
                                  "nodeType": "YulTypedName",
                                  "src": "3531:14:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memberValue0_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "3599:14:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "3619:3:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3624:4:101",
                                        "type": "",
                                        "value": "0x80"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3615:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3615:14:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "3581:17:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3581:49:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3581:49:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3639:45:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "3671:5:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3678:4:101",
                                        "type": "",
                                        "value": "0xa0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3667:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3667:16:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3661:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3661:23:101"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0_3",
                                  "nodeType": "YulTypedName",
                                  "src": "3643:14:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memberValue0_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "3711:14:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "3731:3:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3736:4:101",
                                        "type": "",
                                        "value": "0xa0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3727:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3727:14:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "3693:17:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3693:49:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3693:49:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3751:45:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "3783:5:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3790:4:101",
                                        "type": "",
                                        "value": "0xc0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3779:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3779:16:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3773:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3773:23:101"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0_4",
                                  "nodeType": "YulTypedName",
                                  "src": "3755:14:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memberValue0_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "3824:14:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "3844:3:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3849:4:101",
                                        "type": "",
                                        "value": "0xc0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3840:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3840:14:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_uint104",
                                  "nodeType": "YulIdentifier",
                                  "src": "3805:18:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3805:50:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3805:50:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3864:45:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "3896:5:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3903:4:101",
                                        "type": "",
                                        "value": "0xe0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3892:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3892:16:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3886:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3886:23:101"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0_5",
                                  "nodeType": "YulTypedName",
                                  "src": "3868:14:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memberValue0_5",
                                    "nodeType": "YulIdentifier",
                                    "src": "3942:14:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "3962:3:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3967:4:101",
                                        "type": "",
                                        "value": "0xe0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3958:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3958:14:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_array_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "3918:23:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3918:55:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3918:55:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "3993:3:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3998:6:101",
                                        "type": "",
                                        "value": "0x02e0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3989:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3989:16:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "4017:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "4024:6:101",
                                            "type": "",
                                            "value": "0x0100"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "4013:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4013:18:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "mload",
                                      "nodeType": "YulIdentifier",
                                      "src": "4007:5:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4007:25:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3982:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3982:51:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3982:51:101"
                            }
                          ]
                        },
                        "name": "abi_encode_struct_PrizeDistribution",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "3169:5:101",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "3176:3:101",
                            "type": ""
                          }
                        ],
                        "src": "3124:915:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4088:69:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "4105:3:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "4114:5:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4121:28:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4110:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4110:40:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4098:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4098:53:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4098:53:101"
                            }
                          ]
                        },
                        "name": "abi_encode_uint104",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "4072:5:101",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "4079:3:101",
                            "type": ""
                          }
                        ],
                        "src": "4044:113:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4205:51:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "4222:3:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "4231:5:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4238:10:101",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4227:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4227:22:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4215:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4215:35:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4215:35:101"
                            }
                          ]
                        },
                        "name": "abi_encode_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "4189:5:101",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "4196:3:101",
                            "type": ""
                          }
                        ],
                        "src": "4162:94:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4303:33:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "4312:3:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "4321:5:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4328:4:101",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4317:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4317:16:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4305:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4305:29:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4305:29:101"
                            }
                          ]
                        },
                        "name": "abi_encode_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "4287:5:101",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "4294:3:101",
                            "type": ""
                          }
                        ],
                        "src": "4261:75:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4442:125:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "4452:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4464:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4475:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4460:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4460:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4452:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4494:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "4509:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4517:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4505:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4505:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4487:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4487:74:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4487:74:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4411:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4422:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4433:4:101",
                            "type": ""
                          }
                        ],
                        "src": "4341:226:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4795:514:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4805:12:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "4815:2:101",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4809:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4826:32:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4844:9:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4855:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4840:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4840:18:101"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4830:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4874:9:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4885:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4867:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4867:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4867:21:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4897:17:101",
                              "value": {
                                "name": "tail_1",
                                "nodeType": "YulIdentifier",
                                "src": "4908:6:101"
                              },
                              "variables": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulTypedName",
                                  "src": "4901:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4923:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "4943:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4937:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4937:13:101"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "4927:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4966:6:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "4974:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4959:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4959:22:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4959:22:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4990:25:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5001:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5012:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4997:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4997:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "4990:3:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5024:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "5042:6:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "5050:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5038:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5038:15:101"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "5028:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5062:10:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "5071:1:101",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "5066:1:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5130:153:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "srcPtr",
                                              "nodeType": "YulIdentifier",
                                              "src": "5186:6:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "5180:5:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "5180:13:101"
                                        },
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "5195:3:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "abi_encode_struct_PrizeDistribution",
                                        "nodeType": "YulIdentifier",
                                        "src": "5144:35:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5144:55:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5144:55:101"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "5212:23:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "5223:3:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5228:6:101",
                                          "type": "",
                                          "value": "0x0300"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "5219:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5219:16:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "5212:3:101"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "5248:25:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "5262:6:101"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "5270:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "5258:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5258:15:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "5248:6:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "5092:1:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "5095:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "5089:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5089:13:101"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "5103:18:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "5105:14:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "5114:1:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5117:1:101",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "5110:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5110:9:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "5105:1:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "5085:3:101",
                                "statements": []
                              },
                              "src": "5081:202:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5292:11:101",
                              "value": {
                                "name": "pos",
                                "nodeType": "YulIdentifier",
                                "src": "5300:3:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5292:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_array$_t_struct$_PrizeDistribution_$11103_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_PrizeDistribution_$11103_memory_ptr_$dyn_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4764:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4775:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4786:4:101",
                            "type": ""
                          }
                        ],
                        "src": "4572:737:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5409:92:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "5419:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5431:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5442:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5427:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5427:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5419:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5461:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "5486:6:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "5479:6:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "5479:14:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "5472:6:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5472:22:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5454:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5454:41:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5454:41:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5378:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5389:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5400:4:101",
                            "type": ""
                          }
                        ],
                        "src": "5314:187:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5680:176:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5697:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5708:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5690:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5690:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5690:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5731:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5742:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5727:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5727:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5747:2:101",
                                    "type": "",
                                    "value": "26"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5720:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5720:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5720:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5770:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5781:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5766:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5766:18:101"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f62697452616e676553697a652d67742d30",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5786:28:101",
                                    "type": "",
                                    "value": "DrawCalc/bitRangeSize-gt-0"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5759:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5759:56:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5759:56:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5824:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5836:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5847:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5832:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5832:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5824:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_1bc7b5f9a3e52be66e1bae40b5347daec05c71148e3f246fa48afaba5869a377__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5657:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5671:4:101",
                            "type": ""
                          }
                        ],
                        "src": "5506:350:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6035:172:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6052:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6063:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6045:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6045:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6045:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6086:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6097:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6082:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6082:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6102:2:101",
                                    "type": "",
                                    "value": "22"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6075:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6075:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6075:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6125:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6136:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6121:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6121:18:101"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f74696572732d67742d31303025",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6141:24:101",
                                    "type": "",
                                    "value": "DrawCalc/tiers-gt-100%"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6114:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6114:52:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6114:52:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6175:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6187:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6198:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6183:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6183:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6175:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_32188c2fb9458b9b04ecd2ddd4a1cbda73bdc5968bafea54a4dcec20c7e49c08__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6012:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6026:4:101",
                            "type": ""
                          }
                        ],
                        "src": "5861:346:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6386:225:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6403:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6414:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6396:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6396:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6396:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6437:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6448:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6433:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6433:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6453:2:101",
                                    "type": "",
                                    "value": "35"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6426:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6426:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6426:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6476:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6487:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6472:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6472:18:101"
                                  },
                                  {
                                    "hexValue": "4d616e61676561626c652f6578697374696e672d6d616e616765722d61646472",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6492:34:101",
                                    "type": "",
                                    "value": "Manageable/existing-manager-addr"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6465:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6465:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6465:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6547:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6558:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6543:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6543:18:101"
                                  },
                                  {
                                    "hexValue": "657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6563:5:101",
                                    "type": "",
                                    "value": "ess"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6536:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6536:33:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6536:33:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6578:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6590:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6601:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6586:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6586:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6578:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6363:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6377:4:101",
                            "type": ""
                          }
                        ],
                        "src": "6212:399:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6790:181:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6807:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6818:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6800:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6800:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6800:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6841:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6852:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6837:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6837:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6857:2:101",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6830:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6830:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6830:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6880:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6891:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6876:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6876:18:101"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f62697452616e676553697a652d746f6f2d6c61726765",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6896:33:101",
                                    "type": "",
                                    "value": "DrawCalc/bitRangeSize-too-large"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6869:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6869:61:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6869:61:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6939:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6951:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6962:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6947:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6947:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6939:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_3e244583f2350f45bf6794161f3c9cb628d7d43da05a7064d2adf7a404a03a5b__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6767:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6781:4:101",
                            "type": ""
                          }
                        ],
                        "src": "6616:355:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7150:174:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7167:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7178:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7160:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7160:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7160:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7201:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7212:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7197:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7197:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7217:2:101",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7190:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7190:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7190:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7240:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7251:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7236:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7236:18:101"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7256:26:101",
                                    "type": "",
                                    "value": "Ownable/caller-not-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7229:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7229:54:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7229:54:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7292:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7304:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7315:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7300:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7300:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7292:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7127:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7141:4:101",
                            "type": ""
                          }
                        ],
                        "src": "6976:348:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7503:179:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7520:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7531:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7513:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7513:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7513:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7554:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7565:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7550:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7550:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7570:2:101",
                                    "type": "",
                                    "value": "29"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7543:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7543:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7543:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7593:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7604:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7589:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7589:18:101"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f6d61785069636b73506572557365722d67742d30",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7609:31:101",
                                    "type": "",
                                    "value": "DrawCalc/maxPicksPerUser-gt-0"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7582:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7582:59:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7582:59:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7650:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7662:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7673:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7658:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7658:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7650:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_6b68b17181f2f490640a09147a6076477f33dd49ea7fd8e2efdb9f888b23e742__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7480:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7494:4:101",
                            "type": ""
                          }
                        ],
                        "src": "7329:353:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7861:181:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7878:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7889:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7871:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7871:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7871:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7912:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7923:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7908:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7908:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7928:2:101",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7901:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7901:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7901:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7951:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7962:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7947:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7947:18:101"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7967:33:101",
                                    "type": "",
                                    "value": "Ownable/caller-not-pendingOwner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7940:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7940:61:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7940:61:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8010:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8022:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8033:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8018:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8018:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8010:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7838:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7852:4:101",
                            "type": ""
                          }
                        ],
                        "src": "7687:355:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8221:165:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8238:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8249:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8231:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8231:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8231:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8272:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8283:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8268:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8268:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8288:2:101",
                                    "type": "",
                                    "value": "15"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8261:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8261:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8261:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8311:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8322:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8307:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8307:18:101"
                                  },
                                  {
                                    "hexValue": "4452422f6675747572652d64726177",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8327:17:101",
                                    "type": "",
                                    "value": "DRB/future-draw"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8300:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8300:45:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8300:45:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8354:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8366:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8377:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8362:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8362:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8354:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_834af838efd93eb4158cc9f06d3c7758fab673f4aea9693aaa5b4a88a4e5a67b__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8198:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8212:4:101",
                            "type": ""
                          }
                        ],
                        "src": "8047:339:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8565:171:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8582:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8593:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8575:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8575:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8575:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8616:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8627:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8612:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8612:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8632:2:101",
                                    "type": "",
                                    "value": "21"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8605:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8605:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8605:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8655:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8666:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8651:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8651:18:101"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f647261772d69642d67742d30",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8671:23:101",
                                    "type": "",
                                    "value": "DrawCalc/draw-id-gt-0"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8644:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8644:51:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8644:51:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8704:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8716:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8727:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8712:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8712:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8704:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_8b507ddce75cdc34f90fa301a75f6fd1f75fa27a9f9dbdf6fd484dc84d5dad03__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8542:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8556:4:101",
                            "type": ""
                          }
                        ],
                        "src": "8391:345:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8915:178:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8932:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8943:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8925:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8925:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8925:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8966:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8977:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8962:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8962:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8982:2:101",
                                    "type": "",
                                    "value": "28"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8955:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8955:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8955:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9005:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9016:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9001:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9001:18:101"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f6578706972794475726174696f6e2d67742d30",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9021:30:101",
                                    "type": "",
                                    "value": "DrawCalc/expiryDuration-gt-0"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8994:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8994:58:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8994:58:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9061:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9073:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9084:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9069:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9069:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9061:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_97c809ce43113f425cd71edfa67f5c73daca158347912ba9abee6a2d18a62d38__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8892:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8906:4:101",
                            "type": ""
                          }
                        ],
                        "src": "8741:352:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9272:180:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9289:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9300:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9282:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9282:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9282:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9323:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9334:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9319:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9319:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9339:2:101",
                                    "type": "",
                                    "value": "30"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9312:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9312:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9312:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9362:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9373:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9358:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9358:18:101"
                                  },
                                  {
                                    "hexValue": "4472617743616c632f6d6174636843617264696e616c6974792d67742d30",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9378:32:101",
                                    "type": "",
                                    "value": "DrawCalc/matchCardinality-gt-0"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9351:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9351:60:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9351:60:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9420:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9432:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9443:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9428:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9428:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9420:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_b2ca6e48351b23d5b5f68ad1fc621ced7f4d101632cc01f2530db3cc6923f1ac__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9249:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9263:4:101",
                            "type": ""
                          }
                        ],
                        "src": "9098:354:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9631:228:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9648:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9659:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9641:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9641:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9641:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9682:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9693:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9678:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9678:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9698:2:101",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9671:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9671:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9671:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9721:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9732:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9717:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9717:18:101"
                                  },
                                  {
                                    "hexValue": "4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f72",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9737:34:101",
                                    "type": "",
                                    "value": "Manageable/caller-not-manager-or"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9710:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9710:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9710:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9792:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9803:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9788:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9788:18:101"
                                  },
                                  {
                                    "hexValue": "2d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9808:8:101",
                                    "type": "",
                                    "value": "-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9781:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9781:36:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9781:36:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9826:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9838:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9849:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9834:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9834:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9826:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9608:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9622:4:101",
                            "type": ""
                          }
                        ],
                        "src": "9457:402:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10038:166:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10055:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10066:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10048:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10048:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10048:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10089:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10100:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10085:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10085:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10105:2:101",
                                    "type": "",
                                    "value": "16"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10078:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10078:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10078:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10128:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10139:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10124:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10124:18:101"
                                  },
                                  {
                                    "hexValue": "4452422f657870697265642d64726177",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10144:18:101",
                                    "type": "",
                                    "value": "DRB/expired-draw"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10117:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10117:46:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10117:46:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10172:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10184:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10195:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10180:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10180:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10172:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c668e5b129491f4ee820ede260478053e92cbf01d162d1c6f57c368703371103__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10015:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10029:4:101",
                            "type": ""
                          }
                        ],
                        "src": "9864:340:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10383:227:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10400:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10411:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10393:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10393:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10393:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10434:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10445:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10430:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10430:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10450:2:101",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10423:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10423:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10423:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10473:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10484:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10469:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10469:18:101"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d6164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10489:34:101",
                                    "type": "",
                                    "value": "Ownable/pendingOwner-not-zero-ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10462:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10462:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10462:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10544:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10555:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10540:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10540:18:101"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10560:7:101",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10533:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10533:35:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10533:35:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10577:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10589:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10600:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10585:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10585:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10577:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10360:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10374:4:101",
                            "type": ""
                          }
                        ],
                        "src": "10209:401:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10789:168:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10806:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10817:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10799:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10799:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10799:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10840:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10851:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10836:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10836:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10856:2:101",
                                    "type": "",
                                    "value": "18"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10829:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10829:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10829:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10879:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10890:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10875:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10875:18:101"
                                  },
                                  {
                                    "hexValue": "4452422f6d7573742d62652d636f6e746967",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10895:20:101",
                                    "type": "",
                                    "value": "DRB/must-be-contig"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10868:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10868:48:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10868:48:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10925:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10937:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10948:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10933:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10933:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10925:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_dcdf15f61e637ae9dfec563023332cc7a707c946c03e324a5dc1b934aaf4a816__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10766:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10780:4:101",
                            "type": ""
                          }
                        ],
                        "src": "10615:342:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11137:1042:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "11147:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11159:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11170:3:101",
                                    "type": "",
                                    "value": "768"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11155:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11155:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11147:4:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11183:33:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "11209:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "11196:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11196:20:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "11187:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "11248:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint8",
                                  "nodeType": "YulIdentifier",
                                  "src": "11225:22:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11225:29:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11225:29:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11270:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "11285:5:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11292:4:101",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "11281:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11281:16:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11263:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11263:35:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11263:35:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11307:50:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "11343:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11351:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11339:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11339:17:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint8",
                                  "nodeType": "YulIdentifier",
                                  "src": "11322:16:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11322:35:101"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "11311:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "11383:7:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11396:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11407:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11392:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11392:20:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_uint8",
                                  "nodeType": "YulIdentifier",
                                  "src": "11366:16:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11366:47:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11366:47:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11422:51:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "11459:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11467:4:101",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11455:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11455:17:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "11437:17:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11437:36:101"
                              },
                              "variables": [
                                {
                                  "name": "value_2",
                                  "nodeType": "YulTypedName",
                                  "src": "11426:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "11500:7:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11513:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11524:4:101",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11509:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11509:20:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "11482:17:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11482:48:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11482:48:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11539:51:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "11576:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11584:4:101",
                                        "type": "",
                                        "value": "0x60"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11572:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11572:17:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "11554:17:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11554:36:101"
                              },
                              "variables": [
                                {
                                  "name": "value_3",
                                  "nodeType": "YulTypedName",
                                  "src": "11543:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "11617:7:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11630:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11641:4:101",
                                        "type": "",
                                        "value": "0x60"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11626:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11626:20:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "11599:17:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11599:48:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11599:48:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11656:51:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "11693:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11701:4:101",
                                        "type": "",
                                        "value": "0x80"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11689:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11689:17:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "11671:17:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11671:36:101"
                              },
                              "variables": [
                                {
                                  "name": "value_4",
                                  "nodeType": "YulTypedName",
                                  "src": "11660:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "11734:7:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11747:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11758:4:101",
                                        "type": "",
                                        "value": "0x80"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11743:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11743:20:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "11716:17:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11716:48:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11716:48:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11773:51:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "11810:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11818:4:101",
                                        "type": "",
                                        "value": "0xa0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11806:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11806:17:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "11788:17:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11788:36:101"
                              },
                              "variables": [
                                {
                                  "name": "value_5",
                                  "nodeType": "YulTypedName",
                                  "src": "11777:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_5",
                                    "nodeType": "YulIdentifier",
                                    "src": "11851:7:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11864:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11875:4:101",
                                        "type": "",
                                        "value": "0xa0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11860:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11860:20:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "11833:17:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11833:48:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11833:48:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11890:52:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "11928:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11936:4:101",
                                        "type": "",
                                        "value": "0xc0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11924:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11924:17:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint104",
                                  "nodeType": "YulIdentifier",
                                  "src": "11905:18:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11905:37:101"
                              },
                              "variables": [
                                {
                                  "name": "value_6",
                                  "nodeType": "YulTypedName",
                                  "src": "11894:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_6",
                                    "nodeType": "YulIdentifier",
                                    "src": "11970:7:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11983:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11994:4:101",
                                        "type": "",
                                        "value": "0xc0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11979:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11979:20:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_uint104",
                                  "nodeType": "YulIdentifier",
                                  "src": "11951:18:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11951:49:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11951:49:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "12046:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12054:4:101",
                                        "type": "",
                                        "value": "0xe0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12042:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12042:17:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12065:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12076:4:101",
                                        "type": "",
                                        "value": "0xe0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12061:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12061:20:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_array_uint32_calldata",
                                  "nodeType": "YulIdentifier",
                                  "src": "12009:32:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12009:73:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12009:73:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "12091:16:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "12101:6:101",
                                "type": "",
                                "value": "0x02e0"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "12095:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12127:9:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "12138:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12123:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12123:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "12160:6:101"
                                          },
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "12168:2:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "12156:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "12156:15:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "calldataload",
                                      "nodeType": "YulIdentifier",
                                      "src": "12143:12:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12143:29:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12116:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12116:57:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12116:57:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_struct$_PrizeDistribution_$11103_calldata_ptr__to_t_struct$_PrizeDistribution_$11103_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11106:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "11117:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11128:4:101",
                            "type": ""
                          }
                        ],
                        "src": "10962:1217:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12357:106:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "12367:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12379:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12390:3:101",
                                    "type": "",
                                    "value": "768"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12375:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12375:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12367:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "12439:6:101"
                                  },
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12447:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_struct_PrizeDistribution",
                                  "nodeType": "YulIdentifier",
                                  "src": "12403:35:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12403:54:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12403:54:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_struct$_PrizeDistribution_$11103_memory_ptr__to_t_struct$_PrizeDistribution_$11103_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12326:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "12337:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12348:4:101",
                            "type": ""
                          }
                        ],
                        "src": "12184:279:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12667:167:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "12677:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12689:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12700:3:101",
                                    "type": "",
                                    "value": "800"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12685:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12685:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12677:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "12749:6:101"
                                  },
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12757:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_struct_PrizeDistribution",
                                  "nodeType": "YulIdentifier",
                                  "src": "12713:35:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12713:54:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12713:54:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12787:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12798:3:101",
                                        "type": "",
                                        "value": "768"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12783:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12783:19:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "12808:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12816:10:101",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "12804:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12804:23:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12776:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12776:52:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12776:52:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_struct$_PrizeDistribution_$11103_memory_ptr_t_uint32__to_t_struct$_PrizeDistribution_$11103_memory_ptr_t_uint32__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12628:9:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "12639:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "12647:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12658:4:101",
                            "type": ""
                          }
                        ],
                        "src": "12468:366:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12938:93:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "12948:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12960:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12971:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12956:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12956:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12948:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12990:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "13005:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13013:10:101",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "13001:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13001:23:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12983:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12983:42:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12983:42:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12907:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "12918:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12929:4:101",
                            "type": ""
                          }
                        ],
                        "src": "12839:192:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13084:80:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "13111:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "13113:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13113:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13113:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "13100:1:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "13107:1:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "13103:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13103:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "13097:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13097:13:101"
                              },
                              "nodeType": "YulIf",
                              "src": "13094:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13142:16:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "13153:1:101"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "13156:1:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13149:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13149:9:101"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "13142:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "13067:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "13070:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "13076:3:101",
                            "type": ""
                          }
                        ],
                        "src": "13036:128:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13216:181:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13226:20:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "13236:10:101",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13230:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13255:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "13270:1:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13273:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "13266:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13266:10:101"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13259:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13285:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "13300:1:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13303:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "13296:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13296:10:101"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13289:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "13340:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "13342:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13342:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13342:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13321:3:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "13330:2:101"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "13334:3:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "13326:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13326:12:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "13318:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13318:21:101"
                              },
                              "nodeType": "YulIf",
                              "src": "13315:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13371:20:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13382:3:101"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13387:3:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13378:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13378:13:101"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "13371:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "13199:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "13202:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "13208:3:101",
                            "type": ""
                          }
                        ],
                        "src": "13169:228:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13447:142:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13457:16:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "13467:6:101",
                                "type": "",
                                "value": "0xffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13461:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13482:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "13497:1:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13500:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "13493:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13493:10:101"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13486:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "13527:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x12",
                                        "nodeType": "YulIdentifier",
                                        "src": "13529:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13529:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13529:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13522:3:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "13515:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13515:11:101"
                              },
                              "nodeType": "YulIf",
                              "src": "13512:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13558:25:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "x",
                                        "nodeType": "YulIdentifier",
                                        "src": "13571:1:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "13574:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "13567:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13567:10:101"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13579:3:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "div",
                                  "nodeType": "YulIdentifier",
                                  "src": "13563:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13563:20:101"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "13558:1:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_div_t_uint16",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "13432:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "13435:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "13441:1:101",
                            "type": ""
                          }
                        ],
                        "src": "13402:187:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13643:76:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "13665:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "13667:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13667:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13667:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "13659:1:101"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "13662:1:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "13656:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13656:8:101"
                              },
                              "nodeType": "YulIf",
                              "src": "13653:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13696:17:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "13708:1:101"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "13711:1:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "13704:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13704:9:101"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "13696:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "13625:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "13628:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "13634:4:101",
                            "type": ""
                          }
                        ],
                        "src": "13594:125:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13772:173:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13782:20:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "13792:10:101",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13786:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13811:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "13826:1:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13829:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "13822:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13822:10:101"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13815:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13841:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "13856:1:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13859:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "13852:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13852:10:101"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13845:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "13887:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "13889:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13889:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13889:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13877:3:101"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13882:3:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "13874:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13874:12:101"
                              },
                              "nodeType": "YulIf",
                              "src": "13871:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13918:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13930:3:101"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "13935:3:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "13926:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13926:13:101"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "13918:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "13754:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "13757:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "13763:4:101",
                            "type": ""
                          }
                        ],
                        "src": "13724:221:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14039:798:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "14049:19:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "14063:5:101"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "14053:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "14077:23:101",
                              "value": {
                                "name": "slot",
                                "nodeType": "YulIdentifier",
                                "src": "14096:4:101"
                              },
                              "variables": [
                                {
                                  "name": "elementSlot",
                                  "nodeType": "YulTypedName",
                                  "src": "14081:11:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "14109:22:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "14130:1:101",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "elementOffset",
                                  "nodeType": "YulTypedName",
                                  "src": "14113:13:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "14140:22:101",
                              "value": {
                                "name": "elementOffset",
                                "nodeType": "YulIdentifier",
                                "src": "14149:13:101"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "14144:1:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "14218:613:101",
                                "statements": [
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "14232:35:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "14260:6:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "calldataload",
                                        "nodeType": "YulIdentifier",
                                        "src": "14247:12:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14247:20:101"
                                    },
                                    "variables": [
                                      {
                                        "name": "value_1",
                                        "nodeType": "YulTypedName",
                                        "src": "14236:7:101",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "14304:7:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "validator_revert_uint32",
                                        "nodeType": "YulIdentifier",
                                        "src": "14280:23:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14280:32:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "14280:32:101"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "14325:20:101",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "14335:10:101",
                                      "type": "",
                                      "value": "0xffffffff"
                                    },
                                    "variables": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulTypedName",
                                        "src": "14329:2:101",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "14358:28:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "elementSlot",
                                          "nodeType": "YulIdentifier",
                                          "src": "14374:11:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "sload",
                                        "nodeType": "YulIdentifier",
                                        "src": "14368:5:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14368:18:101"
                                    },
                                    "variables": [
                                      {
                                        "name": "_2",
                                        "nodeType": "YulTypedName",
                                        "src": "14362:2:101",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "14399:38:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "14420:1:101",
                                          "type": "",
                                          "value": "3"
                                        },
                                        {
                                          "name": "elementOffset",
                                          "nodeType": "YulIdentifier",
                                          "src": "14423:13:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "shl",
                                        "nodeType": "YulIdentifier",
                                        "src": "14416:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14416:21:101"
                                    },
                                    "variables": [
                                      {
                                        "name": "shiftBits",
                                        "nodeType": "YulTypedName",
                                        "src": "14403:9:101",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "14450:30:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "shiftBits",
                                          "nodeType": "YulIdentifier",
                                          "src": "14466:9:101"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "14477:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "shl",
                                        "nodeType": "YulIdentifier",
                                        "src": "14462:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14462:18:101"
                                    },
                                    "variables": [
                                      {
                                        "name": "mask",
                                        "nodeType": "YulTypedName",
                                        "src": "14454:4:101",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "elementSlot",
                                          "nodeType": "YulIdentifier",
                                          "src": "14500:11:101"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "_2",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "14520:2:101"
                                                },
                                                {
                                                  "arguments": [
                                                    {
                                                      "name": "mask",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "14528:4:101"
                                                    }
                                                  ],
                                                  "functionName": {
                                                    "name": "not",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "14524:3:101"
                                                  },
                                                  "nodeType": "YulFunctionCall",
                                                  "src": "14524:9:101"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "and",
                                                "nodeType": "YulIdentifier",
                                                "src": "14516:3:101"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "14516:18:101"
                                            },
                                            {
                                              "arguments": [
                                                {
                                                  "arguments": [
                                                    {
                                                      "name": "shiftBits",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "14544:9:101"
                                                    },
                                                    {
                                                      "arguments": [
                                                        {
                                                          "name": "value_1",
                                                          "nodeType": "YulIdentifier",
                                                          "src": "14559:7:101"
                                                        },
                                                        {
                                                          "name": "_1",
                                                          "nodeType": "YulIdentifier",
                                                          "src": "14568:2:101"
                                                        }
                                                      ],
                                                      "functionName": {
                                                        "name": "and",
                                                        "nodeType": "YulIdentifier",
                                                        "src": "14555:3:101"
                                                      },
                                                      "nodeType": "YulFunctionCall",
                                                      "src": "14555:16:101"
                                                    }
                                                  ],
                                                  "functionName": {
                                                    "name": "shl",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "14540:3:101"
                                                  },
                                                  "nodeType": "YulFunctionCall",
                                                  "src": "14540:32:101"
                                                },
                                                {
                                                  "name": "mask",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "14574:4:101"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "and",
                                                "nodeType": "YulIdentifier",
                                                "src": "14536:3:101"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "14536:43:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "or",
                                            "nodeType": "YulIdentifier",
                                            "src": "14513:2:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "14513:67:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "sstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "14493:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14493:88:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "14493:88:101"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "14594:25:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "14608:6:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "14616:2:101",
                                          "type": "",
                                          "value": "32"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "14604:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14604:15:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "14594:6:101"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "14632:38:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "elementOffset",
                                          "nodeType": "YulIdentifier",
                                          "src": "14653:13:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "14668:1:101",
                                          "type": "",
                                          "value": "4"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "14649:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14649:21:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "elementOffset",
                                        "nodeType": "YulIdentifier",
                                        "src": "14632:13:101"
                                      }
                                    ]
                                  },
                                  {
                                    "body": {
                                      "nodeType": "YulBlock",
                                      "src": "14720:101:101",
                                      "statements": [
                                        {
                                          "nodeType": "YulAssignment",
                                          "src": "14738:18:101",
                                          "value": {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "14755:1:101",
                                            "type": "",
                                            "value": "0"
                                          },
                                          "variableNames": [
                                            {
                                              "name": "elementOffset",
                                              "nodeType": "YulIdentifier",
                                              "src": "14738:13:101"
                                            }
                                          ]
                                        },
                                        {
                                          "nodeType": "YulAssignment",
                                          "src": "14773:34:101",
                                          "value": {
                                            "arguments": [
                                              {
                                                "name": "elementSlot",
                                                "nodeType": "YulIdentifier",
                                                "src": "14792:11:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "14805:1:101",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "14788:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "14788:19:101"
                                          },
                                          "variableNames": [
                                            {
                                              "name": "elementSlot",
                                              "nodeType": "YulIdentifier",
                                              "src": "14773:11:101"
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    "condition": {
                                      "arguments": [
                                        {
                                          "name": "elementOffset",
                                          "nodeType": "YulIdentifier",
                                          "src": "14689:13:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "14704:2:101",
                                          "type": "",
                                          "value": "28"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "gt",
                                        "nodeType": "YulIdentifier",
                                        "src": "14686:2:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14686:21:101"
                                    },
                                    "nodeType": "YulIf",
                                    "src": "14683:2:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "14182:1:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14185:4:101",
                                    "type": "",
                                    "value": "0x10"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "14179:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14179:11:101"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "14191:18:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "14193:14:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "14202:1:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "14205:1:101",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "14198:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14198:9:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "14193:1:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "14175:3:101",
                                "statements": []
                              },
                              "src": "14171:660:101"
                            }
                          ]
                        },
                        "name": "copy_array_to_storage_from_array_uint32_calldata_to_array_uint",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "slot",
                            "nodeType": "YulTypedName",
                            "src": "14022:4:101",
                            "type": ""
                          },
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "14028:5:101",
                            "type": ""
                          }
                        ],
                        "src": "13950:887:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14889:148:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "14980:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "14982:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "14982:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "14982:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "14905:5:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14912:66:101",
                                    "type": "",
                                    "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "14902:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14902:77:101"
                              },
                              "nodeType": "YulIf",
                              "src": "14899:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "15011:20:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "15022:5:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15029:1:101",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "15018:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15018:13:101"
                              },
                              "variableNames": [
                                {
                                  "name": "ret",
                                  "nodeType": "YulIdentifier",
                                  "src": "15011:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "increment_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "14871:5:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "ret",
                            "nodeType": "YulTypedName",
                            "src": "14881:3:101",
                            "type": ""
                          }
                        ],
                        "src": "14842:195:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15080:74:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "15103:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x12",
                                        "nodeType": "YulIdentifier",
                                        "src": "15105:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "15105:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "15105:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "15100:1:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "15093:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15093:9:101"
                              },
                              "nodeType": "YulIf",
                              "src": "15090:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "15134:14:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "15143:1:101"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "15146:1:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mod",
                                  "nodeType": "YulIdentifier",
                                  "src": "15139:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15139:9:101"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "15134:1:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "mod_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "15065:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "15068:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "15074:1:101",
                            "type": ""
                          }
                        ],
                        "src": "15042:112:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15191:152:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15208:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15211:77:101",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15201:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15201:88:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15201:88:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15305:1:101",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15308:4:101",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15298:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15298:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15298:15:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15329:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15332:4:101",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "15322:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15322:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15322:15:101"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "15159:184:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15380:152:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15397:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15400:77:101",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15390:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15390:88:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15390:88:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15494:1:101",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15497:4:101",
                                    "type": "",
                                    "value": "0x12"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15487:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15487:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15487:15:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15518:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15521:4:101",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "15511:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15511:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15511:15:101"
                            }
                          ]
                        },
                        "name": "panic_error_0x12",
                        "nodeType": "YulFunctionDefinition",
                        "src": "15348:184:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15569:152:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15586:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15589:77:101",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15579:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15579:88:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15579:88:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15683:1:101",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15686:4:101",
                                    "type": "",
                                    "value": "0x32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15676:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15676:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15676:15:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15707:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15710:4:101",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "15700:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15700:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15700:15:101"
                            }
                          ]
                        },
                        "name": "panic_error_0x32",
                        "nodeType": "YulFunctionDefinition",
                        "src": "15537:184:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15758:152:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15775:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15778:77:101",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15768:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15768:88:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15768:88:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15872:1:101",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15875:4:101",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15865:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15865:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15865:15:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15896:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15899:4:101",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "15889:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15889:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15889:15:101"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "15726:184:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15976:115:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "15986:30:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "ptr",
                                    "nodeType": "YulIdentifier",
                                    "src": "16012:3:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "15999:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15999:17:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "15990:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "16050:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint104",
                                  "nodeType": "YulIdentifier",
                                  "src": "16025:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16025:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16025:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "16065:20:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "16080:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "returnValue",
                                  "nodeType": "YulIdentifier",
                                  "src": "16065:11:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "read_from_calldatat_uint104",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "ptr",
                            "nodeType": "YulTypedName",
                            "src": "15952:3:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "returnValue",
                            "nodeType": "YulTypedName",
                            "src": "15960:11:101",
                            "type": ""
                          }
                        ],
                        "src": "15915:176:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "16156:114:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "16166:30:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "ptr",
                                    "nodeType": "YulIdentifier",
                                    "src": "16192:3:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "16179:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16179:17:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "16170:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "16229:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "16205:23:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16205:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16205:30:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "16244:20:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "16259:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "returnValue",
                                  "nodeType": "YulIdentifier",
                                  "src": "16244:11:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "read_from_calldatat_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "ptr",
                            "nodeType": "YulTypedName",
                            "src": "16132:3:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "returnValue",
                            "nodeType": "YulTypedName",
                            "src": "16140:11:101",
                            "type": ""
                          }
                        ],
                        "src": "16096:174:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "16424:1189:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "16434:34:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "16462:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "16449:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16449:19:101"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "16438:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "16500:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint8",
                                  "nodeType": "YulIdentifier",
                                  "src": "16477:22:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16477:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16477:31:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "16517:28:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "16531:7:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16540:4:101",
                                    "type": "",
                                    "value": "0xff"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "16527:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16527:18:101"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "16521:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "16554:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "16570:4:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "sload",
                                  "nodeType": "YulIdentifier",
                                  "src": "16564:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16564:11:101"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "16558:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "16591:4:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "16604:2:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "16608:66:101",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "16600:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "16600:75:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "16677:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "or",
                                      "nodeType": "YulIdentifier",
                                      "src": "16597:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16597:83:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "sstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16584:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16584:97:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16584:97:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "16690:43:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "16722:5:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16729:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16718:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16718:14:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "16705:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16705:28:101"
                              },
                              "variables": [
                                {
                                  "name": "value_2",
                                  "nodeType": "YulTypedName",
                                  "src": "16694:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "16765:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint8",
                                  "nodeType": "YulIdentifier",
                                  "src": "16742:22:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16742:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16742:31:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "16789:4:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "_2",
                                                "nodeType": "YulIdentifier",
                                                "src": "16805:2:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "16809:66:101",
                                                "type": "",
                                                "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "and",
                                              "nodeType": "YulIdentifier",
                                              "src": "16801:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "16801:75:101"
                                          },
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "16878:2:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "or",
                                          "nodeType": "YulIdentifier",
                                          "src": "16798:2:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "16798:83:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "16891:1:101",
                                                "type": "",
                                                "value": "8"
                                              },
                                              {
                                                "name": "value_2",
                                                "nodeType": "YulIdentifier",
                                                "src": "16894:7:101"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "16887:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "16887:15:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "16904:5:101",
                                            "type": "",
                                            "value": "65280"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "16883:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "16883:27:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "or",
                                      "nodeType": "YulIdentifier",
                                      "src": "16795:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16795:116:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "sstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16782:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16782:130:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16782:130:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "16969:4:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "17006:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "17013:2:101",
                                            "type": "",
                                            "value": "64"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "17002:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "17002:14:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "read_from_calldatat_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "16975:26:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16975:42:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "update_storage_value_offset_2t_uint32_to_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "16921:47:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16921:97:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16921:97:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "17075:4:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "17112:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "17119:2:101",
                                            "type": "",
                                            "value": "96"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "17108:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "17108:14:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "read_from_calldatat_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "17081:26:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17081:42:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "update_storage_value_offsett_uint32_to_t_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "17027:47:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17027:97:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17027:97:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "17182:4:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "17219:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "17226:3:101",
                                            "type": "",
                                            "value": "128"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "17215:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "17215:15:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "read_from_calldatat_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "17188:26:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17188:43:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "update_storage_value_offset_10t_uint32_to_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "17133:48:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17133:99:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17133:99:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "17287:4:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "17324:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "17331:3:101",
                                            "type": "",
                                            "value": "160"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "17320:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "17320:15:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "read_from_calldatat_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "17293:26:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17293:43:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "update_storage_value_offsett_uint32_to_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "17241:45:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17241:96:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17241:96:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "17394:4:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "17432:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "17439:3:101",
                                            "type": "",
                                            "value": "192"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "17428:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "17428:15:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "read_from_calldatat_uint104",
                                      "nodeType": "YulIdentifier",
                                      "src": "17400:27:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17400:44:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "update_storage_value_offsett_uint104_to_uint104",
                                  "nodeType": "YulIdentifier",
                                  "src": "17346:47:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17346:99:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17346:99:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "slot",
                                        "nodeType": "YulIdentifier",
                                        "src": "17521:4:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17527:1:101",
                                        "type": "",
                                        "value": "1"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17517:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17517:12:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "17535:5:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17542:3:101",
                                        "type": "",
                                        "value": "224"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17531:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17531:15:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_array_to_storage_from_array_uint32_calldata_to_array_uint",
                                  "nodeType": "YulIdentifier",
                                  "src": "17454:62:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17454:93:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17454:93:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "slot",
                                        "nodeType": "YulIdentifier",
                                        "src": "17567:4:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17573:1:101",
                                        "type": "",
                                        "value": "3"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17563:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17563:12:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "17594:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "17601:3:101",
                                            "type": "",
                                            "value": "736"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "17590:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "17590:15:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "calldataload",
                                      "nodeType": "YulIdentifier",
                                      "src": "17577:12:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17577:29:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "sstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17556:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17556:51:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17556:51:101"
                            }
                          ]
                        },
                        "name": "update_storage_value_offset_0t_struct$_PrizeDistribution_$11103_calldata_ptr_to_t_struct$_PrizeDistribution_$11103_storage",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "slot",
                            "nodeType": "YulTypedName",
                            "src": "16407:4:101",
                            "type": ""
                          },
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "16413:5:101",
                            "type": ""
                          }
                        ],
                        "src": "16275:1338:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "17693:192:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "17703:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "17719:4:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "sload",
                                  "nodeType": "YulIdentifier",
                                  "src": "17713:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17713:11:101"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "17707:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "17740:4:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "17753:2:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "17757:66:101",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffff00000000ffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "17749:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "17749:75:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "17834:2:101",
                                                "type": "",
                                                "value": "80"
                                              },
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "17838:5:101"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "17830:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "17830:14:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "17846:30:101",
                                            "type": "",
                                            "value": "0xffffffff00000000000000000000"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "17826:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "17826:51:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "or",
                                      "nodeType": "YulIdentifier",
                                      "src": "17746:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17746:132:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "sstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17733:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17733:146:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17733:146:101"
                            }
                          ]
                        },
                        "name": "update_storage_value_offset_10t_uint32_to_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "slot",
                            "nodeType": "YulTypedName",
                            "src": "17676:4:101",
                            "type": ""
                          },
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "17682:5:101",
                            "type": ""
                          }
                        ],
                        "src": "17618:267:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "17962:201:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "17972:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "17988:4:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "sload",
                                  "nodeType": "YulIdentifier",
                                  "src": "17982:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17982:11:101"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "17976:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "18009:4:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "18022:2:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "18026:66:101",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffff00000000ffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "18018:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "18018:75:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "18103:3:101",
                                                "type": "",
                                                "value": "112"
                                              },
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "18108:5:101"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "18099:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "18099:15:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "18116:38:101",
                                            "type": "",
                                            "value": "0xffffffff0000000000000000000000000000"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "18095:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "18095:60:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "or",
                                      "nodeType": "YulIdentifier",
                                      "src": "18015:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18015:141:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "sstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18002:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18002:155:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18002:155:101"
                            }
                          ]
                        },
                        "name": "update_storage_value_offsett_uint32_to_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "slot",
                            "nodeType": "YulTypedName",
                            "src": "17945:4:101",
                            "type": ""
                          },
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "17951:5:101",
                            "type": ""
                          }
                        ],
                        "src": "17890:273:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "18242:227:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "18252:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "18268:4:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "sload",
                                  "nodeType": "YulIdentifier",
                                  "src": "18262:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18262:11:101"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "18256:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "18289:4:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "18302:2:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "18306:66:101",
                                            "type": "",
                                            "value": "0xff00000000000000000000000000ffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "18298:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "18298:75:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "18383:3:101",
                                                "type": "",
                                                "value": "144"
                                              },
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "18388:5:101"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "18379:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "18379:15:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "18396:64:101",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffff000000000000000000000000000000000000"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "18375:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "18375:86:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "or",
                                      "nodeType": "YulIdentifier",
                                      "src": "18295:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18295:167:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "sstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18282:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18282:181:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18282:181:101"
                            }
                          ]
                        },
                        "name": "update_storage_value_offsett_uint104_to_uint104",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "slot",
                            "nodeType": "YulTypedName",
                            "src": "18225:4:101",
                            "type": ""
                          },
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "18231:5:101",
                            "type": ""
                          }
                        ],
                        "src": "18168:301:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "18548:176:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "18558:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "18574:4:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "sload",
                                  "nodeType": "YulIdentifier",
                                  "src": "18568:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18568:11:101"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "18562:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "18595:4:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "18608:2:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "18612:66:101",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffff00000000ffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "18604:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "18604:75:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "18689:2:101",
                                                "type": "",
                                                "value": "16"
                                              },
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "18693:5:101"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "18685:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "18685:14:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "18701:14:101",
                                            "type": "",
                                            "value": "0xffffffff0000"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "18681:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "18681:35:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "or",
                                      "nodeType": "YulIdentifier",
                                      "src": "18601:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18601:116:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "sstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18588:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18588:130:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18588:130:101"
                            }
                          ]
                        },
                        "name": "update_storage_value_offset_2t_uint32_to_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "slot",
                            "nodeType": "YulTypedName",
                            "src": "18531:4:101",
                            "type": ""
                          },
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "18537:5:101",
                            "type": ""
                          }
                        ],
                        "src": "18474:250:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "18803:184:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "18813:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "18829:4:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "sload",
                                  "nodeType": "YulIdentifier",
                                  "src": "18823:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18823:11:101"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "18817:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "slot",
                                    "nodeType": "YulIdentifier",
                                    "src": "18850:4:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "18863:2:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "18867:66:101",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffff00000000ffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "18859:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "18859:75:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "18944:2:101",
                                                "type": "",
                                                "value": "48"
                                              },
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "18948:5:101"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "18940:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "18940:14:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "18956:22:101",
                                            "type": "",
                                            "value": "0xffffffff000000000000"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "18936:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "18936:43:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "or",
                                      "nodeType": "YulIdentifier",
                                      "src": "18856:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18856:124:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "sstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18843:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18843:138:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18843:138:101"
                            }
                          ]
                        },
                        "name": "update_storage_value_offsett_uint32_to_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "slot",
                            "nodeType": "YulTypedName",
                            "src": "18786:4:101",
                            "type": ""
                          },
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "18792:5:101",
                            "type": ""
                          }
                        ],
                        "src": "18729:258:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "19037:95:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "19110:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "19119:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "19122:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "19112:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "19112:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "19112:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "19060:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "19071:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "19078:28:101",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "19067:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "19067:40:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "19057:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19057:51:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "19050:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19050:59:101"
                              },
                              "nodeType": "YulIf",
                              "src": "19047:2:101"
                            }
                          ]
                        },
                        "name": "validator_revert_uint104",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "19026:5:101",
                            "type": ""
                          }
                        ],
                        "src": "18992:140:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "19181:77:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "19236:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "19245:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "19248:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "19238:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "19238:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "19238:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "19204:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "19215:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "19222:10:101",
                                            "type": "",
                                            "value": "0xffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "19211:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "19211:22:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "19201:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19201:33:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "19194:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19194:41:101"
                              },
                              "nodeType": "YulIf",
                              "src": "19191:2:101"
                            }
                          ]
                        },
                        "name": "validator_revert_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "19170:5:101",
                            "type": ""
                          }
                        ],
                        "src": "19137:121:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "19306:71:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "19355:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "19364:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "19367:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "19357:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "19357:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "19357:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "19329:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "19340:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "19347:4:101",
                                            "type": "",
                                            "value": "0xff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "19336:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "19336:16:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "19326:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19326:27:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "19319:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19319:35:101"
                              },
                              "nodeType": "YulIf",
                              "src": "19316:2:101"
                            }
                          ]
                        },
                        "name": "validator_revert_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "19295:5:101",
                            "type": ""
                          }
                        ],
                        "src": "19263:114:101"
                      }
                    ]
                  },
                  "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_$11103_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_$11103_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_PrizeDistribution_$11103_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_$11103_calldata_ptr__to_t_struct$_PrizeDistribution_$11103_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_$11103_memory_ptr__to_t_struct$_PrizeDistribution_$11103_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_$11103_memory_ptr_t_uint32__to_t_struct$_PrizeDistribution_$11103_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_$11103_calldata_ptr_to_t_struct$_PrizeDistribution_$11103_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": 101,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063d0ebdbe711610066578063d0ebdbe7146101f3578063d30a5daf14610206578063e30c397814610226578063f2fde38b1461023757600080fd5b8063715018a6146101ac5780638da5cb5b146101b4578063caeef7ec146101c5578063ce336ce9146101e057600080fd5b806324c21446116100d357806324c21446146101555780633cd8e2d51461015d578063481c6a751461017d5780634e71e0c8146101a257600080fd5b80631124e1dc146100fa57806321e98ad9146101225780632439093a1461013f575b600080fd5b61010d610108366004611822565b61024a565b60405190151581526020015b60405180910390f35b61012a610317565b60405163ffffffff9091168152602001610119565b61014761039e565b604051610119929190611adb565b610147610671565b61017061016b366004611805565b610804565b6040516101199190611acc565b6002546001600160a01b03165b6040516001600160a01b039091168152602001610119565b6101aa610852565b005b6101aa6108e0565b6000546001600160a01b031661018a565b6104035468010000000000000000900463ffffffff1661012a565b61012a6101ee366004611822565b610955565b61010d610201366004611760565b610a84565b610219610214366004611790565b610afd565b60405161011991906119b9565b6001546001600160a01b031661018a565b6101aa610245366004611760565b610c08565b60003361025f6002546001600160a01b031690565b6001600160a01b0316148061028d5750336102826000546001600160a01b031690565b6001600160a01b0316145b6103045760405162461bcd60e51b815260206004820152602660248201527f4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f7260448201527f2d6f776e6572000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61030e8383610d44565b90505b92915050565b604080516060810182526104035463ffffffff80821680845264010000000083048216602085015268010000000000000000909204169282019290925260009161036357600091505090565b6020810151600363ffffffff8216610100811061038257610382611c7d565b6004020154610100900460ff1615610311575060400151919050565b6103a66116cd565b604080516060810182526104035463ffffffff8082168352640100000000820481166020840181905268010000000000000000909204169282019290925260009160039061010081106103fb576103fb611c7d565b604080516101208101825260049290920292909201805460ff8082168452610100820416602084015262010000810463ffffffff9081168486015266010000000000008204811660608501526a01000000000000000000008204811660808501526e01000000000000000000000000000082041660a0840152720100000000000000000000000000000000000090046cffffffffffffffffffffffffff1660c083015282516102008101938490529192909160e08401916001840190601090826000855b82829054906101000a900463ffffffff1663ffffffff16815260200190600401906020826003010492830192600103820291508084116104bf5750505092845250505060039190910154602090910152815190935063ffffffff166105275760009150509091565b825160ff1661065f5760408051610120810182526003805460ff8082168452610100820416602084015263ffffffff62010000820481168486015266010000000000008204811660608501526a01000000000000000000008204811660808501526e01000000000000000000000000000082041660a08401526cffffffffffffffffffffffffff72010000000000000000000000000000000000009091041660c083015282516102008101938490529192909160e0840191600490601090826000855b82829054906101000a900463ffffffff1663ffffffff16815260200190600401906020826003010492830192600103820291508084116105ea575050509284525050506003919091015460209182015282015182519194509061064e906001611b16565b6106589190611b76565b9150509091565b6040810151815161064e906001611b16565b6106796116cd565b604080516060810182526104035463ffffffff808216808452640100000000830482166020850152680100000000000000009092048116938301939093526000926003916106ca9184919061119916565b63ffffffff1661010081106106e1576106e1611c7d565b8251604080516101208101825260049390930293909301805460ff8082168552610100820416602085015262010000810463ffffffff9081168587015266010000000000008204811660608601526a01000000000000000000008204811660808601526e01000000000000000000000000000082041660a0850152720100000000000000000000000000000000000090046cffffffffffffffffffffffffff1660c084015283516102008101948590529093919291849160e08401916001840190601090826000855b82829054906101000a900463ffffffff1663ffffffff16815260200190600401906020826003010492830192600103820291508084116107aa57905050505050508152602001600382015481525050915092509250509091565b61080c6116cd565b604080516060810182526104035463ffffffff808216835264010000000082048116602084015268010000000000000000909104169181019190915261031190836112c9565b6001546001600160a01b031633146108ac5760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e65720060448201526064016102fb565b6001546108c1906001600160a01b031661140f565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b336108f36000546001600160a01b031690565b6001600160a01b0316146109495760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016102fb565b610953600061140f565b565b60003361096a6000546001600160a01b031690565b6001600160a01b0316146109c05760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016102fb565b604080516060810182526104035463ffffffff80821683526401000000008204811660208401526801000000000000000090910481169282019290925290600090610a0f908390879061119916565b90508360038263ffffffff166101008110610a2c57610a2c611c7d565b60040201610a3a8282611cc3565b9050508463ffffffff167f2d81da839b2f3db2ed762907f74df3acecdc30461dba4813694c225ba911e1f685604051610a739190611a08565b60405180910390a250929392505050565b600033610a996000546001600160a01b031690565b6001600160a01b031614610aef5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016102fb565b6103118261146c565b919050565b60408051606081810183526104035463ffffffff8082168452640100000000820481166020850152680100000000000000009091041692820192909252829060008267ffffffffffffffff811115610b5757610b57611c93565b604051908082528060200260200182016040528015610b9057816020015b610b7d6116cd565b815260200190600190039081610b755790505b50905060005b83811015610bfe57610bce83888884818110610bb457610bb4611c7d565b9050602002016020810190610bc99190611805565b6112c9565b828281518110610be057610be0611c7d565b60200260200101819052508080610bf690611c04565b915050610b96565b5095945050505050565b33610c1b6000546001600160a01b031690565b6001600160a01b031614610c715760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016102fb565b6001600160a01b038116610ced5760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016102fb565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b6000808363ffffffff1611610d9b5760405162461bcd60e51b815260206004820152601560248201527f4472617743616c632f647261772d69642d67742d30000000000000000000000060448201526064016102fb565b6000610dad6040840160208501611883565b60ff1611610dfd5760405162461bcd60e51b815260206004820152601e60248201527f4472617743616c632f6d6174636843617264696e616c6974792d67742d30000060448201526064016102fb565b610e0d6040830160208401611883565b610e1c9060ff16610100611b3e565b61ffff16610e2d6020840184611883565b60ff161115610e7e5760405162461bcd60e51b815260206004820152601f60248201527f4472617743616c632f62697452616e676553697a652d746f6f2d6c617267650060448201526064016102fb565b6000610e8d6020840184611883565b60ff1611610edd5760405162461bcd60e51b815260206004820152601a60248201527f4472617743616c632f62697452616e676553697a652d67742d3000000000000060448201526064016102fb565b6000610eef60a0840160808501611805565b63ffffffff1611610f425760405162461bcd60e51b815260206004820152601d60248201527f4472617743616c632f6d61785069636b73506572557365722d67742d3000000060448201526064016102fb565b6000610f5460c0840160a08501611805565b63ffffffff1611610fa75760405162461bcd60e51b815260206004820152601c60248201527f4472617743616c632f6578706972794475726174696f6e2d67742d300000000060448201526064016102fb565b60006010815b818110156110075760008560e0018260108110610fcc57610fcc611c7d565b602002016020810190610fdf9190611805565b63ffffffff169050610ff18185611afe565b9350508080610fff90611c04565b915050610fad565b50633b9aca0082111561105c5760405162461bcd60e51b815260206004820152601660248201527f4472617743616c632f74696572732d67742d313030250000000000000000000060448201526064016102fb565b604080516060810182526104035463ffffffff8082168352640100000000820481166020840181905268010000000000000000909204169282019290925290859060039061010081106110b1576110b1611c7d565b600402016110bf8282611cc3565b506110cc90508187611558565b80516104038054602084015160409485015163ffffffff90811668010000000000000000027fffffffffffffffffffffffffffffffffffffffff00000000ffffffffffffffff928216640100000000027fffffffffffffffffffffffffffffffffffffffffffffffff00000000000000009094169582169590951792909217169290921790559051908716907f2d81da839b2f3db2ed762907f74df3acecdc30461dba4813694c225ba911e1f690611185908890611a08565b60405180910390a250600195945050505050565b60006111a483611643565b80156111c05750826000015163ffffffff168263ffffffff1611155b61120c5760405162461bcd60e51b815260206004820152600f60248201527f4452422f6675747572652d64726177000000000000000000000000000000000060448201526064016102fb565b825160009061121c908490611b76565b9050836040015163ffffffff168163ffffffff161061127d5760405162461bcd60e51b815260206004820152601060248201527f4452422f657870697265642d647261770000000000000000000000000000000060448201526064016102fb565b600061129d856020015163ffffffff16866040015163ffffffff1661166b565b90506112c08163ffffffff168363ffffffff16876040015163ffffffff16611699565b95945050505050565b6112d16116cd565b60036112dd8484611199565b63ffffffff1661010081106112f4576112f4611c7d565b604080516101208101825260049290920292909201805460ff8082168452610100820416602084015262010000810463ffffffff9081168486015266010000000000008204811660608501526a01000000000000000000008204811660808501526e01000000000000000000000000000082041660a0840152720100000000000000000000000000000000000090046cffffffffffffffffffffffffff1660c083015282516102008101938490529192909160e08401916001840190601090826000855b82829054906101000a900463ffffffff1663ffffffff16815260200190600401906020826003010492830192600103820291508084116113b857905050505050508152602001600382015481525050905092915050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6002546000906001600160a01b039081169083168114156114f55760405162461bcd60e51b815260206004820152602360248201527f4d616e61676561626c652f6578697374696e672d6d616e616765722d6164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016102fb565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385811691821790925560405190918316907f9cb45c728de594dab506a1f1a8554e24c8eeaf983618d5ec5dd7bc6f3c49feee90600090a350600192915050565b604080516060810182526000808252602082018190529181019190915261157e83611643565b15806115a157508251611592906001611b16565b63ffffffff168263ffffffff16145b6115ed5760405162461bcd60e51b815260206004820152601260248201527f4452422f6d7573742d62652d636f6e746967000000000000000000000000000060448201526064016102fb565b60405180606001604052808363ffffffff168152602001611622856020015163ffffffff16866040015163ffffffff166116b1565b63ffffffff168152602001846040015163ffffffff16815250905092915050565b6000816020015163ffffffff1660001480156116645750815163ffffffff16155b1592915050565b60008161167a57506000610311565b61030e60016116898486611afe565b6116939190611b5f565b836116c1565b60006116a9836116898487611afe565b949350505050565b600061030e611693846001611afe565b600061030e8284611c3d565b6040805161012081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c081019190915260e08101611713611720565b8152602001600081525090565b6040518061020001604052806010906020820280368337509192915050565b8035610af881611eec565b8035610af881611f0a565b8035610af881611f1c565b60006020828403121561177257600080fd5b81356001600160a01b038116811461178957600080fd5b9392505050565b600080602083850312156117a357600080fd5b823567ffffffffffffffff808211156117bb57600080fd5b818501915085601f8301126117cf57600080fd5b8135818111156117de57600080fd5b8660208260051b85010111156117f357600080fd5b60209290920196919550909350505050565b60006020828403121561181757600080fd5b813561178981611f0a565b60008082840361032081121561183757600080fd5b833561184281611f0a565b92506103007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08201121561187557600080fd5b506020830190509250929050565b60006020828403121561189557600080fd5b813561178981611f1c565b8060005b60108110156118d35781356118b881611f0a565b63ffffffff16845260209384019391909101906001016118a4565b50505050565b8060005b60108110156118d357815163ffffffff168452602093840193909101906001016118dd565b60ff815116825260ff6020820151166020830152604081015161192d604084018263ffffffff169052565b506060810151611945606084018263ffffffff169052565b50608081015161195d608084018263ffffffff169052565b5060a081015161197560a084018263ffffffff169052565b5060c081015161199660c08401826cffffffffffffffffffffffffff169052565b5060e08101516119a960e08401826118d9565b5061010001516102e09190910152565b6020808252825182820181905260009190848201906040850190845b818110156119fc576119e8838551611902565b9284019261030092909201916001016119d5565b50909695505050505050565b61030081018235611a1881611f1c565b60ff168252611a2960208401611755565b60ff166020830152611a3d6040840161174a565b63ffffffff166040830152611a546060840161174a565b63ffffffff166060830152611a6b6080840161174a565b63ffffffff166080830152611a8260a0840161174a565b63ffffffff1660a0830152611a9960c0840161173f565b6cffffffffffffffffffffffffff1660c0830152611abd60e08084019085016118a0565b6102e092830135919092015290565b61030081016103118284611902565b6103208101611aea8285611902565b63ffffffff83166103008301529392505050565b60008219821115611b1157611b11611c51565b500190565b600063ffffffff808316818516808303821115611b3557611b35611c51565b01949350505050565b600061ffff80841680611b5357611b53611c67565b92169190910492915050565b600082821015611b7157611b71611c51565b500390565b600063ffffffff83811690831681811015611b9357611b93611c51565b039392505050565b81816000805b6010811015611bfc578335611bb581611f0a565b835463ffffffff600385901b81811b801990931693909116901b1617835560209390930192600490910190601c821115611bf457600091506001830192505b600101611ba1565b505050505050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415611c3657611c36611c51565b5060010190565b600082611c4c57611c4c611c67565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6000813561031181611eec565b6000813561031181611f0a565b8135611cce81611f1c565b60ff811690508154817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0082161783556020840135611d0b81611f1c565b61ff008160081b16837fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000841617178455505050611d84611d4d60408401611cb6565b82547fffffffffffffffffffffffffffffffffffffffffffffffffffff00000000ffff1660109190911b65ffffffff000016178255565b611dce611d9360608401611cb6565b82547fffffffffffffffffffffffffffffffffffffffffffff00000000ffffffffffff1660309190911b69ffffffff00000000000016178255565b611e1c611ddd60808401611cb6565b82547fffffffffffffffffffffffffffffffffffff00000000ffffffffffffffffffff1660509190911b6dffffffff0000000000000000000016178255565b611e6e611e2b60a08401611cb6565b82547fffffffffffffffffffffffffffff00000000ffffffffffffffffffffffffffff1660709190911b71ffffffff000000000000000000000000000016178255565b611ecd611e7d60c08401611ca9565b82547fff00000000000000000000000000ffffffffffffffffffffffffffffffffffff1660909190911b7effffffffffffffffffffffffff00000000000000000000000000000000000016178255565b611edd60e0830160018301611b9b565b6102e082013560038201555050565b6cffffffffffffffffffffffffff81168114611f0757600080fd5b50565b63ffffffff81168114611f0757600080fd5b60ff81168114611f0757600080fdfea2646970667358221220fe58078264c23fea006f3d81d198ad1419ad3f3722ad066dc6c72656a468d64564736f6c63430008060033",
              "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 INVALID PC SMOD DUP3 PUSH5 0xC23FEA006F RETURNDATASIZE DUP2 0xD1 SWAP9 0xAD EQ NOT 0xAD EXTCODEHASH CALLDATACOPY 0x22 0xAD MOD PUSH14 0xC6C72656A468D64564736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "904:8038:41:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5884:268;;;;;;:::i;:::-;;:::i;:::-;;;5479:14:101;;5472:22;5454:41;;5442:2;5427:18;5884:268:41;;;;;;;;3640:539;;;:::i;:::-;;;13013:10:101;13001:23;;;12983:42;;12971:2;12956:18;3640:539:41;12938:93:101;4645:1188:41;;;:::i;:::-;;;;;;;;:::i;4230:364::-;;;:::i;2630:235::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1403:89:32:-;1477:8;;-1:-1:-1;;;;;1477:8:32;1403:89;;;-1:-1:-1;;;;;4505:55:101;;;4487:74;;4475:2;4460:18;1403:89:32;4442:125:101;3147:129:33;;;:::i;:::-;;2508:94;;;:::i;1814:85::-;1860:7;1886:6;-1:-1:-1;;;;;1886:6:33;1814:85;;2457:122:41;2546:14;:26;;;;;;2457:122;;6203:461;;;;;;:::i;:::-;;:::i;1744:123:32:-;;;;;;:::i;:::-;;:::i;2916:673:41:-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;2014:101:33:-;2095:13;;-1:-1:-1;;;;;2095:13:33;2014:101;;2751:234;;;;;;:::i;:::-;;:::i;5884:268:41:-;6071:4;2861:10:32;2848:9;1477:8;;-1:-1:-1;;;;;1477:8:32;;1403:89;2848:9;-1:-1:-1;;;;;2848:23:32;;:48;;;-1:-1:-1;2886:10:32;2875:7;1860::33;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;2875:7:32;-1:-1:-1;;;;;2875:21:32;;2848:48;2840:99;;;;-1:-1:-1;;;2840:99:32;;9659:2:101;2840:99:32;;;9641:21:101;9698:2;9678:18;;;9671:30;9737:34;9717:18;;;9710:62;9808:8;9788:18;;;9781:36;9834:19;;2840:99:32;;;;;;;;;6094:51:41::1;6117:7;6126:18;6094:22;:51::i;:::-;6087:58;;2949:1:32;5884:268:41::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:41;;;;3640:539;-1:-1:-1;3640:539:41: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:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4981:65:41;;;-1:-1:-1;;;4981:65:41;;;;;;;;;;;5149:17;;4981:65;;-1:-1:-1;5149:22:41;;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:41;;;-1:-1:-1;;;5469:50:41;;;;;;;;;;;5568:16;;;5543:17;;5469:50;;-1:-1:-1;5568:16:41;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:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4230:364;;:::o;2630:235::-;2740:49;;:::i;:::-;2812:46;;;;;;;;2834:14;2812:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2850:7;2812:21;:46::i;3147:129:33:-;4050:13;;-1:-1:-1;;;;;4050:13:33;4036:10;:27;4028:71;;;;-1:-1:-1;;;4028:71:33;;7889:2:101;4028:71:33;;;7871:21:101;7928:2;7908:18;;;7901:30;7967:33;7947:18;;;7940:61;8018:18;;4028:71:33;7861:181:101;4028:71:33;3219:13:::1;::::0;3209:24:::1;::::0;-1:-1:-1;;;;;3219:13:33::1;3209:9;:24::i;:::-;3243:13;:26:::0;;-1:-1:-1;;3243:26:33::1;::::0;;3147:129::o;2508:94::-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:33;;3819:58;;;;-1:-1:-1;;;3819:58:33;;7178:2:101;3819:58:33;;;7160:21:101;7217:2;7197:18;;;7190:30;7256:26;7236:18;;;7229:54;7300:18;;3819:58:33;7150:174:101;3819:58:33;2574:21:::1;2592:1;2574:9;:21::i;:::-;2508:94::o:0;6203:461:41:-;6380:6;3838:10:33;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:33;;3819:58;;;;-1:-1:-1;;;3819:58:33;;7178:2:101;3819:58:33;;;7160:21:101;7217:2;7197:18;;;7190:30;7256:26;7236:18;;;7229:54;7300:18;;3819:58:33;7150:174:101;3819:58:33;6398:55:41::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:41;;6203:461;-1:-1:-1;;;6203:461:41:o;1744:123:32:-;1813:4;3838:10:33;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:33;;3819:58;;;;-1:-1:-1;;;3819:58:33;;7178:2:101;3819:58:33;;;7160:21:101;7217:2;7197:18;;;7190:30;7256:26;7236:18;;;7229:54;7300:18;;3819:58:33;7150:174:101;3819:58:33;1836:24:32::1;1848:11;1836;:24::i;3887:1:33:-;1744:123:32::0;;;:::o;2916:673:41:-;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:41;2916:673;-1:-1:-1;;;;;2916:673:41:o;2751:234:33:-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:33;;3819:58;;;;-1:-1:-1;;;3819:58:33;;7178:2:101;3819:58:33;;;7160:21:101;7217:2;7197:18;;;7190:30;7256:26;7236:18;;;7229:54;7300:18;;3819:58:33;7150:174:101;3819:58:33;-1:-1:-1;;;;;2834:23:33;::::1;2826:73;;;::::0;-1:-1:-1;;;2826:73:33;;10411:2:101;2826:73:33::1;::::0;::::1;10393:21:101::0;10450:2;10430:18;;;10423:30;10489:34;10469:18;;;10462:62;10560:7;10540:18;;;10533:35;10585:19;;2826:73:33::1;10383:227:101::0;2826:73:33::1;2910:13;:25:::0;;-1:-1:-1;;2910:25:33::1;-1:-1:-1::0;;;;;2910:25:33;::::1;::::0;;::::1;::::0;;;2951:27:::1;::::0;::::1;::::0;-1:-1:-1;;2951:27:33::1;2751:234:::0;:::o;7342:1598:41:-;7502:4;7536:1;7526:7;:11;;;7518:45;;;;-1:-1:-1;;;7518:45:41;;8593:2:101;7518:45:41;;;8575:21:101;8632:2;8612:18;;;8605:30;8671:23;8651:18;;;8644:51;8712:18;;7518:45:41;8565:171:101;7518:45:41;7619:1;7581:35;;;;;;;;:::i;:::-;:39;;;7573:82;;;;-1:-1:-1;;;7573:82:41;;9300:2:101;7573:82:41;;;9282:21:101;9339:2;9319:18;;;9312:30;9378:32;9358:18;;;9351:60;9428:18;;7573:82:41;9272:180:101;7573:82:41;7727:35;;;;;;;;:::i;:::-;7721:41;;;;:3;:41;:::i;:::-;7686:76;;:31;;;;:18;:31;:::i;:::-;:76;;;;7665:154;;;;-1:-1:-1;;;7665:154:41;;6818:2:101;7665:154:41;;;6800:21:101;6857:2;6837:18;;;6830:30;6896:33;6876:18;;;6869:61;6947:18;;7665:154:41;6790:181:101;7665:154:41;7872:1;7838:31;;;;:18;:31;:::i;:::-;:35;;;7830:74;;;;-1:-1:-1;;;7830:74:41;;5708:2:101;7830:74:41;;;5690:21:101;5747:2;5727:18;;;5720:30;5786:28;5766:18;;;5759:56;5832:18;;7830:74:41;5680:176:101;7830:74:41;7959:1;7922:34;;;;;;;;:::i;:::-;:38;;;7914:80;;;;-1:-1:-1;;;7914:80:41;;7531:2:101;7914:80:41;;;7513:21:101;7570:2;7550:18;;;7543:30;7609:31;7589:18;;;7582:59;7658:18;;7914:80:41;7503:179:101;7914:80:41;8048:1;8012:33;;;;;;;;:::i;:::-;:37;;;8004:78;;;;-1:-1:-1;;;8004:78:41;;8943:2:101;8004:78:41;;;8925:21:101;8982:2;8962:18;;;8955:30;9021;9001:18;;;8994:58;9069:18;;8004:78:41;8915:178:101;8004:78:41;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:41;8320:46;8380:21;;:::i;:::-;;;8306:106;8297:7;;;;;:::i;:::-;;;;8252:160;;;;1446:3;8501:13;:30;;8493:65;;;;-1:-1:-1;;;8493:65:41;;6063:2:101;8493:65:41;;;6045:21:101;6102:2;6082:18;;;6075:30;6141:24;6121:18;;;6114:52;6183:18;;8493:65:41;6035:172:101;8493:65:41;8569:55;;;;;;;;8610:14;8569:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8741:18;;8693:27;;8569:55;8693:45;;;;;;:::i;:::-;;;;:66;;:45;:66;:::i;:::-;-1:-1:-1;8826:20:41;;-1:-1:-1;8826:6:41;8838:7;8826:11;:20::i;:::-;8809:37;;:14;:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8862:49;;;;;;;;;;8892:18;;8862:49;:::i;:::-;;;;;;;;-1:-1:-1;8929:4:41;;7342:1598;-1:-1:-1;;;;;7342:1598:41:o;1587:517:58:-;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:58;;8249:2:101;1685:83:58;;;8231:21:101;8288:2;8268:18;;;8261:30;8327:17;8307:18;;;8300:45;8362:18;;1685:83:58;8221:165:101;1685:83:58;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:58;;10066:2:101;1838:62:58;;;10048:21:101;10105:2;10085:18;;;10078:30;10144:18;10124;;;10117:46;10180:18;;1838:62:58;10038:166:101;1838:62:58;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:58:o;6879:268:41:-;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:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6879:268;;;;:::o;3470:174:33:-;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:33;;;-1:-1:-1;;3562:18:33;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;2109:326:32:-;2211:8;;2168:4;;-1:-1:-1;;;;;2211:8:32;;;;2238:31;;;;;2230:79;;;;-1:-1:-1;;;2230:79:32;;6414:2:101;2230:79:32;;;6396:21:101;6453:2;6433:18;;;6426:30;6492:34;6472:18;;;6465:62;6563:5;6543:18;;;6536:33;6586:19;;2230:79:32;6386:225:101;2230:79:32;2320:8;:22;;-1:-1:-1;;2320:22:32;-1:-1:-1;;;;;2320:22:32;;;;;;;;;2358:49;;2320:22;;2358:49;;;;;-1:-1:-1;;2358:49:32;-1:-1:-1;2424:4:32;;2109:326;-1:-1:-1;;2109:326:32:o;919:438:58:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;1029:22:58;1043:7;1029:13;:22::i;:::-;1028:23;:60;;;-1:-1:-1;1066:18:58;;:22;;1087:1;1066:22;:::i;:::-;1055:33;;:7;:33;;;1028:60;1020:91;;;;-1:-1:-1;;;1020:91:58;;10817:2:101;1020:91:58;;;10799:21:101;10856:2;10836:18;;;10829:30;10895:20;10875:18;;;10868:48;10933:18;;1020:91:58;10789:168:101;1020:91:58;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:58;;:23;;;692:49;690:52;;598:151;-1:-1:-1;;598:151:58:o;1666:262:62:-;1776:7;1803:17;1799:56;;-1:-1:-1;1843:1:62;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:62: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:101:-;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:101;631:54;624:5;621:65;611:2;;700:1;697;690:12;611:2;723:5;495:239;-1:-1:-1;;;495:239:101: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:101;;-1:-1:-1;;;;843:510:101: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:473::-;1713:6;1721;1765:9;1756:7;1752:23;1795:3;1791:2;1787:12;1784:2;;;1812:1;1809;1802:12;1784:2;1851:9;1838:23;1870:30;1894:5;1870:30;:::i;:::-;1919:5;-1:-1:-1;2017:3:101;1948:66;1940:75;;1936:85;1933:2;;;2034:1;2031;2024:12;1933:2;;2072;2061:9;2057:18;2047:28;;1732:349;;;;;:::o;2086:243::-;2143:6;2196:2;2184:9;2175:7;2171:23;2167:32;2164:2;;;2212:1;2209;2202:12;2164:2;2251:9;2238:23;2270:29;2293:5;2270:29;:::i;2334:438::-;2435:5;2458:1;2468:298;2482:4;2479:1;2476:11;2468:298;;;2557:6;2544:20;2577:32;2601:7;2577:32;:::i;:::-;2647:10;2634:24;2622:37;;2682:4;2706:12;;;;2741:15;;;;;2502:1;2495:9;2468:298;;;2472:3;;2392:380;;:::o;2777:342::-;2869:5;2892:1;2902:211;2916:4;2913:1;2910:11;2902:211;;;2979:13;;2994:10;2975:30;2963:43;;3029:4;3053:12;;;;3088:15;;;;2936:1;2929:9;2902:211;;3124:915;3225:4;3217:5;3211:12;3207:23;3202:3;3195:36;3292:4;3284;3277:5;3273:16;3267:23;3263:34;3256:4;3251:3;3247:14;3240:58;3344:4;3337:5;3333:16;3327:23;3359:47;3400:4;3395:3;3391:14;3377:12;4238:10;4227:22;4215:35;;4205:51;3359:47;;3454:4;3447:5;3443:16;3437:23;3469:49;3512:4;3507:3;3503:14;3487;4238:10;4227:22;4215:35;;4205:51;3469:49;;3566:4;3559:5;3555:16;3549:23;3581:49;3624:4;3619:3;3615:14;3599;4238:10;4227:22;4215:35;;4205:51;3581:49;;3678:4;3671:5;3667:16;3661:23;3693:49;3736:4;3731:3;3727:14;3711;4238:10;4227:22;4215:35;;4205:51;3693:49;;3790:4;3783:5;3779:16;3773:23;3805:50;3849:4;3844:3;3840:14;3824;4121:28;4110:40;4098:53;;4088:69;3805:50;;3903:4;3896:5;3892:16;3886:23;3918:55;3967:4;3962:3;3958:14;3942;3918:55;:::i;:::-;-1:-1:-1;4024:6:101;4013:18;4007:25;3998:6;3989:16;;;;3982:51;3185:854::o;4572:737::-;4815:2;4867:21;;;4937:13;;4840:18;;;4959:22;;;4786:4;;4815:2;5038:15;;;;5012:2;4997:18;;;4786:4;5081:202;5095:6;5092:1;5089:13;5081:202;;;5144:55;5195:3;5186:6;5180:13;5144:55;:::i;:::-;5258:15;;;;5228:6;5219:16;;;;;5117:1;5110:9;5081:202;;;-1:-1:-1;5300:3:101;;4795:514;-1:-1:-1;;;;;;4795:514:101:o;10962:1217::-;11170:3;11155:19;;11196:20;;11225:29;11196:20;11225:29;:::i;:::-;11292:4;11281:16;11263:35;;11322;11351:4;11339:17;;11322:35;:::i;:::-;4328:4;4317:16;11407:4;11392:20;;4305:29;11437:36;11467:4;11455:17;;11437:36;:::i;:::-;4238:10;4227:22;11524:4;11509:20;;4215:35;11554:36;11584:4;11572:17;;11554:36;:::i;:::-;4238:10;4227:22;11641:4;11626:20;;4215:35;11671:36;11701:4;11689:17;;11671:36;:::i;:::-;4238:10;4227:22;11758:4;11743:20;;4215:35;11788:36;11818:4;11806:17;;11788:36;:::i;:::-;4238:10;4227:22;11875:4;11860:20;;4215:35;11905:37;11936:4;11924:17;;11905:37;:::i;:::-;4121:28;4110:40;11994:4;11979:20;;4098:53;12009:73;12076:4;12061:20;;;;12042:17;;12009:73;:::i;:::-;12101:6;12156:15;;;12143:29;12123:18;;;;12116:57;11137:1042;:::o;12184:279::-;12390:3;12375:19;;12403:54;12379:9;12439:6;12403:54;:::i;12468:366::-;12700:3;12685:19;;12713:54;12689:9;12749:6;12713:54;:::i;:::-;12816:10;12808:6;12804:23;12798:3;12787:9;12783:19;12776:52;12667:167;;;;;:::o;13036:128::-;13076:3;13107:1;13103:6;13100:1;13097:13;13094:2;;;13113:18;;:::i;:::-;-1:-1:-1;13149:9:101;;13084:80::o;13169:228::-;13208:3;13236:10;13273:2;13270:1;13266:10;13303:2;13300:1;13296:10;13334:3;13330:2;13326:12;13321:3;13318:21;13315:2;;;13342:18;;:::i;:::-;13378:13;;13216:181;-1:-1:-1;;;;13216:181:101:o;13402:187::-;13441:1;13467:6;13500:2;13497:1;13493:10;13522:3;13512:2;;13529:18;;:::i;:::-;13567:10;;13563:20;;;;;13447:142;-1:-1:-1;;13447:142:101:o;13594:125::-;13634:4;13662:1;13659;13656:8;13653:2;;;13667:18;;:::i;:::-;-1:-1:-1;13704:9:101;;13643:76::o;13724:221::-;13763:4;13792:10;13852;;;;13822;;13874:12;;;13871:2;;;13889:18;;:::i;:::-;13926:13;;13772:173;-1:-1:-1;;;13772:173:101:o;13950:887::-;14063:5;14096:4;14130:1;14149:13;14171:660;14185:4;14182:1;14179:11;14171:660;;;14260:6;14247:20;14280:32;14304:7;14280:32;:::i;:::-;14368:18;;14335:10;14420:1;14416:21;;;14462:18;;;14524:9;;14516:18;;;14555:16;;;;14540:32;;14536:43;14513:67;14493:88;;14616:2;14604:15;;;;;14668:1;14649:21;;;;14704:2;14686:21;;14683:2;;;14755:1;14738:18;;14805:1;14792:11;14788:19;14773:34;;14683:2;14205:1;14198:9;14171:660;;;14175:3;;;;14039:798;;:::o;14842:195::-;14881:3;14912:66;14905:5;14902:77;14899:2;;;14982:18;;:::i;:::-;-1:-1:-1;15029:1:101;15018:13;;14889:148::o;15042:112::-;15074:1;15100;15090:2;;15105:18;;:::i;:::-;-1:-1:-1;15139:9:101;;15080:74::o;15159:184::-;-1:-1:-1;;;15208:1:101;15201:88;15308:4;15305:1;15298:15;15332:4;15329:1;15322:15;15348:184;-1:-1:-1;;;15397:1:101;15390:88;15497:4;15494:1;15487:15;15521:4;15518:1;15511:15;15537:184;-1:-1:-1;;;15586:1:101;15579:88;15686:4;15683:1;15676:15;15710:4;15707:1;15700:15;15726:184;-1:-1:-1;;;15775:1:101;15768:88;15875:4;15872:1;15865:15;15899:4;15896:1;15889:15;15915:176;15960:11;16012:3;15999:17;16025:31;16050:5;16025:31;:::i;16096:174::-;16140:11;16192:3;16179:17;16205:30;16229:5;16205:30;:::i;16275:1338::-;16462:5;16449:19;16477:31;16500:7;16477:31;:::i;:::-;16540:4;16531:7;16527:18;16517:28;;16570:4;16564:11;16677:2;16608:66;16604:2;16600:75;16597:83;16591:4;16584:97;16729:2;16722:5;16718:14;16705:28;16742:31;16765:7;16742:31;:::i;:::-;16904:5;16894:7;16891:1;16887:15;16883:27;16878:2;16809:66;16805:2;16801:75;16798:83;16795:116;16789:4;16782:130;;;;16921:97;16975:42;17013:2;17006:5;17002:14;16975:42;:::i;:::-;18568:11;;18612:66;18604:75;18689:2;18685:14;;;;18701;18681:35;18601:116;18588:130;;18548:176;16921:97;17027;17081:42;17119:2;17112:5;17108:14;17081:42;:::i;:::-;18823:11;;18867:66;18859:75;18944:2;18940:14;;;;18956:22;18936:43;18856:124;18843:138;;18803:184;17027:97;17133:99;17188:43;17226:3;17219:5;17215:15;17188:43;:::i;:::-;17713:11;;17757:66;17749:75;17834:2;17830:14;;;;17846:30;17826:51;17746:132;17733:146;;17693:192;17133:99;17241:96;17293:43;17331:3;17324:5;17320:15;17293:43;:::i;:::-;17982:11;;18026:66;18018:75;18103:3;18099:15;;;;18116:38;18095:60;18015:141;18002:155;;17962:201;17241:96;17346:99;17400:44;17439:3;17432:5;17428:15;17400:44;:::i;:::-;18262:11;;18306:66;18298:75;18383:3;18379:15;;;;18396:64;18375:86;18295:167;18282:181;;18242:227;17346:99;17454:93;17542:3;17535:5;17531:15;17527:1;17521:4;17517:12;17454:93;:::i;:::-;17601:3;17594:5;17590:15;17577:29;17573:1;17567:4;17563:12;17556:51;16424:1189;;:::o;18992:140::-;19078:28;19071:5;19067:40;19060:5;19057:51;19047:2;;19122:1;19119;19112:12;19047:2;19037:95;:::o;19137:121::-;19222:10;19215:5;19211:22;19204:5;19201:33;19191:2;;19248:1;19245;19238:12;19263:114;19347:4;19340:5;19336:16;19329:5;19326:27;19316:2;;19367:1;19364;19357: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 IPrizeDistributionSource.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 IPrizeDistributionSource.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 IPrizeDistributionSource.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 IPrizeDistributionSource.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 IPrizeDistributionSource.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 IPrizeDistributionSource.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 IPrizeDistributionSource.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 IPrizeDistributionSource.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 IPrizeDistributionSource\\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\":\"0xdfcc3dc33457e44d8917f33185925eff78ea21e5018250b3accf2db8a7aa0242\",\"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\\nimport \\\"./IPrizeDistributionSource.sol\\\";\\n\\n/** @title  IPrizeDistributionBuffer\\n * @author PoolTogether Inc Team\\n * @notice The PrizeDistributionBuffer interface.\\n */\\ninterface IPrizeDistributionBuffer is IPrizeDistributionSource {\\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 (\\n            IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution,\\n            uint32 drawId\\n        );\\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 (\\n            IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution,\\n            uint32 drawId\\n        );\\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(\\n        uint32 drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata draw\\n    ) external returns (uint32);\\n}\\n\",\"keccak256\":\"0xa66b0d958502adda03e80924381bae30802f1c8d80823a9b787b8c66f6a7d835\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionSource.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/** @title IPrizeDistributionSource\\n * @author PoolTogether Inc Team\\n * @notice The PrizeDistributionSource interface.\\n */\\ninterface IPrizeDistributionSource {\\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 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 (PrizeDistribution[] memory);\\n}\\n\",\"keccak256\":\"0x05ec47edc2684790a869a866576e7338229cc4eeafe1171bfc8cd7fa1c0cc9a0\",\"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": 5205,
                "contract": "@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol:PrizeDistributionBuffer",
                "label": "_owner",
                "offset": 0,
                "slot": "0",
                "type": "t_address"
              },
              {
                "astId": 5207,
                "contract": "@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol:PrizeDistributionBuffer",
                "label": "_pendingOwner",
                "offset": 0,
                "slot": "1",
                "type": "t_address"
              },
              {
                "astId": 5103,
                "contract": "@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol:PrizeDistributionBuffer",
                "label": "_manager",
                "offset": 0,
                "slot": "2",
                "type": "t_address"
              },
              {
                "astId": 8326,
                "contract": "@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol:PrizeDistributionBuffer",
                "label": "prizeDistributionRingBuffer",
                "offset": 0,
                "slot": "3",
                "type": "t_array(t_struct(PrizeDistribution)11103_storage)256_storage"
              },
              {
                "astId": 8330,
                "contract": "@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol:PrizeDistributionBuffer",
                "label": "bufferMetadata",
                "offset": 0,
                "slot": "1027",
                "type": "t_struct(Buffer)11836_storage"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_array(t_struct(PrizeDistribution)11103_storage)256_storage": {
                "base": "t_struct(PrizeDistribution)11103_storage",
                "encoding": "inplace",
                "label": "struct IPrizeDistributionSource.PrizeDistribution[256]",
                "numberOfBytes": "32768"
              },
              "t_array(t_uint32)16_storage": {
                "base": "t_uint32",
                "encoding": "inplace",
                "label": "uint32[16]",
                "numberOfBytes": "64"
              },
              "t_struct(Buffer)11836_storage": {
                "encoding": "inplace",
                "label": "struct DrawRingBufferLib.Buffer",
                "members": [
                  {
                    "astId": 11831,
                    "contract": "@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol:PrizeDistributionBuffer",
                    "label": "lastDrawId",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_uint32"
                  },
                  {
                    "astId": 11833,
                    "contract": "@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol:PrizeDistributionBuffer",
                    "label": "nextIndex",
                    "offset": 4,
                    "slot": "0",
                    "type": "t_uint32"
                  },
                  {
                    "astId": 11835,
                    "contract": "@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol:PrizeDistributionBuffer",
                    "label": "cardinality",
                    "offset": 8,
                    "slot": "0",
                    "type": "t_uint32"
                  }
                ],
                "numberOfBytes": "32"
              },
              "t_struct(PrizeDistribution)11103_storage": {
                "encoding": "inplace",
                "label": "struct IPrizeDistributionSource.PrizeDistribution",
                "members": [
                  {
                    "astId": 11084,
                    "contract": "@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol:PrizeDistributionBuffer",
                    "label": "bitRangeSize",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_uint8"
                  },
                  {
                    "astId": 11086,
                    "contract": "@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol:PrizeDistributionBuffer",
                    "label": "matchCardinality",
                    "offset": 1,
                    "slot": "0",
                    "type": "t_uint8"
                  },
                  {
                    "astId": 11088,
                    "contract": "@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol:PrizeDistributionBuffer",
                    "label": "startTimestampOffset",
                    "offset": 2,
                    "slot": "0",
                    "type": "t_uint32"
                  },
                  {
                    "astId": 11090,
                    "contract": "@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol:PrizeDistributionBuffer",
                    "label": "endTimestampOffset",
                    "offset": 6,
                    "slot": "0",
                    "type": "t_uint32"
                  },
                  {
                    "astId": 11092,
                    "contract": "@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol:PrizeDistributionBuffer",
                    "label": "maxPicksPerUser",
                    "offset": 10,
                    "slot": "0",
                    "type": "t_uint32"
                  },
                  {
                    "astId": 11094,
                    "contract": "@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol:PrizeDistributionBuffer",
                    "label": "expiryDuration",
                    "offset": 14,
                    "slot": "0",
                    "type": "t_uint32"
                  },
                  {
                    "astId": 11096,
                    "contract": "@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol:PrizeDistributionBuffer",
                    "label": "numberOfPicks",
                    "offset": 18,
                    "slot": "0",
                    "type": "t_uint104"
                  },
                  {
                    "astId": 11100,
                    "contract": "@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol:PrizeDistributionBuffer",
                    "label": "tiers",
                    "offset": 0,
                    "slot": "1",
                    "type": "t_array(t_uint32)16_storage"
                  },
                  {
                    "astId": 11102,
                    "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": {
                "@_5230": {
                  "entryPoint": null,
                  "id": 5230,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_8868": {
                  "entryPoint": null,
                  "id": 8868,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_setDrawCalculator_9152": {
                  "entryPoint": 343,
                  "id": 9152,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setOwner_5327": {
                  "entryPoint": 263,
                  "id": 5327,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "abi_decode_tuple_t_addresst_contract$_IERC20_$890t_contract$_IDrawCalculator_$11003_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:1477:101",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:101",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "168:404:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "214:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "223:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "226:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "216:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "216:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "216:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "189:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "198:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "185:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "185:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "210:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "181:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "181:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "178:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "239:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "258:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "252:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "252:16:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "243:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "302:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "277:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "277:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "277:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "317:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "327:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "317:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "341:40:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "366:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "377:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "362:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "362:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "356:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "356:25:101"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "345:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "415:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "390:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "390:33:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "390:33:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "432:17:101",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "442:7:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "432:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "458:40:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "483:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "494:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "479:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "479:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "473:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "473:25:101"
                              },
                              "variables": [
                                {
                                  "name": "value_2",
                                  "nodeType": "YulTypedName",
                                  "src": "462:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "532:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "507:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "507:33:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "507:33:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "549:17:101",
                              "value": {
                                "name": "value_2",
                                "nodeType": "YulIdentifier",
                                "src": "559:7:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "549:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_contract$_IERC20_$890t_contract$_IDrawCalculator_$11003_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "118:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "129:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "141:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "149:6:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "157:6:101",
                            "type": ""
                          }
                        ],
                        "src": "14:558:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "751:180:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "768:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "779:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "761:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "761:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "761:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "802:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "813:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "798:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "798:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "818:2:101",
                                    "type": "",
                                    "value": "30"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "791:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "791:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "791:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "841:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "852:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "837:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "837:18:101"
                                  },
                                  {
                                    "hexValue": "5072697a654469737472696275746f722f63616c632d6e6f742d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "857:32:101",
                                    "type": "",
                                    "value": "PrizeDistributor/calc-not-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "830:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "830:60:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "830:60:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "899:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "911:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "922:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "907:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "907:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "899:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_3daee906d37e8c0f46e2c60e574e2b37b052a3c599e264a644a90cb13d2b8f3a__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "728:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "742:4:101",
                            "type": ""
                          }
                        ],
                        "src": "577:354:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1110:229:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1127:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1138:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1120:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1120:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1120:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1161:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1172:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1157:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1157:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1177:2:101",
                                    "type": "",
                                    "value": "39"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1150:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1150:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1150:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1200:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1211:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1196:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1196:18:101"
                                  },
                                  {
                                    "hexValue": "5072697a654469737472696275746f722f746f6b656e2d6e6f742d7a65726f2d",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "1216:34:101",
                                    "type": "",
                                    "value": "PrizeDistributor/token-not-zero-"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1189:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1189:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1189:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1271:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1282:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1267:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1267:18:101"
                                  },
                                  {
                                    "hexValue": "61646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "1287:9:101",
                                    "type": "",
                                    "value": "address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1260:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1260:37:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1260:37:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1306:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1318:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1329:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1314:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1314:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1306:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_b09861a6e3472a0ae06dbc1049ae23a78f713c98749e48e17d9e49fc97adfcdd__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1087:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1101:4:101",
                            "type": ""
                          }
                        ],
                        "src": "936:403:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1389:86:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1453:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1462:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1465:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1455:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1455:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1455:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1412:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1423:5:101"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "1438:3:101",
                                                    "type": "",
                                                    "value": "160"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "1443:1:101",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1434:3:101"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "1434:11:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1447:1:101",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "1430:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1430:19:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1419:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1419:31:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1409:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1409:42:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1402:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1402:50:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1399:2:101"
                            }
                          ]
                        },
                        "name": "validator_revert_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "1378:5:101",
                            "type": ""
                          }
                        ],
                        "src": "1344:131:101"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_tuple_t_addresst_contract$_IERC20_$890t_contract$_IDrawCalculator_$11003_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": 101,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "60a06040523480156200001157600080fd5b50604051620014b5380380620014b58339810160408190526200003491620001f9565b82620000408162000107565b506200004c8162000157565b6001600160a01b038216620000b85760405162461bcd60e51b815260206004820152602760248201527f5072697a654469737472696275746f722f746f6b656e2d6e6f742d7a65726f2d6044820152666164647265737360c81b60648201526084015b60405180910390fd5b6001600160601b0319606083901b166080526040516001600160a01b038316907fa07c91c183e42229e705a9795a1c06d76528b673788b849597364528c96eefb790600090a250505062000266565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038116620001af5760405162461bcd60e51b815260206004820152601e60248201527f5072697a654469737472696275746f722f63616c632d6e6f742d7a65726f00006044820152606401620000af565b600280546001600160a01b0319166001600160a01b0383169081179091556040517fff37eafdc3779d387d79dcf458fdc36536d857426f03a53204694f8fbb0d8a6b90600090a250565b6000806000606084860312156200020f57600080fd5b83516200021c816200024d565b60208501519093506200022f816200024d565b604085015190925062000242816200024d565b809150509250925092565b6001600160a01b03811681146200026357600080fd5b50565b60805160601c61122a6200028b6000396000818160d00152610a5f015261122a6000f3fe608060405234801561001057600080fd5b50600436106100c95760003560e01c8063715018a611610081578063bb7d4e2d1161005b578063bb7d4e2d14610198578063e30c3978146101ab578063f2fde38b146101bc57600080fd5b8063715018a61461015e5780638da5cb5b14610166578063b7f892d11461017757600080fd5b806344004cc1116100b257806344004cc11461011e578063454a8140146101415780634e71e0c81461015457600080fd5b806321df0da7146100ce5780632d680cfa1461010d575b600080fd5b7f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b0390911681526020015b60405180910390f35b6002546001600160a01b03166100f0565b61013161012c366004610fb9565b6101cf565b6040519015158152602001610104565b6100f061014f366004610dbf565b6103a3565b61015c61041f565b005b61015c6104ad565b6000546001600160a01b03166100f0565b61018a610185366004610e90565b610522565b604051908152602001610104565b61018a6101a6366004610ddc565b610551565b6001546001600160a01b03166100f0565b61015c6101ca366004610dbf565b610787565b6000336101e46000546001600160a01b031690565b6001600160a01b03161461023f5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064015b60405180910390fd5b6001600160a01b0383166102bb5760405162461bcd60e51b815260206004820152602b60248201527f5072697a654469737472696275746f722f726563697069656e742d6e6f742d7a60448201527f65726f2d616464726573730000000000000000000000000000000000000000006064820152608401610236565b6001600160a01b0384166103375760405162461bcd60e51b815260206004820152602760248201527f5072697a654469737472696275746f722f45524332302d6e6f742d7a65726f2d60448201527f61646472657373000000000000000000000000000000000000000000000000006064820152608401610236565b61034b6001600160a01b03851684846108c3565b826001600160a01b0316846001600160a01b03167fbfed55bdcd242e3dd0f60ddd7d1e87c67f61c34cd9527b3e6455d841b10253628460405161039091815260200190565b60405180910390a35060015b9392505050565b6000336103b86000546001600160a01b031690565b6001600160a01b03161461040e5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610236565b61041782610948565b50805b919050565b6001546001600160a01b031633146104795760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572006044820152606401610236565b60015461048e906001600160a01b03166109f5565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b336104c06000546001600160a01b031690565b6001600160a01b0316146105165760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610236565b61052060006109f5565b565b6001600160a01b038216600090815260036020908152604080832063ffffffff8516845290915281205461039c565b6002546040517faaca392e000000000000000000000000000000000000000000000000000000008152600091829182916001600160a01b03169063aaca392e906105a7908b908b908b908b908b90600401611031565b60006040518083038186803b1580156105bf57600080fd5b505afa1580156105d3573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526105fb9190810190610ec5565b50805190915060005b8181101561076f576000898983818110610620576106206111b0565b90506020020160208101906106359190610ffa565b9050600084838151811061064b5761064b6111b0565b6020908102919091018101516001600160a01b038e16600090815260038352604080822063ffffffff8716835290935291822054909250908183116106d25760405162461bcd60e51b815260206004820152601c60248201527f5072697a654469737472696275746f722f7a65726f2d7061796f7574000000006044820152606401610236565b506001600160a01b038d16600090815260036020908152604080832063ffffffff87168452909152902082905580820361070c8189611119565b97508363ffffffff168e6001600160a01b03167fda18d31fbb73ed04b84307ef1bc6602e02c855af9f65b53ed10ba43e8d35b7dd8360405161075091815260200190565b60405180910390a350505050808061076790611161565b915050610604565b5061077a8984610a52565b5090979650505050505050565b3361079a6000546001600160a01b031690565b6001600160a01b0316146107f05760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610236565b6001600160a01b03811661086c5760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610236565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052610943908490610a8a565b505050565b6001600160a01b03811661099e5760405162461bcd60e51b815260206004820152601e60248201527f5072697a654469737472696275746f722f63616c632d6e6f742d7a65726f00006044820152606401610236565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517fff37eafdc3779d387d79dcf458fdc36536d857426f03a53204694f8fbb0d8a6b90600090a250565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610a866001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001683836108c3565b5050565b6000610adf826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610b6f9092919063ffffffff16565b8051909150156109435780806020019051810190610afd9190610f97565b6109435760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610236565b6060610b7e8484600085610b86565b949350505050565b606082471015610bfe5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610236565b843b610c4c5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610236565b600080866001600160a01b03168587604051610c689190611015565b60006040518083038185875af1925050503d8060008114610ca5576040519150601f19603f3d011682016040523d82523d6000602084013e610caa565b606091505b5091509150610cba828286610cc5565b979650505050505050565b60608315610cd457508161039c565b825115610ce45782518084602001fd5b8160405162461bcd60e51b815260040161023691906110b5565b60008083601f840112610d1057600080fd5b50813567ffffffffffffffff811115610d2857600080fd5b602083019150836020828501011115610d4057600080fd5b9250929050565b600082601f830112610d5857600080fd5b815167ffffffffffffffff811115610d7257610d726111c6565b610d856020601f19601f840116016110e8565b818152846020838601011115610d9a57600080fd5b610b7e826020830160208701611131565b803563ffffffff8116811461041a57600080fd5b600060208284031215610dd157600080fd5b813561039c816111dc565b600080600080600060608688031215610df457600080fd5b8535610dff816111dc565b9450602086013567ffffffffffffffff80821115610e1c57600080fd5b818801915088601f830112610e3057600080fd5b813581811115610e3f57600080fd5b8960208260051b8501011115610e5457600080fd5b602083019650809550506040880135915080821115610e7257600080fd5b50610e7f88828901610cfe565b969995985093965092949392505050565b60008060408385031215610ea357600080fd5b8235610eae816111dc565b9150610ebc60208401610dab565b90509250929050565b60008060408385031215610ed857600080fd5b825167ffffffffffffffff80821115610ef057600080fd5b818501915085601f830112610f0457600080fd5b8151602082821115610f1857610f186111c6565b8160051b610f278282016110e8565b8381528281019086840183880185018c1015610f4257600080fd5b600097505b85881015610f65578051835260019790970196918401918401610f47565b509289015192975091945050505080821115610f8057600080fd5b50610f8d85828601610d47565b9150509250929050565b600060208284031215610fa957600080fd5b8151801515811461039c57600080fd5b600080600060608486031215610fce57600080fd5b8335610fd9816111dc565b92506020840135610fe9816111dc565b929592945050506040919091013590565b60006020828403121561100c57600080fd5b61039c82610dab565b60008251611027818460208701611131565b9190910192915050565b6001600160a01b038616815260606020808301829052908201859052600090869060808401835b888110156110815763ffffffff61106e85610dab565b1682529282019290820190600101611058565b5084810360408601528581528587838301376000818701830152601f909501601f1916909401909301979650505050505050565b60208152600082518060208401526110d4816040850160208701611131565b601f01601f19169190910160400192915050565b604051601f8201601f1916810167ffffffffffffffff81118282101715611111576111116111c6565b604052919050565b6000821982111561112c5761112c61119a565b500190565b60005b8381101561114c578181015183820152602001611134565b8381111561115b576000848401525b50505050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156111935761119361119a565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146111f157600080fd5b5056fea2646970667358221220cee5890e71f082a70269b41403f894b0579b8c95587bfbb025edd2e6202c138964736f6c63430008060033",
              "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 0xCE 0xE5 DUP10 0xE PUSH18 0xF082A70269B41403F894B0579B8C95587BFB 0xB0 0x25 0xED 0xD2 0xE6 KECCAK256 0x2C SGT DUP10 PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "1034:4740:42:-:0;;;1736:320;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1850:6;1648:24:33;1850:6:42;1648:9:33;:24::i;:::-;-1:-1:-1;1868:35:42::1;1887:15:::0;1868:18:::1;:35::i;:::-;-1:-1:-1::0;;;;;1921:29:42;::::1;1913:81;;;::::0;-1:-1:-1;;;1913:81:42;;1138:2:101;1913:81:42::1;::::0;::::1;1120:21:101::0;1177:2;1157:18;;;1150:30;1216:34;1196:18;;;1189:62;-1:-1:-1;;;1267:18:101;;;1260:37;1314:19;;1913:81:42::1;;;;;;;;;-1:-1:-1::0;;;;;;2004:14:42::1;::::0;;;;::::1;::::0;2033:16:::1;::::0;-1:-1:-1;;;;;2004:14:42;::::1;::::0;2033:16:::1;::::0;;;::::1;1736:320:::0;;;1034:4740;;3470:174:33;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:33;;;-1:-1:-1;;;;;;3562:18:33;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;5246:256:42:-;-1:-1:-1;;;;;5333:37:42;;5325:80;;;;-1:-1:-1;;;5325:80:42;;779:2:101;5325:80:42;;;761:21:101;818:2;798:18;;;791:30;857:32;837:18;;;830:60;907:18;;5325:80:42;751:180:101;5325:80:42;5415:14;:31;;-1:-1:-1;;;;;;5415:31:42;-1:-1:-1;;;;;5415:31:42;;;;;;;;5462:33;;;;-1:-1:-1;;5462:33:42;5246:256;:::o;14:558:101:-;141:6;149;157;210:2;198:9;189:7;185:23;181:32;178:2;;;226:1;223;216:12;178:2;258:9;252:16;277:31;302:5;277:31;:::i;:::-;377:2;362:18;;356:25;327:5;;-1:-1:-1;390:33:101;356:25;390:33;:::i;:::-;494:2;479:18;;473:25;442:7;;-1:-1:-1;507:33:101;473:25;507:33;:::i;:::-;559:7;549:17;;;168:404;;;;;:::o;1344:131::-;-1:-1:-1;;;;;1419:31:101;;1409:42;;1399:2;;1465:1;1462;1455:12;1399:2;1389:86;:::o;:::-;1034:4740:42;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@_awardPayout_9168": {
                  "entryPoint": 2642,
                  "id": 9168,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_callOptionalReturn_1343": {
                  "entryPoint": 2698,
                  "id": 1343,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_getDrawPayoutBalanceOf_9105": {
                  "entryPoint": null,
                  "id": 9105,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@_setDrawCalculator_9152": {
                  "entryPoint": 2376,
                  "id": 9152,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setDrawPayoutBalanceOf_9123": {
                  "entryPoint": null,
                  "id": 9123,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_setOwner_5327": {
                  "entryPoint": 2549,
                  "id": 5327,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@claimOwnership_5307": {
                  "entryPoint": 1055,
                  "id": 5307,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@claim_8975": {
                  "entryPoint": 1361,
                  "id": 8975,
                  "parameterSlots": 5,
                  "returnSlots": 1
                },
                "@functionCallWithValue_1639": {
                  "entryPoint": 2950,
                  "id": 1639,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "@functionCall_1569": {
                  "entryPoint": 2927,
                  "id": 1569,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@getDrawCalculator_9041": {
                  "entryPoint": null,
                  "id": 9041,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getDrawPayoutBalanceOf_9058": {
                  "entryPoint": 1314,
                  "id": 9058,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@getToken_9069": {
                  "entryPoint": null,
                  "id": 9069,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@isContract_1498": {
                  "entryPoint": null,
                  "id": 1498,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@owner_5239": {
                  "entryPoint": null,
                  "id": 5239,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@pendingOwner_5248": {
                  "entryPoint": null,
                  "id": 5248,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@renounceOwnership_5262": {
                  "entryPoint": 1197,
                  "id": 5262,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@safeTransfer_1151": {
                  "entryPoint": 2243,
                  "id": 1151,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@setDrawCalculator_9089": {
                  "entryPoint": 931,
                  "id": 9089,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@transferOwnership_5289": {
                  "entryPoint": 1927,
                  "id": 5289,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@verifyCallResult_1774": {
                  "entryPoint": 3269,
                  "id": 1774,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@withdrawERC20_9030": {
                  "entryPoint": 463,
                  "id": 9030,
                  "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_$11003": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_contract$_IERC20_$890t_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_$11003__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_IERC20_$890__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:13803:101",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:101",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "86:275:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "135:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "144:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "147:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "137:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "137:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "137:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "114:6:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "122:4:101",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "110:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "110:17:101"
                                      },
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "129:3:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "106:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "106:27:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "99:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "99:35:101"
                              },
                              "nodeType": "YulIf",
                              "src": "96:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "160:30:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "183:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "170:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "170:20:101"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "160:6:101"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "233:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "242:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "245:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "235:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "235:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "235:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "205:6:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "213:18:101",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "202:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "202:30:101"
                              },
                              "nodeType": "YulIf",
                              "src": "199:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "258:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "274:6:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "282:4:101",
                                    "type": "",
                                    "value": "0x20"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "270:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "270:17:101"
                              },
                              "variableNames": [
                                {
                                  "name": "arrayPos",
                                  "nodeType": "YulIdentifier",
                                  "src": "258:8:101"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "339:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "348:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "351:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "341:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "341:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "341:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "310:6:101"
                                          },
                                          {
                                            "name": "length",
                                            "nodeType": "YulIdentifier",
                                            "src": "318:6:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "306:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "306:19:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "327:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "302:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "302:30:101"
                                  },
                                  {
                                    "name": "end",
                                    "nodeType": "YulIdentifier",
                                    "src": "334:3:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "299:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "299:39:101"
                              },
                              "nodeType": "YulIf",
                              "src": "296:2:101"
                            }
                          ]
                        },
                        "name": "abi_decode_bytes_calldata",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "49:6:101",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "57:3:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "arrayPos",
                            "nodeType": "YulTypedName",
                            "src": "65:8:101",
                            "type": ""
                          },
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "75:6:101",
                            "type": ""
                          }
                        ],
                        "src": "14:347:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "429:492:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "478:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "487:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "490:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "480:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "480:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "480:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "457:6:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "465:4:101",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "453:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "453:17:101"
                                      },
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "472:3:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "449:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "449:27:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "442:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "442:35:101"
                              },
                              "nodeType": "YulIf",
                              "src": "439:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "503:23:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "519:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "513:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "513:13:101"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "507:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "565:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "567:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "567:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "567:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "541:2:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "545:18:101",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "538:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "538:26:101"
                              },
                              "nodeType": "YulIf",
                              "src": "535:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "596:129:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "_1",
                                                "nodeType": "YulIdentifier",
                                                "src": "639:2:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "643:4:101",
                                                "type": "",
                                                "value": "0x1f"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "635:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "635:13:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "650:66:101",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "631:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "631:86:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "719:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "627:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "627:97:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "allocate_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "611:15:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "611:114:101"
                              },
                              "variables": [
                                {
                                  "name": "array_1",
                                  "nodeType": "YulTypedName",
                                  "src": "600:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "array_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "741:7:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "750:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "734:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "734:19:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "734:19:101"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "801:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "810:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "813:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "803:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "803:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "803:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "776:6:101"
                                          },
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "784:2:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "772:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "772:15:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "789:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "768:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "768:26:101"
                                  },
                                  {
                                    "name": "end",
                                    "nodeType": "YulIdentifier",
                                    "src": "796:3:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "765:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "765:35:101"
                              },
                              "nodeType": "YulIf",
                              "src": "762:2:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "852:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "860:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "848:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "848:17:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "array_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "871:7:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "880:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "867:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "867:18:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "887:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "826:21:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "826:64:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "826:64:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "899:16:101",
                              "value": {
                                "name": "array_1",
                                "nodeType": "YulIdentifier",
                                "src": "908:7:101"
                              },
                              "variableNames": [
                                {
                                  "name": "array",
                                  "nodeType": "YulIdentifier",
                                  "src": "899:5:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_bytes_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "403:6:101",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "411:3:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "array",
                            "nodeType": "YulTypedName",
                            "src": "419:5:101",
                            "type": ""
                          }
                        ],
                        "src": "366:555:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "974:115:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "984:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1006:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "993:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "993:20:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "984:5:101"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1067:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1076:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1079:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1069:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1069:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1069:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1035:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1046:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1053:10:101",
                                            "type": "",
                                            "value": "0xffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1042:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1042:22:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1032:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1032:33:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1025:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1025:41:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1022:2:101"
                            }
                          ]
                        },
                        "name": "abi_decode_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "953:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "964:5:101",
                            "type": ""
                          }
                        ],
                        "src": "926:163:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1164:177:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1210:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1219:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1222:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1212:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1212:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1212:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1185:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1194:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1181:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1181:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1206:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1177:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1177:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1174:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1235:36:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1261:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1248:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1248:23:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1239:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1305:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1280:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1280:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1280:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1320:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1330:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1320:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1130:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1141:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1153:6:101",
                            "type": ""
                          }
                        ],
                        "src": "1094:247:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1503:879:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1549:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1558:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1561:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1551:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1551:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1551:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1524:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1533:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1520:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1520:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1545:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1516:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1516:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1513:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1574:36:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1600:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1587:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1587:23:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1578:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1644:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1619:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1619:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1619:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1659:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1669:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1659:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1683:46:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1714:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1725:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1710:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1710:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1697:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1697:32:101"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "1687:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1738:28:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "1748:18:101",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1742:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1793:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1802:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1805:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1795:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1795:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1795:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1781:6:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1789:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1778:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1778:14:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1775:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1818:32:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1832:9:101"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1843:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1828:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1828:22:101"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "1822:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1898:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1907:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1910:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1900:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1900:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1900:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "1877:2:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1881:4:101",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1873:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1873:13:101"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1888:7:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1869:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1869:27:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1862:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1862:35:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1859:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1923:30:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "1950:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1937:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1937:16:101"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "1927:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1980:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1989:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1992:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1982:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1982:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1982:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1968:6:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1976:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1965:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1965:14:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1962:2:101"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2054:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2063:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2066:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2056:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2056:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2056:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "2019:2:101"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "2027:1:101",
                                                "type": "",
                                                "value": "5"
                                              },
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "2030:6:101"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "2023:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "2023:14:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2015:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2015:23:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2040:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2011:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2011:32:101"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "2045:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2008:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2008:45:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2005:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2079:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "2093:2:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2097:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2089:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2089:11:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2079:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2109:16:101",
                              "value": {
                                "name": "length",
                                "nodeType": "YulIdentifier",
                                "src": "2119:6:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "2109:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2134:48:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2167:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2178:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2163:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2163:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2150:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2150:32:101"
                              },
                              "variables": [
                                {
                                  "name": "offset_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2138:8:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2211:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2220:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2223:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2213:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2213:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2213:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2197:8:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2207:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2194:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2194:16:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2191:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2236:86:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2292:9:101"
                                      },
                                      {
                                        "name": "offset_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "2303:8:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2288:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2288:24:101"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "2314:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_bytes_calldata",
                                  "nodeType": "YulIdentifier",
                                  "src": "2262:25:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2262:60:101"
                              },
                              "variables": [
                                {
                                  "name": "value3_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2240:8:101",
                                  "type": ""
                                },
                                {
                                  "name": "value4_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2250:8:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2331:18:101",
                              "value": {
                                "name": "value3_1",
                                "nodeType": "YulIdentifier",
                                "src": "2341:8:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "2331:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2358:18:101",
                              "value": {
                                "name": "value4_1",
                                "nodeType": "YulIdentifier",
                                "src": "2368:8:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value4",
                                  "nodeType": "YulIdentifier",
                                  "src": "2358:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "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:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1448:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1460:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1468:6:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "1476:6:101",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "1484:6:101",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "1492:6:101",
                            "type": ""
                          }
                        ],
                        "src": "1346:1036:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2473:233:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2519:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2528:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2531:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2521:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2521:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2521:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2494:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2503:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2490:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2490:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2515:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2486:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2486:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2483:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2544:36:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2570:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2557:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2557:23:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2548:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "2614:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "2589:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2589:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2589:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2629:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2639:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2629:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2653:47:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2685:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2696:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2681:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2681:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "2663:17:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2663:37:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2653:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2431:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2442:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2454:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2462:6:101",
                            "type": ""
                          }
                        ],
                        "src": "2387:319:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2843:1019:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2889:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2898:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2901:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2891:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2891:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2891:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2864:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2873:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2860:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2860:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2885:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2856:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2856:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2853:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2914:30:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2934:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2928:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2928:16:101"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "2918:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2953:28:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "2963:18:101",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2957:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3008:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3017:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3020:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3010:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3010:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3010:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "2996:6:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3004:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2993:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2993:14:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2990:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3033:32:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3047:9:101"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "3058:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3043:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3043:22:101"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "3037:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3113:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3122:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3125:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3115:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3115:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3115:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "3092:2:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "3096:4:101",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "3088:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3088:13:101"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3103:7:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "3084:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3084:27:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "3077:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3077:35:101"
                              },
                              "nodeType": "YulIf",
                              "src": "3074:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3138:19:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "3154:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3148:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3148:9:101"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "3142:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3166:14:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3176:4:101",
                                "type": "",
                                "value": "0x20"
                              },
                              "variables": [
                                {
                                  "name": "_4",
                                  "nodeType": "YulTypedName",
                                  "src": "3170:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3203:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "3205:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3205:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3205:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "3195:2:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3199:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3192:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3192:10:101"
                              },
                              "nodeType": "YulIf",
                              "src": "3189:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3234:20:101",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3248:1:101",
                                    "type": "",
                                    "value": "5"
                                  },
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "3251:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "shl",
                                  "nodeType": "YulIdentifier",
                                  "src": "3244:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3244:10:101"
                              },
                              "variables": [
                                {
                                  "name": "_5",
                                  "nodeType": "YulTypedName",
                                  "src": "3238:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3263:39:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "_5",
                                        "nodeType": "YulIdentifier",
                                        "src": "3294:2:101"
                                      },
                                      {
                                        "name": "_4",
                                        "nodeType": "YulIdentifier",
                                        "src": "3298:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3290:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3290:11:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "allocate_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "3274:15:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3274:28:101"
                              },
                              "variables": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulTypedName",
                                  "src": "3267:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3311:16:101",
                              "value": {
                                "name": "dst",
                                "nodeType": "YulIdentifier",
                                "src": "3324:3:101"
                              },
                              "variables": [
                                {
                                  "name": "dst_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3315:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "3343:3:101"
                                  },
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "3348:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3336:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3336:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3336:15:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3360:19:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "3371:3:101"
                                  },
                                  {
                                    "name": "_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "3376:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3367:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3367:12:101"
                              },
                              "variableNames": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulIdentifier",
                                  "src": "3360:3:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3388:22:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "3403:2:101"
                                  },
                                  {
                                    "name": "_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "3407:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3399:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3399:11:101"
                              },
                              "variables": [
                                {
                                  "name": "src",
                                  "nodeType": "YulTypedName",
                                  "src": "3392:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3456:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3465:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3468:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3458:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3458:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3458:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "3433:2:101"
                                          },
                                          {
                                            "name": "_5",
                                            "nodeType": "YulIdentifier",
                                            "src": "3437:2:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "3429:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3429:11:101"
                                      },
                                      {
                                        "name": "_4",
                                        "nodeType": "YulIdentifier",
                                        "src": "3442:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3425:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3425:20:101"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "3447:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3422:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3422:33:101"
                              },
                              "nodeType": "YulIf",
                              "src": "3419:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3481:10:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3490:1:101",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "3485:1:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3545:111:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "3566:3:101"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "3577:3:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "3571:5:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "3571:10:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "3559:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3559:23:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3559:23:101"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "3595:19:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "3606:3:101"
                                        },
                                        {
                                          "name": "_4",
                                          "nodeType": "YulIdentifier",
                                          "src": "3611:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "3602:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3602:12:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "dst",
                                        "nodeType": "YulIdentifier",
                                        "src": "3595:3:101"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "3627:19:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "3638:3:101"
                                        },
                                        {
                                          "name": "_4",
                                          "nodeType": "YulIdentifier",
                                          "src": "3643:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "3634:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3634:12:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "src",
                                        "nodeType": "YulIdentifier",
                                        "src": "3627:3:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "3511:1:101"
                                  },
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "3514:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3508:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3508:9:101"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "3518:18:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "3520:14:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "3529:1:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3532:1:101",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "3525:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3525:9:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "3520:1:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "3504:3:101",
                                "statements": []
                              },
                              "src": "3500:156:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3665:15:101",
                              "value": {
                                "name": "dst_1",
                                "nodeType": "YulIdentifier",
                                "src": "3675:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3665:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3689:41:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3715:9:101"
                                      },
                                      {
                                        "name": "_4",
                                        "nodeType": "YulIdentifier",
                                        "src": "3726:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3711:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3711:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3705:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3705:25:101"
                              },
                              "variables": [
                                {
                                  "name": "offset_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3693:8:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3759:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3768:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3771:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3761:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3761:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3761:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3745:8:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3755:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3742:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3742:16:101"
                              },
                              "nodeType": "YulIf",
                              "src": "3739:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3784:72:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3826:9:101"
                                      },
                                      {
                                        "name": "offset_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "3837:8:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3822:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3822:24:101"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "3848:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_bytes_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "3794:27:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3794:62:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "3784:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "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:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2812:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2824:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2832:6:101",
                            "type": ""
                          }
                        ],
                        "src": "2711:1151:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3945:199:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3991:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4000:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4003:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3993:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3993:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3993:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3966:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3975:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3962:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3962:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3987:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3958:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3958:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "3955:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4016:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4035:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4029:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4029:16:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "4020:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4098:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4107:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4110:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4100:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4100:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4100:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "4067:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "4088:5:101"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "iszero",
                                              "nodeType": "YulIdentifier",
                                              "src": "4081:6:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4081:13:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "4074:6:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4074:21:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "4064:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4064:32:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "4057:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4057:40:101"
                              },
                              "nodeType": "YulIf",
                              "src": "4054:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4123:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "4133:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "4123:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_bool_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3911:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "3922:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3934:6:101",
                            "type": ""
                          }
                        ],
                        "src": "3867:277:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4244:177:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4290:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4299:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4302:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4292:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4292:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4292:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "4265:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4274:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "4261:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4261:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4286:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4257:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4257:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "4254:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4315:36:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4341:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4328:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4328:23:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "4319:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "4385:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "4360:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4360:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4360:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4400:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "4410:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "4400:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_contract$_IDrawCalculator_$11003",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4210:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "4221:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4233:6:101",
                            "type": ""
                          }
                        ],
                        "src": "4149:272:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4544:352:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4590:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4599:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4602:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4592:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4592:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4592:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "4565:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4574:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "4561:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4561:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4586:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4557:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4557:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "4554:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4615:36:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4641:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4628:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4628:23:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "4619:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "4685:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "4660:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4660:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4660:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4700:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "4710:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "4700:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4724:47:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4756:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4767:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4752:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4752:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4739:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4739:32:101"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4728:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4805:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "4780:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4780:33:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4780:33:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4822:17:101",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "4832:7:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "4822:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4848:42:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4875:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4886:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4871:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4871:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4858:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4858:32:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "4848:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_contract$_IERC20_$890t_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4494:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "4505:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4517:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "4525:6:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "4533:6:101",
                            "type": ""
                          }
                        ],
                        "src": "4426:470:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4970:115:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5016:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5025:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5028:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "5018:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5018:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5018:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "4991:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5000:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "4987:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4987:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5012:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4983:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4983:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "4980:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5041:38:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5069:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "5051:17:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5051:28:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "5041:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4936:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "4947:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4959:6:101",
                            "type": ""
                          }
                        ],
                        "src": "4901:184:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5227:137:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5237:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "5257:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "5251:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5251:13:101"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "5241:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "5299:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5307:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5295:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5295:17:101"
                                  },
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "5314:3:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "5319:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "5273:21:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5273:53:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5273:53:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5335:23:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "5346:3:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "5351:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5342:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5342:16:101"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "5335:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "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": "5203:3:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5208:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "5219:3:101",
                            "type": ""
                          }
                        ],
                        "src": "5090:274:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5470:125:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "5480:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5492:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5503:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5488:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5488:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5480:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5522:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "5537:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5545:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5533:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5533:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5515:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5515:74:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5515:74:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5439:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5450:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5461:4:101",
                            "type": ""
                          }
                        ],
                        "src": "5369:226:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5843:842:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5853:32:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5871:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5882:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5867:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5867:18:101"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "5857:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5901:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "5916:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5924:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5912:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5912:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5894:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5894:74:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5894:74:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5977:12:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "5987:2:101",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "5981:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6009:9:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6020:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6005:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6005:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6025:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5998:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5998:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5998:30:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6037:17:101",
                              "value": {
                                "name": "tail_1",
                                "nodeType": "YulIdentifier",
                                "src": "6048:6:101"
                              },
                              "variables": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulTypedName",
                                  "src": "6041:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6070:6:101"
                                  },
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "6078:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6063:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6063:22:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6063:22:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6094:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6105:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6116:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6101:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6101:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "6094:3:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6129:20:101",
                              "value": {
                                "name": "value1",
                                "nodeType": "YulIdentifier",
                                "src": "6143:6:101"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "6133:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6158:10:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "6167:1:101",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "6162:1:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "6226:149:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "6247:3:101"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "srcPtr",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "6274:6:101"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "abi_decode_uint32",
                                                "nodeType": "YulIdentifier",
                                                "src": "6256:17:101"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "6256:25:101"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "6283:10:101",
                                              "type": "",
                                              "value": "0xffffffff"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "and",
                                            "nodeType": "YulIdentifier",
                                            "src": "6252:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "6252:42:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "6240:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6240:55:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6240:55:101"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "6308:19:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "6319:3:101"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "6324:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "6315:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6315:12:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "6308:3:101"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "6340:25:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "6354:6:101"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "6362:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "6350:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6350:15:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "6340:6:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "6188:1:101"
                                  },
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "6191:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "6185:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6185:13:101"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "6199:18:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "6201:14:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "6210:1:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6213:1:101",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "6206:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6206:9:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "6201:1:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "6181:3:101",
                                "statements": []
                              },
                              "src": "6177:198:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6395:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6406:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6391:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6391:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "6415:3:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6420:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "6411:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6411:19:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6384:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6384:47:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6384:47:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "6447:3:101"
                                  },
                                  {
                                    "name": "value4",
                                    "nodeType": "YulIdentifier",
                                    "src": "6452:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6440:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6440:19:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6440:19:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "6485:3:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6490:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6481:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6481:12:101"
                                  },
                                  {
                                    "name": "value3",
                                    "nodeType": "YulIdentifier",
                                    "src": "6495:6:101"
                                  },
                                  {
                                    "name": "value4",
                                    "nodeType": "YulIdentifier",
                                    "src": "6503:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldatacopy",
                                  "nodeType": "YulIdentifier",
                                  "src": "6468:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6468:42:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6468:42:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "pos",
                                            "nodeType": "YulIdentifier",
                                            "src": "6534:3:101"
                                          },
                                          {
                                            "name": "value4",
                                            "nodeType": "YulIdentifier",
                                            "src": "6539:6:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "6530:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "6530:16:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6548:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6526:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6526:25:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6553:1:101",
                                    "type": "",
                                    "value": "0"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6519:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6519:36:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6519:36:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6564:115:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "6580:3:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value4",
                                                "nodeType": "YulIdentifier",
                                                "src": "6593:6:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "6601:2:101",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "6589:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "6589:15:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "6606:66:101",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "6585:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "6585:88:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6576:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6576:98:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6676:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6572:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6572:107:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6564:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "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": "5780:9:101",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "5791:6:101",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "5799:6:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "5807:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "5815:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5823:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5834:4:101",
                            "type": ""
                          }
                        ],
                        "src": "5600:1085:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6819:168:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "6829:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6841:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6852:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6837:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6837:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6829:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6871:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "6886:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6894:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6882:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6882:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6864:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6864:74:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6864:74:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6958:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6969:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6954:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6954:18:101"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6974:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6947:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6947:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6947:34:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6780:9:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "6791:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6799:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6810:4:101",
                            "type": ""
                          }
                        ],
                        "src": "6690:297:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7087:92:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7097:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7109:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7120:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7105:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7105:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7097:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7139:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "7164:6:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "7157:6:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "7157:14:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "7150:6:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7150:22:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7132:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7132:41:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7132:41:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7056:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7067:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7078:4:101",
                            "type": ""
                          }
                        ],
                        "src": "6992:187:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7310:125:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7320:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7332:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7343:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7328:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7328:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7320:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7362:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "7377:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7385:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "7373:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7373:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7355:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7355:74:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7355:74:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IDrawCalculator_$11003__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7279:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7290:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7301:4:101",
                            "type": ""
                          }
                        ],
                        "src": "7184:251:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7555:125:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7565:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7577:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7588:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7573:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7573:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7565:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7607:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "7622:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7630:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "7618:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7618:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7600:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7600:74:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7600:74:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IERC20_$890__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7524:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7535:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7546:4:101",
                            "type": ""
                          }
                        ],
                        "src": "7440:240:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7806:321:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7823:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7834:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7816:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7816:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7816:21:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7846:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "7866:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "7860:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7860:13:101"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "7850:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7893:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7904:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7889:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7889:18:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "7909:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7882:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7882:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7882:34:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "7951:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7959:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7947:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7947:15:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7968:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7979:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7964:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7964:18:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "7984:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "7925:21:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7925:66:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7925:66:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8000:121:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8016:9:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "8035:6:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "8043:2:101",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "8031:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "8031:15:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "8048:66:101",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "8027:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "8027:88:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8012:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8012:104:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8118:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8008:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8008:113:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8000:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7775:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7786:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7797:4:101",
                            "type": ""
                          }
                        ],
                        "src": "7685:442:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8306:178:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8323:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8334:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8316:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8316:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8316:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8357:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8368:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8353:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8353:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8373:2:101",
                                    "type": "",
                                    "value": "28"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8346:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8346:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8346:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8396:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8407:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8392:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8392:18:101"
                                  },
                                  {
                                    "hexValue": "5072697a654469737472696275746f722f7a65726f2d7061796f7574",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8412:30:101",
                                    "type": "",
                                    "value": "PrizeDistributor/zero-payout"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8385:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8385:58:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8385:58:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8452:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8464:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8475:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8460:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8460:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8452:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_2c805cde282169c73a3ef40c45bfc372741317bb5df0479880c6224616953113__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8283:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8297:4:101",
                            "type": ""
                          }
                        ],
                        "src": "8132:352:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8663:180:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8680:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8691:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8673:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8673:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8673:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8714:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8725:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8710:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8710:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8730:2:101",
                                    "type": "",
                                    "value": "30"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8703:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8703:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8703:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8753:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8764:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8749:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8749:18:101"
                                  },
                                  {
                                    "hexValue": "5072697a654469737472696275746f722f63616c632d6e6f742d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8769:32:101",
                                    "type": "",
                                    "value": "PrizeDistributor/calc-not-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8742:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8742:60:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8742:60:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8811:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8823:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8834:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8819:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8819:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8811:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_3daee906d37e8c0f46e2c60e574e2b37b052a3c599e264a644a90cb13d2b8f3a__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8640:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8654:4:101",
                            "type": ""
                          }
                        ],
                        "src": "8489:354:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9022:228:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9039:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9050:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9032:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9032:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9032:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9073:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9084:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9069:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9069:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9089:2:101",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9062:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9062:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9062:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9112:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9123:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9108:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9108:18:101"
                                  },
                                  {
                                    "hexValue": "416464726573733a20696e73756666696369656e742062616c616e636520666f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9128:34:101",
                                    "type": "",
                                    "value": "Address: insufficient balance fo"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9101:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9101:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9101:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9183:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9194:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9179:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9179:18:101"
                                  },
                                  {
                                    "hexValue": "722063616c6c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9199:8:101",
                                    "type": "",
                                    "value": "r call"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9172:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9172:36:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9172:36:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9217:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9229:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9240:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9225:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9225:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9217:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8999:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9013:4:101",
                            "type": ""
                          }
                        ],
                        "src": "8848:402:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9429:229:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9446:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9457:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9439:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9439:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9439:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9480:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9491:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9476:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9476:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9496:2:101",
                                    "type": "",
                                    "value": "39"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9469:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9469:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9469:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9519:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9530:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9515:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9515:18:101"
                                  },
                                  {
                                    "hexValue": "5072697a654469737472696275746f722f45524332302d6e6f742d7a65726f2d",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9535:34:101",
                                    "type": "",
                                    "value": "PrizeDistributor/ERC20-not-zero-"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9508:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9508:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9508:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9590:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9601:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9586:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9586:18:101"
                                  },
                                  {
                                    "hexValue": "61646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9606:9:101",
                                    "type": "",
                                    "value": "address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9579:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9579:37:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9579:37:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9625:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9637:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9648:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9633:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9633:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9625:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_5e9c21b3ab066ee6718747f9a9d142fb59b132e00e6d2d77cd842d397552abe3__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9406:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9420:4:101",
                            "type": ""
                          }
                        ],
                        "src": "9255:403:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9837:174:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9854:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9865:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9847:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9847:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9847:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9888:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9899:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9884:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9884:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9904:2:101",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9877:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9877:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9877:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9927:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9938:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9923:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9923:18:101"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9943:26:101",
                                    "type": "",
                                    "value": "Ownable/caller-not-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9916:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9916:54:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9916:54:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9979:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9991:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10002:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9987:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9987:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9979:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9814:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9828:4:101",
                            "type": ""
                          }
                        ],
                        "src": "9663:348:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10190:181:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10207:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10218:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10200:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10200:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10200:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10241:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10252:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10237:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10237:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10257:2:101",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10230:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10230:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10230:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10280:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10291:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10276:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10276:18:101"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10296:33:101",
                                    "type": "",
                                    "value": "Ownable/caller-not-pendingOwner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10269:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10269:61:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10269:61:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10339:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10351:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10362:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10347:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10347:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10339:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10167:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10181:4:101",
                            "type": ""
                          }
                        ],
                        "src": "10016:355:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10550:233:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10567:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10578:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10560:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10560:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10560:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10601:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10612:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10597:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10597:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10617:2:101",
                                    "type": "",
                                    "value": "43"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10590:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10590:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10590:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10640:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10651:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10636:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10636:18:101"
                                  },
                                  {
                                    "hexValue": "5072697a654469737472696275746f722f726563697069656e742d6e6f742d7a",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10656:34:101",
                                    "type": "",
                                    "value": "PrizeDistributor/recipient-not-z"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10629:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10629:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10629:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10711:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10722:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10707:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10707:18:101"
                                  },
                                  {
                                    "hexValue": "65726f2d61646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10727:13:101",
                                    "type": "",
                                    "value": "ero-address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10700:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10700:41:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10700:41:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10750:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10762:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10773:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10758:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10758:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10750:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c3c1c5a9485c31eb22e3896f76db76d5b6b9e87350b8d12dde12857181904473__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10527:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10541:4:101",
                            "type": ""
                          }
                        ],
                        "src": "10376:407:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10962:179:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10979:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10990:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10972:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10972:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10972:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11013:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11024:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11009:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11009:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11029:2:101",
                                    "type": "",
                                    "value": "29"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11002:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11002:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11002:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11052:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11063:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11048:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11048:18:101"
                                  },
                                  {
                                    "hexValue": "416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11068:31:101",
                                    "type": "",
                                    "value": "Address: call to non-contract"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11041:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11041:59:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11041:59:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11109:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11121:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11132:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11117:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11117:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11109:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10939:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10953:4:101",
                            "type": ""
                          }
                        ],
                        "src": "10788:353:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11320:227:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11337:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11348:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11330:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11330:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11330:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11371:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11382:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11367:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11367:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11387:2:101",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11360:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11360:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11360:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11410:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11421:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11406:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11406:18:101"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d6164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11426:34:101",
                                    "type": "",
                                    "value": "Ownable/pendingOwner-not-zero-ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11399:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11399:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11399:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11481:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11492:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11477:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11477:18:101"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11497:7:101",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11470:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11470:35:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11470:35:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11514:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11526:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11537:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11522:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11522:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11514:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11297:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11311:4:101",
                            "type": ""
                          }
                        ],
                        "src": "11146:401:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11726:232:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11743:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11754:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11736:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11736:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11736:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11777:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11788:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11773:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11773:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11793:2:101",
                                    "type": "",
                                    "value": "42"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11766:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11766:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11766:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11816:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11827:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11812:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11812:18:101"
                                  },
                                  {
                                    "hexValue": "5361666545524332303a204552433230206f7065726174696f6e20646964206e",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11832:34:101",
                                    "type": "",
                                    "value": "SafeERC20: ERC20 operation did n"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11805:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11805:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11805:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11887:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11898:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11883:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11883:18:101"
                                  },
                                  {
                                    "hexValue": "6f742073756363656564",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11903:12:101",
                                    "type": "",
                                    "value": "ot succeed"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11876:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11876:40:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11876:40:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11925:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11937:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11948:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11933:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11933:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11925:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_e11ad79d1e4a7f2e5f376964cb99e8e8f7904e3fc16a109f7a7ecb9aa7956dcd__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11703:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11717:4:101",
                            "type": ""
                          }
                        ],
                        "src": "11552:406:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12064:76:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "12074:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12086:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12097:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12082:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12082:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12074:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12116:9:101"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "12127:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12109:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12109:25:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12109:25:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12033:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "12044:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12055:4:101",
                            "type": ""
                          }
                        ],
                        "src": "11963:177:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12190:289:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "12200:19:101",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12216:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "12210:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12210:9:101"
                              },
                              "variableNames": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulIdentifier",
                                  "src": "12200:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "12228:117:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "12250:6:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "size",
                                            "nodeType": "YulIdentifier",
                                            "src": "12266:4:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "12272:2:101",
                                            "type": "",
                                            "value": "31"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "12262:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "12262:13:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12277:66:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "12258:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12258:86:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12246:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12246:99:101"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "12232:10:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "12420:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "12422:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12422:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "12422:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "12363:10:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12375:18:101",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "12360:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12360:34:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "12399:10:101"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "12411:6:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "12396:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12396:22:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "12357:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12357:62:101"
                              },
                              "nodeType": "YulIf",
                              "src": "12354:2:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12458:2:101",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "12462:10:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12451:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12451:22:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12451:22:101"
                            }
                          ]
                        },
                        "name": "allocate_memory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "size",
                            "nodeType": "YulTypedName",
                            "src": "12170:4:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "memPtr",
                            "nodeType": "YulTypedName",
                            "src": "12179:6:101",
                            "type": ""
                          }
                        ],
                        "src": "12145:334:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12532:80:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "12559:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "12561:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12561:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "12561:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "12548:1:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "12555:1:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "12551:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12551:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "12545:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12545:13:101"
                              },
                              "nodeType": "YulIf",
                              "src": "12542:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12590:16:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "12601:1:101"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "12604:1:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12597:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12597:9:101"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "12590:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "12515:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "12518:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "12524:3:101",
                            "type": ""
                          }
                        ],
                        "src": "12484:128:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12670:205:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "12680:10:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "12689:1:101",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "12684:1:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "12749:63:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "12774:3:101"
                                            },
                                            {
                                              "name": "i",
                                              "nodeType": "YulIdentifier",
                                              "src": "12779:1:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "12770:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "12770:11:101"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "12793:3:101"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "12798:1:101"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "12789:3:101"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "12789:11:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "12783:5:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "12783:18:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "12763:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12763:39:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "12763:39:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "12710:1:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "12713:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "12707:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12707:13:101"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "12721:19:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "12723:15:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "12732:1:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "12735:2:101",
                                          "type": "",
                                          "value": "32"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "12728:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12728:10:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "12723:1:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "12703:3:101",
                                "statements": []
                              },
                              "src": "12699:113:101"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "12838:31:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "12851:3:101"
                                            },
                                            {
                                              "name": "length",
                                              "nodeType": "YulIdentifier",
                                              "src": "12856:6:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "12847:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "12847:16:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "12865:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "12840:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12840:27:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "12840:27:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "12827:1:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "12830:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "12824:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12824:13:101"
                              },
                              "nodeType": "YulIf",
                              "src": "12821:2:101"
                            }
                          ]
                        },
                        "name": "copy_memory_to_memory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "src",
                            "nodeType": "YulTypedName",
                            "src": "12648:3:101",
                            "type": ""
                          },
                          {
                            "name": "dst",
                            "nodeType": "YulTypedName",
                            "src": "12653:3:101",
                            "type": ""
                          },
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "12658:6:101",
                            "type": ""
                          }
                        ],
                        "src": "12617:258:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12927:148:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "13018:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "13020:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13020:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13020:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "12943:5:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12950:66:101",
                                    "type": "",
                                    "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "12940:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12940:77:101"
                              },
                              "nodeType": "YulIf",
                              "src": "12937:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13049:20:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "13060:5:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13067:1:101",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13056:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13056:13:101"
                              },
                              "variableNames": [
                                {
                                  "name": "ret",
                                  "nodeType": "YulIdentifier",
                                  "src": "13049:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "increment_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "12909:5:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "ret",
                            "nodeType": "YulTypedName",
                            "src": "12919:3:101",
                            "type": ""
                          }
                        ],
                        "src": "12880:195:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13112:152:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13129:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13132:77:101",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13122:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13122:88:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13122:88:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13226:1:101",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13229:4:101",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13219:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13219:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13219:15:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13250:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13253:4:101",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "13243:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13243:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13243:15:101"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "13080:184:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13301:152:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13318:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13321:77:101",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13311:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13311:88:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13311:88:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13415:1:101",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13418:4:101",
                                    "type": "",
                                    "value": "0x32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13408:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13408:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13408:15:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13439:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13442:4:101",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "13432:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13432:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13432:15:101"
                            }
                          ]
                        },
                        "name": "panic_error_0x32",
                        "nodeType": "YulFunctionDefinition",
                        "src": "13269:184:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13490:152:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13507:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13510:77:101",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13500:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13500:88:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13500:88:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13604:1:101",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13607:4:101",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13597:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13597:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13597:15:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13628:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13631:4:101",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "13621:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13621:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13621:15:101"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "13458:184:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13692:109:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "13779:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "13788:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "13791:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "13781:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "13781:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "13781:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "13715:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "13726:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "13733:42:101",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "13722:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "13722:54:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "13712:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13712:65:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "13705:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13705:73:101"
                              },
                              "nodeType": "YulIf",
                              "src": "13702:2:101"
                            }
                          ]
                        },
                        "name": "validator_revert_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "13681:5:101",
                            "type": ""
                          }
                        ],
                        "src": "13647:154:101"
                      }
                    ]
                  },
                  "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_$11003(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_$890t_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_$11003__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_$890__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": 101,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {
                "8820": [
                  {
                    "length": 32,
                    "start": 208
                  },
                  {
                    "length": 32,
                    "start": 2655
                  }
                ]
              },
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106100c95760003560e01c8063715018a611610081578063bb7d4e2d1161005b578063bb7d4e2d14610198578063e30c3978146101ab578063f2fde38b146101bc57600080fd5b8063715018a61461015e5780638da5cb5b14610166578063b7f892d11461017757600080fd5b806344004cc1116100b257806344004cc11461011e578063454a8140146101415780634e71e0c81461015457600080fd5b806321df0da7146100ce5780632d680cfa1461010d575b600080fd5b7f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b0390911681526020015b60405180910390f35b6002546001600160a01b03166100f0565b61013161012c366004610fb9565b6101cf565b6040519015158152602001610104565b6100f061014f366004610dbf565b6103a3565b61015c61041f565b005b61015c6104ad565b6000546001600160a01b03166100f0565b61018a610185366004610e90565b610522565b604051908152602001610104565b61018a6101a6366004610ddc565b610551565b6001546001600160a01b03166100f0565b61015c6101ca366004610dbf565b610787565b6000336101e46000546001600160a01b031690565b6001600160a01b03161461023f5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064015b60405180910390fd5b6001600160a01b0383166102bb5760405162461bcd60e51b815260206004820152602b60248201527f5072697a654469737472696275746f722f726563697069656e742d6e6f742d7a60448201527f65726f2d616464726573730000000000000000000000000000000000000000006064820152608401610236565b6001600160a01b0384166103375760405162461bcd60e51b815260206004820152602760248201527f5072697a654469737472696275746f722f45524332302d6e6f742d7a65726f2d60448201527f61646472657373000000000000000000000000000000000000000000000000006064820152608401610236565b61034b6001600160a01b03851684846108c3565b826001600160a01b0316846001600160a01b03167fbfed55bdcd242e3dd0f60ddd7d1e87c67f61c34cd9527b3e6455d841b10253628460405161039091815260200190565b60405180910390a35060015b9392505050565b6000336103b86000546001600160a01b031690565b6001600160a01b03161461040e5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610236565b61041782610948565b50805b919050565b6001546001600160a01b031633146104795760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572006044820152606401610236565b60015461048e906001600160a01b03166109f5565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b336104c06000546001600160a01b031690565b6001600160a01b0316146105165760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610236565b61052060006109f5565b565b6001600160a01b038216600090815260036020908152604080832063ffffffff8516845290915281205461039c565b6002546040517faaca392e000000000000000000000000000000000000000000000000000000008152600091829182916001600160a01b03169063aaca392e906105a7908b908b908b908b908b90600401611031565b60006040518083038186803b1580156105bf57600080fd5b505afa1580156105d3573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526105fb9190810190610ec5565b50805190915060005b8181101561076f576000898983818110610620576106206111b0565b90506020020160208101906106359190610ffa565b9050600084838151811061064b5761064b6111b0565b6020908102919091018101516001600160a01b038e16600090815260038352604080822063ffffffff8716835290935291822054909250908183116106d25760405162461bcd60e51b815260206004820152601c60248201527f5072697a654469737472696275746f722f7a65726f2d7061796f7574000000006044820152606401610236565b506001600160a01b038d16600090815260036020908152604080832063ffffffff87168452909152902082905580820361070c8189611119565b97508363ffffffff168e6001600160a01b03167fda18d31fbb73ed04b84307ef1bc6602e02c855af9f65b53ed10ba43e8d35b7dd8360405161075091815260200190565b60405180910390a350505050808061076790611161565b915050610604565b5061077a8984610a52565b5090979650505050505050565b3361079a6000546001600160a01b031690565b6001600160a01b0316146107f05760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610236565b6001600160a01b03811661086c5760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610236565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052610943908490610a8a565b505050565b6001600160a01b03811661099e5760405162461bcd60e51b815260206004820152601e60248201527f5072697a654469737472696275746f722f63616c632d6e6f742d7a65726f00006044820152606401610236565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517fff37eafdc3779d387d79dcf458fdc36536d857426f03a53204694f8fbb0d8a6b90600090a250565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610a866001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001683836108c3565b5050565b6000610adf826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610b6f9092919063ffffffff16565b8051909150156109435780806020019051810190610afd9190610f97565b6109435760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610236565b6060610b7e8484600085610b86565b949350505050565b606082471015610bfe5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610236565b843b610c4c5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610236565b600080866001600160a01b03168587604051610c689190611015565b60006040518083038185875af1925050503d8060008114610ca5576040519150601f19603f3d011682016040523d82523d6000602084013e610caa565b606091505b5091509150610cba828286610cc5565b979650505050505050565b60608315610cd457508161039c565b825115610ce45782518084602001fd5b8160405162461bcd60e51b815260040161023691906110b5565b60008083601f840112610d1057600080fd5b50813567ffffffffffffffff811115610d2857600080fd5b602083019150836020828501011115610d4057600080fd5b9250929050565b600082601f830112610d5857600080fd5b815167ffffffffffffffff811115610d7257610d726111c6565b610d856020601f19601f840116016110e8565b818152846020838601011115610d9a57600080fd5b610b7e826020830160208701611131565b803563ffffffff8116811461041a57600080fd5b600060208284031215610dd157600080fd5b813561039c816111dc565b600080600080600060608688031215610df457600080fd5b8535610dff816111dc565b9450602086013567ffffffffffffffff80821115610e1c57600080fd5b818801915088601f830112610e3057600080fd5b813581811115610e3f57600080fd5b8960208260051b8501011115610e5457600080fd5b602083019650809550506040880135915080821115610e7257600080fd5b50610e7f88828901610cfe565b969995985093965092949392505050565b60008060408385031215610ea357600080fd5b8235610eae816111dc565b9150610ebc60208401610dab565b90509250929050565b60008060408385031215610ed857600080fd5b825167ffffffffffffffff80821115610ef057600080fd5b818501915085601f830112610f0457600080fd5b8151602082821115610f1857610f186111c6565b8160051b610f278282016110e8565b8381528281019086840183880185018c1015610f4257600080fd5b600097505b85881015610f65578051835260019790970196918401918401610f47565b509289015192975091945050505080821115610f8057600080fd5b50610f8d85828601610d47565b9150509250929050565b600060208284031215610fa957600080fd5b8151801515811461039c57600080fd5b600080600060608486031215610fce57600080fd5b8335610fd9816111dc565b92506020840135610fe9816111dc565b929592945050506040919091013590565b60006020828403121561100c57600080fd5b61039c82610dab565b60008251611027818460208701611131565b9190910192915050565b6001600160a01b038616815260606020808301829052908201859052600090869060808401835b888110156110815763ffffffff61106e85610dab565b1682529282019290820190600101611058565b5084810360408601528581528587838301376000818701830152601f909501601f1916909401909301979650505050505050565b60208152600082518060208401526110d4816040850160208701611131565b601f01601f19169190910160400192915050565b604051601f8201601f1916810167ffffffffffffffff81118282101715611111576111116111c6565b604052919050565b6000821982111561112c5761112c61119a565b500190565b60005b8381101561114c578181015183820152602001611134565b8381111561115b576000848401525b50505050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156111935761119361119a565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146111f157600080fd5b5056fea2646970667358221220cee5890e71f082a70269b41403f894b0579b8c95587bfbb025edd2e6202c138964736f6c63430008060033",
              "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 0xCE 0xE5 DUP10 0xE PUSH18 0xF082A70269B41403F894B0579B8C95587BFB 0xB0 0x25 0xED 0xD2 0xE6 KECCAK256 0x2C SGT DUP10 PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "1034:4740:42:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4313:89;4390:5;4313:89;;;-1:-1:-1;;;;;5533:55:101;;;5515:74;;5503:2;5488:18;4313:89:42;;;;;;;;3906:116;4001:14;;-1:-1:-1;;;;;4001:14:42;3906:116;;3402:460;;;;;;:::i;:::-;;:::i;:::-;;;7157:14:101;;7150:22;7132:41;;7120:2;7105:18;3402:460:42;7087:92:101;4446:231:42;;;;;;:::i;:::-;;:::i;3147:129:33:-;;;:::i;:::-;;2508:94;;;:::i;1814:85::-;1860:7;1886:6;-1:-1:-1;;;;;1886:6:33;1814:85;;4066:203:42;;;;;;:::i;:::-;;:::i;:::-;;;12109:25:101;;;12097:2;12082:18;4066:203:42;12064:76:101;2156:1202:42;;;;;;:::i;:::-;;:::i;2014:101:33:-;2095:13;;-1:-1:-1;;;;;2095:13:33;2014:101;;2751:234;;;;;;:::i;:::-;;:::i;3402:460:42:-;3542:4;3838:10:33;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:33;;3819:58;;;;-1:-1:-1;;;3819:58:33;;9865:2:101;3819:58:33;;;9847:21:101;9904:2;9884:18;;;9877:30;9943:26;9923:18;;;9916:54;9987:18;;3819:58:33;;;;;;;;;-1:-1:-1;;;;;3566:17:42;::::1;3558:73;;;::::0;-1:-1:-1;;;3558:73:42;;10578:2:101;3558:73:42::1;::::0;::::1;10560:21:101::0;10617:2;10597:18;;;10590:30;10656:34;10636:18;;;10629:62;10727:13;10707:18;;;10700:41;10758:19;;3558:73:42::1;10550:233:101::0;3558:73:42::1;-1:-1:-1::0;;;;;3649:34:42;::::1;3641:86;;;::::0;-1:-1:-1;;;3641:86:42;;9457:2:101;3641:86:42::1;::::0;::::1;9439:21:101::0;9496:2;9476:18;;;9469:30;9535:34;9515:18;;;9508:62;9606:9;9586:18;;;9579:37;9633:19;;3641:86:42::1;9429:229:101::0;3641:86:42::1;3738:38;-1:-1:-1::0;;;;;3738:24:42;::::1;3763:3:::0;3768:7;3738:24:::1;:38::i;:::-;3820:3;-1:-1:-1::0;;;;;3792:41:42::1;3807:11;-1:-1:-1::0;;;;;3792:41:42::1;;3825:7;3792:41;;;;12109:25:101::0;;12097:2;12082:18;;12064:76;3792:41:42::1;;;;;;;;-1:-1:-1::0;3851:4:42::1;3887:1:33;3402:460:42::0;;;;;:::o;4446:231::-;4574:15;3838:10:33;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:33;;3819:58;;;;-1:-1:-1;;;3819:58:33;;9865:2:101;3819:58:33;;;9847:21:101;9904:2;9884:18;;;9877:30;9943:26;9923:18;;;9916:54;9987:18;;3819:58:33;9837:174:101;3819:58:33;4605:34:42::1;4624:14;4605:18;:34::i;:::-;-1:-1:-1::0;4656:14:42;3887:1:33::1;4446:231:42::0;;;:::o;3147:129:33:-;4050:13;;-1:-1:-1;;;;;4050:13:33;4036:10;:27;4028:71;;;;-1:-1:-1;;;4028:71:33;;10218:2:101;4028:71:33;;;10200:21:101;10257:2;10237:18;;;10230:30;10296:33;10276:18;;;10269:61;10347:18;;4028:71:33;10190:181:101;4028:71:33;3219:13:::1;::::0;3209:24:::1;::::0;-1:-1:-1;;;;;3219:13:33::1;3209:9;:24::i;:::-;3243:13;:26:::0;;-1:-1:-1;;3243:26:33::1;::::0;;3147:129::o;2508:94::-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:33;;3819:58;;;;-1:-1:-1;;;3819:58:33;;9865:2:101;3819:58:33;;;9847:21:101;9904:2;9884:18;;;9877:30;9943:26;9923:18;;;9916:54;9987:18;;3819:58:33;9837:174:101;3819:58:33;2574:21:::1;2592:1;2574:9;:21::i;:::-;2508:94::o:0;4066:203:42:-;-1:-1:-1;;;;;4880:22:42;;4193:7;4880:22;;;:15;:22;;;;;;;;:31;;;;;;;;;;;4223:39;4739:179;2156:1202;2394:14;;:48;;;;;2293:7;;;;;;-1:-1:-1;;;;;2394:14:42;;:24;;:48;;2419:5;;2426:8;;;;2436:5;;;;2394:48;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;2394:48:42;;;;;;;;;;;;:::i;:::-;-1:-1:-1;2549:18:42;;2359:83;;-1:-1:-1;2521:25:42;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:42;;2775:17;4880:22;;;:15;:22;;;;;;:31;;;;;;;;;;;;2737:24;;-1:-1:-1;4880:31:42;2971:18;;;2963:59;;;;-1:-1:-1;;;2963:59:42;;8334:2:101;2963:59:42;;;8316:21:101;8373:2;8353:18;;;8346:30;8412;8392:18;;;8385:58;8460:18;;2963:59:42;8306:178:101;2963:59:42;-1:-1:-1;;;;;;5054:22:42;;;;;;:15;:22;;;;;;;;:31;;;;;;;;;;:41;;;3078:18;;;3186:25;3201:10;3186:25;;:::i;:::-;;;3250:6;3231:38;;3243:5;-1:-1:-1;;;;;3231:38:42;;3258:10;3231:38;;;;12109:25:101;;12097:2;12082:18;;12064:76;3231:38:42;;;;;;;;2655:625;;;;2640:13;;;;;:::i;:::-;;;;2577:703;;;;3290:32;3303:5;3310:11;3290:12;:32::i;:::-;-1:-1:-1;3340:11:42;;2156:1202;-1:-1:-1;;;;;;;2156:1202:42:o;2751:234:33:-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:33;;3819:58;;;;-1:-1:-1;;;3819:58:33;;9865:2:101;3819:58:33;;;9847:21:101;9904:2;9884:18;;;9877:30;9943:26;9923:18;;;9916:54;9987:18;;3819:58:33;9837:174:101;3819:58:33;-1:-1:-1;;;;;2834:23:33;::::1;2826:73;;;::::0;-1:-1:-1;;;2826:73:33;;11348:2:101;2826:73:33::1;::::0;::::1;11330:21:101::0;11387:2;11367:18;;;11360:30;11426:34;11406:18;;;11399:62;11497:7;11477:18;;;11470:35;11522:19;;2826:73:33::1;11320:227:101::0;2826:73:33::1;2910:13;:25:::0;;-1:-1:-1;;2910:25:33::1;-1:-1:-1::0;;;;;2910:25:33;::::1;::::0;;::::1;::::0;;;2951:27:::1;::::0;::::1;::::0;-1:-1:-1;;2951:27:33::1;2751:234:::0;:::o;701:205:9:-;840:58;;;-1:-1:-1;;;;;6882:55:101;;840:58:9;;;6864:74:101;6954:18;;;;6947:34;;;840:58:9;;;;;;;;;;6837:18:101;;;;840:58:9;;;;;;;;;;863:23;840:58;;;813:86;;833:5;;813:19;:86::i;:::-;701:205;;;:::o;5246:256:42:-;-1:-1:-1;;;;;5333:37:42;;5325:80;;;;-1:-1:-1;;;5325:80:42;;8691:2:101;5325:80:42;;;8673:21:101;8730:2;8710:18;;;8703:30;8769:32;8749:18;;;8742:60;8819:18;;5325:80:42;8663:180:101;5325:80:42;5415:14;:31;;-1:-1:-1;;5415:31:42;-1:-1:-1;;;;;5415:31:42;;;;;;;;5462:33;;;;-1:-1:-1;;5462:33:42;5246:256;:::o;3470:174:33:-;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:33;;;-1:-1:-1;;3562:18:33;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;5661:110:42:-;5732:32;-1:-1:-1;;;;;5732:5:42;:18;5751:3;5756:7;5732:18;:32::i;:::-;5661:110;;:::o;3207:706:9:-;3626:23;3652:69;3680:4;3652:69;;;;;;;;;;;;;;;;;3660:5;-1:-1:-1;;;;;3652:27:9;;;:69;;;;;:::i;:::-;3735:17;;3626:95;;-1:-1:-1;3735:21:9;3731:176;;3830:10;3819:30;;;;;;;;;;;;:::i;:::-;3811:85;;;;-1:-1:-1;;;3811:85:9;;11754:2:101;3811:85:9;;;11736:21:101;11793:2;11773:18;;;11766:30;11832:34;11812:18;;;11805:62;11903:12;11883:18;;;11876:40;11933:19;;3811:85:9;11726:232:101;3514:223:12;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:12:o;4601:499::-;4766:12;4823:5;4798:21;:30;;4790:81;;;;-1:-1:-1;;;4790:81:12;;9050:2:101;4790:81:12;;;9032:21:101;9089:2;9069:18;;;9062:30;9128:34;9108:18;;;9101:62;9199:8;9179:18;;;9172:36;9225:19;;4790:81:12;9022:228:101;4790:81:12;1087:20;;4881:60;;;;-1:-1:-1;;;4881:60:12;;10990:2:101;4881:60:12;;;10972:21:101;11029:2;11009:18;;;11002:30;11068:31;11048:18;;;11041:59;11117:18;;4881:60:12;10962:179:101;4881:60:12;4953:12;4967:23;4994:6;-1:-1:-1;;;;;4994:11:12;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:12:o;7214:692::-;7360:12;7388:7;7384:516;;;-1:-1:-1;7418:10:12;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:12;;;;;;;;:::i;14:347:101:-;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:101;;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:101;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:101;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:101;;-1:-1:-1;2341:8:101;;2236:86;1503:879;-1:-1:-1;;;1503:879:101: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:101;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:101;;;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:101;;;3705:25;3675:5;;-1:-1:-1;3705:25:101;;-1:-1:-1;;;;3742:16:101;;;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;4426:470;4517:6;4525;4533;4586:2;4574:9;4565:7;4561:23;4557:32;4554:2;;;4602:1;4599;4592:12;4554:2;4641:9;4628:23;4660:31;4685:5;4660:31;:::i;:::-;4710:5;-1:-1:-1;4767:2:101;4752:18;;4739:32;4780:33;4739:32;4780:33;:::i;:::-;4544:352;;4832:7;;-1:-1:-1;;;4886:2:101;4871:18;;;;4858:32;;4544:352::o;4901:184::-;4959:6;5012:2;5000:9;4991:7;4987:23;4983:32;4980:2;;;5028:1;5025;5018:12;4980:2;5051:28;5069:9;5051:28;:::i;5090:274::-;5219:3;5257:6;5251:13;5273:53;5319:6;5314:3;5307:4;5299:6;5295:17;5273:53;:::i;:::-;5342:16;;;;;5227:137;-1:-1:-1;;5227:137:101:o;5600:1085::-;-1:-1:-1;;;;;5912:55:101;;5894:74;;5882:2;5987;6005:18;;;5998:30;;;5867:18;;;6063:22;;;5834:4;;6143:6;;6116:3;6101:19;;5834:4;6177:198;6191:6;6188:1;6185:13;6177:198;;;6283:10;6256:25;6274:6;6256:25;:::i;:::-;6252:42;6240:55;;6350:15;;;;6315:12;;;;6213:1;6206:9;6177:198;;;6181:3;6420:9;6415:3;6411:19;6406:2;6395:9;6391:18;6384:47;6452:6;6447:3;6440:19;6503:6;6495;6490:2;6485:3;6481:12;6468:42;6553:1;6530:16;;;6526:25;;6519:36;6601:2;6589:15;;;-1:-1:-1;;6585:88:101;6576:98;;;6572:107;;;;5843:842;-1:-1:-1;;;;;;;5843:842:101:o;7685:442::-;7834:2;7823:9;7816:21;7797:4;7866:6;7860:13;7909:6;7904:2;7893:9;7889:18;7882:34;7925:66;7984:6;7979:2;7968:9;7964:18;7959:2;7951:6;7947:15;7925:66;:::i;:::-;8043:2;8031:15;-1:-1:-1;;8027:88:101;8012:104;;;;8118:2;8008:113;;7806:321;-1:-1:-1;;7806:321:101:o;12145:334::-;12216:2;12210:9;12272:2;12262:13;;-1:-1:-1;;12258:86:101;12246:99;;12375:18;12360:34;;12396:22;;;12357:62;12354:2;;;12422:18;;:::i;:::-;12458:2;12451:22;12190:289;;-1:-1:-1;12190:289:101:o;12484:128::-;12524:3;12555:1;12551:6;12548:1;12545:13;12542:2;;;12561:18;;:::i;:::-;-1:-1:-1;12597:9:101;;12532:80::o;12617:258::-;12689:1;12699:113;12713:6;12710:1;12707:13;12699:113;;;12789:11;;;12783:18;12770:11;;;12763:39;12735:2;12728:10;12699:113;;;12830:6;12827:1;12824:13;12821:2;;;12865:1;12856:6;12851:3;12847:16;12840:27;12821:2;;12670:205;;;:::o;12880:195::-;12919:3;12950:66;12943:5;12940:77;12937:2;;;13020:18;;:::i;:::-;-1:-1:-1;13067:1:101;13056:13;;12927:148::o;13080:184::-;-1:-1:-1;;;13129:1:101;13122:88;13229:4;13226:1;13219:15;13253:4;13250:1;13243:15;13269:184;-1:-1:-1;;;13318:1:101;13311:88;13418:4;13415:1;13408:15;13442:4;13439:1;13432:15;13458:184;-1:-1:-1;;;13507:1:101;13500:88;13607:4;13604:1;13597:15;13631:4;13628:1;13621:15;13647:154;-1:-1:-1;;;;;13726:5:101;13722:54;13715:5;13712:65;13702:2;;13791:1;13788;13781:12;13702:2;13692: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 valid 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.8.6;\\n\\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..)\\n */\\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   */\\n  event RandomNumberRequested(uint32 indexed requestId, address indexed sender);\\n\\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   */\\n  event RandomNumberCompleted(uint32 indexed requestId, uint256 randomNumber);\\n\\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   */\\n  function getLastRequestId() external view returns (uint32 requestId);\\n\\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   */\\n  function getRequestFee() external view returns (address feeToken, uint256 requestFee);\\n\\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.\\n   * The calling contract should \\\"lock\\\" all activity until the result is available via the `requestId`\\n   */\\n  function requestRandomNumber() external returns (uint32 requestId, uint32 lockBlock);\\n\\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   */\\n  function isRequestComplete(uint32 requestId) external view returns (bool isCompleted);\\n\\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   */\\n  function randomNumber(uint32 requestId) external returns (uint256 randomNum);\\n}\\n\",\"keccak256\":\"0x24803ae776bba768a3a3f65d3b7e5fc100c7b5881a8e5e39d6c5df2735a3b5cb\",\"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 IPrizeDistributionSource\\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\":\"0xdfcc3dc33457e44d8917f33185925eff78ea21e5018250b3accf2db8a7aa0242\",\"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 prizeDistributionBuffer variable.\\n     * @return IPrizeDistributionBuffer\\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 drawIds 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\":\"0x51b3bacbdd715929d909063e66519096c2ef858b646e80f66691d155ccc8d520\",\"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\\nimport \\\"./IPrizeDistributionSource.sol\\\";\\n\\n/** @title  IPrizeDistributionBuffer\\n * @author PoolTogether Inc Team\\n * @notice The PrizeDistributionBuffer interface.\\n */\\ninterface IPrizeDistributionBuffer is IPrizeDistributionSource {\\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 (\\n            IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution,\\n            uint32 drawId\\n        );\\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 (\\n            IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution,\\n            uint32 drawId\\n        );\\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(\\n        uint32 drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata draw\\n    ) external returns (uint32);\\n}\\n\",\"keccak256\":\"0xa66b0d958502adda03e80924381bae30802f1c8d80823a9b787b8c66f6a7d835\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionSource.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/** @title IPrizeDistributionSource\\n * @author PoolTogether Inc Team\\n * @notice The PrizeDistributionSource interface.\\n */\\ninterface IPrizeDistributionSource {\\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 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 (PrizeDistribution[] memory);\\n}\\n\",\"keccak256\":\"0x05ec47edc2684790a869a866576e7338229cc4eeafe1171bfc8cd7fa1c0cc9a0\",\"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 valid 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\":\"0x9d90a364aafbb26a680259ad470222368aabe139cd6200eeb02ec0c6b93bc317\",\"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 buffer) 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 of 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 seven year minimum,\\n                of accurate historical lookups with current estimates of 1 new block\\n                every 15 seconds - assuming each block contains 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\":\"0x446d8221329601d40464981a50a0e31f3fd48da0ebf0fea646c5a089ccfbdff4\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 5205,
                "contract": "@pooltogether/v4-core/contracts/PrizeDistributor.sol:PrizeDistributor",
                "label": "_owner",
                "offset": 0,
                "slot": "0",
                "type": "t_address"
              },
              {
                "astId": 5207,
                "contract": "@pooltogether/v4-core/contracts/PrizeDistributor.sol:PrizeDistributor",
                "label": "_pendingOwner",
                "offset": 0,
                "slot": "1",
                "type": "t_address"
              },
              {
                "astId": 8816,
                "contract": "@pooltogether/v4-core/contracts/PrizeDistributor.sol:PrizeDistributor",
                "label": "drawCalculator",
                "offset": 0,
                "slot": "2",
                "type": "t_contract(IDrawCalculator)11003"
              },
              {
                "astId": 8827,
                "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)11003": {
                "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 valid 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": {
                "@_5230": {
                  "entryPoint": null,
                  "id": 5230,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_9234": {
                  "entryPoint": null,
                  "id": 9234,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_setOwner_5327": {
                  "entryPoint": 143,
                  "id": 5327,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "abi_decode_tuple_t_addresst_contract$_IERC20_$890_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:101",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:101",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "126:287:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "172:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "181:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "184:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "174:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "174:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "174:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "147:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "156:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "143:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "143:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "168:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "139:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "139:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "136:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "197:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "216:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "210:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "210:16:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "201:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "260:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "235:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "235:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "235:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "275:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "285:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "275:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "299:40:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "324:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "335:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "320:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "320:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "314:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "314:25:101"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "303:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "373:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "348:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "348:33:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "348:33:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "390:17:101",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "400:7:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "390:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_contract$_IERC20_$890_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "84:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "95:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "107:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "115:6:101",
                            "type": ""
                          }
                        ],
                        "src": "14:399:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "463:86:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "527:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "536:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "539:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "529:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "529:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "529:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "486:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "497:5:101"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "512:3:101",
                                                    "type": "",
                                                    "value": "160"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "517:1:101",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "508:3:101"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "508:11:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "521:1:101",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "504:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "504:19:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "493:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "493:31:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "483:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "483:42:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "476:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "476:50:101"
                              },
                              "nodeType": "YulIf",
                              "src": "473:2:101"
                            }
                          ]
                        },
                        "name": "validator_revert_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "452:5:101",
                            "type": ""
                          }
                        ],
                        "src": "418:131:101"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_tuple_t_addresst_contract$_IERC20_$890_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": 101,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "60a06040523480156200001157600080fd5b50604051620016ee380380620016ee8339810160408190526200003491620000df565b8162000040816200008f565b506001600160601b0319606082901b166080526040516001600160a01b038216907ff40fcec21964ffb566044d083b4073f29f7f7929110ea19e1b3ebe375d89055e90600090a2505062000137565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008060408385031215620000f357600080fd5b825162000100816200011e565b602084015190925062000113816200011e565b809150509250929050565b6001600160a01b03811681146200013457600080fd5b50565b60805160601c6115846200016a6000396000818160fb015281816101fc01528181610327015261078601526115846000f3fe608060405234801561001057600080fd5b50600436106100df5760003560e01c80638da5cb5b1161008c578063d0ebdbe711610066578063d0ebdbe7146101b0578063e30c3978146101d3578063f2fde38b146101e4578063fc0c546a146101f757600080fd5b80638da5cb5b14610184578063af6a940014610195578063c2c4c5c1146101a857600080fd5b8063481c6a75116100bd578063481c6a75146101635780634e71e0c814610174578063715018a61461017c57600080fd5b8063205c2878146100e457806321df0da7146100f95780632d00ddda14610138575b600080fd5b6100f76100f23660046112ef565b61021e565b005b7f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b0390911681526020015b60405180910390f35b60035461014b906001600160e01b031681565b6040516001600160e01b03909116815260200161012f565b6002546001600160a01b031661011b565b6100f76103a5565b6100f7610433565b6000546001600160a01b031661011b565b61014b6101a3366004611354565b6104a8565b6100f7610576565b6101c36101be3660046112d4565b61057e565b604051901515815260200161012f565b6001546001600160a01b031661011b565b6100f76101f23660046112d4565b6105fa565b61011b7f000000000000000000000000000000000000000000000000000000000000000081565b336102316002546001600160a01b031690565b6001600160a01b0316148061025f5750336102546000546001600160a01b031690565b6001600160a01b0316145b6102d65760405162461bcd60e51b815260206004820152602660248201527f4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f7260448201527f2d6f776e6572000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6102de610736565b600380548291906000906102fc9084906001600160e01b03166113f4565b92506101000a8154816001600160e01b0302191690836001600160e01b0316021790555061035e82827f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166109fd9092919063ffffffff16565b816001600160a01b03167f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d58260405161039991815260200190565b60405180910390a25050565b6001546001600160a01b031633146103ff5760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e65720060448201526064016102cd565b600154610414906001600160a01b0316610a6d565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b336104466000546001600160a01b031690565b6001600160a01b03161461049c5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016102cd565b6104a66000610a6d565b565b60008163ffffffff168363ffffffff16106105055760405162461bcd60e51b815260206004820152601b60248201527f526573657276652f73746172742d6c6573732d7468616e2d656e64000000000060448201526064016102cd565b60045462ffffff630100000082048116911660008061052383610aca565b9150915060008061053385610b40565b915091506000610547848387868b8f610bb3565b90506000610559858488878c8f610bb3565b90506105658282611489565b985050505050505050505b92915050565b6104a6610736565b6000336105936000546001600160a01b031690565b6001600160a01b0316146105e95760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016102cd565b6105f282610c5a565b90505b919050565b3361060d6000546001600160a01b031690565b6001600160a01b0316146106635760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016102cd565b6001600160a01b0381166106df5760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016102cd565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b600480546040517f70a08231000000000000000000000000000000000000000000000000000000008152309281019290925262ffffff630100000082048116929116906000906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906370a082319060240160206040518083038186803b1580156107c857600080fd5b505afa1580156107dc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610800919061133b565b6003549091506001600160e01b031660008061081b85610aca565b9150915080600001516001600160e01b0316836001600160e01b031685610842919061143d565b11156109f55742600061085585876113f4565b90508163ffffffff16836020015163ffffffff161461094a576040518060400160405280826001600160e01b031681526020018363ffffffff1681525060058862ffffff1662ffffff81106108ac576108ac611538565b825160209093015163ffffffff16600160e01b026001600160e01b03909316929092179101556108e262ffffff80891690610d46565b600480547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000001662ffffff92831617905588811610156109455761092688600161141f565b600460036101000a81548162ffffff021916908362ffffff1602179055505b6109af565b6040518060400160405280826001600160e01b031681526020018363ffffffff1681525060058562ffffff1662ffffff811061098857610988611538565b825160209093015163ffffffff16600160e01b026001600160e01b03909316929092179101555b604080516001600160e01b038084168252871660208201527f21d81d5d656869e8ce3ba8d65526a2f0dbbcd3d36f5f9999eb7c84360e45eced910160405180910390a150505b505050505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b03167fa9059cbb00000000000000000000000000000000000000000000000000000000179052610a68908490610d63565b505050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040805180820190915260008082526020820181905290610af162ffffff80851690610e48565b915060058262ffffff1662ffffff8110610b0d57610b0d611538565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff166020820152919391925050565b60408051808201909152600080825260208201528190600562ffffff808416908110610b6e57610b6e611538565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff1660208201819052909150610bae5760009150600582610b0d565b915091565b60004262ffffff8416610bca576000915050610c50565b8263ffffffff16876020015163ffffffff161115610bec576000915050610c50565b8263ffffffff16886020015163ffffffff1611610c0c5750508551610c50565b600080610c1e60058989888a88610e70565b915091508463ffffffff16816020015163ffffffff161415610c4557519250610c50915050565b50519150610c509050565b9695505050505050565b6002546000906001600160a01b03908116908316811415610ce35760405162461bcd60e51b815260206004820152602360248201527f4d616e61676561626c652f6578697374696e672d6d616e616765722d6164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016102cd565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385811691821790925560405190918316907f9cb45c728de594dab506a1f1a8554e24c8eeaf983618d5ec5dd7bc6f3c49feee90600090a350600192915050565b6000610d5c610d5684600161143d565b8361103d565b9392505050565b6000610db8826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166110499092919063ffffffff16565b805190915015610a685780806020019051810190610dd69190611319565b610a685760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016102cd565b600081610e5757506000610570565b610d5c6001610e66848661143d565b610d5691906114b1565b6040805180820190915260008082526020820152604080518082019091526000808252602082015260008662ffffff1690506000818962ffffff1610610ebb578862ffffff16610ed6565b6001610ecc62ffffff88168461143d565b610ed691906114b1565b905060005b6002610ee7838561143d565b610ef19190611475565b90508a610f03828962ffffff1661103d565b62ffffff1662ffffff8110610f1a57610f1a611538565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff166020820181905290955080610f6257610f5a82600161143d565b935050610edb565b8b610f72838a62ffffff16610d46565b62ffffff1662ffffff8110610f8957610f89611538565b604080518082019091529101546001600160e01b038116825263ffffffff600160e01b90910481166020830152909550600090610fce90838116908c908b9061106016565b9050808015610ff75750610ff78660200151898c63ffffffff166110609092919063ffffffff16565b1561100357505061102f565b8061101a576110136001846114b1565b9350611028565b61102583600161143d565b94505b5050610edb565b505050965096945050505050565b6000610d5c82846114f8565b60606110588484600085611131565b949350505050565b60008163ffffffff168463ffffffff161115801561108a57508163ffffffff168363ffffffff1611155b156110a6578263ffffffff168463ffffffff1611159050610d5c565b60008263ffffffff168563ffffffff16116110d5576110d063ffffffff8616640100000000611455565b6110dd565b8463ffffffff165b64ffffffffff16905060008363ffffffff168563ffffffff16116111155761111063ffffffff8616640100000000611455565b61111d565b8463ffffffff165b64ffffffffff169091111595945050505050565b6060824710156111a95760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c000000000000000000000000000000000000000000000000000060648201526084016102cd565b843b6111f75760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016102cd565b600080866001600160a01b031685876040516112139190611387565b60006040518083038185875af1925050503d8060008114611250576040519150601f19603f3d011682016040523d82523d6000602084013e611255565b606091505b5091509150611265828286611270565b979650505050505050565b6060831561127f575081610d5c565b82511561128f5782518084602001fd5b8160405162461bcd60e51b81526004016102cd91906113a3565b80356001600160a01b03811681146105f557600080fd5b803563ffffffff811681146105f557600080fd5b6000602082840312156112e657600080fd5b610d5c826112a9565b6000806040838503121561130257600080fd5b61130b836112a9565b946020939093013593505050565b60006020828403121561132b57600080fd5b81518015158114610d5c57600080fd5b60006020828403121561134d57600080fd5b5051919050565b6000806040838503121561136757600080fd5b611370836112c0565b915061137e602084016112c0565b90509250929050565b600082516113998184602087016114c8565b9190910192915050565b60208152600082518060208401526113c28160408501602087016114c8565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b60006001600160e01b038083168185168083038211156114165761141661150c565b01949350505050565b600062ffffff8083168185168083038211156114165761141661150c565b600082198211156114505761145061150c565b500190565b600064ffffffffff8083168185168083038211156114165761141661150c565b60008261148457611484611522565b500490565b60006001600160e01b03838116908316818110156114a9576114a961150c565b039392505050565b6000828210156114c3576114c361150c565b500390565b60005b838110156114e35781810151838201526020016114cb565b838111156114f2576000848401525b50505050565b60008261150757611507611522565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fdfea26469706673582212206218ec2db2d48e2bb210886db652bdcc98e73542c205c3ac93aad800bd8fc89764736f6c63430008060033",
              "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 0x526573657276652F73746172742D6C6573732D7468616E2D656E640000000000 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 PUSH3 0x18EC2D 0xB2 0xD4 DUP15 0x2B 0xB2 LT DUP9 PUSH14 0xB652BDCC98E73542C205C3AC93AA 0xD8 STOP 0xBD DUP16 0xC8 SWAP8 PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "1299:8854:43:-:0;;;2105:121;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2156:6;1648:24:33;2156:6:43;1648:9:33;:24::i;:::-;-1:-1:-1;;;;;;;2174:14:43::1;::::0;;;;::::1;::::0;2203:16:::1;::::0;-1:-1:-1;;;;;2174:14:43;::::1;::::0;2203:16:::1;::::0;;;::::1;2105:121:::0;;1299:8854;;3470:174:33;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:33;;;-1:-1:-1;;;;;;3562:18:33;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;14:399:101:-;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:101;314:25;348:33;:::i;:::-;400:7;390:17;;;126:287;;;;;:::o;418:131::-;-1:-1:-1;;;;;493:31:101;;483:42;;473:2;;539:1;536;529:12;473:2;463:86;:::o;:::-;1299:8854:43;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@_callOptionalReturn_1343": {
                  "entryPoint": 3427,
                  "id": 1343,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_checkpoint_9557": {
                  "entryPoint": 1846,
                  "id": 9557,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@_getNewestObservation_9624": {
                  "entryPoint": 2762,
                  "id": 9624,
                  "parameterSlots": 1,
                  "returnSlots": 2
                },
                "@_getOldestObservation_9595": {
                  "entryPoint": 2880,
                  "id": 9595,
                  "parameterSlots": 1,
                  "returnSlots": 2
                },
                "@_getReserveAccumulatedAt_9442": {
                  "entryPoint": 2995,
                  "id": 9442,
                  "parameterSlots": 6,
                  "returnSlots": 1
                },
                "@_setManager_5165": {
                  "entryPoint": 3162,
                  "id": 5165,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_setOwner_5327": {
                  "entryPoint": 2669,
                  "id": 5327,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@binarySearch_12203": {
                  "entryPoint": 3696,
                  "id": 12203,
                  "parameterSlots": 6,
                  "returnSlots": 2
                },
                "@checkpoint_9243": {
                  "entryPoint": 1398,
                  "id": 9243,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@claimOwnership_5307": {
                  "entryPoint": 933,
                  "id": 5307,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@functionCallWithValue_1639": {
                  "entryPoint": 4401,
                  "id": 1639,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "@functionCall_1569": {
                  "entryPoint": 4169,
                  "id": 1569,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@getReserveAccumulatedBetween_9325": {
                  "entryPoint": 1192,
                  "id": 9325,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@getToken_9254": {
                  "entryPoint": null,
                  "id": 9254,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@isContract_1498": {
                  "entryPoint": null,
                  "id": 1498,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@lte_12317": {
                  "entryPoint": 4192,
                  "id": 12317,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@manager_5119": {
                  "entryPoint": null,
                  "id": 5119,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@newestIndex_12442": {
                  "entryPoint": 3656,
                  "id": 12442,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@nextIndex_12460": {
                  "entryPoint": 3398,
                  "id": 12460,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@owner_5239": {
                  "entryPoint": null,
                  "id": 5239,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@pendingOwner_5248": {
                  "entryPoint": null,
                  "id": 5248,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@renounceOwnership_5262": {
                  "entryPoint": 1075,
                  "id": 5262,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@safeTransfer_1151": {
                  "entryPoint": 2557,
                  "id": 1151,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@setManager_5134": {
                  "entryPoint": 1406,
                  "id": 5134,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@token_9190": {
                  "entryPoint": null,
                  "id": 9190,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@transferOwnership_5289": {
                  "entryPoint": 1530,
                  "id": 5289,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@verifyCallResult_1774": {
                  "entryPoint": 4720,
                  "id": 1774,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@withdrawAccumulator_9193": {
                  "entryPoint": null,
                  "id": 9193,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@withdrawTo_9359": {
                  "entryPoint": 542,
                  "id": 9359,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@wrap_12393": {
                  "entryPoint": 4157,
                  "id": 12393,
                  "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_$890__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_4d84b71e55d064d66bafac0d640c9a3219796f833676f31bba05b3cc08ac0349__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_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:101",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:101",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "63:147:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "73:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "95:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "82:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "82:20:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "73:5:101"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "188:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "197:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "200:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "190:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "190:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "190:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "124:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "135:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "142:42:101",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "131:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "131:54:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "121:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "121:65:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "114:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "114:73:101"
                              },
                              "nodeType": "YulIf",
                              "src": "111:2:101"
                            }
                          ]
                        },
                        "name": "abi_decode_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "42:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "53:5:101",
                            "type": ""
                          }
                        ],
                        "src": "14:196:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "263:115:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "273:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "295:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "282:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "282:20:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "273:5:101"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "356:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "365:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "368:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "358:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "358:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "358:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "324:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "335:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "342:10:101",
                                            "type": "",
                                            "value": "0xffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "331:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "331:22:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "321:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "321:33:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "314:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "314:41:101"
                              },
                              "nodeType": "YulIf",
                              "src": "311:2:101"
                            }
                          ]
                        },
                        "name": "abi_decode_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "242:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "253:5:101",
                            "type": ""
                          }
                        ],
                        "src": "215:163:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "453:116:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "499:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "508:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "511:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "501:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "501:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "501:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "474:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "483:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "470:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "470:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "495:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "466:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "466:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "463:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "524:39:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "553:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "534:18:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "534:29:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "524:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "419:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "430:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "442:6:101",
                            "type": ""
                          }
                        ],
                        "src": "383:186:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "661:167:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "707:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "716:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "719:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "709:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "709:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "709:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "682:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "691:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "678:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "678:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "703:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "674:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "674:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "671:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "732:39:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "761:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "742:18:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "742:29:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "732:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "780:42:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "807:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "818:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "803:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "803:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "790:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "790:32:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "780:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "619:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "630:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "642:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "650:6:101",
                            "type": ""
                          }
                        ],
                        "src": "574:254:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "911:199:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "957:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "966:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "969:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "959:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "959:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "959:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "932:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "941:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "928:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "928:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "953:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "924:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "924:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "921:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "982:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1001:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "995:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "995:16:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "986:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1064:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1073:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1076:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1066:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1066:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1066:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1033:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "1054:5:101"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "iszero",
                                              "nodeType": "YulIdentifier",
                                              "src": "1047:6:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1047:13:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "1040:6:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1040:21:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1030:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1030:32:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1023:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1023:40:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1020:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1089:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1099:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1089:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_bool_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "877:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "888:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "900:6:101",
                            "type": ""
                          }
                        ],
                        "src": "833:277:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1196:103:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1242:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1251:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1254:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1244:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1244:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1244:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1217:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1226:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1213:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1213:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1238:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1209:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1209:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1206:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1267:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1283:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1277:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1277:16:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1267:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1162:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1173:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1185:6:101",
                            "type": ""
                          }
                        ],
                        "src": "1115:184:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1389:171:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1435:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1444:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1447:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1437:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1437:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1437:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1410:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1419:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1406:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1406:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1431:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1402:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1402:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1399:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1460:38:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1488:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "1470:17:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1470:28:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1460:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1507:47:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1539:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1550:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1535:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1535:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "1517:17:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1517:37:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1507:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint32t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1347:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1358:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1370:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1378:6:101",
                            "type": ""
                          }
                        ],
                        "src": "1304:256:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1702:137:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1712:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "1732:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1726:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1726:13:101"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "1716:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "1774:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1782:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1770:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1770:17:101"
                                  },
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "1789:3:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1794:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1748:21:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1748:53:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1748:53:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1810:23:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "1821:3:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1826:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1817:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1817:16:101"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "1810:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "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:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1683:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "1694:3:101",
                            "type": ""
                          }
                        ],
                        "src": "1565:274:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1945:125:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1955:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1967:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1978:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1963:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1963:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1955:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1997:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "2012:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2020:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2008:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2008:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1990:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1990:74:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1990:74:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1914:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1925:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1936:4:101",
                            "type": ""
                          }
                        ],
                        "src": "1844:226:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2204:168:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2214:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2226:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2237:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2222:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2222:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2214:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2256:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "2271:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2279:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2267:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2267:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2249:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2249:74:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2249:74:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2343:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2354:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2339:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2339:18:101"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2359:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2332:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2332:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2332:34:101"
                            }
                          ]
                        },
                        "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:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2176:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2184:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2195:4:101",
                            "type": ""
                          }
                        ],
                        "src": "2075:297:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2472:92:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2482:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2494:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2505:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2490:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2490:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2482:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2524:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "2549:6:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "2542:6:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2542:14:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "2535:6:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2535:22:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2517:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2517:41:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2517:41:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2441:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2452:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2463:4:101",
                            "type": ""
                          }
                        ],
                        "src": "2377:187:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2684:125:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2694:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2706:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2717:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2702:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2702:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2694:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2736:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "2751:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2759:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2747:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2747:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2729:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2729:74:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2729:74:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IERC20_$890__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2653:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2664:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2675:4:101",
                            "type": ""
                          }
                        ],
                        "src": "2569:240:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2935:321:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2952:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2963:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2945:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2945:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2945:21:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2975:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "2995:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2989:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2989:13:101"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "2979:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3022:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3033:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3018:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3018:18:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "3038:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3011:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3011:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3011:34:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "3080:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3088:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3076:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3076:15:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3097:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3108:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3093:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3093:18:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "3113:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "3054:21:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3054:66:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3054:66:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3129:121:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3145:9:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "3164:6:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "3172:2:101",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "3160:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "3160:15:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "3177:66:101",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "3156:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3156:88:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3141:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3141:104:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3247:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3137:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3137:113:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3129:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "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:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2915:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2926:4:101",
                            "type": ""
                          }
                        ],
                        "src": "2814:442:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3435:225:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3452:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3463:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3445:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3445:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3445:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3486:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3497:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3482:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3482:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3502:2:101",
                                    "type": "",
                                    "value": "35"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3475:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3475:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3475:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3525:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3536:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3521:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3521:18:101"
                                  },
                                  {
                                    "hexValue": "4d616e61676561626c652f6578697374696e672d6d616e616765722d61646472",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3541:34:101",
                                    "type": "",
                                    "value": "Manageable/existing-manager-addr"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3514:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3514:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3514:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3596:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3607:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3592:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3592:18:101"
                                  },
                                  {
                                    "hexValue": "657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3612:5:101",
                                    "type": "",
                                    "value": "ess"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3585:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3585:33:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3585:33:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3627:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3639:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3650:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3635:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3635:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3627:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3412:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3426:4:101",
                            "type": ""
                          }
                        ],
                        "src": "3261:399:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3839:177:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3856:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3867:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3849:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3849:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3849:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3890:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3901:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3886:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3886:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3906:2:101",
                                    "type": "",
                                    "value": "27"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3879:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3879:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3879:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3929:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3940:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3925:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3925:18:101"
                                  },
                                  {
                                    "hexValue": "526573657276652f73746172742d6c6573732d7468616e2d656e64",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3945:29:101",
                                    "type": "",
                                    "value": "Reserve/start-less-than-end"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3918:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3918:57:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3918:57:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3984:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3996:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4007:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3992:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3992:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3984:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_4d84b71e55d064d66bafac0d640c9a3219796f833676f31bba05b3cc08ac0349__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3816:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3830:4:101",
                            "type": ""
                          }
                        ],
                        "src": "3665:351:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4195:228:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4212:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4223:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4205:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4205:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4205:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4246:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4257:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4242:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4242:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4262:2:101",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4235:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4235:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4235:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4285:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4296:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4281:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4281:18:101"
                                  },
                                  {
                                    "hexValue": "416464726573733a20696e73756666696369656e742062616c616e636520666f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4301:34:101",
                                    "type": "",
                                    "value": "Address: insufficient balance fo"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4274:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4274:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4274:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4356:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4367:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4352:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4352:18:101"
                                  },
                                  {
                                    "hexValue": "722063616c6c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4372:8:101",
                                    "type": "",
                                    "value": "r call"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4345:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4345:36:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4345:36:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4390:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4402:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4413:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4398:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4398:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4390:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4172:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4186:4:101",
                            "type": ""
                          }
                        ],
                        "src": "4021:402:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4602:174:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4619:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4630:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4612:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4612:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4612:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4653:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4664:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4649:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4649:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4669:2:101",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4642:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4642:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4642:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4692:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4703:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4688:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4688:18:101"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4708:26:101",
                                    "type": "",
                                    "value": "Ownable/caller-not-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4681:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4681:54:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4681:54:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4744:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4756:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4767:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4752:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4752:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4744:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4579:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4593:4:101",
                            "type": ""
                          }
                        ],
                        "src": "4428:348:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4955:181:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4972:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4983:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4965:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4965:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4965:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5006:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5017:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5002:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5002:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5022:2:101",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4995:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4995:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4995:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5045:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5056:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5041:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5041:18:101"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5061:33:101",
                                    "type": "",
                                    "value": "Ownable/caller-not-pendingOwner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5034:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5034:61:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5034:61:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5104:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5116:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5127:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5112:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5112:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5104:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4932:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4946:4:101",
                            "type": ""
                          }
                        ],
                        "src": "4781:355:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5315:228:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5332:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5343:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5325:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5325:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5325:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5366:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5377:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5362:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5362:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5382:2:101",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5355:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5355:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5355:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5405:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5416:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5401:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5401:18:101"
                                  },
                                  {
                                    "hexValue": "4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f72",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5421:34:101",
                                    "type": "",
                                    "value": "Manageable/caller-not-manager-or"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5394:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5394:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5394:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5476:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5487:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5472:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5472:18:101"
                                  },
                                  {
                                    "hexValue": "2d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5492:8:101",
                                    "type": "",
                                    "value": "-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5465:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5465:36:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5465:36:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5510:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5522:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5533:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5518:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5518:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5510:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5292:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5306:4:101",
                            "type": ""
                          }
                        ],
                        "src": "5141:402:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5722:179:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5739:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5750:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5732:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5732:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5732:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5773:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5784:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5769:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5769:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5789:2:101",
                                    "type": "",
                                    "value": "29"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5762:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5762:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5762:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5812:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5823:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5808:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5808:18:101"
                                  },
                                  {
                                    "hexValue": "416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5828:31:101",
                                    "type": "",
                                    "value": "Address: call to non-contract"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5801:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5801:59:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5801:59:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5869:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5881:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5892:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5877:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5877:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5869:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5699:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5713:4:101",
                            "type": ""
                          }
                        ],
                        "src": "5548:353:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6080:227:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6097:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6108:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6090:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6090:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6090:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6131:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6142:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6127:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6127:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6147:2:101",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6120:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6120:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6120:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6170:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6181:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6166:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6166:18:101"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d6164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6186:34:101",
                                    "type": "",
                                    "value": "Ownable/pendingOwner-not-zero-ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6159:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6159:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6159:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6241:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6252:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6237:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6237:18:101"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6257:7:101",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6230:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6230:35:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6230:35:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6274:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6286:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6297:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6282:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6282:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6274:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6057:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6071:4:101",
                            "type": ""
                          }
                        ],
                        "src": "5906:401:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6486:232:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6503:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6514:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6496:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6496:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6496:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6537:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6548:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6533:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6533:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6553:2:101",
                                    "type": "",
                                    "value": "42"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6526:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6526:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6526:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6576:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6587:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6572:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6572:18:101"
                                  },
                                  {
                                    "hexValue": "5361666545524332303a204552433230206f7065726174696f6e20646964206e",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6592:34:101",
                                    "type": "",
                                    "value": "SafeERC20: ERC20 operation did n"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6565:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6565:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6565:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6647:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6658:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6643:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6643:18:101"
                                  },
                                  {
                                    "hexValue": "6f742073756363656564",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6663:12:101",
                                    "type": "",
                                    "value": "ot succeed"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6636:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6636:40:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6636:40:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6685:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6697:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6708:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6693:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6693:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6685:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_e11ad79d1e4a7f2e5f376964cb99e8e8f7904e3fc16a109f7a7ecb9aa7956dcd__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6463:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6477:4:101",
                            "type": ""
                          }
                        ],
                        "src": "6312:406:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6824:141:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "6834:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6846:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6857:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6842:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6842:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6834:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6876:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "6891:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6899:58:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6887:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6887:71:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6869:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6869:90:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6869:90:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint224__to_t_uint224__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6793:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6804:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6815:4:101",
                            "type": ""
                          }
                        ],
                        "src": "6723:242:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7099:214:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7109:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7121:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7132:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7117:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7117:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7109:4:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7144:68:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "7154:58:101",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7148:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7228:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "7243:6:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "7251:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "7239:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7239:15:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7221:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7221:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7221:34:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7275:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7286:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7271:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7271:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "7295:6:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "7303:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "7291:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7291:15:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7264:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7264:43:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7264:43:101"
                            }
                          ]
                        },
                        "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:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "7071:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7079:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7090:4:101",
                            "type": ""
                          }
                        ],
                        "src": "6970:343:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7419:76:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7429:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7441:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7452:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7437:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7437:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7429:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7471:9:101"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "7482:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7464:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7464:25:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7464:25:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7388:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7399:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7410:4:101",
                            "type": ""
                          }
                        ],
                        "src": "7318:177:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7548:229:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7558:68:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "7568:58:101",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7562:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7635:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "7650:1:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7653:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "7646:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7646:10:101"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7639:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7665:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "7680:1:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7683:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "7676:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7676:10:101"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7669:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7720:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "7722:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7722:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7722:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7701:3:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "7710:2:101"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "7714:3:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "7706:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7706:12:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "7698:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7698:21:101"
                              },
                              "nodeType": "YulIf",
                              "src": "7695:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7751:20:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7762:3:101"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7767:3:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7758:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7758:13:101"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "7751:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint224",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "7531:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "7534:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "7540:3:101",
                            "type": ""
                          }
                        ],
                        "src": "7500:277:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7829:179:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7839:18:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "7849:8:101",
                                "type": "",
                                "value": "0xffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7843:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7866:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "7881:1:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7884:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "7877:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7877:10:101"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7870:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7896:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "7911:1:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7914:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "7907:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7907:10:101"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7900:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7951:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "7953:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7953:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7953:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7932:3:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "7941:2:101"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "7945:3:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "7937:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7937:12:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "7929:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7929:21:101"
                              },
                              "nodeType": "YulIf",
                              "src": "7926:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7982:20:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7993:3:101"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7998:3:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7989:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7989:13:101"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "7982:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint24",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "7812:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "7815:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "7821:3:101",
                            "type": ""
                          }
                        ],
                        "src": "7782:226:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8061:80:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8088:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "8090:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8090:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8090:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8077:1:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "8084:1:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "8080:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8080:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "8074:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8074:13:101"
                              },
                              "nodeType": "YulIf",
                              "src": "8071:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8119:16:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8130:1:101"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8133:1:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8126:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8126:9:101"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "8119:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "8044:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "8047:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "8053:3:101",
                            "type": ""
                          }
                        ],
                        "src": "8013:128:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8193:183:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8203:22:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "8213:12:101",
                                "type": "",
                                "value": "0xffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8207:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8234:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8249:1:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8252:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "8245:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8245:10:101"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8238:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8264:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8279:1:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8282:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "8275:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8275:10:101"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8268:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8319:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "8321:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8321:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8321:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8300:3:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "8309:2:101"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "8313:3:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "8305:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8305:12:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "8297:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8297:21:101"
                              },
                              "nodeType": "YulIf",
                              "src": "8294:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8350:20:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8361:3:101"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8366:3:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8357:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8357:13:101"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "8350:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint40",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "8176:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "8179:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "8185:3:101",
                            "type": ""
                          }
                        ],
                        "src": "8146:230:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8427:74:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8450:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x12",
                                        "nodeType": "YulIdentifier",
                                        "src": "8452:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8452:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8452:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8447:1:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "8440:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8440:9:101"
                              },
                              "nodeType": "YulIf",
                              "src": "8437:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8481:14:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8490:1:101"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8493:1:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "div",
                                  "nodeType": "YulIdentifier",
                                  "src": "8486:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8486:9:101"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "8481:1:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_div_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "8412:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "8415:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "8421:1:101",
                            "type": ""
                          }
                        ],
                        "src": "8381:120:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8555:221:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8565:68:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "8575:58:101",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8569:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8642:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8657:1:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8660:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "8653:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8653:10:101"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8646:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8672:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8687:1:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8690:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "8683:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8683:10:101"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8676:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8718:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "8720:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8720:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8720:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8708:3:101"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8713:3:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "8705:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8705:12:101"
                              },
                              "nodeType": "YulIf",
                              "src": "8702:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8749:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8761:3:101"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8766:3:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "8757:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8757:13:101"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "8749:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint224",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "8537:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "8540:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "8546:4:101",
                            "type": ""
                          }
                        ],
                        "src": "8506:270:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8830:76:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8852:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "8854:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8854:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8854:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8846:1:101"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8849:1:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "8843:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8843:8:101"
                              },
                              "nodeType": "YulIf",
                              "src": "8840:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8883:17:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8895:1:101"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8898:1:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "8891:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8891:9:101"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "8883:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "8812:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "8815:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "8821:4:101",
                            "type": ""
                          }
                        ],
                        "src": "8781:125:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8964:205:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8974:10:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "8983:1:101",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "8978:1:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9043:63:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "9068:3:101"
                                            },
                                            {
                                              "name": "i",
                                              "nodeType": "YulIdentifier",
                                              "src": "9073:1:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "9064:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "9064:11:101"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "9087:3:101"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "9092:1:101"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "9083:3:101"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "9083:11:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "9077:5:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "9077:18:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "9057:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9057:39:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9057:39:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "9004:1:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "9007:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "9001:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9001:13:101"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "9015:19:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "9017:15:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "9026:1:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9029:2:101",
                                          "type": "",
                                          "value": "32"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "9022:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9022:10:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "9017:1:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "8997:3:101",
                                "statements": []
                              },
                              "src": "8993:113:101"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9132:31:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "9145:3:101"
                                            },
                                            {
                                              "name": "length",
                                              "nodeType": "YulIdentifier",
                                              "src": "9150:6:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "9141:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "9141:16:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9159:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "9134:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9134:27:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9134:27:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "9121:1:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "9124:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "9118:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9118:13:101"
                              },
                              "nodeType": "YulIf",
                              "src": "9115:2:101"
                            }
                          ]
                        },
                        "name": "copy_memory_to_memory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "src",
                            "nodeType": "YulTypedName",
                            "src": "8942:3:101",
                            "type": ""
                          },
                          {
                            "name": "dst",
                            "nodeType": "YulTypedName",
                            "src": "8947:3:101",
                            "type": ""
                          },
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "8952:6:101",
                            "type": ""
                          }
                        ],
                        "src": "8911:258:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9212:74:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9235:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x12",
                                        "nodeType": "YulIdentifier",
                                        "src": "9237:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9237:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9237:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "9232:1:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "9225:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9225:9:101"
                              },
                              "nodeType": "YulIf",
                              "src": "9222:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9266:14:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "9275:1:101"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "9278:1:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mod",
                                  "nodeType": "YulIdentifier",
                                  "src": "9271:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9271:9:101"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "9266:1:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "mod_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "9197:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "9200:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "9206:1:101",
                            "type": ""
                          }
                        ],
                        "src": "9174:112:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9323:152:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9340:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9343:77:101",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9333:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9333:88:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9333:88:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9437:1:101",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9440:4:101",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9430:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9430:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9430:15:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9461:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9464:4:101",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "9454:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9454:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9454:15:101"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "9291:184:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9512:152:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9529:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9532:77:101",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9522:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9522:88:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9522:88:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9626:1:101",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9629:4:101",
                                    "type": "",
                                    "value": "0x12"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9619:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9619:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9619:15:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9650:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9653:4:101",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "9643:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9643:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9643:15:101"
                            }
                          ]
                        },
                        "name": "panic_error_0x12",
                        "nodeType": "YulFunctionDefinition",
                        "src": "9480:184:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9701:152:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9718:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9721:77:101",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9711:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9711:88:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9711:88:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9815:1:101",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9818:4:101",
                                    "type": "",
                                    "value": "0x32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9808:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9808:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9808:15:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9839:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9842:4:101",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "9832:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9832:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9832:15:101"
                            }
                          ]
                        },
                        "name": "panic_error_0x32",
                        "nodeType": "YulFunctionDefinition",
                        "src": "9669:184:101"
                      }
                    ]
                  },
                  "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_$890__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_4d84b71e55d064d66bafac0d640c9a3219796f833676f31bba05b3cc08ac0349__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-than-end\")\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_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": 101,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {
                "9190": [
                  {
                    "length": 32,
                    "start": 251
                  },
                  {
                    "length": 32,
                    "start": 508
                  },
                  {
                    "length": 32,
                    "start": 807
                  },
                  {
                    "length": 32,
                    "start": 1926
                  }
                ]
              },
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106100df5760003560e01c80638da5cb5b1161008c578063d0ebdbe711610066578063d0ebdbe7146101b0578063e30c3978146101d3578063f2fde38b146101e4578063fc0c546a146101f757600080fd5b80638da5cb5b14610184578063af6a940014610195578063c2c4c5c1146101a857600080fd5b8063481c6a75116100bd578063481c6a75146101635780634e71e0c814610174578063715018a61461017c57600080fd5b8063205c2878146100e457806321df0da7146100f95780632d00ddda14610138575b600080fd5b6100f76100f23660046112ef565b61021e565b005b7f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b0390911681526020015b60405180910390f35b60035461014b906001600160e01b031681565b6040516001600160e01b03909116815260200161012f565b6002546001600160a01b031661011b565b6100f76103a5565b6100f7610433565b6000546001600160a01b031661011b565b61014b6101a3366004611354565b6104a8565b6100f7610576565b6101c36101be3660046112d4565b61057e565b604051901515815260200161012f565b6001546001600160a01b031661011b565b6100f76101f23660046112d4565b6105fa565b61011b7f000000000000000000000000000000000000000000000000000000000000000081565b336102316002546001600160a01b031690565b6001600160a01b0316148061025f5750336102546000546001600160a01b031690565b6001600160a01b0316145b6102d65760405162461bcd60e51b815260206004820152602660248201527f4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f7260448201527f2d6f776e6572000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6102de610736565b600380548291906000906102fc9084906001600160e01b03166113f4565b92506101000a8154816001600160e01b0302191690836001600160e01b0316021790555061035e82827f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166109fd9092919063ffffffff16565b816001600160a01b03167f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d58260405161039991815260200190565b60405180910390a25050565b6001546001600160a01b031633146103ff5760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e65720060448201526064016102cd565b600154610414906001600160a01b0316610a6d565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b336104466000546001600160a01b031690565b6001600160a01b03161461049c5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016102cd565b6104a66000610a6d565b565b60008163ffffffff168363ffffffff16106105055760405162461bcd60e51b815260206004820152601b60248201527f526573657276652f73746172742d6c6573732d7468616e2d656e64000000000060448201526064016102cd565b60045462ffffff630100000082048116911660008061052383610aca565b9150915060008061053385610b40565b915091506000610547848387868b8f610bb3565b90506000610559858488878c8f610bb3565b90506105658282611489565b985050505050505050505b92915050565b6104a6610736565b6000336105936000546001600160a01b031690565b6001600160a01b0316146105e95760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016102cd565b6105f282610c5a565b90505b919050565b3361060d6000546001600160a01b031690565b6001600160a01b0316146106635760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016102cd565b6001600160a01b0381166106df5760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016102cd565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b600480546040517f70a08231000000000000000000000000000000000000000000000000000000008152309281019290925262ffffff630100000082048116929116906000906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906370a082319060240160206040518083038186803b1580156107c857600080fd5b505afa1580156107dc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610800919061133b565b6003549091506001600160e01b031660008061081b85610aca565b9150915080600001516001600160e01b0316836001600160e01b031685610842919061143d565b11156109f55742600061085585876113f4565b90508163ffffffff16836020015163ffffffff161461094a576040518060400160405280826001600160e01b031681526020018363ffffffff1681525060058862ffffff1662ffffff81106108ac576108ac611538565b825160209093015163ffffffff16600160e01b026001600160e01b03909316929092179101556108e262ffffff80891690610d46565b600480547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000001662ffffff92831617905588811610156109455761092688600161141f565b600460036101000a81548162ffffff021916908362ffffff1602179055505b6109af565b6040518060400160405280826001600160e01b031681526020018363ffffffff1681525060058562ffffff1662ffffff811061098857610988611538565b825160209093015163ffffffff16600160e01b026001600160e01b03909316929092179101555b604080516001600160e01b038084168252871660208201527f21d81d5d656869e8ce3ba8d65526a2f0dbbcd3d36f5f9999eb7c84360e45eced910160405180910390a150505b505050505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b03167fa9059cbb00000000000000000000000000000000000000000000000000000000179052610a68908490610d63565b505050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040805180820190915260008082526020820181905290610af162ffffff80851690610e48565b915060058262ffffff1662ffffff8110610b0d57610b0d611538565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff166020820152919391925050565b60408051808201909152600080825260208201528190600562ffffff808416908110610b6e57610b6e611538565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff1660208201819052909150610bae5760009150600582610b0d565b915091565b60004262ffffff8416610bca576000915050610c50565b8263ffffffff16876020015163ffffffff161115610bec576000915050610c50565b8263ffffffff16886020015163ffffffff1611610c0c5750508551610c50565b600080610c1e60058989888a88610e70565b915091508463ffffffff16816020015163ffffffff161415610c4557519250610c50915050565b50519150610c509050565b9695505050505050565b6002546000906001600160a01b03908116908316811415610ce35760405162461bcd60e51b815260206004820152602360248201527f4d616e61676561626c652f6578697374696e672d6d616e616765722d6164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016102cd565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385811691821790925560405190918316907f9cb45c728de594dab506a1f1a8554e24c8eeaf983618d5ec5dd7bc6f3c49feee90600090a350600192915050565b6000610d5c610d5684600161143d565b8361103d565b9392505050565b6000610db8826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166110499092919063ffffffff16565b805190915015610a685780806020019051810190610dd69190611319565b610a685760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016102cd565b600081610e5757506000610570565b610d5c6001610e66848661143d565b610d5691906114b1565b6040805180820190915260008082526020820152604080518082019091526000808252602082015260008662ffffff1690506000818962ffffff1610610ebb578862ffffff16610ed6565b6001610ecc62ffffff88168461143d565b610ed691906114b1565b905060005b6002610ee7838561143d565b610ef19190611475565b90508a610f03828962ffffff1661103d565b62ffffff1662ffffff8110610f1a57610f1a611538565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff166020820181905290955080610f6257610f5a82600161143d565b935050610edb565b8b610f72838a62ffffff16610d46565b62ffffff1662ffffff8110610f8957610f89611538565b604080518082019091529101546001600160e01b038116825263ffffffff600160e01b90910481166020830152909550600090610fce90838116908c908b9061106016565b9050808015610ff75750610ff78660200151898c63ffffffff166110609092919063ffffffff16565b1561100357505061102f565b8061101a576110136001846114b1565b9350611028565b61102583600161143d565b94505b5050610edb565b505050965096945050505050565b6000610d5c82846114f8565b60606110588484600085611131565b949350505050565b60008163ffffffff168463ffffffff161115801561108a57508163ffffffff168363ffffffff1611155b156110a6578263ffffffff168463ffffffff1611159050610d5c565b60008263ffffffff168563ffffffff16116110d5576110d063ffffffff8616640100000000611455565b6110dd565b8463ffffffff165b64ffffffffff16905060008363ffffffff168563ffffffff16116111155761111063ffffffff8616640100000000611455565b61111d565b8463ffffffff165b64ffffffffff169091111595945050505050565b6060824710156111a95760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c000000000000000000000000000000000000000000000000000060648201526084016102cd565b843b6111f75760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016102cd565b600080866001600160a01b031685876040516112139190611387565b60006040518083038185875af1925050503d8060008114611250576040519150601f19603f3d011682016040523d82523d6000602084013e611255565b606091505b5091509150611265828286611270565b979650505050505050565b6060831561127f575081610d5c565b82511561128f5782518084602001fd5b8160405162461bcd60e51b81526004016102cd91906113a3565b80356001600160a01b03811681146105f557600080fd5b803563ffffffff811681146105f557600080fd5b6000602082840312156112e657600080fd5b610d5c826112a9565b6000806040838503121561130257600080fd5b61130b836112a9565b946020939093013593505050565b60006020828403121561132b57600080fd5b81518015158114610d5c57600080fd5b60006020828403121561134d57600080fd5b5051919050565b6000806040838503121561136757600080fd5b611370836112c0565b915061137e602084016112c0565b90509250929050565b600082516113998184602087016114c8565b9190910192915050565b60208152600082518060208401526113c28160408501602087016114c8565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b60006001600160e01b038083168185168083038211156114165761141661150c565b01949350505050565b600062ffffff8083168185168083038211156114165761141661150c565b600082198211156114505761145061150c565b500190565b600064ffffffffff8083168185168083038211156114165761141661150c565b60008261148457611484611522565b500490565b60006001600160e01b03838116908316818110156114a9576114a961150c565b039392505050565b6000828210156114c3576114c361150c565b500390565b60005b838110156114e35781810151838201526020016114cb565b838111156114f2576000848401525b50505050565b60008261150757611507611522565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fdfea26469706673582212206218ec2db2d48e2bb210886db652bdcc98e73542c205c3ac93aad800bd8fc89764736f6c63430008060033",
              "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 0x526573657276652F73746172742D6C6573732D7468616E2D656E640000000000 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 PUSH3 0x18EC2D 0xB2 0xD4 DUP15 0x2B 0xB2 LT DUP9 PUSH14 0xB652BDCC98E73542C205C3AC93AA 0xD8 STOP 0xBD DUP16 0xC8 SWAP8 PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "1299:8854:43:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3648:278;;;;;;:::i;:::-;;:::i;:::-;;2422:89;2499:5;2422:89;;;-1:-1:-1;;;;;2008:55:101;;;1990:74;;1978:2;1963:18;2422:89:43;;;;;;;;1494:34;;;;;-1:-1:-1;;;;;1494:34:43;;;;;;-1:-1:-1;;;;;6887:71:101;;;6869:90;;6857:2;6842:18;1494:34:43;6824:141:101;1403:89:32;1477:8;;-1:-1:-1;;;;;1477:8:32;1403:89;;3147:129:33;;;:::i;2508:94::-;;;:::i;1814:85::-;1860:7;1886:6;-1:-1:-1;;;;;1886:6:33;1814:85;;2546:1067:43;;;;;;:::i;:::-;;:::i;2317:70::-;;;:::i;1744:123:32:-;;;;;;:::i;:::-;;:::i;:::-;;;2542:14:101;;2535:22;2517:41;;2505:2;2490:18;1744:123:32;2472:92:101;2014:101:33;2095:13;;-1:-1:-1;;;;;2095:13:33;2014:101;;2751:234;;;;;;:::i;:::-;;:::i;1407:29:43:-;;;;;3648:278;2861:10:32;2848:9;1477:8;;-1:-1:-1;;;;;1477:8:32;;1403:89;2848:9;-1:-1:-1;;;;;2848:23:32;;:48;;;-1:-1:-1;2886:10:32;2875:7;1860::33;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;2875:7:32;-1:-1:-1;;;;;2875:21:32;;2848:48;2840:99;;;;-1:-1:-1;;;2840:99:32;;5343:2:101;2840:99:32;;;5325:21:101;5382:2;5362:18;;;5355:30;5421:34;5401:18;;;5394:62;5492:8;5472:18;;;5465:36;5518:19;;2840:99:32;;;;;;;;;3752:13:43::1;:11;:13::i;:::-;3776:19;:39:::0;;3807:7;;3776:19;::::1;::::0;:39:::1;::::0;3807:7;;-1:-1:-1;;;;;3776:39:43::1;;:::i;:::-;;;;;;;;-1:-1:-1::0;;;;;3776:39:43::1;;;;;-1:-1:-1::0;;;;;3776:39:43::1;;;;;;3834;3853:10;3865:7;3834:5;-1:-1:-1::0;;;;;3834:18:43::1;;;:39;;;;;:::i;:::-;3899:10;-1:-1:-1::0;;;;;3889:30:43::1;;3911:7;3889:30;;;;7464:25:101::0;;7452:2;7437:18;;7419:76;3889:30:43::1;;;;;;;;3648:278:::0;;:::o;3147:129:33:-;4050:13;;-1:-1:-1;;;;;4050:13:33;4036:10;:27;4028:71;;;;-1:-1:-1;;;4028:71:33;;4983:2:101;4028:71:33;;;4965:21:101;5022:2;5002:18;;;4995:30;5061:33;5041:18;;;5034:61;5112:18;;4028:71:33;4955:181:101;4028:71:33;3219:13:::1;::::0;3209:24:::1;::::0;-1:-1:-1;;;;;3219:13:33::1;3209:9;:24::i;:::-;3243:13;:26:::0;;-1:-1:-1;;3243:26:33::1;::::0;;3147:129::o;2508:94::-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:33;;3819:58;;;;-1:-1:-1;;;3819:58:33;;4630:2:101;3819:58:33;;;4612:21:101;4669:2;4649:18;;;4642:30;4708:26;4688:18;;;4681:54;4752:18;;3819:58:33;4602:174:101;3819:58:33;2574:21:::1;2592:1;2574:9;:21::i;:::-;2508:94::o:0;2546:1067:43:-;2694:7;2743:13;2725:31;;:15;:31;;;2717:71;;;;-1:-1:-1;;;2717:71:43;;3867:2:101;2717:71:43;;;3849:21:101;3906:2;3886:18;;;3879:30;3945:29;3925:18;;;3918:57;3992:18;;2717:71:43;3839:177:101;2717:71:43;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:43;3600:6;3357:218;3593:13;:::i;:::-;3586:20;;;;;;;;;;2546:1067;;;;;:::o;2317:70::-;2367:13;:11;:13::i;1744:123:32:-;1813:4;3838:10:33;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:33;;3819:58;;;;-1:-1:-1;;;3819:58:33;;4630:2:101;3819:58:33;;;4612:21:101;4669:2;4649:18;;;4642:30;4708:26;4688:18;;;4681:54;4752:18;;3819:58:33;4602:174:101;3819:58:33;1836:24:32::1;1848:11;1836;:24::i;:::-;1829:31;;3887:1:33;1744:123:32::0;;;:::o;2751:234:33:-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:33;;3819:58;;;;-1:-1:-1;;;3819:58:33;;4630:2:101;3819:58:33;;;4612:21:101;4669:2;4649:18;;;4642:30;4708:26;4688:18;;;4681:54;4752:18;;3819:58:33;4602:174:101;3819:58:33;-1:-1:-1;;;;;2834:23:33;::::1;2826:73;;;::::0;-1:-1:-1;;;2826:73:33;;6108:2:101;2826:73:33::1;::::0;::::1;6090:21:101::0;6147:2;6127:18;;;6120:30;6186:34;6166:18;;;6159:62;6257:7;6237:18;;;6230:35;6282:19;;2826:73:33::1;6080:227:101::0;2826:73:33::1;2910:13;:25:::0;;-1:-1:-1;;2910:25:33::1;-1:-1:-1::0;;;;;2910:25:33;::::1;::::0;;::::1;::::0;;;2951:27:::1;::::0;::::1;::::0;-1:-1:-1;;2951:27:33::1;2751:234:::0;:::o;7170:1957:43:-;7234:11;;;7322:30;;;;;7346:4;7322:30;;;1990:74:101;;;;7234:11:43;;;;;;;7275:9;;;-1:-1:-1;;;;;;;7322:5:43;:15;;;;1963:18:101;;7322:30:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7393:19;;7294:58;;-1:-1:-1;;;;;;7393:19:43;7362:28;;7506:33;7528:10;7506:21;:33::i;:::-;7430:109;;;;7817:17;:24;;;-1:-1:-1;;;;;7774:67:43;7794:20;-1:-1:-1;;;;;7774:40:43;: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:43;;;;;8418:7;8307:137;;;;;8273:19;8293:10;8273:31;;;;;;;;;:::i;:::-;:171;;;;;;;;;-1:-1:-1;;;8273:171:43;-1:-1:-1;;;;;8273:171:43;;;;;;;: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:43;;;;;8995:7;8884:137;;;;;8849:19;8869:11;8849:32;;;;;;;;;:::i;:::-;:172;;;;;;;;;-1:-1:-1;;;8849:172:43;-1:-1:-1;;;;;8849:172:43;;;;;;;:32;;:172;8211:825;9055:55;;;-1:-1:-1;;;;;7239:15:101;;;7221:34;;7291:15;;7286:2;7271:18;;7264:43;9055:55:43;;7117:18:101;9055:55:43;;;;;;;7843:1278;;7770:1351;7202:1925;;;;;;7170:1957::o;701:205:9:-;840:58;;;-1:-1:-1;;;;;2267:55:101;;840:58:9;;;2249:74:101;2339:18;;;;2332:34;;;840:58:9;;;;;;;;;;2222:18:101;;;;840:58:9;;;;;;;;-1:-1:-1;;;;;840:58:9;863:23;840:58;;;813:86;;833:5;;813:19;:86::i;:::-;701:205;;;:::o;3470:174:33:-;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:33;;;-1:-1:-1;;3562:18:33;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;9852:299:43:-;-1:-1:-1;;;;;;;;;9949:12:43;-1:-1:-1;;;;;;;;;9949:12:43;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:43;;;;-1:-1:-1;;;10104:40:43;;;;;;;;9852:299;;10104:40;;-1:-1:-1;;9852:299:43:o;9251:477::-;-1:-1:-1;;;;;;;;;;;;;;;;;9431:10:43;;9465:19;:26;;;;;;;;;;;:::i;:::-;9451:40;;;;;;;;;9465:26;;9451:40;-1:-1:-1;;;;;9451:40:43;;;;-1:-1:-1;;;9451:40:43;;;;;;;;;;;;-1:-1:-1;9606:116:43;;9660:1;;-1:-1:-1;9689:19:43;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:43;;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:43;;-1:-1:-1;;7007:23:43;6954:142;-1:-1:-1;7068:17:43;;-1:-1:-1;7061:24:43;;-1:-1:-1;7061:24:43;4571:2531;;;;;;;;;:::o;2109:326:32:-;2211:8;;2168:4;;-1:-1:-1;;;;;2211:8:32;;;;2238:31;;;;;2230:79;;;;-1:-1:-1;;;2230:79:32;;3463:2:101;2230:79:32;;;3445:21:101;3502:2;3482:18;;;3475:30;3541:34;3521:18;;;3514:62;3612:5;3592:18;;;3585:33;3635:19;;2230:79:32;3435:225:101;2230:79:32;2320:8;:22;;-1:-1:-1;;2320:22:32;-1:-1:-1;;;;;2320:22:32;;;;;;;;;2358:49;;2320:22;;2358:49;;;;;-1:-1:-1;;2358:49:32;-1:-1:-1;2424:4:32;;2109:326;-1:-1:-1;;2109:326:32:o;2263:171:62:-;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:62:o;3207:706:9:-;3626:23;3652:69;3680:4;3652:69;;;;;;;;;;;;;;;;;3660:5;-1:-1:-1;;;;;3652:27:9;;;:69;;;;;:::i;:::-;3735:17;;3626:95;;-1:-1:-1;3735:21:9;3731:176;;3830:10;3819:30;;;;;;;;;;;;:::i;:::-;3811:85;;;;-1:-1:-1;;;3811:85:9;;6514:2:101;3811:85:9;;;6496:21:101;6553:2;6533:18;;;6526:30;6592:34;6572:18;;;6565:62;6663:12;6643:18;;;6636:40;6693:19;;3811:85:9;6486:232:101;1666:262:62;1776:7;1803:17;1799:56;;-1:-1:-1;1843:1:62;1836:8;;1799:56;1872:49;1905:1;1877:25;1890:12;1877:10;:25;:::i;:::-;:29;;;;:::i;2382:2006:60:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2719:16:60;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:60;;;;-1:-1:-1;;;3253:82:60;;;;;;;;;;;;-1:-1:-1;3253:82:60;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:60;;;;;-1:-1:-1;;;3641:86:60;;;;;;;;;;;-1:-1:-1;;;3765:39:60;;: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:62:-;655:7;681:21;690:12;681:6;:21;:::i;3514:223:12:-;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:12:o;1658:417:61:-;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:61:o;4601:499:12:-;4766:12;4823:5;4798:21;:30;;4790:81;;;;-1:-1:-1;;;4790:81:12;;4223:2:101;4790:81:12;;;4205:21:101;4262:2;4242:18;;;4235:30;4301:34;4281:18;;;4274:62;4372:8;4352:18;;;4345:36;4398:19;;4790:81:12;4195:228:101;4790:81:12;1087:20;;4881:60;;;;-1:-1:-1;;;4881:60:12;;5750:2:101;4881:60:12;;;5732:21:101;5789:2;5769:18;;;5762:30;5828:31;5808:18;;;5801:59;5877:18;;4881:60:12;5722:179:101;4881:60:12;4953:12;4967:23;4994:6;-1:-1:-1;;;;;4994:11:12;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:12:o;7214:692::-;7360:12;7388:7;7384:516;;;-1:-1:-1;7418:10:12;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:12;;;;;;;;:::i;14:196:101:-;82:20;;-1:-1:-1;;;;;131:54:101;;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:101: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:101;;1196:103;-1:-1:-1;1196:103:101: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:101: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:101:o;7500:277::-;7540:3;-1:-1:-1;;;;;7653:2:101;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:101: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:101;;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:101;;8427:74::o;8506:270::-;8546:4;-1:-1:-1;;;;;8683:10:101;;;;8653;;8705:12;;;8702:2;;;8720:18;;:::i;:::-;8757:13;;8555:221;-1:-1:-1;;;8555:221:101:o;8781:125::-;8821:4;8849:1;8846;8843:8;8840:2;;;8854:18;;:::i;:::-;-1:-1:-1;8891:9:101;;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:101;;9212:74::o;9291:184::-;-1:-1:-1;;;9340:1:101;9333:88;9440:4;9437:1;9430:15;9464:4;9461:1;9454:15;9480:184;-1:-1:-1;;;9529:1:101;9522:88;9629:4;9626:1;9619:15;9653:4;9650:1;9643:15;9669:184;-1:-1:-1;;;9718:1:101;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-than-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\":\"0x5be51c0e373153f0d6e95ecb7ff60e7cdd67aa6356f6e5ea43ee075ed526de31\",\"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": 5205,
                "contract": "@pooltogether/v4-core/contracts/Reserve.sol:Reserve",
                "label": "_owner",
                "offset": 0,
                "slot": "0",
                "type": "t_address"
              },
              {
                "astId": 5207,
                "contract": "@pooltogether/v4-core/contracts/Reserve.sol:Reserve",
                "label": "_pendingOwner",
                "offset": 0,
                "slot": "1",
                "type": "t_address"
              },
              {
                "astId": 5103,
                "contract": "@pooltogether/v4-core/contracts/Reserve.sol:Reserve",
                "label": "_manager",
                "offset": 0,
                "slot": "2",
                "type": "t_address"
              },
              {
                "astId": 9193,
                "contract": "@pooltogether/v4-core/contracts/Reserve.sol:Reserve",
                "label": "withdrawAccumulator",
                "offset": 0,
                "slot": "3",
                "type": "t_uint224"
              },
              {
                "astId": 9195,
                "contract": "@pooltogether/v4-core/contracts/Reserve.sol:Reserve",
                "label": "_gap",
                "offset": 28,
                "slot": "3",
                "type": "t_uint32"
              },
              {
                "astId": 9197,
                "contract": "@pooltogether/v4-core/contracts/Reserve.sol:Reserve",
                "label": "nextIndex",
                "offset": 0,
                "slot": "4",
                "type": "t_uint24"
              },
              {
                "astId": 9199,
                "contract": "@pooltogether/v4-core/contracts/Reserve.sol:Reserve",
                "label": "cardinality",
                "offset": 3,
                "slot": "4",
                "type": "t_uint24"
              },
              {
                "astId": 9208,
                "contract": "@pooltogether/v4-core/contracts/Reserve.sol:Reserve",
                "label": "reserveAccumulators",
                "offset": 0,
                "slot": "5",
                "type": "t_array(t_struct(Observation)12066_storage)16777215_storage"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_array(t_struct(Observation)12066_storage)16777215_storage": {
                "base": "t_struct(Observation)12066_storage",
                "encoding": "inplace",
                "label": "struct ObservationLib.Observation[16777215]",
                "numberOfBytes": "536870880"
              },
              "t_struct(Observation)12066_storage": {
                "encoding": "inplace",
                "label": "struct ObservationLib.Observation",
                "members": [
                  {
                    "astId": 12063,
                    "contract": "@pooltogether/v4-core/contracts/Reserve.sol:Reserve",
                    "label": "amount",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_uint224"
                  },
                  {
                    "astId": 12065,
                    "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": {
                "@_2545": {
                  "entryPoint": null,
                  "id": 2545,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_311": {
                  "entryPoint": null,
                  "id": 311,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_5933": {
                  "entryPoint": null,
                  "id": 5933,
                  "parameterSlots": 4,
                  "returnSlots": 0
                },
                "@_954": {
                  "entryPoint": null,
                  "id": 954,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_9684": {
                  "entryPoint": null,
                  "id": 9684,
                  "parameterSlots": 4,
                  "returnSlots": 0
                },
                "@_buildDomainSeparator_2601": {
                  "entryPoint": null,
                  "id": 2601,
                  "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:101",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:101",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "78:622:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "127:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "136:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "139:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "129:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "129:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "129:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "106:6:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "114:4:101",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "102:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "102:17:101"
                                      },
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "121:3:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "98:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "98:27:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "91:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "91:35:101"
                              },
                              "nodeType": "YulIf",
                              "src": "88:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "152:23:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "168:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "162:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "162:13:101"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "156:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "184:28:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "202:2:101",
                                        "type": "",
                                        "value": "64"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "206:1:101",
                                        "type": "",
                                        "value": "1"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "198:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "198:10:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "210:1:101",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "194:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "194:18:101"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "188:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "235:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "237:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "237:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "237:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "227:2:101"
                                  },
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "231:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "224:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "224:10:101"
                              },
                              "nodeType": "YulIf",
                              "src": "221:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "266:17:101",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "280:2:101",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "not",
                                  "nodeType": "YulIdentifier",
                                  "src": "276:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "276:7:101"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "270:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "292:23:101",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "312:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "306:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "306:9:101"
                              },
                              "variables": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "296:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "324:71:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "346:6:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "name": "_1",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "370:2:101"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "374:4:101",
                                                    "type": "",
                                                    "value": "0x1f"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "add",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "366:3:101"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "366:13:101"
                                              },
                                              {
                                                "name": "_3",
                                                "nodeType": "YulIdentifier",
                                                "src": "381:2:101"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "and",
                                              "nodeType": "YulIdentifier",
                                              "src": "362:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "362:22:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "386:2:101",
                                            "type": "",
                                            "value": "63"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "358:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "358:31:101"
                                      },
                                      {
                                        "name": "_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "391:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "354:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "354:40:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "342:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "342:53:101"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "328:10:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "454:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "456:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "456:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "456:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "413:10:101"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "425:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "410:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "410:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "433:10:101"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "445:6:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "430:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "430:22:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "407:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "407:46:101"
                              },
                              "nodeType": "YulIf",
                              "src": "404:2:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "492:2:101",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "496:10:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "485:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "485:22:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "485:22:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "523:6:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "531:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "516:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "516:18:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "516:18:101"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "582:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "591:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "594:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "584:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "584:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "584:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "557:6:101"
                                          },
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "565:2:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "553:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "553:15:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "570:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "549:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "549:26:101"
                                  },
                                  {
                                    "name": "end",
                                    "nodeType": "YulIdentifier",
                                    "src": "577:3:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "546:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "546:35:101"
                              },
                              "nodeType": "YulIf",
                              "src": "543:2:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "633:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "641:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "629:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "629:17:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "652:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "660:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "648:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "648:17:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "667:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "607:21:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "607:63:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "607:63:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "679:15:101",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "688:6:101"
                              },
                              "variableNames": [
                                {
                                  "name": "array",
                                  "nodeType": "YulIdentifier",
                                  "src": "679:5:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_string_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "52:6:101",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "60:3:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "array",
                            "nodeType": "YulTypedName",
                            "src": "68:5:101",
                            "type": ""
                          }
                        ],
                        "src": "14:686:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "855:738:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "902:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "911:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "914:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "904:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "904:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "904:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "876:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "885:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "872:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "872:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "897:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "868:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "868:33:101"
                              },
                              "nodeType": "YulIf",
                              "src": "865:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "927:30:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "947:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "941:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "941:16:101"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "931:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "966:28:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "984:2:101",
                                        "type": "",
                                        "value": "64"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "988:1:101",
                                        "type": "",
                                        "value": "1"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "980:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "980:10:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "992:1:101",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "976:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "976:18:101"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "970:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1021:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1030:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1033:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1023:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1023:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1023:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1009:6:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1017:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1006:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1006:14:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1003:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1046:71:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1089:9:101"
                                      },
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "1100:6:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1085:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1085:22:101"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1109:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_string_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1056:28:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1056:61:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1046:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1126:41:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1152:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1163:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1148:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1148:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1142:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1142:25:101"
                              },
                              "variables": [
                                {
                                  "name": "offset_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1130:8:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1196:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1205:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1208:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1198:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1198:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1198:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1182:8:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1192:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1179:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1179:16:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1176:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1221:73:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1264:9:101"
                                      },
                                      {
                                        "name": "offset_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1275:8:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1260:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1260:24:101"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1286:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_string_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1231:28:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1231:63:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1221:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1303:38:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1326:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1337:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1322:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1322:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1316:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1316:25:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1307:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1389:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1398:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1401:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1391:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1391:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1391:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1363:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1374:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1381:4:101",
                                            "type": "",
                                            "value": "0xff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1370:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1370:16:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1360:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1360:27:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1353:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1353:35:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1350:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1414:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1424:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "1414:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1438:40:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1463:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1474:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1459:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1459:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1453:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1453:25:101"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1442:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1545:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1554:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1557:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1547:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1547:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1547:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1500:7:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "1513:7:101"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "1530:3:101",
                                                    "type": "",
                                                    "value": "160"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "1535:1:101",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1526:3:101"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "1526:11:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1539:1:101",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "1522:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1522:19:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1509:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1509:33:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1497:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1497:46:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1490:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1490:54:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1487:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1570:17:101",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "1580:7:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "1570:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint8t_address_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "797:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "808:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "820:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "828:6:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "836:6:101",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "844:6:101",
                            "type": ""
                          }
                        ],
                        "src": "705:888:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1648:208:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1658:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1678:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1672:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1672:12:101"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "1662:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "1700:3:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1705:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1693:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1693:19:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1693:19:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1747:5:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1754:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1743:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1743:16:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "1765:3:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1770:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1761:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1761:14:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1777:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1721:21:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1721:63:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1721:63:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1793:57:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "1808:3:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "1821:6:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1829:2:101",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "1817:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1817:15:101"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1838:2:101",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "not",
                                              "nodeType": "YulIdentifier",
                                              "src": "1834:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1834:7:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1813:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1813:29:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1804:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1804:39:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1845:4:101",
                                    "type": "",
                                    "value": "0x20"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1800:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1800:50:101"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "1793:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_string",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "1625:5:101",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "1632:3:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "1640:3:101",
                            "type": ""
                          }
                        ],
                        "src": "1598:258:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2074:276:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2084:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2096:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2107:3:101",
                                    "type": "",
                                    "value": "160"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2092:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2092:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2084:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2127:9:101"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "2138:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2120:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2120:25:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2120:25:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2165:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2176:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2161:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2161:18:101"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2181:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2154:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2154:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2154:34:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2208:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2219:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2204:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2204:18:101"
                                  },
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "2224:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2197:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2197:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2197:34:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2251:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2262:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2247:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2247:18:101"
                                  },
                                  {
                                    "name": "value3",
                                    "nodeType": "YulIdentifier",
                                    "src": "2267:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2240:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2240:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2240:34:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2294:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2305:3:101",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2290:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2290:19:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value4",
                                        "nodeType": "YulIdentifier",
                                        "src": "2315:6:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "2331:3:101",
                                                "type": "",
                                                "value": "160"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "2336:1:101",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "2327:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "2327:11:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2340:1:101",
                                            "type": "",
                                            "value": "1"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "sub",
                                          "nodeType": "YulIdentifier",
                                          "src": "2323:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2323:19:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2311:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2311:32:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2283:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2283:61:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2283:61:101"
                            }
                          ]
                        },
                        "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:101",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "2022:6:101",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "2030:6:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "2038:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2046:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2054:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2065:4:101",
                            "type": ""
                          }
                        ],
                        "src": "1861:489:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2548:268:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2565:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2576:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2558:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2558:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2558:21:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2588:59:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "2620:6:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2632:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2643:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2628:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2628:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_string",
                                  "nodeType": "YulIdentifier",
                                  "src": "2602:17:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2602:45:101"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2592:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2667:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2678:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2663:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2663:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "tail_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "2687:6:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2695:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2683:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2683:22:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2656:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2656:50:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2656:50:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2715:41:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2741:6:101"
                                  },
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2749:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_string",
                                  "nodeType": "YulIdentifier",
                                  "src": "2723:17:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2723:33:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2715:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2776:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2787:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2772:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2772:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value2",
                                        "nodeType": "YulIdentifier",
                                        "src": "2796:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2804:4:101",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2792:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2792:17:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2765:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2765:45:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2765:45:101"
                            }
                          ]
                        },
                        "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:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "2512:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2520:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2528:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2539:4:101",
                            "type": ""
                          }
                        ],
                        "src": "2355:461:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2995:182:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3012:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3023:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3005:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3005:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3005:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3046:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3057:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3042:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3042:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3062:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3035:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3035:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3035:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3085:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3096:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3081:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3081:18:101"
                                  },
                                  {
                                    "hexValue": "436f6e74726f6c6c6564546f6b656e2f646563696d616c732d67742d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3101:34:101",
                                    "type": "",
                                    "value": "ControlledToken/decimals-gt-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3074:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3074:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3074:62:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3145:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3157:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3168:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3153:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3153:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3145:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_39ddb2ff9bb2156ccdd7a7c5e12a2934405240522f8e0e9387326954ad27f9f0__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2972:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2986:4:101",
                            "type": ""
                          }
                        ],
                        "src": "2821:356:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3356:233:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3373:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3384:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3366:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3366:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3366:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3407:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3418:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3403:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3403:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3423:2:101",
                                    "type": "",
                                    "value": "43"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3396:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3396:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3396:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3446:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3457:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3442:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3442:18:101"
                                  },
                                  {
                                    "hexValue": "436f6e74726f6c6c6564546f6b656e2f636f6e74726f6c6c65722d6e6f742d7a",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3462:34:101",
                                    "type": "",
                                    "value": "ControlledToken/controller-not-z"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3435:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3435:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3435:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3517:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3528:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3513:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3513:18:101"
                                  },
                                  {
                                    "hexValue": "65726f2d61646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3533:13:101",
                                    "type": "",
                                    "value": "ero-address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3506:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3506:41:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3506:41:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3556:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3568:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3579:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3564:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3564:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3556:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7d588014210ba31b9120514699359e6ab0aa94fda2860a199e21904680ca2a54__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3333:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3347:4:101",
                            "type": ""
                          }
                        ],
                        "src": "3182:407:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3647:205:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3657:10:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3666:1:101",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "3661:1:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3726:63:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "3751:3:101"
                                            },
                                            {
                                              "name": "i",
                                              "nodeType": "YulIdentifier",
                                              "src": "3756:1:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "3747:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "3747:11:101"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "3770:3:101"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "3775:1:101"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "3766:3:101"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "3766:11:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "3760:5:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "3760:18:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "3740:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3740:39:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3740:39:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "3687:1:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "3690:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3684:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3684:13:101"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "3698:19:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "3700:15:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "3709:1:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3712:2:101",
                                          "type": "",
                                          "value": "32"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "3705:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3705:10:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "3700:1:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "3680:3:101",
                                "statements": []
                              },
                              "src": "3676:113:101"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3815:31:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "3828:3:101"
                                            },
                                            {
                                              "name": "length",
                                              "nodeType": "YulIdentifier",
                                              "src": "3833:6:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "3824:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "3824:16:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3842:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "3817:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3817:27:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3817:27:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "3804:1:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "3807:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3801:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3801:13:101"
                              },
                              "nodeType": "YulIf",
                              "src": "3798:2:101"
                            }
                          ]
                        },
                        "name": "copy_memory_to_memory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "src",
                            "nodeType": "YulTypedName",
                            "src": "3625:3:101",
                            "type": ""
                          },
                          {
                            "name": "dst",
                            "nodeType": "YulTypedName",
                            "src": "3630:3:101",
                            "type": ""
                          },
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "3635:6:101",
                            "type": ""
                          }
                        ],
                        "src": "3594:258:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3912:325:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3922:22:101",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3936:1:101",
                                    "type": "",
                                    "value": "1"
                                  },
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "3939:4:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "shr",
                                  "nodeType": "YulIdentifier",
                                  "src": "3932:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3932:12:101"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "3922:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3953:38:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "3983:4:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3989:1:101",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "3979:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3979:12:101"
                              },
                              "variables": [
                                {
                                  "name": "outOfPlaceEncoding",
                                  "nodeType": "YulTypedName",
                                  "src": "3957:18:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4030:31:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "4032:27:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "length",
                                          "nodeType": "YulIdentifier",
                                          "src": "4046:6:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4054:4:101",
                                          "type": "",
                                          "value": "0x7f"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "and",
                                        "nodeType": "YulIdentifier",
                                        "src": "4042:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4042:17:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "4032:6:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "4010:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "4003:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4003:26:101"
                              },
                              "nodeType": "YulIf",
                              "src": "4000:2:101"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4120:111:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4141:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "4148:3:101",
                                              "type": "",
                                              "value": "224"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "4153:10:101",
                                              "type": "",
                                              "value": "0x4e487b71"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "shl",
                                            "nodeType": "YulIdentifier",
                                            "src": "4144:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "4144:20:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "4134:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4134:31:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4134:31:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4185:1:101",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4188:4:101",
                                          "type": "",
                                          "value": "0x22"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "4178:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4178:15:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4178:15:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4213:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4216:4:101",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4206:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4206:15:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4206:15:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "4076:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "4099:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4107:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "4096:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4096:14:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "4073:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4073:38:101"
                              },
                              "nodeType": "YulIf",
                              "src": "4070:2:101"
                            }
                          ]
                        },
                        "name": "extract_byte_array_length",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "data",
                            "nodeType": "YulTypedName",
                            "src": "3892:4:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "3901:6:101",
                            "type": ""
                          }
                        ],
                        "src": "3857:380:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4274:95:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4291:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4298:3:101",
                                        "type": "",
                                        "value": "224"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4303:10:101",
                                        "type": "",
                                        "value": "0x4e487b71"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "4294:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4294:20:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4284:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4284:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4284:31:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4331:1:101",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4334:4:101",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4324:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4324:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4324:15:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4355:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4358:4:101",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "4348:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4348:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4348:15:101"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "4242:127:101"
                      }
                    ]
                  },
                  "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": 101,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "6101c06040527f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9610140527f94019368dc6b2ee4ac32010c9d0081ec29874325b541829d001d22c296b5246c6101a0523480156200005c57600080fd5b5060405162003d0c38038062003d0c8339810160408190526200007f916200042a565b838383836040518060400160405280601c81526020017f506f6f6c546f67657468657220436f6e74726f6c6c6564546f6b656e0000000081525080604051806040016040528060018152602001603160f81b81525086868160039080519060200190620000ee929190620002f3565b50805162000104906004906020840190620002f3565b5050825160208085019190912083518483012060e08290526101008190524660a0818152604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f81880181905281830187905260608201869052608082019490945230818401528151808203909301835260c0019052805194019390932091935091906080523060601b60c0526101205250505050506001600160a01b0381166200020c5760405162461bcd60e51b815260206004820152602b60248201527f436f6e74726f6c6c6564546f6b656e2f636f6e74726f6c6c65722d6e6f742d7a60448201526a65726f2d6164647265737360a81b60648201526084015b60405180910390fd5b6001600160601b0319606082901b166101605260ff8216620002715760405162461bcd60e51b815260206004820181905260248201527f436f6e74726f6c6c6564546f6b656e2f646563696d616c732d67742d7a65726f604482015260640162000203565b7fff0000000000000000000000000000000000000000000000000000000000000060f883901b16610180526040516001600160a01b038216907fde72fc29218361f33503847e6f32be813f9ec92fc7c772bb59e46675c890fd0e90620002dd90879087908790620004fc565b60405180910390a25050505050505050620005bf565b82805462000301906200056c565b90600052602060002090601f01602090048101928262000325576000855562000370565b82601f106200034057805160ff191683800117855562000370565b8280016001018555821562000370579182015b828111156200037057825182559160200191906001019062000353565b506200037e92915062000382565b5090565b5b808211156200037e576000815560010162000383565b600082601f830112620003ab57600080fd5b81516001600160401b0380821115620003c857620003c8620005a9565b604051601f8301601f19908116603f01168101908282118183101715620003f357620003f3620005a9565b816040528381528660208588010111156200040d57600080fd5b6200042084602083016020890162000539565b9695505050505050565b600080600080608085870312156200044157600080fd5b84516001600160401b03808211156200045957600080fd5b620004678883890162000399565b955060208701519150808211156200047e57600080fd5b506200048d8782880162000399565b935050604085015160ff81168114620004a557600080fd5b60608601519092506001600160a01b0381168114620004c357600080fd5b939692955090935050565b60008151808452620004e881602086016020860162000539565b601f01601f19169290920160200192915050565b606081526000620005116060830186620004ce565b8281036020840152620005258186620004ce565b91505060ff83166040830152949350505050565b60005b83811015620005565781810151838201526020016200053c565b8381111562000566576000848401525b50505050565b600181811c908216806200058157607f821691505b60208210811415620005a357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160a05160c05160601c60e0516101005161012051610140516101605160601c6101805160f81c6101a0516136ac620006606000396000610d600152600061031b0152600081816105920152818161077a015281816108d001528181610a6e0152610c95015260006110850152600061169d015260006116ec015260006116c7015260006116200152600061164a0152600061167401526136ac6000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c806368c7fd571161010f57806395d89b41116100a2578063a9059cbb11610071578063a9059cbb1461052e578063d505accf14610541578063dd62ed3e14610554578063f77c47911461058d57600080fd5b806395d89b41146104ed57806398b16f36146104f55780639ecb037014610508578063a457c2d71461051b57600080fd5b80638d22ea2a116100de5780638d22ea2a1461046d5780638e6d536a146104b457806390596dd1146104c7578063919974dc146104da57600080fd5b806368c7fd571461040b57806370a082311461041e5780637ecebe001461044757806385beb5f11461045a57600080fd5b806333e39b61116101875780635c19a95c116101565780635c19a95c146103b25780635d7b0758146103c5578063613ed6bd146103d8578063631b5dfb146103f857600080fd5b806333e39b61146103455780633644e5151461035a57806336bb2a3814610362578063395093511461039f57600080fd5b806323b872dd116101c357806323b872dd1461023d5780632aceb534146102505780632d0dd68614610301578063313ce5671461031457600080fd5b806306fdde03146101ea578063095ea7b31461020857806318160ddd1461022b575b600080fd5b6101f26105b4565b6040516101ff919061339d565b60405180910390f35b61021b6102163660046131f9565b610646565b60405190151581526020016101ff565b6002545b6040519081526020016101ff565b61021b61024b366004612fe2565b61065d565b6102c961025e366004612f94565b6040805160608082018352600080835260208084018290529284018190526001600160a01b03949094168452600682529282902082519384018352546001600160d01b038116845262ffffff600160d01b8204811692850192909252600160e81b9004169082015290565b6040805182516001600160d01b0316815260208084015162ffffff9081169183019190915292820151909216908201526060016101ff565b61022f61030f36600461333e565b610723565b60405160ff7f00000000000000000000000000000000000000000000000000000000000000001681526020016101ff565b610358610353366004612faf565b61076f565b005b61022f6107f5565b6103756103703660046131bb565b610804565b6040805182516001600160e01b0316815260209283015163ffffffff1692810192909252016101ff565b61021b6103ad3660046131f9565b61087c565b6103586103c0366004612f94565b6108b8565b6103586103d33660046131f9565b6108c5565b6103eb6103e63660046130e7565b610947565b6040516101ff9190613359565b610358610406366004612fe2565b610a63565b6103eb61041936600461313a565b610b3c565b61022f61042c366004612f94565b6001600160a01b031660009081526020819052604090205490565b61022f610455366004612f94565b610b6e565b6103eb610468366004613290565b610b8c565b61049c61047b366004612f94565b6001600160a01b039081166000908152630100000760205260409020541690565b6040516001600160a01b0390911681526020016101ff565b6103eb6104c23660046132d2565b610c6f565b6103586104d53660046131f9565b610c8a565b6103586104e8366004613088565b610d0c565b6101f2610e8c565b61022f61050336600461324d565b610e9b565b61022f610516366004613223565b610f0c565b61021b6105293660046131f9565b610f73565b61021b61053c3660046131f9565b611024565b61035861054f36600461301e565b611031565b61022f610562366004612faf565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61049c7f000000000000000000000000000000000000000000000000000000000000000081565b6060600380546105c39061355a565b80601f01602080910402602001604051908101604052809291908181526020018280546105ef9061355a565b801561063c5780601f106106115761010080835404028352916020019161063c565b820191906000526020600020905b81548152906001019060200180831161061f57829003601f168201915b5050505050905090565b6000610653338484611195565b5060015b92915050565b600061066a8484846112ed565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156107095760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6107168533858403611195565b60019150505b9392505050565b604080516060810182526007546001600160d01b038116825262ffffff600160d01b820481166020840152600160e81b9091041691810191909152600090610657906008908442611511565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146107e75760405162461bcd60e51b815260206004820152601f60248201527f436f6e74726f6c6c6564546f6b656e2f6f6e6c792d636f6e74726f6c6c6572006044820152606401610700565b6107f1828261153d565b5050565b60006107ff611613565b905090565b60408051808201909152600080825260208201526001600160a01b038316600090815260066020526040902060010161ffff831662ffffff811061084a5761084a61361e565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff1660208201529392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916106539185906108b390869061345d565b611195565b6108c2338261153d565b50565b336001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161461093d5760405162461bcd60e51b815260206004820152601f60248201527f436f6e74726f6c6c6564546f6b656e2f6f6e6c792d636f6e74726f6c6c6572006044820152606401610700565b6107f1828261173a565b60608160008167ffffffffffffffff81111561096557610965613634565b60405190808252806020026020018201604052801561098e578160200160208202803683370190505b506001600160a01b0387166000908152600660209081526040808320815160608101835281546001600160d01b038116825262ffffff600160d01b8204811695830195909552600160e81b900490931691830191909152929350905b84811015610a5657610a2783600101838a8a85818110610a0c57610a0c61361e565b9050602002016020810190610a21919061333e565b42611511565b848281518110610a3957610a3961361e565b602090810291909101015280610a4e8161358f565b9150506109ea565b5091979650505050505050565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610adb5760405162461bcd60e51b815260206004820152601f60248201527f436f6e74726f6c6c6564546f6b656e2f6f6e6c792d636f6e74726f6c6c6572006044820152606401610700565b816001600160a01b0316836001600160a01b031614610b2d576001600160a01b03828116600090815260016020908152604080832093871683529290522054610b2d90839085906108b3908590613526565b610b378282611825565b505050565b6001600160a01b0385166000908152600660205260409020606090610b6490868686866119b6565b9695505050505050565b6001600160a01b038116600090815260056020526040812054610657565b60608160008167ffffffffffffffff811115610baa57610baa613634565b604051908082528060200260200182016040528015610bd3578160200160208202803683370190505b50604080516060810182526007546001600160d01b038116825262ffffff600160d01b820481166020840152600160e81b909104169181019190915290915060005b83811015610c6457610c35600883898985818110610a0c57610a0c61361e565b838281518110610c4757610c4761361e565b602090810291909101015280610c5c8161358f565b915050610c15565b509095945050505050565b6060610c7f6007868686866119b6565b90505b949350505050565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610d025760405162461bcd60e51b815260206004820152601f60248201527f436f6e74726f6c6c6564546f6b656e2f6f6e6c792d636f6e74726f6c6c6572006044820152606401610700565b6107f18282611825565b83421115610d5c5760405162461bcd60e51b815260206004820181905260248201527f5469636b65742f64656c65676174652d657870697265642d646561646c696e656044820152606401610700565b60007f00000000000000000000000000000000000000000000000000000000000000008787610d8a8a611b55565b6040805160208101959095526001600160a01b039384169085015291166060830152608082015260a0810186905260c0016040516020818303038152906040528051906020012090506000610dde82611b7d565b90506000610dee82878787611be6565b9050886001600160a01b0316816001600160a01b031614610e775760405162461bcd60e51b815260206004820152602160248201527f5469636b65742f64656c65676174652d696e76616c69642d7369676e6174757260448201527f65000000000000000000000000000000000000000000000000000000000000006064820152608401610700565b610e81898961153d565b505050505050505050565b6060600480546105c39061355a565b6001600160a01b0383166000908152600660209081526040808320815160608101835281546001600160d01b038116825262ffffff600160d01b8204811695830195909552600160e81b90049093169183019190915290610f03906001830190868642611c0e565b95945050505050565b6001600160a01b0382166000908152600660209081526040808320815160608101835281546001600160d01b038116825262ffffff600160d01b8204811695830195909552600160e81b90049093169183019190915290610c829060018301908542611511565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561100d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610700565b61101a3385858403611195565b5060019392505050565b60006106533384846112ed565b834211156110815760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e650000006044820152606401610700565b60007f00000000000000000000000000000000000000000000000000000000000000008888886110b08c611b55565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e001604051602081830303815290604052805190602001209050600061110b82611b7d565b9050600061111b82878787611be6565b9050896001600160a01b0316816001600160a01b03161461117e5760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e617475726500006044820152606401610700565b6111898a8a8a611195565b50505050505050505050565b6001600160a01b0383166112105760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610700565b6001600160a01b03821661128c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610700565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166113695760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610700565b6001600160a01b0382166113e55760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610700565b6113f0838383611c46565b6001600160a01b0383166000908152602081905260409020548181101561147f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610700565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906114b690849061345d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161150291815260200190565b60405180910390a35b50505050565b6000808263ffffffff168463ffffffff161161152d578361152f565b825b9050610b6486868386611cd9565b6001600160a01b038281166000908152602081815260408083205463010000079092529091205490919081169083168114156115795750505050565b6001600160a01b03848116600090815263010000076020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169185169190911790556115cd818484611df2565b826001600160a01b0316846001600160a01b03167f4bc154dd35d6a5cb9206482ecb473cdbf2473006d6bce728b9cc0741bcc59ea260405160405180910390a350505050565b6000306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614801561166c57507f000000000000000000000000000000000000000000000000000000000000000046145b1561169657507f000000000000000000000000000000000000000000000000000000000000000090565b50604080517f00000000000000000000000000000000000000000000000000000000000000006020808301919091527f0000000000000000000000000000000000000000000000000000000000000000828401527f000000000000000000000000000000000000000000000000000000000000000060608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b6001600160a01b0382166117905760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610700565b61179c60008383611c46565b80600260008282546117ae919061345d565b90915550506001600160a01b038216600090815260208190526040812080548392906117db90849061345d565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0382166118a15760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610700565b6118ad82600083611c46565b6001600160a01b0382166000908152602081905260409020548181101561193c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610700565b6001600160a01b038316600090815260208190526040812083830390556002805484929061196b908490613526565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b606083828114611a2e5760405162461bcd60e51b815260206004820152602360248201527f5469636b65742f73746172742d656e642d74696d65732d6c656e6774682d6d6160448201527f74636800000000000000000000000000000000000000000000000000000000006064820152608401610700565b6040805160608101825288546001600160d01b038116825262ffffff600160d01b820481166020840152600160e81b909104169181019190915260008267ffffffffffffffff811115611a8357611a83613634565b604051908082528060200260200182016040528015611aac578160200160208202803683370190505b5090504260005b84811015611b4657611b178b600101858c8c85818110611ad557611ad561361e565b9050602002016020810190611aea919061333e565b8b8b86818110611afc57611afc61361e565b9050602002016020810190611b11919061333e565b86611c0e565b838281518110611b2957611b2961361e565b602090810291909101015280611b3e8161358f565b915050611ab3565b50909998505050505050505050565b6001600160a01b03811660009081526005602052604090208054600181018255905b50919050565b6000610657611b8a611613565b836040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b6000806000611bf787878787611e52565b91509150611c0481611f3f565b5095945050505050565b6000808263ffffffff168463ffffffff1611611c2a5783611c2c565b825b9050611c3b8787878487612130565b979650505050505050565b816001600160a01b0316836001600160a01b03161415611c6557505050565b60006001600160a01b03841615611c9657506001600160a01b03808416600090815263010000076020526040902054165b60006001600160a01b03841615611cc757506001600160a01b03808416600090815263010000076020526040902054165b611cd2828285611df2565b5050505050565b604080518082019091526000808252602082018190529081906040805180820190915260008082526020820152611d1088886121cc565b60208101519194509150611d319063ffffffff908116908890889061224c16565b15611d4c57505084516001600160d01b03169150610c829050565b6000611d58898961231d565b6020810151909350909150611d799063ffffffff808a169190899061239a16565b15611d8b576000945050505050610c82565b611d9d8985838a8c604001518b612469565b8094508193505050611db88360200151836020015188612636565b63ffffffff1682600001518460000151611dd291906134fe565b611ddc9190613495565b6001600160e01b03169998505050505050505050565b6001600160a01b03831615611e2257611e0b8382612700565b6001600160a01b038216611e2257611e2281612855565b6001600160a01b03821615610b3757611e3b828261296e565b6001600160a01b038316610b3757610b37816129a5565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115611e895750600090506003611f36565b8460ff16601b14158015611ea157508460ff16601c14155b15611eb25750600090506004611f36565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611f06573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611f2f57600060019250925050611f36565b9150600090505b94509492505050565b6000816004811115611f5357611f53613608565b1415611f5c5750565b6001816004811115611f7057611f70613608565b1415611fbe5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610700565b6002816004811115611fd257611fd2613608565b14156120205760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610700565b600381600481111561203457612034613608565b14156120a85760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610700565b60048160048111156120bc576120bc613608565b14156108c25760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610700565b600080600061213f888861231d565b915091506000806121508a8a6121cc565b9150915060006121668b8b8487878a8f8e6129c0565b9050600061217a8c8c8588888b8f8f6129c0565b905061218f816020015183602001518a612636565b63ffffffff16826000015182600001516121a991906134fe565b6121b39190613495565b6001600160e01b03169c9b505050505050505050505050565b60408051808201909152600080825260208201819052906121fb836020015162ffffff1662ffffff8016612b0a565b9150838262ffffff1662ffffff81106122165761221661361e565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff166020820152919491935090915050565b60008163ffffffff168463ffffffff161115801561227657508163ffffffff168363ffffffff1611155b15612292578263ffffffff168463ffffffff161115905061071c565b60008263ffffffff168563ffffffff16116122c1576122bc63ffffffff8616640100000000613475565b6122c9565b8463ffffffff165b64ffffffffff16905060008363ffffffff168563ffffffff1611612301576122fc63ffffffff8616640100000000613475565b612309565b8463ffffffff165b64ffffffffff169091111595945050505050565b604080518082019091526000808252602082018190529082602001519150838262ffffff1662ffffff81106123545761235461361e565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff166020820181905290915061239357600091508382612216565b9250929050565b60008163ffffffff168463ffffffff16111580156123c457508163ffffffff168363ffffffff1611155b156123df578263ffffffff168463ffffffff1610905061071c565b60008263ffffffff168563ffffffff161161240e5761240963ffffffff8616640100000000613475565b612416565b8463ffffffff165b64ffffffffff16905060008363ffffffff168563ffffffff161161244e5761244963ffffffff8616640100000000613475565b612456565b8463ffffffff165b64ffffffffff1690911095945050505050565b6040805180820190915260008082526020820152604080518082019091526000808252602082015260008662ffffff1690506000818962ffffff16106124b4578862ffffff166124cf565b60016124c562ffffff88168461345d565b6124cf9190613526565b905060005b60026124e0838561345d565b6124ea91906134bb565b90508a6124fc828962ffffff16612b34565b62ffffff1662ffffff81106125135761251361361e565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff16602082018190529095508061255b5761255382600161345d565b9350506124d4565b8b61256b838a62ffffff16612b40565b62ffffff1662ffffff81106125825761258261361e565b604080518082019091529101546001600160e01b038116825263ffffffff600160e01b909104811660208301529095506000906125c790838116908c908b9061224c16565b90508080156125f057506125f08660200151898c63ffffffff1661224c9092919063ffffffff16565b156125fc575050612628565b806126135761260c600184613526565b9350612621565b61261e83600161345d565b94505b50506124d4565b505050965096945050505050565b60008163ffffffff168463ffffffff161115801561266057508163ffffffff168363ffffffff1611155b156126765761266f838561353d565b905061071c565b60008263ffffffff168563ffffffff16116126a5576126a063ffffffff8616640100000000613475565b6126ad565b8463ffffffff165b64ffffffffff16905060008363ffffffff168563ffffffff16116126e5576126e063ffffffff8616640100000000613475565b6126ed565b8463ffffffff165b64ffffffffff169050610b648183613526565b80612709575050565b6001600160a01b038216600090815260066020526040812090808061276d8461273187612b50565b6040518060400160405280601b81526020017f5469636b65742f747761622d6275726e2d6c742d62616c616e6365000000000081525042612bd3565b82518754602085015160408601516001600160d01b039093167fffffff000000000000000000000000000000000000000000000000000000000090921691909117600160d01b62ffffff92831602177cffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16600160e81b919092160217875591945092509050801561284d576040805183516001600160e01b0316815260208085015163ffffffff16908201526001600160a01b038816917fdd3e7cd3a260a292b0b3306b2ca62f30a7349619a9d09c58109318774c6b627d910160405180910390a25b505050505050565b8061285d5750565b600080600061288f600761287086612b50565b6040518060600160405280602c815260200161364b602c913942612bd3565b825160078054602086015160408701516001600160d01b039094167fffffff000000000000000000000000000000000000000000000000000000000090921691909117600160d01b62ffffff92831602177cffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16600160e81b919093160291909117905591945092509050801561150b576040805183516001600160e01b0316815260208085015163ffffffff16908201527f3375b905d617084fa6b7531688cc8046feb1f1a0b8ba2273de03c59d8d84416c910160405180910390a150505050565b80612977575050565b6001600160a01b038216600090815260066020526040812090808061276d8461299f87612b50565b42612c97565b806129ad5750565b600080600061288f600761299f86612b50565b60408051808201909152600080825260208201526129f38383896020015163ffffffff1661239a9092919063ffffffff16565b15612a1757612a108789600001516001600160d01b031685612d40565b9050612afe565b8263ffffffff16876020015163ffffffff161415612a36575085612afe565b8263ffffffff16866020015163ffffffff161415612a55575084612afe565b612a748660200151838563ffffffff1661239a9092919063ffffffff16565b15612a995750604080518082019091526000815263ffffffff83166020820152612afe565b600080612aae8b8888888e6040015189612469565b915091506000612ac78260200151846020015187612636565b63ffffffff1683600001518360000151612ae191906134fe565b612aeb9190613495565b9050612af8838288612d40565b93505050505b98975050505050505050565b600081612b1957506000610657565b61071c6001612b28848661345d565b612b329190613526565b835b600061071c82846135c8565b600061071c612b3284600161345d565b60006001600160d01b03821115612bcf5760405162461bcd60e51b815260206004820152602760248201527f53616665436173743a2076616c756520646f65736e27742066697420696e203260448201527f30382062697473000000000000000000000000000000000000000000000000006064820152608401610700565b5090565b604080516060810182526000808252602082018190529181019190915260408051808201909152600080825260208201526040805160608101825287546001600160d01b0380821680845262ffffff600160d01b840481166020860152600160e81b9093049092169383019390935260009287919089161115612c695760405162461bcd60e51b8152600401610700919061339d565b50612c78886001018287612dbb565b8251999099036001600160d01b03168252909990985095505050505050565b604080516060810182526000808252602082018190529181019190915260408051808201909152600080825260208201526040805160608101825286546001600160d01b038116825262ffffff600160d01b820481166020840152600160e81b9091041691810191909152600090612d13600188018287612dbb565b83519296509094509250612d289087906133f2565b6001600160d01b031684525091959094509092509050565b60408051808201909152600080825260208201526040518060400160405280612d7e8660200151858663ffffffff166126369092919063ffffffff16565b612d8e9063ffffffff16866134cf565b8651612d9a919061341d565b6001600160e01b031681526020018363ffffffff1681525090509392505050565b60408051606081018252600080825260208201819052918101919091526040805180820190915260008082526020820152600080612df987876121cc565b9150508463ffffffff16816020015163ffffffff161415612e2257859350915060009050612e99565b6000612e3c8288600001516001600160d01b031688612d40565b90508088886020015162ffffff1662ffffff8110612e5c57612e5c61361e565b825160209093015163ffffffff16600160e01b026001600160e01b03909316929092179101556000612e8d88612ea2565b95509093506001925050505b93509350939050565b60408051606081018252600080825260208083018290529282015290820151612ed29062ffffff90811690612b40565b62ffffff9081166020840152604083015181161015612bcf57600182604001818151612efe919061343f565b62ffffff169052505090565b80356001600160a01b0381168114612f2157600080fd5b919050565b60008083601f840112612f3857600080fd5b50813567ffffffffffffffff811115612f5057600080fd5b6020830191508360208260051b850101111561239357600080fd5b803567ffffffffffffffff81168114612f2157600080fd5b803560ff81168114612f2157600080fd5b600060208284031215612fa657600080fd5b61071c82612f0a565b60008060408385031215612fc257600080fd5b612fcb83612f0a565b9150612fd960208401612f0a565b90509250929050565b600080600060608486031215612ff757600080fd5b61300084612f0a565b925061300e60208501612f0a565b9150604084013590509250925092565b600080600080600080600060e0888a03121561303957600080fd5b61304288612f0a565b965061305060208901612f0a565b9550604088013594506060880135935061306c60808901612f83565b925060a0880135915060c0880135905092959891949750929550565b60008060008060008060c087890312156130a157600080fd5b6130aa87612f0a565b95506130b860208801612f0a565b9450604087013593506130cd60608801612f83565b92506080870135915060a087013590509295509295509295565b6000806000604084860312156130fc57600080fd5b61310584612f0a565b9250602084013567ffffffffffffffff81111561312157600080fd5b61312d86828701612f26565b9497909650939450505050565b60008060008060006060868803121561315257600080fd5b61315b86612f0a565b9450602086013567ffffffffffffffff8082111561317857600080fd5b61318489838a01612f26565b9096509450604088013591508082111561319d57600080fd5b506131aa88828901612f26565b969995985093965092949392505050565b600080604083850312156131ce57600080fd5b6131d783612f0a565b9150602083013561ffff811681146131ee57600080fd5b809150509250929050565b6000806040838503121561320c57600080fd5b61321583612f0a565b946020939093013593505050565b6000806040838503121561323657600080fd5b61323f83612f0a565b9150612fd960208401612f6b565b60008060006060848603121561326257600080fd5b61326b84612f0a565b925061327960208501612f6b565b915061328760408501612f6b565b90509250925092565b600080602083850312156132a357600080fd5b823567ffffffffffffffff8111156132ba57600080fd5b6132c685828601612f26565b90969095509350505050565b600080600080604085870312156132e857600080fd5b843567ffffffffffffffff8082111561330057600080fd5b61330c88838901612f26565b9096509450602087013591508082111561332557600080fd5b5061333287828801612f26565b95989497509550505050565b60006020828403121561335057600080fd5b61071c82612f6b565b6020808252825182820181905260009190848201906040850190845b8181101561339157835183529284019291840191600101613375565b50909695505050505050565b600060208083528351808285015260005b818110156133ca578581018301518582016040015282016133ae565b818111156133dc576000604083870101525b50601f01601f1916929092016040019392505050565b60006001600160d01b03808316818516808303821115613414576134146135dc565b01949350505050565b60006001600160e01b03808316818516808303821115613414576134146135dc565b600062ffffff808316818516808303821115613414576134146135dc565b60008219821115613470576134706135dc565b500190565b600064ffffffffff808316818516808303821115613414576134146135dc565b60006001600160e01b03808416806134af576134af6135f2565b92169190910492915050565b6000826134ca576134ca6135f2565b500490565b60006001600160e01b03808316818516818304811182151516156134f5576134f56135dc565b02949350505050565b60006001600160e01b038381169083168181101561351e5761351e6135dc565b039392505050565b600082821015613538576135386135dc565b500390565b600063ffffffff8381169083168181101561351e5761351e6135dc565b600181811c9082168061356e57607f821691505b60208210811415611b7757634e487b7160e01b600052602260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156135c1576135c16135dc565b5060010190565b6000826135d7576135d76135f2565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fdfe5469636b65742f6275726e2d616d6f756e742d657863656564732d746f74616c2d737570706c792d74776162a26469706673582212202c19d6e05292890088c24f6dd2f82e0f006b9f1d297e4bfe23dd31d8251d4eb064736f6c63430008060033",
              "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 0x2D74776162A26469706673582212202C19D6E05292890088C24F PUSH14 0xD2F82E0F006B9F1D297E4BFE23DD BALANCE 0xD8 0x25 SAR 0x4E 0xB0 PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "897:12604:44:-:0;;;1129:95:7;1076:148;;1130:83:44;1075:138;;1988:190;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2136:5;2143:7;2152:9;2163:11;1456:52:7;;;;;;;;;;;;;;;;;1495:4;2455:602:17;;;;;;;;;;;;;-1:-1:-1;;;2455:602:17;;;1682:5:37;1689:7;2037:5:4;2029;:13;;;;;;;;;;;;:::i;:::-;-1:-1:-1;2052:17:4;;;;:7;;:17;;;;;:::i;:::-;-1:-1:-1;;2541:22:17;;;;;;;;;;2597:25;;;;;;2778;;;;2813:31;;;;2873:13;2854:32;;;;-1:-1:-1;3633:73:17;;2651:117;3633:73;;;2120:25:101;;;2161:18;;;2154:34;;;-1:-1:-1;2204:18:101;;2197:34;;;2247:18;;;2240:34;;;;3700:4:17;2290:19:101;;;2283:61;3633:73:17;;;;;;;;;;2092:19:101;;3633:73:17;;3623:84;;;;;;;;2541:22;;-1:-1:-1;2597:25:17;2651:117;2896:85;;3014:4;2991:28;;;;3029:21;;-1:-1:-1;;;;;;;;;;1716:34:37;::::2;1708:90;;;::::0;-1:-1:-1;;;1708:90:37;;3384:2:101;1708:90:37::2;::::0;::::2;3366:21:101::0;3423:2;3403:18;;;3396:30;3462:34;3442:18;;;3435:62;-1:-1:-1;;;3513:18:101;;;3506:41;3564:19;;1708:90:37::2;;;;;;;;;-1:-1:-1::0;;;;;;1808:24:37::2;::::0;;;;::::2;::::0;1851:13:::2;::::0;::::2;1843:58;;;::::0;-1:-1:-1;;;1843:58:37;;3023:2:101;1843:58:37::2;::::0;::::2;3005:21:101::0;;;3042:18;;;3035:30;3101:34;3081:18;;;3074:62;3153:18;;1843:58:37::2;2995:182:101::0;1843:58:37::2;1911:21:::0;::::2;::::0;;;;::::2;::::0;1948:48:::2;::::0;-1:-1:-1;;;;;1948:48:37;::::2;::::0;::::2;::::0;::::2;::::0;1957:5;;1964:7;;1923:9;;1948:48:::2;:::i;:::-;;;;;;;;1500:503:::0;;;;1988:190:44;;;;897:12604;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;897:12604:44;;;-1:-1:-1;897:12604:44;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:686:101;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:101;;;221:2;;;237:18;;:::i;:::-;312:2;306:9;280:2;366:13;;-1:-1:-1;;362:22:101;;;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:101: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:101;;;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:101;;1497:46;;1487:2;;1557:1;1554;1547:12;1487:2;855:738;;;;-1:-1:-1;855:738:101;;-1:-1:-1;;855:738:101: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:101;1804:39;;;;1845:4;1800:50;;1648:208;-1:-1:-1;;1648:208:101: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:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@DOMAIN_SEPARATOR_1054": {
                  "entryPoint": 2037,
                  "id": 1054,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_afterTokenTransfer_811": {
                  "entryPoint": null,
                  "id": 811,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_approve_789": {
                  "entryPoint": 4501,
                  "id": 789,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_beforeTokenTransfer_10340": {
                  "entryPoint": 7238,
                  "id": 10340,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_buildDomainSeparator_2601": {
                  "entryPoint": null,
                  "id": 2601,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@_burn_744": {
                  "entryPoint": 6181,
                  "id": 744,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_calculateTwab_13064": {
                  "entryPoint": 10688,
                  "id": 13064,
                  "parameterSlots": 8,
                  "returnSlots": 1
                },
                "@_computeNextTwab_13096": {
                  "entryPoint": 11584,
                  "id": 13096,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@_decreaseTotalSupplyTwab_10574": {
                  "entryPoint": 10325,
                  "id": 10574,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_decreaseUserTwab_10524": {
                  "entryPoint": 9984,
                  "id": 10524,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_delegate_10188": {
                  "entryPoint": 5437,
                  "id": 10188,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_domainSeparatorV4_2574": {
                  "entryPoint": 5651,
                  "id": 2574,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_getAverageBalanceBetween_12839": {
                  "entryPoint": 8496,
                  "id": 12839,
                  "parameterSlots": 5,
                  "returnSlots": 1
                },
                "@_getAverageBalancesBetween_10283": {
                  "entryPoint": 6582,
                  "id": 10283,
                  "parameterSlots": 5,
                  "returnSlots": 1
                },
                "@_getBalanceAt_12946": {
                  "entryPoint": 7385,
                  "id": 12946,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "@_hashTypedDataV4_2617": {
                  "entryPoint": 7037,
                  "id": 2617,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_increaseTotalSupplyTwab_10623": {
                  "entryPoint": 10661,
                  "id": 10623,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_increaseUserTwab_10462": {
                  "entryPoint": 10606,
                  "id": 10462,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_mint_672": {
                  "entryPoint": 5946,
                  "id": 672,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_msgSender_1787": {
                  "entryPoint": null,
                  "id": 1787,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_nextTwab_13171": {
                  "entryPoint": 11707,
                  "id": 13171,
                  "parameterSlots": 3,
                  "returnSlots": 3
                },
                "@_throwError_2138": {
                  "entryPoint": 7999,
                  "id": 2138,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_transferTwab_10401": {
                  "entryPoint": 7666,
                  "id": 10401,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_transfer_616": {
                  "entryPoint": 4845,
                  "id": 616,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_useNonce_1083": {
                  "entryPoint": 6997,
                  "id": 1083,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@allowance_404": {
                  "entryPoint": null,
                  "id": 404,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@approve_425": {
                  "entryPoint": 1606,
                  "id": 425,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@balanceOf_365": {
                  "entryPoint": null,
                  "id": 365,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@binarySearch_12203": {
                  "entryPoint": 9321,
                  "id": 12203,
                  "parameterSlots": 6,
                  "returnSlots": 2
                },
                "@checkedSub_12375": {
                  "entryPoint": 9782,
                  "id": 12375,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@controllerBurnFrom_6002": {
                  "entryPoint": 2659,
                  "id": 6002,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@controllerBurn_5967": {
                  "entryPoint": 3210,
                  "id": 5967,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@controllerDelegateFor_10061": {
                  "entryPoint": 1903,
                  "id": 10061,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@controllerMint_5950": {
                  "entryPoint": 2245,
                  "id": 5950,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@controller_5848": {
                  "entryPoint": null,
                  "id": 5848,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@current_1815": {
                  "entryPoint": null,
                  "id": 1815,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@decimals_6012": {
                  "entryPoint": null,
                  "id": 6012,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@decreaseAllowance_539": {
                  "entryPoint": 3955,
                  "id": 539,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@decreaseBalance_12596": {
                  "entryPoint": 11219,
                  "id": 12596,
                  "parameterSlots": 4,
                  "returnSlots": 3
                },
                "@delegateOf_10044": {
                  "entryPoint": null,
                  "id": 10044,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@delegateWithSignature_10130": {
                  "entryPoint": 3340,
                  "id": 10130,
                  "parameterSlots": 6,
                  "returnSlots": 0
                },
                "@delegate_10144": {
                  "entryPoint": 2232,
                  "id": 10144,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@getAccountDetails_9700": {
                  "entryPoint": null,
                  "id": 9700,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@getAverageBalanceBetween_12634": {
                  "entryPoint": 7182,
                  "id": 12634,
                  "parameterSlots": 5,
                  "returnSlots": 1
                },
                "@getAverageBalanceBetween_9848": {
                  "entryPoint": 3739,
                  "id": 9848,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@getAverageBalancesBetween_9783": {
                  "entryPoint": 2876,
                  "id": 9783,
                  "parameterSlots": 5,
                  "returnSlots": 1
                },
                "@getAverageTotalSuppliesBetween_9804": {
                  "entryPoint": 3183,
                  "id": 9804,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "@getBalanceAt_12750": {
                  "entryPoint": 5393,
                  "id": 12750,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "@getBalanceAt_9758": {
                  "entryPoint": 3852,
                  "id": 9758,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@getBalancesAt_9931": {
                  "entryPoint": 2375,
                  "id": 9931,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@getTotalSuppliesAt_10030": {
                  "entryPoint": 2956,
                  "id": 10030,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@getTotalSupplyAt_9958": {
                  "entryPoint": 1827,
                  "id": 9958,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@getTwab_9720": {
                  "entryPoint": 2052,
                  "id": 9720,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@increaseAllowance_500": {
                  "entryPoint": 2172,
                  "id": 500,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@increaseBalance_12541": {
                  "entryPoint": 11415,
                  "id": 12541,
                  "parameterSlots": 3,
                  "returnSlots": 3
                },
                "@increment_1829": {
                  "entryPoint": null,
                  "id": 1829,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@lt_12262": {
                  "entryPoint": 9114,
                  "id": 12262,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@lte_12317": {
                  "entryPoint": 8780,
                  "id": 12317,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@name_321": {
                  "entryPoint": 1460,
                  "id": 321,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@newestIndex_12442": {
                  "entryPoint": 11018,
                  "id": 12442,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@newestTwab_12715": {
                  "entryPoint": 8652,
                  "id": 12715,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "@nextIndex_12460": {
                  "entryPoint": 11072,
                  "id": 12460,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@nonces_1043": {
                  "entryPoint": 2926,
                  "id": 1043,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@oldestTwab_12679": {
                  "entryPoint": 8989,
                  "id": 12679,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "@permit_1027": {
                  "entryPoint": 4145,
                  "id": 1027,
                  "parameterSlots": 7,
                  "returnSlots": 0
                },
                "@push_13210": {
                  "entryPoint": 11938,
                  "id": 13210,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@recover_2404": {
                  "entryPoint": 7142,
                  "id": 2404,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "@symbol_331": {
                  "entryPoint": 3724,
                  "id": 331,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@toTypedDataHash_2463": {
                  "entryPoint": null,
                  "id": 2463,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@toUint208_12019": {
                  "entryPoint": 11088,
                  "id": 12019,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@totalSupply_351": {
                  "entryPoint": null,
                  "id": 351,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@transferFrom_473": {
                  "entryPoint": 1629,
                  "id": 473,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@transfer_386": {
                  "entryPoint": 4132,
                  "id": 386,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@tryRecover_2371": {
                  "entryPoint": 7762,
                  "id": 2371,
                  "parameterSlots": 4,
                  "returnSlots": 2
                },
                "@wrap_12393": {
                  "entryPoint": 11060,
                  "id": 12393,
                  "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_$12485_memory_ptr__to_t_struct$_AccountDetails_$12485_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_struct$_Observation_$12066_memory_ptr__to_t_struct$_Observation_$12066_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:24922:101",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:101",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "63:147:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "73:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "95:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "82:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "82:20:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "73:5:101"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "188:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "197:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "200:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "190:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "190:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "190:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "124:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "135:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "142:42:101",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "131:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "131:54:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "121:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "121:65:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "114:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "114:73:101"
                              },
                              "nodeType": "YulIf",
                              "src": "111:2:101"
                            }
                          ]
                        },
                        "name": "abi_decode_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "42:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "53:5:101",
                            "type": ""
                          }
                        ],
                        "src": "14:196:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "298:283:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "347:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "356:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "359:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "349:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "349:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "349:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "326:6:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "334:4:101",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "322:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "322:17:101"
                                      },
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "341:3:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "318:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "318:27:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "311:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "311:35:101"
                              },
                              "nodeType": "YulIf",
                              "src": "308:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "372:30:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "395:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "382:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "382:20:101"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "372:6:101"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "445:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "454:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "457:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "447:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "447:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "447:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "417:6:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "425:18:101",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "414:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "414:30:101"
                              },
                              "nodeType": "YulIf",
                              "src": "411:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "470:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "486:6:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "494:4:101",
                                    "type": "",
                                    "value": "0x20"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "482:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "482:17:101"
                              },
                              "variableNames": [
                                {
                                  "name": "arrayPos",
                                  "nodeType": "YulIdentifier",
                                  "src": "470:8:101"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "559:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "568:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "571:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "561:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "561:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "561:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "522:6:101"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "534:1:101",
                                                "type": "",
                                                "value": "5"
                                              },
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "537:6:101"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "530:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "530:14:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "518:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "518:27:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "547:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "514:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "514:38:101"
                                  },
                                  {
                                    "name": "end",
                                    "nodeType": "YulIdentifier",
                                    "src": "554:3:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "511:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "511:47:101"
                              },
                              "nodeType": "YulIf",
                              "src": "508:2:101"
                            }
                          ]
                        },
                        "name": "abi_decode_array_uint64_dyn_calldata",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "261:6:101",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "269:3:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "arrayPos",
                            "nodeType": "YulTypedName",
                            "src": "277:8:101",
                            "type": ""
                          },
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "287:6:101",
                            "type": ""
                          }
                        ],
                        "src": "215:366:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "634:123:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "644:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "666:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "653:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "653:20:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "644:5:101"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "735:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "744:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "747:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "737:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "737:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "737:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "695:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "706:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "713:18:101",
                                            "type": "",
                                            "value": "0xffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "702:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "702:30:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "692:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "692:41:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "685:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "685:49:101"
                              },
                              "nodeType": "YulIf",
                              "src": "682:2:101"
                            }
                          ]
                        },
                        "name": "abi_decode_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "613:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "624:5:101",
                            "type": ""
                          }
                        ],
                        "src": "586:171:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "809:109:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "819:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "841:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "828:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "828:20:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "819:5:101"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "896:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "905:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "908:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "898:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "898:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "898:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "870:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "881:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "888:4:101",
                                            "type": "",
                                            "value": "0xff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "877:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "877:16:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "867:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "867:27:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "860:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "860:35:101"
                              },
                              "nodeType": "YulIf",
                              "src": "857:2:101"
                            }
                          ]
                        },
                        "name": "abi_decode_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "788:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "799:5:101",
                            "type": ""
                          }
                        ],
                        "src": "762:156:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "993:116:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1039:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1048:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1051:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1041:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1041:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1041:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1014:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1023:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1010:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1010:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1035:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1006:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1006:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1003:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1064:39:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1093:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1074:18:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1074:29:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1064:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "959:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "970:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "982:6:101",
                            "type": ""
                          }
                        ],
                        "src": "923:186:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1201:173:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1247:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1256:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1259:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1249:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1249:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1249:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1222:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1231:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1218:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1218:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1243:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1214:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1214:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1211:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1272:39:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1301:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1282:18:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1282:29:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1272:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1320:48:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1353:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1364:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1349:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1349:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1330:18:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1330:38:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1320:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1159:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1170:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1182:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1190:6:101",
                            "type": ""
                          }
                        ],
                        "src": "1114:260:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1483:224:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1529:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1538:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1541:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1531:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1531:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1531:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1504:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1513:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1500:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1500:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1525:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1496:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1496:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1493:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1554:39:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1583:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1564:18:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1564:29:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1554:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1602:48:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1635:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1646:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1631:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1631:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1612:18:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1612:38:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1602:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1659:42:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1686:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1697:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1682:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1682:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1669:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1669:32:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "1659:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1433:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1444:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1456:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1464:6:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "1472:6:101",
                            "type": ""
                          }
                        ],
                        "src": "1379:328:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1882:436:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1929:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1938:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1941:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1931:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1931:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1931:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1903:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1912:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1899:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1899:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1924:3:101",
                                    "type": "",
                                    "value": "224"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1895:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1895:33:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1892:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1954:39:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1983:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1964:18:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1964:29:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1954:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2002:48:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2035:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2046:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2031:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2031:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "2012:18:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2012:38:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2002:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2059:42:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2086:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2097:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2082:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2082:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2069:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2069:32:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "2059:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2110:42:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2137:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2148:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2133:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2133:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2120:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2120:32:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "2110:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2161:47:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2192:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2203:3:101",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2188:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2188:19:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint8",
                                  "nodeType": "YulIdentifier",
                                  "src": "2171:16:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2171:37:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value4",
                                  "nodeType": "YulIdentifier",
                                  "src": "2161:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2217:43:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2244:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2255:3:101",
                                        "type": "",
                                        "value": "160"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2240:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2240:19:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2227:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2227:33:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value5",
                                  "nodeType": "YulIdentifier",
                                  "src": "2217:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2269:43:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2296:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2307:3:101",
                                        "type": "",
                                        "value": "192"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2292:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2292:19:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2279:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2279:33:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value6",
                                  "nodeType": "YulIdentifier",
                                  "src": "2269:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1800:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1811:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1823:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1831:6:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "1839:6:101",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "1847:6:101",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "1855:6:101",
                            "type": ""
                          },
                          {
                            "name": "value5",
                            "nodeType": "YulTypedName",
                            "src": "1863:6:101",
                            "type": ""
                          },
                          {
                            "name": "value6",
                            "nodeType": "YulTypedName",
                            "src": "1871:6:101",
                            "type": ""
                          }
                        ],
                        "src": "1712:606:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2476:384:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2523:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2532:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2535:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2525:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2525:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2525:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2497:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2506:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2493:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2493:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2518:3:101",
                                    "type": "",
                                    "value": "192"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2489:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2489:33:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2486:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2548:39:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2577:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "2558:18:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2558:29:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2548:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2596:48:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2629:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2640:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2625:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2625:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "2606:18:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2606:38:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2596:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2653:42:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2680:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2691:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2676:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2676:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2663:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2663:32:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "2653:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2704:46:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2735:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2746:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2731:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2731:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint8",
                                  "nodeType": "YulIdentifier",
                                  "src": "2714:16:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2714:36:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "2704:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2759:43:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2786:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2797:3:101",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2782:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2782:19:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2769:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2769:33:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value4",
                                  "nodeType": "YulIdentifier",
                                  "src": "2759:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2811:43:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2838:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2849:3:101",
                                        "type": "",
                                        "value": "160"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2834:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2834:19:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2821:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2821:33:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value5",
                                  "nodeType": "YulIdentifier",
                                  "src": "2811:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_addresst_uint256t_uint8t_bytes32t_bytes32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2402:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2413:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2425:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2433:6:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "2441:6:101",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "2449:6:101",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "2457:6:101",
                            "type": ""
                          },
                          {
                            "name": "value5",
                            "nodeType": "YulTypedName",
                            "src": "2465:6:101",
                            "type": ""
                          }
                        ],
                        "src": "2323:537:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2986:388:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3032:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3041:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3044:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3034:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3034:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3034:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3007:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3016:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3003:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3003:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3028:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2999:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2999:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2996:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3057:39:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3086:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "3067:18:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3067:29:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3057:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3105:46:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3136:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3147:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3132:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3132:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3119:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3119:32:101"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "3109:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3194:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3203:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3206:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3196:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3196:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3196:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "3166:6:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3174:18:101",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3163:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3163:30:101"
                              },
                              "nodeType": "YulIf",
                              "src": "3160:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3219:95:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3286:9:101"
                                      },
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "3297:6:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3282:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3282:22:101"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "3306:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_array_uint64_dyn_calldata",
                                  "nodeType": "YulIdentifier",
                                  "src": "3245:36:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3245:69:101"
                              },
                              "variables": [
                                {
                                  "name": "value1_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3223:8:101",
                                  "type": ""
                                },
                                {
                                  "name": "value2_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3233:8:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3323:18:101",
                              "value": {
                                "name": "value1_1",
                                "nodeType": "YulIdentifier",
                                "src": "3333:8:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "3323:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3350:18:101",
                              "value": {
                                "name": "value2_1",
                                "nodeType": "YulIdentifier",
                                "src": "3360:8:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "3350:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_array$_t_uint64_$dyn_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2936:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2947:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2959:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2967:6:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "2975:6:101",
                            "type": ""
                          }
                        ],
                        "src": "2865:509:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3551:671:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3597:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3606:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3609:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3599:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3599:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3599:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3572:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3581:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3568:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3568:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3593:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3564:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3564:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "3561:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3622:39:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3651:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "3632:18:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3632:29:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3622:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3670:46:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3701:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3712:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3697:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3697:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3684:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3684:32:101"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "3674:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3725:28:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3735:18:101",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3729:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3780:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3789:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3792:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3782:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3782:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3782:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "3768:6:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3776:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3765:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3765:14:101"
                              },
                              "nodeType": "YulIf",
                              "src": "3762:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3805:95:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3872:9:101"
                                      },
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "3883:6:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3868:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3868:22:101"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "3892:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_array_uint64_dyn_calldata",
                                  "nodeType": "YulIdentifier",
                                  "src": "3831:36:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3831:69:101"
                              },
                              "variables": [
                                {
                                  "name": "value1_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3809:8:101",
                                  "type": ""
                                },
                                {
                                  "name": "value2_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3819:8:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3909:18:101",
                              "value": {
                                "name": "value1_1",
                                "nodeType": "YulIdentifier",
                                "src": "3919:8:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "3909:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3936:18:101",
                              "value": {
                                "name": "value2_1",
                                "nodeType": "YulIdentifier",
                                "src": "3946:8:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "3936:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3963:48:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3996:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4007:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3992:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3992:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3979:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3979:32:101"
                              },
                              "variables": [
                                {
                                  "name": "offset_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3967:8:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4040:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4049:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4052:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4042:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4042:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4042:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4026:8:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4036:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4023:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4023:16:101"
                              },
                              "nodeType": "YulIf",
                              "src": "4020:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4065:97:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4132:9:101"
                                      },
                                      {
                                        "name": "offset_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "4143:8:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4128:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4128:24:101"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "4154:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_array_uint64_dyn_calldata",
                                  "nodeType": "YulIdentifier",
                                  "src": "4091:36:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4091:71:101"
                              },
                              "variables": [
                                {
                                  "name": "value3_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4069:8:101",
                                  "type": ""
                                },
                                {
                                  "name": "value4_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4079:8:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4171:18:101",
                              "value": {
                                "name": "value3_1",
                                "nodeType": "YulIdentifier",
                                "src": "4181:8:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "4171:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4198:18:101",
                              "value": {
                                "name": "value4_1",
                                "nodeType": "YulIdentifier",
                                "src": "4208:8:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value4",
                                  "nodeType": "YulIdentifier",
                                  "src": "4198:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "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:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "3496:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3508:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "3516:6:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "3524:6:101",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "3532:6:101",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "3540:6:101",
                            "type": ""
                          }
                        ],
                        "src": "3379:843:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4313:260:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4359:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4368:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4371:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4361:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4361:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4361:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "4334:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4343:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "4330:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4330:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4355:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4326:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4326:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "4323:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4384:39:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4413:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "4394:18:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4394:29:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "4384:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4432:45:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4462:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4473:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4458:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4458:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4445:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4445:32:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "4436:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4527:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4536:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4539:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4529:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4529:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4529:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "4499:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "4510:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "4517:6:101",
                                            "type": "",
                                            "value": "0xffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "4506:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4506:18:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "4496:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4496:29:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "4489:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4489:37:101"
                              },
                              "nodeType": "YulIf",
                              "src": "4486:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4552:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "4562:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "4552:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint16",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4271:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "4282:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4294:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "4302:6:101",
                            "type": ""
                          }
                        ],
                        "src": "4227:346:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4665:167:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4711:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4720:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4723:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4713:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4713:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4713:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "4686:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4695:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "4682:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4682:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4707:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4678:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4678:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "4675:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4736:39:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4765:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "4746:18:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4746:29:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "4736:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4784:42:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4811:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4822:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4807:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4807:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4794:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4794:32:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "4784:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4623:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "4634:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4646:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "4654:6:101",
                            "type": ""
                          }
                        ],
                        "src": "4578:254:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4923:172:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4969:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4978:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4981:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4971:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4971:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4971:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "4944:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4953:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "4940:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4940:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4965:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4936:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4936:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "4933:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4994:39:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5023:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "5004:18:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5004:29:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "4994:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5042:47:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5074:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5085:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5070:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5070:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint64",
                                  "nodeType": "YulIdentifier",
                                  "src": "5052:17:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5052:37:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "5042:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4881:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "4892:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4904:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "4912:6:101",
                            "type": ""
                          }
                        ],
                        "src": "4837:258:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5202:228:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5248:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5257:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5260:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "5250:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5250:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5250:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "5223:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5232:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "5219:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5219:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5244:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "5215:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5215:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "5212:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5273:39:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5302:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "5283:18:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5283:29:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "5273:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5321:47:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5353:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5364:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5349:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5349:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint64",
                                  "nodeType": "YulIdentifier",
                                  "src": "5331:17:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5331:37:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "5321:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5377:47:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5409:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5420:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5405:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5405:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint64",
                                  "nodeType": "YulIdentifier",
                                  "src": "5387:17:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5387:37:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "5377:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint64t_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5152:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "5163:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5175:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "5183:6:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "5191:6:101",
                            "type": ""
                          }
                        ],
                        "src": "5100:330:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5539:331:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5585:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5594:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5597:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "5587:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5587:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5587:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "5560:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5569:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "5556:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5556:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5581:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "5552:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5552:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "5549:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5610:37:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5637:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "5624:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5624:23:101"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "5614:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5690:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5699:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5702:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "5692:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5692:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5692:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "5662:6:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5670:18:101",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "5659:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5659:30:101"
                              },
                              "nodeType": "YulIf",
                              "src": "5656:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5715:95:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5782:9:101"
                                      },
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "5793:6:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5778:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5778:22:101"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "5802:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_array_uint64_dyn_calldata",
                                  "nodeType": "YulIdentifier",
                                  "src": "5741:36:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5741:69:101"
                              },
                              "variables": [
                                {
                                  "name": "value0_1",
                                  "nodeType": "YulTypedName",
                                  "src": "5719:8:101",
                                  "type": ""
                                },
                                {
                                  "name": "value1_1",
                                  "nodeType": "YulTypedName",
                                  "src": "5729:8:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5819:18:101",
                              "value": {
                                "name": "value0_1",
                                "nodeType": "YulIdentifier",
                                "src": "5829:8:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "5819:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5846:18:101",
                              "value": {
                                "name": "value1_1",
                                "nodeType": "YulIdentifier",
                                "src": "5856:8:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "5846:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_array$_t_uint64_$dyn_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5497:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "5508:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5520:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "5528:6:101",
                            "type": ""
                          }
                        ],
                        "src": "5435:435:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6030:614:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "6076:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6085:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6088:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "6078:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6078:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6078:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "6051:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6060:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "6047:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6047:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6072:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "6043:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6043:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "6040:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6101:37:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6128:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "6115:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6115:23:101"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "6105:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6147:28:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "6157:18:101",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6151:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "6202:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6211:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6214:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "6204:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6204:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6204:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "6190:6:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6198:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "6187:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6187:14:101"
                              },
                              "nodeType": "YulIf",
                              "src": "6184:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6227:95:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6294:9:101"
                                      },
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "6305:6:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6290:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6290:22:101"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "6314:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_array_uint64_dyn_calldata",
                                  "nodeType": "YulIdentifier",
                                  "src": "6253:36:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6253:69:101"
                              },
                              "variables": [
                                {
                                  "name": "value0_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6231:8:101",
                                  "type": ""
                                },
                                {
                                  "name": "value1_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6241:8:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6331:18:101",
                              "value": {
                                "name": "value0_1",
                                "nodeType": "YulIdentifier",
                                "src": "6341:8:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "6331:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6358:18:101",
                              "value": {
                                "name": "value1_1",
                                "nodeType": "YulIdentifier",
                                "src": "6368:8:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "6358:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6385:48:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6418:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6429:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6414:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6414:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "6401:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6401:32:101"
                              },
                              "variables": [
                                {
                                  "name": "offset_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6389:8:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "6462:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6471:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6474:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "6464:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6464:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6464:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6448:8:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6458:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "6445:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6445:16:101"
                              },
                              "nodeType": "YulIf",
                              "src": "6442:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6487:97:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6554:9:101"
                                      },
                                      {
                                        "name": "offset_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6565:8:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6550:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6550:24:101"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "6576:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_array_uint64_dyn_calldata",
                                  "nodeType": "YulIdentifier",
                                  "src": "6513:36:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6513:71:101"
                              },
                              "variables": [
                                {
                                  "name": "value2_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6491:8:101",
                                  "type": ""
                                },
                                {
                                  "name": "value3_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6501:8:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6593:18:101",
                              "value": {
                                "name": "value2_1",
                                "nodeType": "YulIdentifier",
                                "src": "6603:8:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "6593:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6620:18:101",
                              "value": {
                                "name": "value3_1",
                                "nodeType": "YulIdentifier",
                                "src": "6630:8:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "6620:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "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:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "5983:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5995:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "6003:6:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "6011:6:101",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "6019:6:101",
                            "type": ""
                          }
                        ],
                        "src": "5875:769:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6718:115:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "6764:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6773:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6776:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "6766:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6766:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6766:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "6739:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6748:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "6735:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6735:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6760:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "6731:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6731:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "6728:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6789:38:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6817:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint64",
                                  "nodeType": "YulIdentifier",
                                  "src": "6799:17:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6799:28:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "6789:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6684:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "6695:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6707:6:101",
                            "type": ""
                          }
                        ],
                        "src": "6649:184:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7086:196:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "7103:3:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7108:66:101",
                                    "type": "",
                                    "value": "0x1901000000000000000000000000000000000000000000000000000000000000"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7096:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7096:79:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7096:79:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "7195:3:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7200:1:101",
                                        "type": "",
                                        "value": "2"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7191:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7191:11:101"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "7204:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7184:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7184:27:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7184:27:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "7231:3:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7236:2:101",
                                        "type": "",
                                        "value": "34"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7227:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7227:12:101"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7241:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7220:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7220:28:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7220:28:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7257:19:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "7268:3:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7273:2:101",
                                    "type": "",
                                    "value": "66"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7264:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7264:12:101"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "7257:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "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:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "7059:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7067:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "7078:3:101",
                            "type": ""
                          }
                        ],
                        "src": "6838:444:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7388:125:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7398:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7410:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7421:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7406:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7406:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7398:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7440:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "7455:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7463:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "7451:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7451:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7433:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7433:74:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7433:74:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7357:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7368:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7379:4:101",
                            "type": ""
                          }
                        ],
                        "src": "7287:226:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7669:481:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7679:12:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "7689:2:101",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7683:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7700:32:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7718:9:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7729:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7714:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7714:18:101"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7704:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7748:9:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7759:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7741:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7741:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7741:21:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7771:17:101",
                              "value": {
                                "name": "tail_1",
                                "nodeType": "YulIdentifier",
                                "src": "7782:6:101"
                              },
                              "variables": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulTypedName",
                                  "src": "7775:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7797:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "7817:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "7811:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7811:13:101"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "7801:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7840:6:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "7848:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7833:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7833:22:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7833:22:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7864:25:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7875:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7886:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7871:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7871:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "7864:3:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7898:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "7916:6:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7924:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7912:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7912:15:101"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "7902:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7936:10:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "7945:1:101",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "7940:1:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8004:120:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "8025:3:101"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "srcPtr",
                                              "nodeType": "YulIdentifier",
                                              "src": "8036:6:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "8030:5:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8030:13:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8018:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8018:26:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8018:26:101"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "8057:19:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "8068:3:101"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "8073:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "8064:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8064:12:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "8057:3:101"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "8089:25:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "8103:6:101"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "8111:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "8099:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8099:15:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "8089:6:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "7966:1:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "7969:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "7963:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7963:13:101"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "7977:18:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "7979:14:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "7988:1:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7991:1:101",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "7984:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7984:9:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "7979:1:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "7959:3:101",
                                "statements": []
                              },
                              "src": "7955:169:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8133:11:101",
                              "value": {
                                "name": "pos",
                                "nodeType": "YulIdentifier",
                                "src": "8141:3:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8133:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "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:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7649:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7660:4:101",
                            "type": ""
                          }
                        ],
                        "src": "7518:632:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8250:92:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8260:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8272:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8283:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8268:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8268:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8260:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8302:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "8327:6:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "8320:6:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "8320:14:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "8313:6:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8313:22:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8295:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8295:41:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8295:41:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8219:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8230:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8241:4:101",
                            "type": ""
                          }
                        ],
                        "src": "8155:187:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8448:76:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8458:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8470:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8481:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8466:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8466:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8458:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8500:9:101"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "8511:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8493:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8493:25:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8493:25:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8417:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8428:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8439:4:101",
                            "type": ""
                          }
                        ],
                        "src": "8347:177:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8742:329:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8752:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8764:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8775:3:101",
                                    "type": "",
                                    "value": "160"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8760:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8760:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8752:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8795:9:101"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "8806:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8788:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8788:25:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8788:25:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8822:52:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "8832:42:101",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "8826:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8894:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8905:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8890:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8890:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "8914:6:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "8922:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "8910:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8910:15:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8883:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8883:43:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8883:43:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8946:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8957:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8942:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8942:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value2",
                                        "nodeType": "YulIdentifier",
                                        "src": "8966:6:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "8974:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "8962:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8962:15:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8935:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8935:43:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8935:43:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8998:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9009:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8994:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8994:18:101"
                                  },
                                  {
                                    "name": "value3",
                                    "nodeType": "YulIdentifier",
                                    "src": "9014:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8987:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8987:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8987:34:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9041:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9052:3:101",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9037:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9037:19:101"
                                  },
                                  {
                                    "name": "value4",
                                    "nodeType": "YulIdentifier",
                                    "src": "9058:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9030:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9030:35:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9030:35:101"
                            }
                          ]
                        },
                        "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:101",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "8690:6:101",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "8698:6:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "8706:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "8714:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8722:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8733:4:101",
                            "type": ""
                          }
                        ],
                        "src": "8529:542:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9317:373:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "9327:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9339:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9350:3:101",
                                    "type": "",
                                    "value": "192"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9335:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9335:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9327:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9370:9:101"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "9381:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9363:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9363:25:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9363:25:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9397:52:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "9407:42:101",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "9401:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9469:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9480:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9465:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9465:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "9489:6:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "9497:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "9485:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9485:15:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9458:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9458:43:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9458:43:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9521:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9532:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9517:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9517:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value2",
                                        "nodeType": "YulIdentifier",
                                        "src": "9541:6:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "9549:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "9537:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9537:15:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9510:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9510:43:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9510:43:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9573:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9584:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9569:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9569:18:101"
                                  },
                                  {
                                    "name": "value3",
                                    "nodeType": "YulIdentifier",
                                    "src": "9589:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9562:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9562:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9562:34:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9616:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9627:3:101",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9612:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9612:19:101"
                                  },
                                  {
                                    "name": "value4",
                                    "nodeType": "YulIdentifier",
                                    "src": "9633:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9605:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9605:35:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9605:35:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9660:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9671:3:101",
                                        "type": "",
                                        "value": "160"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9656:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9656:19:101"
                                  },
                                  {
                                    "name": "value5",
                                    "nodeType": "YulIdentifier",
                                    "src": "9677:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9649:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9649:35:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9649:35:101"
                            }
                          ]
                        },
                        "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:101",
                            "type": ""
                          },
                          {
                            "name": "value5",
                            "nodeType": "YulTypedName",
                            "src": "9257:6:101",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "9265:6:101",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "9273:6:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "9281:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "9289:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "9297:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9308:4:101",
                            "type": ""
                          }
                        ],
                        "src": "9076:614:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9908:299:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "9918:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9930:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9941:3:101",
                                    "type": "",
                                    "value": "160"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9926:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9926:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9918:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9961:9:101"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "9972:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9954:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9954:25:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9954:25:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9999:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10010:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9995:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9995:18:101"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "10015:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9988:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9988:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9988:34:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10042:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10053:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10038:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10038:18:101"
                                  },
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "10058:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10031:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10031:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10031:34:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10085:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10096:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10081:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10081:18:101"
                                  },
                                  {
                                    "name": "value3",
                                    "nodeType": "YulIdentifier",
                                    "src": "10101:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10074:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10074:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10074:34:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10128:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10139:3:101",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10124:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10124:19:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value4",
                                        "nodeType": "YulIdentifier",
                                        "src": "10149:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10157:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "10145:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10145:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10117:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10117:84:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10117:84:101"
                            }
                          ]
                        },
                        "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:101",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "9856:6:101",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "9864:6:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "9872:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "9880:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "9888:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9899:4:101",
                            "type": ""
                          }
                        ],
                        "src": "9695:512:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10393:217:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "10403:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10415:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10426:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10411:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10411:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10403:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10446:9:101"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "10457:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10439:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10439:25:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10439:25:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10484:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10495:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10480:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10480:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "10504:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10512:4:101",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "10500:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10500:17:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10473:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10473:45:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10473:45:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10538:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10549:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10534:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10534:18:101"
                                  },
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "10554:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10527:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10527:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10527:34:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10581:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10592:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10577:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10577:18:101"
                                  },
                                  {
                                    "name": "value3",
                                    "nodeType": "YulIdentifier",
                                    "src": "10597:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10570:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10570:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10570:34:101"
                            }
                          ]
                        },
                        "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:101",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "10349:6:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "10357:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "10365:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "10373:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10384:4:101",
                            "type": ""
                          }
                        ],
                        "src": "10212:398:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10736:535:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "10746:12:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "10756:2:101",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "10750:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10774:9:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "10785:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10767:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10767:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10767:21:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "10797:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "10817:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "10811:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10811:13:101"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "10801:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10844:9:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "10855:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10840:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10840:18:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "10860:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10833:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10833:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10833:34:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "10876:10:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "10885:1:101",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "10880:1:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "10945:90:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "headStart",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "10974:9:101"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "10985:1:101"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "10970:3:101"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "10970:17:101"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "10989:2:101",
                                              "type": "",
                                              "value": "64"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "10966:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "10966:26:101"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "arguments": [
                                                    {
                                                      "name": "value0",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "11008:6:101"
                                                    },
                                                    {
                                                      "name": "i",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "11016:1:101"
                                                    }
                                                  ],
                                                  "functionName": {
                                                    "name": "add",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "11004:3:101"
                                                  },
                                                  "nodeType": "YulFunctionCall",
                                                  "src": "11004:14:101"
                                                },
                                                {
                                                  "name": "_1",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "11020:2:101"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "11000:3:101"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "11000:23:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "10994:5:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "10994:30:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "10959:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10959:66:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "10959:66:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "10906:1:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "10909:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "10903:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10903:13:101"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "10917:19:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "10919:15:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "10928:1:101"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "10931:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "10924:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10924:10:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "10919:1:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "10899:3:101",
                                "statements": []
                              },
                              "src": "10895:140:101"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "11069:66:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "headStart",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "11098:9:101"
                                                },
                                                {
                                                  "name": "length",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "11109:6:101"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "11094:3:101"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "11094:22:101"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "11118:2:101",
                                              "type": "",
                                              "value": "64"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "11090:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "11090:31:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11123:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "11083:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11083:42:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "11083:42:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "11050:1:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "11053:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "11047:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11047:13:101"
                              },
                              "nodeType": "YulIf",
                              "src": "11044:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11144:121:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11160:9:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "11179:6:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "11187:2:101",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "11175:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "11175:15:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "11192:66:101",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "11171:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "11171:88:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11156:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11156:104:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11262:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11152:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11152:113:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11144:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "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:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "10716:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10727:4:101",
                            "type": ""
                          }
                        ],
                        "src": "10615:656:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11450:174:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11467:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11478:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11460:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11460:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11460:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11501:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11512:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11497:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11497:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11517:2:101",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11490:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11490:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11490:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11540:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11551:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11536:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11536:18:101"
                                  },
                                  {
                                    "hexValue": "45434453413a20696e76616c6964207369676e6174757265",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11556:26:101",
                                    "type": "",
                                    "value": "ECDSA: invalid signature"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11529:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11529:54:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11529:54:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11592:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11604:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11615:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11600:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11600:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11592:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_00043f6bf76368aa97c21698e9b9d4779e31902453daccf3525ddfb36e53e2be__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11427:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11441:4:101",
                            "type": ""
                          }
                        ],
                        "src": "11276:348:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11803:225:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11820:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11831:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11813:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11813:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11813:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11854:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11865:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11850:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11850:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11870:2:101",
                                    "type": "",
                                    "value": "35"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11843:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11843:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11843:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11893:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11904:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11889:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11889:18:101"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220746f20746865207a65726f2061646472",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11909:34:101",
                                    "type": "",
                                    "value": "ERC20: transfer to the zero addr"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11882:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11882:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11882:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11964:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11975:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11960:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11960:18:101"
                                  },
                                  {
                                    "hexValue": "657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11980:5:101",
                                    "type": "",
                                    "value": "ess"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11953:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11953:33:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11953:33:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11995:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12007:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12018:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12003:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12003:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11995:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11780:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11794:4:101",
                            "type": ""
                          }
                        ],
                        "src": "11629:399:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12207:224:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12224:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12235:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12217:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12217:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12217:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12258:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12269:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12254:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12254:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12274:2:101",
                                    "type": "",
                                    "value": "34"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12247:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12247:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12247:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12297:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12308:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12293:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12293:18:101"
                                  },
                                  {
                                    "hexValue": "45524332303a206275726e20616d6f756e7420657863656564732062616c616e",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "12313:34:101",
                                    "type": "",
                                    "value": "ERC20: burn amount exceeds balan"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12286:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12286:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12286:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12368:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12379:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12364:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12364:18:101"
                                  },
                                  {
                                    "hexValue": "6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "12384:4:101",
                                    "type": "",
                                    "value": "ce"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12357:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12357:32:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12357:32:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12398:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12410:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12421:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12406:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12406:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12398:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12184:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12198:4:101",
                            "type": ""
                          }
                        ],
                        "src": "12033:398:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12610:181:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12627:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12638:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12620:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12620:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12620:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12661:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12672:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12657:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12657:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12677:2:101",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12650:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12650:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12650:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12700:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12711:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12696:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12696:18:101"
                                  },
                                  {
                                    "hexValue": "45434453413a20696e76616c6964207369676e6174757265206c656e677468",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "12716:33:101",
                                    "type": "",
                                    "value": "ECDSA: invalid signature length"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12689:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12689:61:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12689:61:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12759:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12771:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12782:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12767:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12767:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12759:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_1669ff3ba3cdf64474e1193492d05b8434e29b0b495e60095eb5f5c8ec14ce77__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12587:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12601:4:101",
                            "type": ""
                          }
                        ],
                        "src": "12436:355:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12970:224:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12987:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12998:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12980:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12980:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12980:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13021:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13032:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13017:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13017:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13037:2:101",
                                    "type": "",
                                    "value": "34"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13010:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13010:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13010:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13060:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13071:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13056:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13056:18:101"
                                  },
                                  {
                                    "hexValue": "45524332303a20617070726f766520746f20746865207a65726f206164647265",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "13076:34:101",
                                    "type": "",
                                    "value": "ERC20: approve to the zero addre"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13049:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13049:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13049:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13131:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13142:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13127:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13127:18:101"
                                  },
                                  {
                                    "hexValue": "7373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "13147:4:101",
                                    "type": "",
                                    "value": "ss"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13120:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13120:32:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13120:32:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13161:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13173:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13184:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13169:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13169:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "13161:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12947:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12961:4:101",
                            "type": ""
                          }
                        ],
                        "src": "12796:398:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13373:182:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13390:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13401:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13383:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13383:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13383:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13424:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13435:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13420:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13420:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13440:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13413:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13413:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13413:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13463:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13474:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13459:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13459:18:101"
                                  },
                                  {
                                    "hexValue": "5469636b65742f64656c65676174652d657870697265642d646561646c696e65",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "13479:34:101",
                                    "type": "",
                                    "value": "Ticket/delegate-expired-deadline"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13452:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13452:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13452:62:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13523:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13535:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13546:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13531:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13531:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "13523:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_39ab2e4ed03130f2bab737445eefa0170013f2d5d6416c5398200851ee691d09__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "13350:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "13364:4:101",
                            "type": ""
                          }
                        ],
                        "src": "13199:356:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13734:179:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13751:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13762:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13744:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13744:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13744:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13785:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13796:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13781:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13781:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13801:2:101",
                                    "type": "",
                                    "value": "29"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13774:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13774:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13774:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13824:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13835:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13820:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13820:18:101"
                                  },
                                  {
                                    "hexValue": "45524332305065726d69743a206578706972656420646561646c696e65",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "13840:31:101",
                                    "type": "",
                                    "value": "ERC20Permit: expired deadline"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13813:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13813:59:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13813:59:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13881:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13893:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13904:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13889:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13889:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "13881:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_3e89525a63fb9c966b61cf8f5305156de8420bc773a2b60828a2f32c3c5797bd__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "13711:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "13725:4:101",
                            "type": ""
                          }
                        ],
                        "src": "13560:353:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14092:228:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14109:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14120:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14102:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14102:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14102:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14143:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14154:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14139:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14139:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14159:2:101",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14132:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14132:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14132:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14182:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14193:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14178:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14178:18:101"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732062",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "14198:34:101",
                                    "type": "",
                                    "value": "ERC20: transfer amount exceeds b"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14171:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14171:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14171:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14253:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14264:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14249:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14249:18:101"
                                  },
                                  {
                                    "hexValue": "616c616e6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "14269:8:101",
                                    "type": "",
                                    "value": "alance"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14242:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14242:36:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14242:36:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "14287:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14299:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14310:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "14295:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14295:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "14287:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "14069:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "14083:4:101",
                            "type": ""
                          }
                        ],
                        "src": "13918:402:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14499:229:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14516:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14527:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14509:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14509:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14509:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14550:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14561:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14546:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14546:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14566:2:101",
                                    "type": "",
                                    "value": "39"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14539:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14539:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14539:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14589:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14600:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14585:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14585:18:101"
                                  },
                                  {
                                    "hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e2032",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "14605:34:101",
                                    "type": "",
                                    "value": "SafeCast: value doesn't fit in 2"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14578:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14578:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14578:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14660:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14671:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14656:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14656:18:101"
                                  },
                                  {
                                    "hexValue": "30382062697473",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "14676:9:101",
                                    "type": "",
                                    "value": "08 bits"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14649:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14649:37:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14649:37:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "14695:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14707:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14718:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "14703:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14703:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "14695:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_43d81217fa633fa1c6e88855de94fb990f5831ac266b0a90afa660e986ab5e23__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "14476:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "14490:4:101",
                            "type": ""
                          }
                        ],
                        "src": "14325:403:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14907:224:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14924:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14935:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14917:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14917:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14917:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14958:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14969:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14954:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14954:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14974:2:101",
                                    "type": "",
                                    "value": "34"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14947:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14947:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14947:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14997:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15008:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14993:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14993:18:101"
                                  },
                                  {
                                    "hexValue": "45434453413a20696e76616c6964207369676e6174757265202773272076616c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "15013:34:101",
                                    "type": "",
                                    "value": "ECDSA: invalid signature 's' val"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14986:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14986:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14986:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15068:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15079:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15064:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15064:18:101"
                                  },
                                  {
                                    "hexValue": "7565",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "15084:4:101",
                                    "type": "",
                                    "value": "ue"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15057:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15057:32:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15057:32:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "15098:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15110:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15121:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "15106:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15106:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "15098:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_520d1f787dbcafbbfc007fd2c4ecf3d2711ec587f3ee9a1215c0b646c3e530bd__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "14884:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "14898:4:101",
                            "type": ""
                          }
                        ],
                        "src": "14733:398:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15310:224:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15327:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15338:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15320:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15320:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15320:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15361:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15372:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15357:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15357:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15377:2:101",
                                    "type": "",
                                    "value": "34"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15350:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15350:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15350:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15400:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15411:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15396:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15396:18:101"
                                  },
                                  {
                                    "hexValue": "45434453413a20696e76616c6964207369676e6174757265202776272076616c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "15416:34:101",
                                    "type": "",
                                    "value": "ECDSA: invalid signature 'v' val"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15389:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15389:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15389:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15471:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15482:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15467:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15467:18:101"
                                  },
                                  {
                                    "hexValue": "7565",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "15487:4:101",
                                    "type": "",
                                    "value": "ue"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15460:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15460:32:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15460:32:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "15501:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15513:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15524:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "15509:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15509:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "15501:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_8522ee1b53216f595394db8e80a64d9e7d9bd512c0811c18debe9f40858597e4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "15287:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "15301:4:101",
                            "type": ""
                          }
                        ],
                        "src": "15136:398:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15713:180:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15730:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15741:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15723:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15723:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15723:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15764:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15775:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15760:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15760:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15780:2:101",
                                    "type": "",
                                    "value": "30"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15753:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15753:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15753:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15803:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15814:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15799:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15799:18:101"
                                  },
                                  {
                                    "hexValue": "45524332305065726d69743a20696e76616c6964207369676e6174757265",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "15819:32:101",
                                    "type": "",
                                    "value": "ERC20Permit: invalid signature"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15792:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15792:60:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15792:60:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "15861:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15873:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15884:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "15869:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15869:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "15861:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_94ca1ab58dfda790a1782ffbb0c0a140ec51d4148dbeecc6c39e37b25ff4b124__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "15690:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "15704:4:101",
                            "type": ""
                          }
                        ],
                        "src": "15539:354:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "16072:230:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16089:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16100:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16082:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16082:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16082:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16123:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16134:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16119:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16119:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16139:2:101",
                                    "type": "",
                                    "value": "40"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16112:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16112:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16112:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16162:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16173:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16158:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16158:18:101"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732061",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "16178:34:101",
                                    "type": "",
                                    "value": "ERC20: transfer amount exceeds a"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16151:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16151:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16151:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16233:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16244:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16229:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16229:18:101"
                                  },
                                  {
                                    "hexValue": "6c6c6f77616e6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "16249:10:101",
                                    "type": "",
                                    "value": "llowance"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16222:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16222:38:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16222:38:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "16269:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16281:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16292:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "16277:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16277:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "16269:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "16049:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "16063:4:101",
                            "type": ""
                          }
                        ],
                        "src": "15898:404:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "16481:223:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16498:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16509:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16491:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16491:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16491:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16532:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16543:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16528:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16528:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16548:2:101",
                                    "type": "",
                                    "value": "33"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16521:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16521:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16521:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16571:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16582:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16567:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16567:18:101"
                                  },
                                  {
                                    "hexValue": "45524332303a206275726e2066726f6d20746865207a65726f20616464726573",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "16587:34:101",
                                    "type": "",
                                    "value": "ERC20: burn from the zero addres"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16560:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16560:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16560:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16642:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16653:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16638:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16638:18:101"
                                  },
                                  {
                                    "hexValue": "73",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "16658:3:101",
                                    "type": "",
                                    "value": "s"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16631:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16631:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16631:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "16671:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16683:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16694:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "16679:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16679:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "16671:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "16458:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "16472:4:101",
                            "type": ""
                          }
                        ],
                        "src": "16307:397:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "16883:227:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16900:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16911:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16893:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16893:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16893:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16934:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16945:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16930:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16930:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16950:2:101",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16923:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16923:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16923:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16973:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16984:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16969:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16969:18:101"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e736665722066726f6d20746865207a65726f206164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "16989:34:101",
                                    "type": "",
                                    "value": "ERC20: transfer from the zero ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16962:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16962:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16962:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17044:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17055:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17040:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17040:18:101"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "17060:7:101",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17033:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17033:35:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17033:35:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "17077:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "17089:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17100:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "17085:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17085:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "17077:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "16860:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "16874:4:101",
                            "type": ""
                          }
                        ],
                        "src": "16709:401:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "17289:225:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "17306:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17317:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17299:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17299:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17299:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17340:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17351:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17336:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17336:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17356:2:101",
                                    "type": "",
                                    "value": "35"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17329:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17329:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17329:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17379:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17390:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17375:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17375:18:101"
                                  },
                                  {
                                    "hexValue": "5469636b65742f73746172742d656e642d74696d65732d6c656e6774682d6d61",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "17395:34:101",
                                    "type": "",
                                    "value": "Ticket/start-end-times-length-ma"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17368:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17368:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17368:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17450:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17461:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17446:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17446:18:101"
                                  },
                                  {
                                    "hexValue": "746368",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "17466:5:101",
                                    "type": "",
                                    "value": "tch"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17439:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17439:33:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17439:33:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "17481:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "17493:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17504:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "17489:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17489:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "17481:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c485dc2a924c6dd174a7f3539c902d57d6264aa0653fd1afa5b4084da601fff7__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "17266:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "17280:4:101",
                            "type": ""
                          }
                        ],
                        "src": "17115:399:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "17693:226:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "17710:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17721:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17703:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17703:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17703:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17744:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17755:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17740:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17740:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17760:2:101",
                                    "type": "",
                                    "value": "36"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17733:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17733:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17733:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17783:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17794:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17779:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17779:18:101"
                                  },
                                  {
                                    "hexValue": "45524332303a20617070726f76652066726f6d20746865207a65726f20616464",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "17799:34:101",
                                    "type": "",
                                    "value": "ERC20: approve from the zero add"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17772:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17772:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17772:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17854:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17865:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17850:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17850:18:101"
                                  },
                                  {
                                    "hexValue": "72657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "17870:6:101",
                                    "type": "",
                                    "value": "ress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17843:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17843:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17843:34:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "17886:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "17898:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17909:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "17894:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17894:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "17886:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "17670:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "17684:4:101",
                            "type": ""
                          }
                        ],
                        "src": "17519:400:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "18098:223:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "18115:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18126:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18108:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18108:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18108:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "18149:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18160:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "18145:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18145:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18165:2:101",
                                    "type": "",
                                    "value": "33"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18138:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18138:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18138:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "18188:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18199:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "18184:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18184:18:101"
                                  },
                                  {
                                    "hexValue": "5469636b65742f64656c65676174652d696e76616c69642d7369676e61747572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "18204:34:101",
                                    "type": "",
                                    "value": "Ticket/delegate-invalid-signatur"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18177:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18177:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18177:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "18259:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18270:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "18255:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18255:18:101"
                                  },
                                  {
                                    "hexValue": "65",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "18275:3:101",
                                    "type": "",
                                    "value": "e"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18248:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18248:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18248:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "18288:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "18300:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18311:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "18296:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18296:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "18288:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d26de55e8ec40107d038a21c3ec11785680740c032de3f1a47bf117807198f53__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "18075:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "18089:4:101",
                            "type": ""
                          }
                        ],
                        "src": "17924:397:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "18500:181:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "18517:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18528:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18510:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18510:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18510:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "18551:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18562:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "18547:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18547:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18567:2:101",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18540:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18540:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18540:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "18590:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18601:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "18586:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18586:18:101"
                                  },
                                  {
                                    "hexValue": "436f6e74726f6c6c6564546f6b656e2f6f6e6c792d636f6e74726f6c6c6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "18606:33:101",
                                    "type": "",
                                    "value": "ControlledToken/only-controller"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18579:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18579:61:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18579:61:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "18649:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "18661:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18672:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "18657:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18657:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "18649:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_ef56e6eb544946d3498735fdd4428248a65a688b6ca702fa3dbce5b90141cb35__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "18477:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "18491:4:101",
                            "type": ""
                          }
                        ],
                        "src": "18326:355:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "18860:227:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "18877:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18888:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18870:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18870:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18870:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "18911:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18922:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "18907:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18907:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18927:2:101",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18900:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18900:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18900:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "18950:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18961:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "18946:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18946:18:101"
                                  },
                                  {
                                    "hexValue": "45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "18966:34:101",
                                    "type": "",
                                    "value": "ERC20: decreased allowance below"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18939:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18939:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18939:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "19021:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "19032:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "19017:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19017:18:101"
                                  },
                                  {
                                    "hexValue": "207a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "19037:7:101",
                                    "type": "",
                                    "value": " zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19010:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19010:35:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19010:35:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "19054:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "19066:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19077:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "19062:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19062:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "19054:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "18837:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "18851:4:101",
                            "type": ""
                          }
                        ],
                        "src": "18686:401:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "19266:181:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "19283:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19294:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19276:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19276:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19276:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "19317:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "19328:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "19313:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19313:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19333:2:101",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19306:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19306:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19306:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "19356:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "19367:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "19352:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19352:18:101"
                                  },
                                  {
                                    "hexValue": "45524332303a206d696e7420746f20746865207a65726f2061646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "19372:33:101",
                                    "type": "",
                                    "value": "ERC20: mint to the zero address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19345:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19345:61:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19345:61:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "19415:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "19427:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19438:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "19423:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19423:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "19415:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "19243:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "19257:4:101",
                            "type": ""
                          }
                        ],
                        "src": "19092:355:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "19619:356:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "19629:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "19641:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19652:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "19637:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19637:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "19629:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "19671:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "19692:6:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "19686:5:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "19686:13:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "19701:54:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "19682:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19682:74:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19664:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19664:93:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19664:93:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "19766:44:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "19796:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "19804:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "19792:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19792:17:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "19786:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19786:24:101"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0",
                                  "nodeType": "YulTypedName",
                                  "src": "19770:12:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "19819:18:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "19829:8:101",
                                "type": "",
                                "value": "0xffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "19823:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "19857:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "19868:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "19853:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19853:20:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "memberValue0",
                                        "nodeType": "YulIdentifier",
                                        "src": "19879:12:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "19893:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "19875:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19875:21:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19846:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19846:51:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19846:51:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "19917:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "19928:4:101",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "19913:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19913:20:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value0",
                                                "nodeType": "YulIdentifier",
                                                "src": "19949:6:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "19957:4:101",
                                                "type": "",
                                                "value": "0x40"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "19945:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "19945:17:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "19939:5:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "19939:24:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "19965:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "19935:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19935:33:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19906:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19906:63:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19906:63:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_struct$_AccountDetails_$12485_memory_ptr__to_t_struct$_AccountDetails_$12485_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "19588:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "19599:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "19610:4:101",
                            "type": ""
                          }
                        ],
                        "src": "19452:523:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "20141:228:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "20151:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "20163:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "20174:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "20159:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20159:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "20151:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "20193:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "20214:6:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "20208:5:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "20208:13:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "20223:58:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "20204:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "20204:78:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "20186:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20186:97:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "20186:97:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "20303:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "20314:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "20299:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "20299:20:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value0",
                                                "nodeType": "YulIdentifier",
                                                "src": "20335:6:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "20343:4:101",
                                                "type": "",
                                                "value": "0x20"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "20331:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "20331:17:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "20325:5:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "20325:24:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "20351:10:101",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "20321:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "20321:41:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "20292:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20292:71:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "20292:71:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_struct$_Observation_$12066_memory_ptr__to_t_struct$_Observation_$12066_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "20110:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "20121:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "20132:4:101",
                            "type": ""
                          }
                        ],
                        "src": "19980:389:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "20475:76:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "20485:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "20497:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "20508:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "20493:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20493:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "20485:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "20527:9:101"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "20538:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "20520:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20520:25:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "20520:25:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "20444:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "20455:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "20466:4:101",
                            "type": ""
                          }
                        ],
                        "src": "20374:177:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "20653:87:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "20663:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "20675:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "20686:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "20671:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20671:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "20663:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "20705:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "20720:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "20728:4:101",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "20716:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "20716:17:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "20698:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20698:36:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "20698:36:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "20622:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "20633:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "20644:4:101",
                            "type": ""
                          }
                        ],
                        "src": "20556:184:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "20793:225:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "20803:64:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "20813:54:101",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "20807:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "20876:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "20891:1:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "20894:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "20887:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20887:10:101"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "20880:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "20906:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "20921:1:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "20924:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "20917:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20917:10:101"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "20910:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "20961:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "20963:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "20963:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "20963:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "20942:3:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "20951:2:101"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "20955:3:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "20947:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "20947:12:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "20939:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20939:21:101"
                              },
                              "nodeType": "YulIf",
                              "src": "20936:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "20992:20:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21003:3:101"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21008:3:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "20999:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20999:13:101"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "20992:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint208",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "20776:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "20779:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "20785:3:101",
                            "type": ""
                          }
                        ],
                        "src": "20745:273:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "21071:229:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "21081:68:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "21091:58:101",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "21085:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "21158:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "21173:1:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21176:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "21169:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21169:10:101"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "21162:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "21188:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "21203:1:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21206:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "21199:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21199:10:101"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "21192:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "21243:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "21245:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "21245:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "21245:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21224:3:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "21233:2:101"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "21237:3:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "21229:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "21229:12:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "21221:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21221:21:101"
                              },
                              "nodeType": "YulIf",
                              "src": "21218:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "21274:20:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21285:3:101"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21290:3:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "21281:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21281:13:101"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "21274:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint224",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "21054:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "21057:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "21063:3:101",
                            "type": ""
                          }
                        ],
                        "src": "21023:277:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "21352:179:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "21362:18:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "21372:8:101",
                                "type": "",
                                "value": "0xffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "21366:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "21389:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "21404:1:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21407:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "21400:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21400:10:101"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "21393:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "21419:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "21434:1:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21437:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "21430:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21430:10:101"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "21423:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "21474:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "21476:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "21476:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "21476:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21455:3:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "21464:2:101"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "21468:3:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "21460:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "21460:12:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "21452:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21452:21:101"
                              },
                              "nodeType": "YulIf",
                              "src": "21449:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "21505:20:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21516:3:101"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21521:3:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "21512:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21512:13:101"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "21505:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint24",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "21335:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "21338:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "21344:3:101",
                            "type": ""
                          }
                        ],
                        "src": "21305:226:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "21584:80:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "21611:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "21613:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "21613:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "21613:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "21600:1:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "21607:1:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "21603:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "21603:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "21597:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21597:13:101"
                              },
                              "nodeType": "YulIf",
                              "src": "21594:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "21642:16:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "21653:1:101"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "21656:1:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "21649:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21649:9:101"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "21642:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "21567:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "21570:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "21576:3:101",
                            "type": ""
                          }
                        ],
                        "src": "21536:128:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "21716:183:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "21726:22:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "21736:12:101",
                                "type": "",
                                "value": "0xffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "21730:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "21757:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "21772:1:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21775:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "21768:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21768:10:101"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "21761:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "21787:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "21802:1:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21805:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "21798:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21798:10:101"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "21791:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "21842:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "21844:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "21844:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "21844:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21823:3:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "21832:2:101"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "21836:3:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "21828:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "21828:12:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "21820:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21820:21:101"
                              },
                              "nodeType": "YulIf",
                              "src": "21817:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "21873:20:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21884:3:101"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "21889:3:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "21880:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21880:13:101"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "21873:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint40",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "21699:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "21702:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "21708:3:101",
                            "type": ""
                          }
                        ],
                        "src": "21669:230:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "21950:194:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "21960:68:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "21970:58:101",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "21964:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "22037:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "22052:1:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22055:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "22048:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22048:10:101"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "22041:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "22082:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x12",
                                        "nodeType": "YulIdentifier",
                                        "src": "22084:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "22084:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "22084:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22077:3:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "22070:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22070:11:101"
                              },
                              "nodeType": "YulIf",
                              "src": "22067:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "22113:25:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "x",
                                        "nodeType": "YulIdentifier",
                                        "src": "22126:1:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "22129:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "22122:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "22122:10:101"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22134:3:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "div",
                                  "nodeType": "YulIdentifier",
                                  "src": "22118:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22118:20:101"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "22113:1:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_div_t_uint224",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "21935:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "21938:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "21944:1:101",
                            "type": ""
                          }
                        ],
                        "src": "21904:240:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "22195:74:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "22218:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x12",
                                        "nodeType": "YulIdentifier",
                                        "src": "22220:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "22220:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "22220:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "22215:1:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "22208:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22208:9:101"
                              },
                              "nodeType": "YulIf",
                              "src": "22205:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "22249:14:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "22258:1:101"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "22261:1:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "div",
                                  "nodeType": "YulIdentifier",
                                  "src": "22254:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22254:9:101"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "22249:1:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_div_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "22180:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "22183:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "22189:1:101",
                            "type": ""
                          }
                        ],
                        "src": "22149:120:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "22326:259:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "22336:68:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "22346:58:101",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "22340:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "22413:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "22428:1:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22431:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "22424:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22424:10:101"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "22417:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "22443:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "22458:1:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22461:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "22454:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22454:10:101"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "22447:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "22524:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "22526:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "22526:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "22526:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "x_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "22494:3:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "22487:6:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "22487:11:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "22480:6:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "22480:19:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "22504:3:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "22513:2:101"
                                          },
                                          {
                                            "name": "x_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "22517:3:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "div",
                                          "nodeType": "YulIdentifier",
                                          "src": "22509:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "22509:12:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "22501:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "22501:21:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "22476:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22476:47:101"
                              },
                              "nodeType": "YulIf",
                              "src": "22473:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "22555:24:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22570:3:101"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22575:3:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mul",
                                  "nodeType": "YulIdentifier",
                                  "src": "22566:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22566:13:101"
                              },
                              "variableNames": [
                                {
                                  "name": "product",
                                  "nodeType": "YulIdentifier",
                                  "src": "22555:7:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_mul_t_uint224",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "22305:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "22308:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "product",
                            "nodeType": "YulTypedName",
                            "src": "22314:7:101",
                            "type": ""
                          }
                        ],
                        "src": "22274:311:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "22639:221:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "22649:68:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "22659:58:101",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "22653:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "22726:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "22741:1:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22744:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "22737:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22737:10:101"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "22730:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "22756:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "22771:1:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22774:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "22767:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22767:10:101"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "22760:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "22802:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "22804:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "22804:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "22804:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22792:3:101"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22797:3:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "22789:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22789:12:101"
                              },
                              "nodeType": "YulIf",
                              "src": "22786:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "22833:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22845:3:101"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "22850:3:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "22841:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22841:13:101"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "22833:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint224",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "22621:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "22624:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "22630:4:101",
                            "type": ""
                          }
                        ],
                        "src": "22590:270:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "22914:76:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "22936:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "22938:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "22938:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "22938:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "22930:1:101"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "22933:1:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "22927:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22927:8:101"
                              },
                              "nodeType": "YulIf",
                              "src": "22924:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "22967:17:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "22979:1:101"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "22982:1:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "22975:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22975:9:101"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "22967:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "22896:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "22899:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "22905:4:101",
                            "type": ""
                          }
                        ],
                        "src": "22865:125:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "23043:173:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "23053:20:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "23063:10:101",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "23057:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "23082:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "23097:1:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "23100:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "23093:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23093:10:101"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "23086:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "23112:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "23127:1:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "23130:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "23123:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23123:10:101"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "23116:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "23158:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "23160:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "23160:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "23160:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "23148:3:101"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "23153:3:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "23145:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23145:12:101"
                              },
                              "nodeType": "YulIf",
                              "src": "23142:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "23189:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "23201:3:101"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "23206:3:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "23197:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23197:13:101"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "23189:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "23025:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "23028:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "23034:4:101",
                            "type": ""
                          }
                        ],
                        "src": "22995:221:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "23276:382:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "23286:22:101",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "23300:1:101",
                                    "type": "",
                                    "value": "1"
                                  },
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "23303:4:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "shr",
                                  "nodeType": "YulIdentifier",
                                  "src": "23296:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23296:12:101"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "23286:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "23317:38:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "23347:4:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "23353:1:101",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "23343:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23343:12:101"
                              },
                              "variables": [
                                {
                                  "name": "outOfPlaceEncoding",
                                  "nodeType": "YulTypedName",
                                  "src": "23321:18:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "23394:31:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "23396:27:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "length",
                                          "nodeType": "YulIdentifier",
                                          "src": "23410:6:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "23418:4:101",
                                          "type": "",
                                          "value": "0x7f"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "and",
                                        "nodeType": "YulIdentifier",
                                        "src": "23406:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "23406:17:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "23396:6:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "23374:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "23367:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23367:26:101"
                              },
                              "nodeType": "YulIf",
                              "src": "23364:2:101"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "23484:168:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "23505:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "23508:77:101",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "23498:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "23498:88:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "23498:88:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "23606:1:101",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "23609:4:101",
                                          "type": "",
                                          "value": "0x22"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "23599:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "23599:15:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "23599:15:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "23634:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "23637:4:101",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "23627:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "23627:15:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "23627:15:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "23440:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "23463:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "23471:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "23460:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "23460:14:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "23437:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23437:38:101"
                              },
                              "nodeType": "YulIf",
                              "src": "23434:2:101"
                            }
                          ]
                        },
                        "name": "extract_byte_array_length",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "data",
                            "nodeType": "YulTypedName",
                            "src": "23256:4:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "23265:6:101",
                            "type": ""
                          }
                        ],
                        "src": "23221:437:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "23710:148:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "23801:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "23803:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "23803:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "23803:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "23726:5:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "23733:66:101",
                                    "type": "",
                                    "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "23723:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23723:77:101"
                              },
                              "nodeType": "YulIf",
                              "src": "23720:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "23832:20:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "23843:5:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "23850:1:101",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "23839:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23839:13:101"
                              },
                              "variableNames": [
                                {
                                  "name": "ret",
                                  "nodeType": "YulIdentifier",
                                  "src": "23832:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "increment_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "23692:5:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "ret",
                            "nodeType": "YulTypedName",
                            "src": "23702:3:101",
                            "type": ""
                          }
                        ],
                        "src": "23663:195:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "23901:74:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "23924:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x12",
                                        "nodeType": "YulIdentifier",
                                        "src": "23926:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "23926:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "23926:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "23921:1:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "23914:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23914:9:101"
                              },
                              "nodeType": "YulIf",
                              "src": "23911:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "23955:14:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "23964:1:101"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "23967:1:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mod",
                                  "nodeType": "YulIdentifier",
                                  "src": "23960:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23960:9:101"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "23955:1:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "mod_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "23886:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "23889:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "23895:1:101",
                            "type": ""
                          }
                        ],
                        "src": "23863:112:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "24012:152:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24029:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24032:77:101",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "24022:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24022:88:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "24022:88:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24126:1:101",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24129:4:101",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "24119:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24119:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "24119:15:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24150:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24153:4:101",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "24143:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24143:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "24143:15:101"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "23980:184:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "24201:152:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24218:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24221:77:101",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "24211:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24211:88:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "24211:88:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24315:1:101",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24318:4:101",
                                    "type": "",
                                    "value": "0x12"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "24308:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24308:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "24308:15:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24339:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24342:4:101",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "24332:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24332:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "24332:15:101"
                            }
                          ]
                        },
                        "name": "panic_error_0x12",
                        "nodeType": "YulFunctionDefinition",
                        "src": "24169:184:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "24390:152:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24407:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24410:77:101",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "24400:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24400:88:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "24400:88:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24504:1:101",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24507:4:101",
                                    "type": "",
                                    "value": "0x21"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "24497:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24497:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "24497:15:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24528:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24531:4:101",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "24521:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24521:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "24521:15:101"
                            }
                          ]
                        },
                        "name": "panic_error_0x21",
                        "nodeType": "YulFunctionDefinition",
                        "src": "24358:184:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "24579:152:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24596:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24599:77:101",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "24589:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24589:88:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "24589:88:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24693:1:101",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24696:4:101",
                                    "type": "",
                                    "value": "0x32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "24686:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24686:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "24686:15:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24717:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24720:4:101",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "24710:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24710:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "24710:15:101"
                            }
                          ]
                        },
                        "name": "panic_error_0x32",
                        "nodeType": "YulFunctionDefinition",
                        "src": "24547:184:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "24768:152:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24785:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24788:77:101",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "24778:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24778:88:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "24778:88:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24882:1:101",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24885:4:101",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "24875:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24875:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "24875:15:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24906:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24909:4:101",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "24899:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24899:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "24899:15:101"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "24736:184:101"
                      }
                    ]
                  },
                  "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_$12485_memory_ptr__to_t_struct$_AccountDetails_$12485_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_$12066_memory_ptr__to_t_struct$_Observation_$12066_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": 101,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {
                "943": [
                  {
                    "length": 32,
                    "start": 4229
                  }
                ],
                "2470": [
                  {
                    "length": 32,
                    "start": 5748
                  }
                ],
                "2472": [
                  {
                    "length": 32,
                    "start": 5706
                  }
                ],
                "2474": [
                  {
                    "length": 32,
                    "start": 5664
                  }
                ],
                "2476": [
                  {
                    "length": 32,
                    "start": 5831
                  }
                ],
                "2478": [
                  {
                    "length": 32,
                    "start": 5868
                  }
                ],
                "2480": [
                  {
                    "length": 32,
                    "start": 5789
                  }
                ],
                "5848": [
                  {
                    "length": 32,
                    "start": 1426
                  },
                  {
                    "length": 32,
                    "start": 1914
                  },
                  {
                    "length": 32,
                    "start": 2256
                  },
                  {
                    "length": 32,
                    "start": 2670
                  },
                  {
                    "length": 32,
                    "start": 3221
                  }
                ],
                "5851": [
                  {
                    "length": 32,
                    "start": 795
                  }
                ],
                "9650": [
                  {
                    "length": 32,
                    "start": 3424
                  }
                ]
              },
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106101e55760003560e01c806368c7fd571161010f57806395d89b41116100a2578063a9059cbb11610071578063a9059cbb1461052e578063d505accf14610541578063dd62ed3e14610554578063f77c47911461058d57600080fd5b806395d89b41146104ed57806398b16f36146104f55780639ecb037014610508578063a457c2d71461051b57600080fd5b80638d22ea2a116100de5780638d22ea2a1461046d5780638e6d536a146104b457806390596dd1146104c7578063919974dc146104da57600080fd5b806368c7fd571461040b57806370a082311461041e5780637ecebe001461044757806385beb5f11461045a57600080fd5b806333e39b61116101875780635c19a95c116101565780635c19a95c146103b25780635d7b0758146103c5578063613ed6bd146103d8578063631b5dfb146103f857600080fd5b806333e39b61146103455780633644e5151461035a57806336bb2a3814610362578063395093511461039f57600080fd5b806323b872dd116101c357806323b872dd1461023d5780632aceb534146102505780632d0dd68614610301578063313ce5671461031457600080fd5b806306fdde03146101ea578063095ea7b31461020857806318160ddd1461022b575b600080fd5b6101f26105b4565b6040516101ff919061339d565b60405180910390f35b61021b6102163660046131f9565b610646565b60405190151581526020016101ff565b6002545b6040519081526020016101ff565b61021b61024b366004612fe2565b61065d565b6102c961025e366004612f94565b6040805160608082018352600080835260208084018290529284018190526001600160a01b03949094168452600682529282902082519384018352546001600160d01b038116845262ffffff600160d01b8204811692850192909252600160e81b9004169082015290565b6040805182516001600160d01b0316815260208084015162ffffff9081169183019190915292820151909216908201526060016101ff565b61022f61030f36600461333e565b610723565b60405160ff7f00000000000000000000000000000000000000000000000000000000000000001681526020016101ff565b610358610353366004612faf565b61076f565b005b61022f6107f5565b6103756103703660046131bb565b610804565b6040805182516001600160e01b0316815260209283015163ffffffff1692810192909252016101ff565b61021b6103ad3660046131f9565b61087c565b6103586103c0366004612f94565b6108b8565b6103586103d33660046131f9565b6108c5565b6103eb6103e63660046130e7565b610947565b6040516101ff9190613359565b610358610406366004612fe2565b610a63565b6103eb61041936600461313a565b610b3c565b61022f61042c366004612f94565b6001600160a01b031660009081526020819052604090205490565b61022f610455366004612f94565b610b6e565b6103eb610468366004613290565b610b8c565b61049c61047b366004612f94565b6001600160a01b039081166000908152630100000760205260409020541690565b6040516001600160a01b0390911681526020016101ff565b6103eb6104c23660046132d2565b610c6f565b6103586104d53660046131f9565b610c8a565b6103586104e8366004613088565b610d0c565b6101f2610e8c565b61022f61050336600461324d565b610e9b565b61022f610516366004613223565b610f0c565b61021b6105293660046131f9565b610f73565b61021b61053c3660046131f9565b611024565b61035861054f36600461301e565b611031565b61022f610562366004612faf565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61049c7f000000000000000000000000000000000000000000000000000000000000000081565b6060600380546105c39061355a565b80601f01602080910402602001604051908101604052809291908181526020018280546105ef9061355a565b801561063c5780601f106106115761010080835404028352916020019161063c565b820191906000526020600020905b81548152906001019060200180831161061f57829003601f168201915b5050505050905090565b6000610653338484611195565b5060015b92915050565b600061066a8484846112ed565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156107095760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6107168533858403611195565b60019150505b9392505050565b604080516060810182526007546001600160d01b038116825262ffffff600160d01b820481166020840152600160e81b9091041691810191909152600090610657906008908442611511565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146107e75760405162461bcd60e51b815260206004820152601f60248201527f436f6e74726f6c6c6564546f6b656e2f6f6e6c792d636f6e74726f6c6c6572006044820152606401610700565b6107f1828261153d565b5050565b60006107ff611613565b905090565b60408051808201909152600080825260208201526001600160a01b038316600090815260066020526040902060010161ffff831662ffffff811061084a5761084a61361e565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff1660208201529392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916106539185906108b390869061345d565b611195565b6108c2338261153d565b50565b336001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161461093d5760405162461bcd60e51b815260206004820152601f60248201527f436f6e74726f6c6c6564546f6b656e2f6f6e6c792d636f6e74726f6c6c6572006044820152606401610700565b6107f1828261173a565b60608160008167ffffffffffffffff81111561096557610965613634565b60405190808252806020026020018201604052801561098e578160200160208202803683370190505b506001600160a01b0387166000908152600660209081526040808320815160608101835281546001600160d01b038116825262ffffff600160d01b8204811695830195909552600160e81b900490931691830191909152929350905b84811015610a5657610a2783600101838a8a85818110610a0c57610a0c61361e565b9050602002016020810190610a21919061333e565b42611511565b848281518110610a3957610a3961361e565b602090810291909101015280610a4e8161358f565b9150506109ea565b5091979650505050505050565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610adb5760405162461bcd60e51b815260206004820152601f60248201527f436f6e74726f6c6c6564546f6b656e2f6f6e6c792d636f6e74726f6c6c6572006044820152606401610700565b816001600160a01b0316836001600160a01b031614610b2d576001600160a01b03828116600090815260016020908152604080832093871683529290522054610b2d90839085906108b3908590613526565b610b378282611825565b505050565b6001600160a01b0385166000908152600660205260409020606090610b6490868686866119b6565b9695505050505050565b6001600160a01b038116600090815260056020526040812054610657565b60608160008167ffffffffffffffff811115610baa57610baa613634565b604051908082528060200260200182016040528015610bd3578160200160208202803683370190505b50604080516060810182526007546001600160d01b038116825262ffffff600160d01b820481166020840152600160e81b909104169181019190915290915060005b83811015610c6457610c35600883898985818110610a0c57610a0c61361e565b838281518110610c4757610c4761361e565b602090810291909101015280610c5c8161358f565b915050610c15565b509095945050505050565b6060610c7f6007868686866119b6565b90505b949350505050565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610d025760405162461bcd60e51b815260206004820152601f60248201527f436f6e74726f6c6c6564546f6b656e2f6f6e6c792d636f6e74726f6c6c6572006044820152606401610700565b6107f18282611825565b83421115610d5c5760405162461bcd60e51b815260206004820181905260248201527f5469636b65742f64656c65676174652d657870697265642d646561646c696e656044820152606401610700565b60007f00000000000000000000000000000000000000000000000000000000000000008787610d8a8a611b55565b6040805160208101959095526001600160a01b039384169085015291166060830152608082015260a0810186905260c0016040516020818303038152906040528051906020012090506000610dde82611b7d565b90506000610dee82878787611be6565b9050886001600160a01b0316816001600160a01b031614610e775760405162461bcd60e51b815260206004820152602160248201527f5469636b65742f64656c65676174652d696e76616c69642d7369676e6174757260448201527f65000000000000000000000000000000000000000000000000000000000000006064820152608401610700565b610e81898961153d565b505050505050505050565b6060600480546105c39061355a565b6001600160a01b0383166000908152600660209081526040808320815160608101835281546001600160d01b038116825262ffffff600160d01b8204811695830195909552600160e81b90049093169183019190915290610f03906001830190868642611c0e565b95945050505050565b6001600160a01b0382166000908152600660209081526040808320815160608101835281546001600160d01b038116825262ffffff600160d01b8204811695830195909552600160e81b90049093169183019190915290610c829060018301908542611511565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561100d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610700565b61101a3385858403611195565b5060019392505050565b60006106533384846112ed565b834211156110815760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e650000006044820152606401610700565b60007f00000000000000000000000000000000000000000000000000000000000000008888886110b08c611b55565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e001604051602081830303815290604052805190602001209050600061110b82611b7d565b9050600061111b82878787611be6565b9050896001600160a01b0316816001600160a01b03161461117e5760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e617475726500006044820152606401610700565b6111898a8a8a611195565b50505050505050505050565b6001600160a01b0383166112105760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610700565b6001600160a01b03821661128c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610700565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166113695760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610700565b6001600160a01b0382166113e55760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610700565b6113f0838383611c46565b6001600160a01b0383166000908152602081905260409020548181101561147f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610700565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906114b690849061345d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161150291815260200190565b60405180910390a35b50505050565b6000808263ffffffff168463ffffffff161161152d578361152f565b825b9050610b6486868386611cd9565b6001600160a01b038281166000908152602081815260408083205463010000079092529091205490919081169083168114156115795750505050565b6001600160a01b03848116600090815263010000076020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169185169190911790556115cd818484611df2565b826001600160a01b0316846001600160a01b03167f4bc154dd35d6a5cb9206482ecb473cdbf2473006d6bce728b9cc0741bcc59ea260405160405180910390a350505050565b6000306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614801561166c57507f000000000000000000000000000000000000000000000000000000000000000046145b1561169657507f000000000000000000000000000000000000000000000000000000000000000090565b50604080517f00000000000000000000000000000000000000000000000000000000000000006020808301919091527f0000000000000000000000000000000000000000000000000000000000000000828401527f000000000000000000000000000000000000000000000000000000000000000060608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b6001600160a01b0382166117905760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610700565b61179c60008383611c46565b80600260008282546117ae919061345d565b90915550506001600160a01b038216600090815260208190526040812080548392906117db90849061345d565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0382166118a15760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610700565b6118ad82600083611c46565b6001600160a01b0382166000908152602081905260409020548181101561193c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610700565b6001600160a01b038316600090815260208190526040812083830390556002805484929061196b908490613526565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b606083828114611a2e5760405162461bcd60e51b815260206004820152602360248201527f5469636b65742f73746172742d656e642d74696d65732d6c656e6774682d6d6160448201527f74636800000000000000000000000000000000000000000000000000000000006064820152608401610700565b6040805160608101825288546001600160d01b038116825262ffffff600160d01b820481166020840152600160e81b909104169181019190915260008267ffffffffffffffff811115611a8357611a83613634565b604051908082528060200260200182016040528015611aac578160200160208202803683370190505b5090504260005b84811015611b4657611b178b600101858c8c85818110611ad557611ad561361e565b9050602002016020810190611aea919061333e565b8b8b86818110611afc57611afc61361e565b9050602002016020810190611b11919061333e565b86611c0e565b838281518110611b2957611b2961361e565b602090810291909101015280611b3e8161358f565b915050611ab3565b50909998505050505050505050565b6001600160a01b03811660009081526005602052604090208054600181018255905b50919050565b6000610657611b8a611613565b836040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b6000806000611bf787878787611e52565b91509150611c0481611f3f565b5095945050505050565b6000808263ffffffff168463ffffffff1611611c2a5783611c2c565b825b9050611c3b8787878487612130565b979650505050505050565b816001600160a01b0316836001600160a01b03161415611c6557505050565b60006001600160a01b03841615611c9657506001600160a01b03808416600090815263010000076020526040902054165b60006001600160a01b03841615611cc757506001600160a01b03808416600090815263010000076020526040902054165b611cd2828285611df2565b5050505050565b604080518082019091526000808252602082018190529081906040805180820190915260008082526020820152611d1088886121cc565b60208101519194509150611d319063ffffffff908116908890889061224c16565b15611d4c57505084516001600160d01b03169150610c829050565b6000611d58898961231d565b6020810151909350909150611d799063ffffffff808a169190899061239a16565b15611d8b576000945050505050610c82565b611d9d8985838a8c604001518b612469565b8094508193505050611db88360200151836020015188612636565b63ffffffff1682600001518460000151611dd291906134fe565b611ddc9190613495565b6001600160e01b03169998505050505050505050565b6001600160a01b03831615611e2257611e0b8382612700565b6001600160a01b038216611e2257611e2281612855565b6001600160a01b03821615610b3757611e3b828261296e565b6001600160a01b038316610b3757610b37816129a5565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115611e895750600090506003611f36565b8460ff16601b14158015611ea157508460ff16601c14155b15611eb25750600090506004611f36565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611f06573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611f2f57600060019250925050611f36565b9150600090505b94509492505050565b6000816004811115611f5357611f53613608565b1415611f5c5750565b6001816004811115611f7057611f70613608565b1415611fbe5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610700565b6002816004811115611fd257611fd2613608565b14156120205760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610700565b600381600481111561203457612034613608565b14156120a85760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610700565b60048160048111156120bc576120bc613608565b14156108c25760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610700565b600080600061213f888861231d565b915091506000806121508a8a6121cc565b9150915060006121668b8b8487878a8f8e6129c0565b9050600061217a8c8c8588888b8f8f6129c0565b905061218f816020015183602001518a612636565b63ffffffff16826000015182600001516121a991906134fe565b6121b39190613495565b6001600160e01b03169c9b505050505050505050505050565b60408051808201909152600080825260208201819052906121fb836020015162ffffff1662ffffff8016612b0a565b9150838262ffffff1662ffffff81106122165761221661361e565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff166020820152919491935090915050565b60008163ffffffff168463ffffffff161115801561227657508163ffffffff168363ffffffff1611155b15612292578263ffffffff168463ffffffff161115905061071c565b60008263ffffffff168563ffffffff16116122c1576122bc63ffffffff8616640100000000613475565b6122c9565b8463ffffffff165b64ffffffffff16905060008363ffffffff168563ffffffff1611612301576122fc63ffffffff8616640100000000613475565b612309565b8463ffffffff165b64ffffffffff169091111595945050505050565b604080518082019091526000808252602082018190529082602001519150838262ffffff1662ffffff81106123545761235461361e565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff166020820181905290915061239357600091508382612216565b9250929050565b60008163ffffffff168463ffffffff16111580156123c457508163ffffffff168363ffffffff1611155b156123df578263ffffffff168463ffffffff1610905061071c565b60008263ffffffff168563ffffffff161161240e5761240963ffffffff8616640100000000613475565b612416565b8463ffffffff165b64ffffffffff16905060008363ffffffff168563ffffffff161161244e5761244963ffffffff8616640100000000613475565b612456565b8463ffffffff165b64ffffffffff1690911095945050505050565b6040805180820190915260008082526020820152604080518082019091526000808252602082015260008662ffffff1690506000818962ffffff16106124b4578862ffffff166124cf565b60016124c562ffffff88168461345d565b6124cf9190613526565b905060005b60026124e0838561345d565b6124ea91906134bb565b90508a6124fc828962ffffff16612b34565b62ffffff1662ffffff81106125135761251361361e565b604080518082019091529101546001600160e01b0381168252600160e01b900463ffffffff16602082018190529095508061255b5761255382600161345d565b9350506124d4565b8b61256b838a62ffffff16612b40565b62ffffff1662ffffff81106125825761258261361e565b604080518082019091529101546001600160e01b038116825263ffffffff600160e01b909104811660208301529095506000906125c790838116908c908b9061224c16565b90508080156125f057506125f08660200151898c63ffffffff1661224c9092919063ffffffff16565b156125fc575050612628565b806126135761260c600184613526565b9350612621565b61261e83600161345d565b94505b50506124d4565b505050965096945050505050565b60008163ffffffff168463ffffffff161115801561266057508163ffffffff168363ffffffff1611155b156126765761266f838561353d565b905061071c565b60008263ffffffff168563ffffffff16116126a5576126a063ffffffff8616640100000000613475565b6126ad565b8463ffffffff165b64ffffffffff16905060008363ffffffff168563ffffffff16116126e5576126e063ffffffff8616640100000000613475565b6126ed565b8463ffffffff165b64ffffffffff169050610b648183613526565b80612709575050565b6001600160a01b038216600090815260066020526040812090808061276d8461273187612b50565b6040518060400160405280601b81526020017f5469636b65742f747761622d6275726e2d6c742d62616c616e6365000000000081525042612bd3565b82518754602085015160408601516001600160d01b039093167fffffff000000000000000000000000000000000000000000000000000000000090921691909117600160d01b62ffffff92831602177cffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16600160e81b919092160217875591945092509050801561284d576040805183516001600160e01b0316815260208085015163ffffffff16908201526001600160a01b038816917fdd3e7cd3a260a292b0b3306b2ca62f30a7349619a9d09c58109318774c6b627d910160405180910390a25b505050505050565b8061285d5750565b600080600061288f600761287086612b50565b6040518060600160405280602c815260200161364b602c913942612bd3565b825160078054602086015160408701516001600160d01b039094167fffffff000000000000000000000000000000000000000000000000000000000090921691909117600160d01b62ffffff92831602177cffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16600160e81b919093160291909117905591945092509050801561150b576040805183516001600160e01b0316815260208085015163ffffffff16908201527f3375b905d617084fa6b7531688cc8046feb1f1a0b8ba2273de03c59d8d84416c910160405180910390a150505050565b80612977575050565b6001600160a01b038216600090815260066020526040812090808061276d8461299f87612b50565b42612c97565b806129ad5750565b600080600061288f600761299f86612b50565b60408051808201909152600080825260208201526129f38383896020015163ffffffff1661239a9092919063ffffffff16565b15612a1757612a108789600001516001600160d01b031685612d40565b9050612afe565b8263ffffffff16876020015163ffffffff161415612a36575085612afe565b8263ffffffff16866020015163ffffffff161415612a55575084612afe565b612a748660200151838563ffffffff1661239a9092919063ffffffff16565b15612a995750604080518082019091526000815263ffffffff83166020820152612afe565b600080612aae8b8888888e6040015189612469565b915091506000612ac78260200151846020015187612636565b63ffffffff1683600001518360000151612ae191906134fe565b612aeb9190613495565b9050612af8838288612d40565b93505050505b98975050505050505050565b600081612b1957506000610657565b61071c6001612b28848661345d565b612b329190613526565b835b600061071c82846135c8565b600061071c612b3284600161345d565b60006001600160d01b03821115612bcf5760405162461bcd60e51b815260206004820152602760248201527f53616665436173743a2076616c756520646f65736e27742066697420696e203260448201527f30382062697473000000000000000000000000000000000000000000000000006064820152608401610700565b5090565b604080516060810182526000808252602082018190529181019190915260408051808201909152600080825260208201526040805160608101825287546001600160d01b0380821680845262ffffff600160d01b840481166020860152600160e81b9093049092169383019390935260009287919089161115612c695760405162461bcd60e51b8152600401610700919061339d565b50612c78886001018287612dbb565b8251999099036001600160d01b03168252909990985095505050505050565b604080516060810182526000808252602082018190529181019190915260408051808201909152600080825260208201526040805160608101825286546001600160d01b038116825262ffffff600160d01b820481166020840152600160e81b9091041691810191909152600090612d13600188018287612dbb565b83519296509094509250612d289087906133f2565b6001600160d01b031684525091959094509092509050565b60408051808201909152600080825260208201526040518060400160405280612d7e8660200151858663ffffffff166126369092919063ffffffff16565b612d8e9063ffffffff16866134cf565b8651612d9a919061341d565b6001600160e01b031681526020018363ffffffff1681525090509392505050565b60408051606081018252600080825260208201819052918101919091526040805180820190915260008082526020820152600080612df987876121cc565b9150508463ffffffff16816020015163ffffffff161415612e2257859350915060009050612e99565b6000612e3c8288600001516001600160d01b031688612d40565b90508088886020015162ffffff1662ffffff8110612e5c57612e5c61361e565b825160209093015163ffffffff16600160e01b026001600160e01b03909316929092179101556000612e8d88612ea2565b95509093506001925050505b93509350939050565b60408051606081018252600080825260208083018290529282015290820151612ed29062ffffff90811690612b40565b62ffffff9081166020840152604083015181161015612bcf57600182604001818151612efe919061343f565b62ffffff169052505090565b80356001600160a01b0381168114612f2157600080fd5b919050565b60008083601f840112612f3857600080fd5b50813567ffffffffffffffff811115612f5057600080fd5b6020830191508360208260051b850101111561239357600080fd5b803567ffffffffffffffff81168114612f2157600080fd5b803560ff81168114612f2157600080fd5b600060208284031215612fa657600080fd5b61071c82612f0a565b60008060408385031215612fc257600080fd5b612fcb83612f0a565b9150612fd960208401612f0a565b90509250929050565b600080600060608486031215612ff757600080fd5b61300084612f0a565b925061300e60208501612f0a565b9150604084013590509250925092565b600080600080600080600060e0888a03121561303957600080fd5b61304288612f0a565b965061305060208901612f0a565b9550604088013594506060880135935061306c60808901612f83565b925060a0880135915060c0880135905092959891949750929550565b60008060008060008060c087890312156130a157600080fd5b6130aa87612f0a565b95506130b860208801612f0a565b9450604087013593506130cd60608801612f83565b92506080870135915060a087013590509295509295509295565b6000806000604084860312156130fc57600080fd5b61310584612f0a565b9250602084013567ffffffffffffffff81111561312157600080fd5b61312d86828701612f26565b9497909650939450505050565b60008060008060006060868803121561315257600080fd5b61315b86612f0a565b9450602086013567ffffffffffffffff8082111561317857600080fd5b61318489838a01612f26565b9096509450604088013591508082111561319d57600080fd5b506131aa88828901612f26565b969995985093965092949392505050565b600080604083850312156131ce57600080fd5b6131d783612f0a565b9150602083013561ffff811681146131ee57600080fd5b809150509250929050565b6000806040838503121561320c57600080fd5b61321583612f0a565b946020939093013593505050565b6000806040838503121561323657600080fd5b61323f83612f0a565b9150612fd960208401612f6b565b60008060006060848603121561326257600080fd5b61326b84612f0a565b925061327960208501612f6b565b915061328760408501612f6b565b90509250925092565b600080602083850312156132a357600080fd5b823567ffffffffffffffff8111156132ba57600080fd5b6132c685828601612f26565b90969095509350505050565b600080600080604085870312156132e857600080fd5b843567ffffffffffffffff8082111561330057600080fd5b61330c88838901612f26565b9096509450602087013591508082111561332557600080fd5b5061333287828801612f26565b95989497509550505050565b60006020828403121561335057600080fd5b61071c82612f6b565b6020808252825182820181905260009190848201906040850190845b8181101561339157835183529284019291840191600101613375565b50909695505050505050565b600060208083528351808285015260005b818110156133ca578581018301518582016040015282016133ae565b818111156133dc576000604083870101525b50601f01601f1916929092016040019392505050565b60006001600160d01b03808316818516808303821115613414576134146135dc565b01949350505050565b60006001600160e01b03808316818516808303821115613414576134146135dc565b600062ffffff808316818516808303821115613414576134146135dc565b60008219821115613470576134706135dc565b500190565b600064ffffffffff808316818516808303821115613414576134146135dc565b60006001600160e01b03808416806134af576134af6135f2565b92169190910492915050565b6000826134ca576134ca6135f2565b500490565b60006001600160e01b03808316818516818304811182151516156134f5576134f56135dc565b02949350505050565b60006001600160e01b038381169083168181101561351e5761351e6135dc565b039392505050565b600082821015613538576135386135dc565b500390565b600063ffffffff8381169083168181101561351e5761351e6135dc565b600181811c9082168061356e57607f821691505b60208210811415611b7757634e487b7160e01b600052602260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156135c1576135c16135dc565b5060010190565b6000826135d7576135d76135f2565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fdfe5469636b65742f6275726e2d616d6f756e742d657863656564732d746f74616c2d737570706c792d74776162a26469706673582212202c19d6e05292890088c24f6dd2f82e0f006b9f1d297e4bfe23dd31d8251d4eb064736f6c63430008060033",
              "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 0x2D74776162A26469706673582212202C19D6E05292890088C24F PUSH14 0xD2F82E0F006B9F1D297E4BFE23DD BALANCE 0xD8 0x25 SAR 0x4E 0xB0 PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "897:12604:44:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2141:98:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4238:166;;;;;;:::i;:::-;;:::i;:::-;;;8320:14:101;;8313:22;8295:41;;8283:2;8268:18;4238:166:4;8250:92:101;3229:106:4;3316:12;;3229:106;;;8493:25:101;;;8481:2;8466:18;3229:106:4;8448:76:101;4871:478:4;;;;;;:::i;:::-;;:::i;2268:189:44:-;;;;;;:::i;:::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2426:16:44;;;;;;:9;:16;;;;;;2419:31;;;;;;;;-1:-1:-1;;;;;2419:31:44;;;;;-1:-1:-1;;;2419:31:44;;;;;;;;;;;-1:-1:-1;;;2419:31:44;;;;;;;;2268:189;;;;;19686:13:101;;-1:-1:-1;;;;;19682:74:101;19664:93;;19804:4;19792:17;;;19786:24;19829:8;19875:21;;;19853:20;;;19846:51;;;;19945:17;;;19939:24;19935:33;;;19913:20;;;19906:63;19652:2;19637:18;2268:189:44;19619:356:101;4962:307:44;;;;;;:::i;:::-;;:::i;3868:98:37:-;;;20728:4:101;3950:9:37;20716:17:101;20698:36;;20686:2;20671:18;3868:98:37;20653:87:101;6114:130:44;;;;;;:::i;:::-;;:::i;:::-;;2506:113:7;;;:::i;2491:204:44:-;;;;;;:::i;:::-;;:::i;:::-;;;;20208:13:101;;-1:-1:-1;;;;;20204:78:101;20186:97;;20343:4;20331:17;;;20325:24;20351:10;20321:41;20299:20;;;20292:71;;;;20159:18;2491:204:44;20141:228:101;5744:212:4;;;;;;:::i;:::-;;:::i;6951:100:44:-;;;;;;:::i;:::-;;:::i;2328:171:37:-;;;;;;:::i;:::-;;:::i;4247:681:44:-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;3357:312:37:-;;;;;;:::i;:::-;;:::i;3126:282:44:-;;;;;;:::i;:::-;;:::i;3393:125:4:-;;;;;;:::i;:::-;-1:-1:-1;;;;;3493:18:4;3467:7;3493:18;;;;;;;;;;;;3393:125;2256:126:7;;;;;;:::i;:::-;;:::i;5303:627:44:-;;;;;;:::i;:::-;;:::i;5964:116::-;;;;;;:::i;:::-;-1:-1:-1;;;;;6057:16:44;;;6031:7;6057:16;;;:9;:16;;;;;;;;5964:116;;;;-1:-1:-1;;;;;7451:55:101;;;7433:74;;7421:2;7406:18;5964:116:44;7388:125:101;3442:263:44;;;;;;:::i;:::-;;:::i;2774:171:37:-;;;;;;:::i;:::-;;:::i;6278:639:44:-;;;;;;:::i;:::-;;:::i;2352:102:4:-;;;:::i;3739:474:44:-;;;;;;:::i;:::-;;:::i;2729:363::-;;;;;;:::i;:::-;;:::i;6443:405:4:-;;;;;;:::i;:::-;;:::i;3721:172::-;;;;;;:::i;:::-;;:::i;1569:626:7:-;;;;;;:::i;:::-;;:::i;3951:149:4:-;;;;;;:::i;:::-;-1:-1:-1;;;;;4066:18:4;;;4040:7;4066:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3951:149;540:44:37;;;;;2141:98:4;2195:13;2227:5;2220:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2141:98;:::o;4238:166::-;4321:4;4337:39;719:10:13;4360:7:4;4369:6;4337:8;:39::i;:::-;-1:-1:-1;4393:4:4;4238:166;;;;;:::o;4871:478::-;5007:4;5023:36;5033:6;5041:9;5052:6;5023:9;:36::i;:::-;-1:-1:-1;;;;;5097:19:4;;5070:24;5097:19;;;:11;:19;;;;;;;;719:10:13;5097:33:4;;;;;;;;5148:26;;;;5140:79;;;;-1:-1:-1;;;5140:79:4;;16100:2:101;5140:79:4;;;16082:21:101;16139:2;16119:18;;;16112:30;16178:34;16158:18;;;16151:62;16249:10;16229:18;;;16222:38;16277:19;;5140:79:4;;;;;;;;;5253:57;5262:6;719:10:13;5303:6:4;5284:16;:25;5253:8;:57::i;:::-;5338:4;5331:11;;;4871:478;;;;;;:::o;4962:307:44:-;5074:188;;;;;;;;5112:15;5074:188;-1:-1:-1;;;;;5074:188:44;;;;;-1:-1:-1;;;5074:188:44;;;;;;;;-1:-1:-1;;;5074:188:44;;;;;;;;;;;5036:7;;5074:188;;5112:21;;5199:7;5232:15;5074:20;:188::i;6114:130::-;1039:10:37;-1:-1:-1;;;;;1061:10:37;1039:33;;1031:77;;;;-1:-1:-1;;;1031:77:37;;18528:2:101;1031:77:37;;;18510:21:101;18567:2;18547:18;;;18540:30;18606:33;18586:18;;;18579:61;18657:18;;1031:77:37;18500:181:101;1031:77:37;6216:21:44::1;6226:5;6233:3;6216:9;:21::i;:::-;6114:130:::0;;:::o;2506:113:7:-;2566:7;2592:20;:18;:20::i;:::-;2585:27;;2506:113;:::o;2491:204:44:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;2658:16:44;;;;;;:9;:16;;;;;:22;;:30;;;;;;;;;;:::i;:::-;2651:37;;;;;;;;;2658:30;;2651:37;-1:-1:-1;;;;;2651:37:44;;;;-1:-1:-1;;;2651:37:44;;;;;;;;;2491:204;-1:-1:-1;;;2491:204:44:o;5744:212:4:-;719:10:13;5832:4:4;5880:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;5880:34:4;;;;;;;;;;5832:4;;5848:80;;5871:7;;5880:47;;5917:10;;5880:47;:::i;:::-;5848:8;:80::i;6951:100:44:-;7018:26;7028:10;7040:3;7018:9;:26::i;:::-;6951:100;:::o;2328:171:37:-;1039:10;-1:-1:-1;;;;;1061:10:37;1039:33;;1031:77;;;;-1:-1:-1;;;1031:77:37;;18528:2:101;1031:77:37;;;18510:21:101;18567:2;18547:18;;;18540:30;18606:33;18586:18;;;18579:61;18657:18;;1031:77:37;18500:181:101;1031:77:37;2471:21:::1;2477:5;2484:7;2471:5;:21::i;4247:681:44:-:0;4377:16;4426:8;4409:14;4426:8;4480:21;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4480:21:44;-1:-1:-1;;;;;;4550:16:44;;4512:35;4550:16;;;:9;:16;;;;;;;;4576:59;;;;;;;;;-1:-1:-1;;;;;4576:59:44;;;;;-1:-1:-1;;;4576:59:44;;;;;;;;;;;-1:-1:-1;;;4576:59:44;;;;;;;;;;;;4451:50;;-1:-1:-1;4576:59:44;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:44;;4247:681;-1:-1:-1;;;;;;;4247:681:44:o;3357:312:37:-;1039:10;-1:-1:-1;;;;;1061:10:37;1039:33;;1031:77;;;;-1:-1:-1;;;1031:77:37;;18528:2:101;1031:77:37;;;18510:21:101;18567:2;18547:18;;;18540:30;18606:33;18586:18;;;18579:61;18657:18;;1031:77:37;18500:181:101;1031:77:37;3534:5:::1;-1:-1:-1::0;;;;;3521:18:37::1;:9;-1:-1:-1::0;;;;;3521:18:37::1;;3517:114;;-1:-1:-1::0;;;;;4066:18:4;;;4040:7;4066:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;3555:65:37::1;::::0;4066:18:4;;:27;;3582:37:37::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:44:-;-1:-1:-1;;;;;3360:16:44;;;;;;:9;:16;;;;;3298;;3333:68;;3378:11;;3391:9;;3333:26;:68::i;:::-;3326:75;3126:282;-1:-1:-1;;;;;;3126:282:44:o;2256:126:7:-;-1:-1:-1;;;;;2351:14:7;;2325:7;2351:14;;;:7;:14;;;;;918::14;2351:24:7;827:112:14;5303:627:44;5423:16;5472:8;5455:14;5472:8;5530:21;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5530:21:44;-1:-1:-1;5562:63:44;;;;;;;;5602:15;5562:63;-1:-1:-1;;;;;5562:63:44;;;;;-1:-1:-1;;;5562:63:44;;;;;;;;-1:-1:-1;;;5562:63:44;;;;;;;;;;;5497:54;;-1:-1:-1;5562:37:44;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:44;;5303:627;-1:-1:-1;;;;;5303:627:44:o;3442:263::-;3596:16;3631:67;3658:15;3675:11;;3688:9;;3631:26;:67::i;:::-;3624:74;;3442:263;;;;;;;:::o;2774:171:37:-;1039:10;-1:-1:-1;;;;;1061:10:37;1039:33;;1031:77;;;;-1:-1:-1;;;1031:77:37;;18528:2:101;1031:77:37;;;18510:21:101;18567:2;18547:18;;;18540:30;18606:33;18586:18;;;18579:61;18657:18;;1031:77:37;18500:181:101;1031:77:37;2917:21:::1;2923:5;2930:7;2917:5;:21::i;6278:639:44:-:0;6516:9;6497:15;:28;;6489:73;;;;-1:-1:-1;;;6489:73:44;;13401:2:101;6489:73:44;;;13383:21:101;;;13420:18;;;13413:30;13479:34;13459:18;;;13452:62;13531:18;;6489:73:44;13373:182:101;6489:73:44;6573:18;6615;6635:5;6642:12;6656:16;6666:5;6656:9;:16::i;:::-;6604:80;;;;;;8788:25:101;;;;-1:-1:-1;;;;;8910:15:101;;;8890:18;;;8883:43;8962:15;;8942:18;;;8935:43;8994:18;;;8987:34;9037:19;;;9030:35;;;8760:19;;6604:80:44;;;;;;;;;;;;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:44;:6;-1:-1:-1;;;;;6816:15:44;;6808:61;;;;-1:-1:-1;;;6808:61:44;;18126:2:101;6808:61:44;;;18108:21:101;18165:2;18145:18;;;18138:30;18204:34;18184:18;;;18177:62;18275:3;18255:18;;;18248:31;18296:19;;6808:61:44;18098:223:101;6808:61:44;6880:30;6890:5;6897:12;6880:9;:30::i;:::-;6479:438;;;6278:639;;;;;;:::o;2352:102:4:-;2408:13;2440:7;2433:14;;;;;:::i;3739:474:44:-;-1:-1:-1;;;;;3939:16:44;;3886:7;3939:16;;;:9;:16;;;;;;;;3985:221;;;;;;;;;-1:-1:-1;;;;;3985:221:44;;;;;-1:-1:-1;;;3985:221:44;;;;;;;;;;;-1:-1:-1;;;3985:221:44;;;;;;;;;;;;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:44:o;2729:363::-;-1:-1:-1;;;;;2867:16:44;;2814:7;2867:16;;;:9;:16;;;;;;;;2913:172;;;;;;;;;-1:-1:-1;;;;;2913:172:44;;;;;-1:-1:-1;;;2913:172:44;;;;;;;;;;;-1:-1:-1;;;2913:172:44;;;;;;;;;;;;2867:16;2913:172;;2951:13;;;;3022:7;3055:15;2913:20;:172::i;6443:405:4:-;719:10:13;6536:4:4;6579:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;6579:34:4;;;;;;;;;;6631:35;;;;6623:85;;;;-1:-1:-1;;;6623:85:4;;18888:2:101;6623:85:4;;;18870:21:101;18927:2;18907:18;;;18900:30;18966:34;18946:18;;;18939:62;19037:7;19017:18;;;19010:35;19062:19;;6623:85:4;18860:227:101;6623:85:4;6742:67;719:10:13;6765:7:4;6793:15;6774:16;:34;6742:8;:67::i;:::-;-1:-1:-1;6837:4:4;;6443:405;-1:-1:-1;;;6443:405:4:o;3721:172::-;3807:4;3823:42;719:10:13;3847:9:4;3858:6;3823:9;:42::i;1569:626:7:-;1804:8;1785:15;:27;;1777:69;;;;-1:-1:-1;;;1777:69:7;;13762:2:101;1777:69:7;;;13744:21:101;13801:2;13781:18;;;13774:30;13840:31;13820:18;;;13813:59;13889:18;;1777:69:7;13734:179:101;1777:69:7;1857:18;1899:16;1917:5;1924:7;1933:5;1940:16;1950:5;1940:9;:16::i;:::-;1888:79;;;;;;9363:25:101;;;;-1:-1:-1;;;;;9485:15:101;;;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:7;;;;;;;;;;;;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:7;:6;-1:-1:-1;;;;;2096:15:7;;2088:58;;;;-1:-1:-1;;;2088:58:7;;15741:2:101;2088:58:7;;;15723:21:101;15780:2;15760:18;;;15753:30;15819:32;15799:18;;;15792:60;15869:18;;2088:58:7;15713:180:101;2088:58:7;2157:31;2166:5;2173:7;2182:5;2157:8;:31::i;:::-;1767:428;;;1569:626;;;;;;;:::o;10019:370:4:-;-1:-1:-1;;;;;10150:19:4;;10142:68;;;;-1:-1:-1;;;10142:68:4;;17721:2:101;10142:68:4;;;17703:21:101;17760:2;17740:18;;;17733:30;17799:34;17779:18;;;17772:62;17870:6;17850:18;;;17843:34;17894:19;;10142:68:4;17693:226:101;10142:68:4;-1:-1:-1;;;;;10228:21:4;;10220:68;;;;-1:-1:-1;;;10220:68:4;;12998:2:101;10220:68:4;;;12980:21:101;13037:2;13017:18;;;13010:30;13076:34;13056:18;;;13049:62;13147:4;13127:18;;;13120:32;13169:19;;10220:68:4;12970:224:101;10220:68:4;-1:-1:-1;;;;;10299:18:4;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10350:32;;8493:25:101;;;10350:32:4;;8466:18:101;10350:32:4;;;;;;;10019:370;;;:::o;7322:713::-;-1:-1:-1;;;;;7457:20:4;;7449:70;;;;-1:-1:-1;;;7449:70:4;;16911:2:101;7449:70:4;;;16893:21:101;16950:2;16930:18;;;16923:30;16989:34;16969:18;;;16962:62;17060:7;17040:18;;;17033:35;17085:19;;7449:70:4;16883:227:101;7449:70:4;-1:-1:-1;;;;;7537:23:4;;7529:71;;;;-1:-1:-1;;;7529:71:4;;11831:2:101;7529:71:4;;;11813:21:101;11870:2;11850:18;;;11843:30;11909:34;11889:18;;;11882:62;11980:5;11960:18;;;11953:33;12003:19;;7529:71:4;11803:225:101;7529:71:4;7611:47;7632:6;7640:9;7651:6;7611:20;:47::i;:::-;-1:-1:-1;;;;;7693:17:4;;7669:21;7693:17;;;;;;;;;;;7728:23;;;;7720:74;;;;-1:-1:-1;;;7720:74:4;;14120:2:101;7720:74:4;;;14102:21:101;14159:2;14139:18;;;14132:30;14198:34;14178:18;;;14171:62;14269:8;14249:18;;;14242:36;14295:19;;7720:74:4;14092:228:101;7720:74:4;-1:-1:-1;;;;;7828:17:4;;;: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:4;7945:6;-1:-1:-1;;;;;7936:35:4;;7964:6;7936:35;;;;8493:25:101;;8481:2;8466:18;;8448:76;7936:35:4;;;;;;;;7982:46;7439:596;7322:713;;;:::o;8039:409:63:-;8262:7;8281:19;8317:12;8303:26;;:11;:26;;;:55;;8347:11;8303:55;;;8332:12;8303:55;8281:77;;8375:66;8389:6;8397:15;8414:12;8428;8375:13;:66::i;7205:353:44:-;-1:-1:-1;;;;;3493:18:4;;;7271:15:44;3493:18:4;;;;;;;;;;;;7341:9:44;:16;;;;;;;3493:18:4;;7341:16:44;;;;7372:22;;;;7368:59;;;7410:7;;7205:353;;:::o;7368:59::-;-1:-1:-1;;;;;7437:16:44;;;;;;;:9;:16;;;;;:22;;;;;;;;;;;;;7470:44;7484:15;7437:22;7506:7;7470:13;:44::i;:::-;7547:3;-1:-1:-1;;;;;7530:21:44;7540:5;-1:-1:-1;;;;;7530:21:44;;;;;;;;;;;7261:297;;7205:353;;:::o;3143:308:17:-;3196:7;3227:4;-1:-1:-1;;;;;3236:12:17;3219:29;;:66;;;;;3269:16;3252:13;:33;3219:66;3215:230;;;-1:-1:-1;3308:24:17;;3143:308::o;3215:230::-;-1:-1:-1;3633:73:17;;;3392:10;3633:73;;;;9954:25:101;;;;3404:12:17;9995:18:101;;;9988:34;3418:15:17;10038:18:101;;;10031:34;3677:13:17;10081:18:101;;;10074:34;3700:4:17;10124:19:101;;;;10117:84;;;;3633:73:17;;;;;;;;;;9926:19:101;;;;3633:73:17;;;3623:84;;;;;;2506:113:7:o;8311:389:4:-;-1:-1:-1;;;;;8394:21:4;;8386:65;;;;-1:-1:-1;;;8386:65:4;;19294:2:101;8386:65:4;;;19276:21:101;19333:2;19313:18;;;19306:30;19372:33;19352:18;;;19345:61;19423:18;;8386:65:4;19266:181:101;8386:65:4;8462:49;8491:1;8495:7;8504:6;8462:20;:49::i;:::-;8538:6;8522:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;8554:18:4;;:9;:18;;;;;;;;;;:28;;8576:6;;8554:9;:28;;8576:6;;8554:28;:::i;:::-;;;;-1:-1:-1;;8597:37:4;;8493:25:101;;;-1:-1:-1;;;;;8597:37:4;;;8614:1;;8597:37;;8481:2:101;8466:18;8597:37:4;;;;;;;6114:130:44;;:::o;9020:576:4:-;-1:-1:-1;;;;;9103:21:4;;9095:67;;;;-1:-1:-1;;;9095:67:4;;16509:2:101;9095:67:4;;;16491:21:101;16548:2;16528:18;;;16521:30;16587:34;16567:18;;;16560:62;16658:3;16638:18;;;16631:31;16679:19;;9095:67:4;16481:223:101;9095:67:4;9173:49;9194:7;9211:1;9215:6;9173:20;:49::i;:::-;-1:-1:-1;;;;;9258:18:4;;9233:22;9258:18;;;;;;;;;;;9294:24;;;;9286:71;;;;-1:-1:-1;;;9286:71:4;;12235:2:101;9286:71:4;;;12217:21:101;12274:2;12254:18;;;12247:30;12313:34;12293:18;;;12286:62;12384:4;12364:18;;;12357:32;12406:19;;9286:71:4;12207:224:101;9286:71:4;-1:-1:-1;;;;;9391:18:4;;: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:4;;8493:25:101;;;9519:1:4;;-1:-1:-1;;;;;9493:37:4;;;;;8481:2:101;8466:18;9493:37:4;;;;;;;3357:312:37;;;:::o;7972:925:44:-;8155:16;8210:11;8246:36;;;8238:84;;;;-1:-1:-1;;;8238:84:44;;17317:2:101;8238:84:44;;;17299:21:101;17356:2;17336:18;;;17329:30;17395:34;17375:18;;;17368:62;17466:5;17446:18;;;17439:33;17489:19;;8238:84:44;17289:225:101;8238:84:44;8333:63;;;;;;;;;;-1:-1:-1;;;;;8333:63:44;;;;;-1:-1:-1;;;8333:63:44;;;;;;;;-1:-1:-1;;;8333:63:44;;;;;;;;;;;:44;8456:16;8442:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8442:31:44;-1:-1:-1;8407:66:44;-1:-1:-1;8516:15:44;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:44;;7972:925;-1:-1:-1;;;;;;;;;7972:925:44:o;2750:203:7:-;-1:-1:-1;;;;;2870:14:7;;2810:15;2870:14;;;:7;:14;;;;;918::14;;1050:1;1032:19;;;;918:14;2929:17:7;2827:126;2750:203;;;:::o;4339:165:17:-;4416:7;4442:55;4464:20;:18;:20::i;:::-;4486:10;9254:57:16;;7108:66:101;9254:57:16;;;7096:79:101;7191:11;;;7184:27;;;7227:12;;;7220:28;;;9218:7:16;;7264:12:101;;9254:57:16;;;;;;;;;;;;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:16;7480:270;-1:-1:-1;;;;;7480:270:16:o;5892:466:63:-;6151:7;6170:14;6198:12;6187:23;;:8;:23;;;:49;;6228:8;6187:49;;;6213:12;6187:49;6170:66;;6266:85;6292:6;6300:15;6317:10;6329:7;6338:12;6266:25;:85::i;:::-;6247:104;5892:466;-1:-1:-1;;;;;;;5892:466:63:o;8928:457:44:-;9044:3;-1:-1:-1;;;;;9035:12:44;:5;-1:-1:-1;;;;;9035:12:44;;9031:49;;;8928:457;;;:::o;9031:49::-;9090:21;-1:-1:-1;;;;;9125:19:44;;;9121:82;;-1:-1:-1;;;;;;9176:16:44;;;;;;;:9;:16;;;;;;;9121:82;9213:19;-1:-1:-1;;;;;9246:17:44;;;9242:76;;-1:-1:-1;;;;;;9293:14:44;;;;;;;:9;:14;;;;;;;9242:76;9328:50;9342:13;9357:11;9370:7;9328:13;:50::i;:::-;9021:364;;8928:457;;;:::o;10681:1769:63:-;-1:-1:-1;;;;;;;;;10904:7:63;-1:-1:-1;;;;;;;;;10904:7:63;;;-1:-1:-1;;;;;;;;;;;;;;;;;11094:35:63;11105:6;11113:15;11094:10;:35::i;:::-;11255:20;;;;11062:67;;-1:-1:-1;11062:67:63;-1:-1:-1;11255:51:63;;:24;;;;;11280:11;;11293:12;;11255:24;:51;:::i;:::-;11251:112;;;-1:-1:-1;;11329:23:63;;-1:-1:-1;;;;;11322:30:63;;-1:-1:-1;11322:30:63;;-1:-1:-1;11322:30:63;11251:112;11373:22;11483:35;11494:6;11502:15;11483:10;:35::i;:::-;11639:20;;;;11451:67;;-1:-1:-1;11451:67:63;;-1:-1:-1;11624:50:63;;:14;;;;;11639:20;11661:12;;11624:14;:50;:::i;:::-;11620:89;;;11697:1;11690:8;;;;;;;;11620:89;11797:207;11838:6;11858:15;11887;11916:11;11941:15;:27;;;11982:12;11797:27;:207::i;:::-;11771:233;;;;;;;;12350:93;12387:9;:19;;;12408:10;:20;;;12430:12;12350:36;:93::i;:::-;12309:134;;12329:10;:17;;;12310:9;:16;;;:36;;;;:::i;:::-;12309:134;;;;:::i;:::-;-1:-1:-1;;;;;12290:153:63;;10681:1769;-1:-1:-1;;;;;;;;;10681:1769:63:o;9717:657:44:-;-1:-1:-1;;;;;9900:19:44;;;9896:186;;9935:33;9953:5;9960:7;9935:17;:33::i;:::-;-1:-1:-1;;;;;9987:17:44;;9983:89;;10024:33;10049:7;10024:24;:33::i;:::-;-1:-1:-1;;;;;10188:17:44;;;10184:184;;10221:31;10239:3;10244:7;10221:17;:31::i;:::-;-1:-1:-1;;;;;10271:19:44;;10267:91;;10310:33;10335:7;10310:24;:33::i;5744:1603:16:-;5870:7;;6794:66;6781:79;;6777:161;;;-1:-1:-1;6892:1:16;;-1:-1:-1;6896:30:16;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:16;;-1:-1:-1;7005:30:16;6985:51;;6947:100;7158:24;;;7141:14;7158:24;;;;;;;;;10439:25:101;;;10512:4;10500:17;;10480:18;;;10473:45;;;;10534:18;;;10527:34;;;10577:18;;;10570:34;;;7158:24:16;;10411:19:101;;7158:24:16;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;7158:24:16;;-1:-1:-1;;7158:24:16;;;-1:-1:-1;;;;;;;7196:20:16;;7192:101;;7248:1;7252:29;7232:50;;;;;;;7192:101;7311:6;-1:-1:-1;7319:20:16;;-1:-1:-1;5744:1603:16;;;;;;;;:::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:16;;11478:2:101;751:34:16;;;11460:21:101;11517:2;11497:18;;;11490:30;11556:26;11536:18;;;11529:54;11600:18;;751:34:16;11450:174:101;693:465:16;815:35;806:5;:44;;;;;;;;:::i;:::-;;802:356;;;866:41;;-1:-1:-1;;;866:41:16;;12638:2:101;866:41:16;;;12620:21:101;12677:2;12657:18;;;12650:30;12716:33;12696:18;;;12689:61;12767:18;;866:41:16;12610:181:101;802:356:16;937:30;928:5;:39;;;;;;;;:::i;:::-;;924:234;;;983:44;;-1:-1:-1;;;983:44:16;;14935:2:101;983:44:16;;;14917:21:101;14974:2;14954:18;;;14947:30;15013:34;14993:18;;;14986:62;15084:4;15064:18;;;15057:32;15106:19;;983:44:16;14907:224:101;924:234:16;1057:30;1048:5;:39;;;;;;;;:::i;:::-;;1044:114;;;1103:44;;-1:-1:-1;;;1103:44:16;;15338:2:101;1103:44:16;;;15320:21:101;15377:2;15357:18;;;15350:30;15416:34;15396:18;;;15389:62;15487:4;15467:18;;;15460:32;15509:19;;1103:44:16;15310:224:101;8734:1315:63;8993:7;9013:22;9037:41;9082:69;9106:6;9126:15;9082:10;:69::i;:::-;9012:139;;;;9163:22;9187:41;9232:69;9256:6;9276:15;9232:10;:69::i;:::-;9162:139;;;;9312:43;9358:223;9386:6;9406:15;9435:7;9456;9477:15;9506;9535:10;9559:12;9358:14;:223::i;:::-;9312:269;;9592:41;9636:221;9664:6;9684:15;9713:7;9734;9755:15;9784;9813:8;9835:12;9636:14;:221::i;:::-;9592:265;;9952:90;9989:7;:17;;;10008:9;:19;;;10029:12;9952:36;:90::i;:::-;9914:128;;9932:9;:16;;;9915:7;:14;;;:33;;;;:::i;:::-;9914:128;;;;:::i;:::-;-1:-1:-1;;;;;9907:135:63;;8734:1315;-1:-1:-1;;;;;;;;;;;;8734:1315:63:o;7383:354::-;-1:-1:-1;;;;;;;;;7547:12:63;-1:-1:-1;;;;;;;;;7547:12:63;7626:73;7652:15;:29;;;7626:73;;2065:8;7626:73;;:25;:73::i;:::-;7611:89;;7717:6;7724:5;7717:13;;;;;;;;;:::i;:::-;7710:20;;;;;;;;;7717:13;;7710:20;-1:-1:-1;;;;;7710:20:63;;;;-1:-1:-1;;;7710:20:63;;;;;;;;7383:354;;7710:20;;-1:-1:-1;7383:354:63;;-1:-1:-1;;7383:354:63:o;1658:417:61:-;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:61:o;6618:505:63:-;-1:-1:-1;;;;;;;;;6782:12:63;-1:-1:-1;;;;;;;;;6782:12:63;6854:15;:29;;;6846:37;;6900:6;6907:5;6900:13;;;;;;;;;:::i;:::-;6893:20;;;;;;;;;6900:13;;6893:20;-1:-1:-1;;;;;6893:20:63;;;;-1:-1:-1;;;6893:20:63;;;;;;;;;;;;-1:-1:-1;7028:89:63;;7075:1;;-1:-1:-1;7097:6:63;7075:1;7097:9;;7028:89;6618:505;;;;;:::o;811:413:61:-;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:61:o;2382:2006:60:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2719:16:60;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:60;;;;-1:-1:-1;;;3253:82:60;;;;;;;;;;;;-1:-1:-1;3253:82:60;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:60;;;;;-1:-1:-1;;;3641:86:60;;;;;;;;;;;-1:-1:-1;;;3765:39:60;;: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:61:-;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:61;2811:53;2889:9;:21;:::i;11307:676:44:-;11409:12;11405:49;;11307:676;;:::o;11405:49::-;-1:-1:-1;;;;;11499:14:44;;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:44;;;;;;;;;;;-1:-1:-1;;;11870:33:44;;;;;;;;-1:-1:-1;;;11870:33:44;;;;;;;;;;-1:-1:-1;11524:335:44;-1:-1:-1;11524:335:44;-1:-1:-1;11914:63:44;;;;11944:22;;;20208:13:101;;-1:-1:-1;;;;;20204:78:101;20186:97;;20343:4;20331:17;;;20325:24;20351:10;20321:41;20299:20;;;20292:71;-1:-1:-1;;;;;11944:22:44;;;;;20159:18:101;11944:22:44;;;;;;;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:44;;;;;;;;;;;-1:-1:-1;;;12672:40:44;;;;;;;;-1:-1:-1;;;12672:40:44;;;;;;;;;;;;;-1:-1:-1;12298:363:44;-1:-1:-1;12298:363:44;-1:-1:-1;12723:69:44;;;;12755:26;;;20208:13:101;;-1:-1:-1;;;;;20204:78:101;20186:97;;20343:4;20331:17;;;20325:24;20351:10;20321:41;20299:20;;;20292:71;12755:26:44;;20159:18:101;12755:26:44;;;;;;;12229:569;;;12169:629;:::o;10557:567::-;10659:12;10655:49;;10557:567;;:::o;10655:49::-;-1:-1:-1;;;;;10749:14:44;;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;13740:1898:63:-;-1:-1:-1;;;;;;;;;;;;;;;;;14287:49:63;14312:16;14330:5;14287:11;:21;;;:24;;;;:49;;;;;:::i;:::-;14283:159;;;14359:72;14376:11;14389:15;:23;;;-1:-1:-1;;;;;14359:72:63;14414:16;14359;:72::i;:::-;14352:79;;;;14283:159;14481:16;14456:41;;:11;:21;;;:41;;;14452:90;;;-1:-1:-1;14520:11:63;14513:18;;14452:90;14581:16;14556:41;;:11;:21;;;:41;;;14552:90;;;-1:-1:-1;14620:11:63;14613:18;;14552:90;14754:49;14774:11;:21;;;14797:5;14754:16;:19;;;;:49;;;;;:::i;:::-;14750:157;;;-1:-1:-1;14826:70:63;;;;;;;;;-1:-1:-1;14826:70:63;;;;;;;;;14819:77;;14750:157;14998:49;15061:48;15122:235;15167:6;15191:16;15225;15259;15293:15;:27;;;15338:5;15122:27;:235::i;:::-;14984:373;;;;15368:19;15453:96;15490:14;:24;;;15516:15;:25;;;15543:5;15453:36;:96::i;:::-;15390:159;;15415:15;:22;;;15391:14;:21;;;:46;;;;:::i;:::-;15390:159;;;;:::i;:::-;15368:181;;15567:64;15584:15;15601:11;15614:16;15567;:64::i;:::-;15560:71;;;;;13740:1898;;;;;;;;;;;:::o;1666:262:62:-;1776:7;1803:17;1799:56;;-1:-1:-1;1843:1:62;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:59:-;1635:7;-1:-1:-1;;;;;1662:27:59;;;1654:79;;;;-1:-1:-1;;;1654:79:59;;14527:2:101;1654:79:59;;;14509:21:101;14566:2;14546:18;;;14539:30;14605:34;14585:18;;;14578:62;14676:9;14656:18;;;14649:37;14703:19;;1654:79:59;14499:229:101;1654:79:59;-1:-1:-1;1758:6:59;1577:195::o;4498:650:63:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4839:56:63;;;;;;;;;;-1:-1:-1;;;;;4839:56:63;;;;;;;-1:-1:-1;;;4839:56:63;;;;;;;;-1:-1:-1;;;4839:56:63;;;;;;;;;;;;;4804:10;;4950:14;;4914:34;;;-1:-1:-1;4914:34:63;4906:59;;;;-1:-1:-1;;;4906:59:63;;;;;;;;:::i;:::-;;5008:56;5018:8;:14;;5034:15;5051:12;5008:9;:56::i;:::-;5098:33;;;;;;-1:-1:-1;;;;;5098:33:63;;;;;4976:88;;-1:-1:-1;4976:88:63;-1:-1:-1;;;;;;4498:650:63:o;3330:532::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3633:56:63;;;;;;;;;;-1:-1:-1;;;;;3633:56:63;;;;;-1:-1:-1;;;3633:56:63;;;;;;;;-1:-1:-1;;;3633:56:63;;;;;;;;;;;3598:10;;3731:56;3633;3741:14;;3633:56;3774:12;3731:9;:56::i;:::-;3822:23;;3699:88;;-1:-1:-1;3699:88:63;;-1:-1:-1;3699:88:63;-1:-1:-1;3822:33:63;;3848:7;;3822:33;:::i;:::-;-1:-1:-1;;;;;3797:58:63;;;-1:-1:-1;3797:14:63;;3330:532;;-1:-1:-1;3330:532:63;;-1:-1:-1;3330:532:63;-1:-1:-1;3330:532:63:o;16102:560::-;-1:-1:-1;;;;;;;;;;;;;;;;;16424:231:63;;;;;;;;16558:47;16575:12;:22;;;16599:5;16558;:16;;;;:47;;;;;:::i;:::-;16519:87;;;;:15;:87;:::i;:::-;16477:19;;:129;;;;:::i;:::-;-1:-1:-1;;;;;16424:231:63;;;;;16635:5;16424:231;;;;;16405:250;;16102:560;;;;;:::o;17234:969::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17551:10:63;17589:45;17638:35;17649:6;17657:15;17638:10;:35::i;:::-;17586:87;;;17759:12;17734:37;;:11;:21;;;:37;;;17730:112;;;17795:15;;-1:-1:-1;17812:11:63;-1:-1:-1;17825:5:63;;-1:-1:-1;17787:44:63;;17730:112;17852:41;17896:114;17926:11;17951:15;:23;;;-1:-1:-1;;;;;17896:114:63;17988:12;17896:16;:114::i;:::-;17852:158;;18061:7;18021:6;18028:15;:29;;;18021:37;;;;;;;;;:::i;:::-;:47;;;;;;;;;-1:-1:-1;;;18021:47:63;-1:-1:-1;;;;;18021:47:63;;;;;;;:37;;:47;;18122:21;18127:15;18122:4;:21::i;:::-;18079:64;-1:-1:-1;18182:7:63;;-1:-1:-1;18191:4:63;;-1:-1:-1;;;17234:969:63;;;;;;;;:::o;18458:866::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;18671:29:63;;;;18647:71;;;;;;;:23;:71::i;:::-;18595:133;;;;:29;;;:133;19181:27;;;;:45;;;19177:108;;;19273:1;19242:15;:27;;:32;;;;;;;:::i;:::-;;;;;-1:-1:-1;;19302:15:63;18458:866::o;14:196:101:-;82:20;;-1:-1:-1;;;;;131:54:101;;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:101;;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:101;;-1:-1:-1;;;;2986:388:101: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:101;-1:-1:-1;4007:2:101;3992:18;;3979:32;;-1:-1:-1;4023:16:101;;;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:101;;-1:-1:-1;4181:8:101;;4065:97;3551:671;-1:-1:-1;;;3551:671:101: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:101: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:101;-1:-1:-1;;;;5539:331:101: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:101;-1:-1:-1;6429:2:101;6414:18;;6401:32;;-1:-1:-1;6445:16:101;;;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:101;-1:-1:-1;;;;6030:614:101: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:101;;7669:481;-1:-1:-1;;;;;;7669:481:101: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:101;11175:15;-1:-1:-1;;11171:88:101;11156:104;;;;11262:2;11152:113;;10736:535;-1:-1:-1;;;10736:535:101:o;20745:273::-;20785:3;-1:-1:-1;;;;;20894:2:101;20891:1;20887:10;20924:2;20921:1;20917:10;20955:3;20951:2;20947:12;20942:3;20939:21;20936:2;;;20963:18;;:::i;:::-;20999:13;;20793:225;-1:-1:-1;;;;20793:225:101:o;21023:277::-;21063:3;-1:-1:-1;;;;;21176:2:101;21173:1;21169:10;21206:2;21203:1;21199:10;21237:3;21233:2;21229:12;21224:3;21221:21;21218:2;;;21245:18;;:::i;21305:226::-;21344:3;21372:8;21407:2;21404:1;21400:10;21437:2;21434:1;21430:10;21468:3;21464:2;21460:12;21455:3;21452:21;21449:2;;;21476:18;;:::i;21536:128::-;21576:3;21607:1;21603:6;21600:1;21597:13;21594:2;;;21613:18;;:::i;:::-;-1:-1:-1;21649:9:101;;21584:80::o;21669:230::-;21708:3;21736:12;21775:2;21772:1;21768:10;21805:2;21802:1;21798:10;21836:3;21832:2;21828:12;21823:3;21820:21;21817:2;;;21844:18;;:::i;21904:240::-;21944:1;-1:-1:-1;;;;;22055:2:101;22052:1;22048:10;22077:3;22067:2;;22084:18;;:::i;:::-;22122:10;;22118:20;;;;;21950:194;-1:-1:-1;;21950:194:101:o;22149:120::-;22189:1;22215;22205:2;;22220:18;;:::i;:::-;-1:-1:-1;22254:9:101;;22195:74::o;22274:311::-;22314:7;-1:-1:-1;;;;;22431:2:101;22428:1;22424:10;22461:2;22458:1;22454:10;22517:3;22513:2;22509:12;22504:3;22501:21;22494:3;22487:11;22480:19;22476:47;22473:2;;;22526:18;;:::i;:::-;22566:13;;22326:259;-1:-1:-1;;;;22326:259:101:o;22590:270::-;22630:4;-1:-1:-1;;;;;22767:10:101;;;;22737;;22789:12;;;22786:2;;;22804:18;;:::i;:::-;22841:13;;22639:221;-1:-1:-1;;;22639:221:101:o;22865:125::-;22905:4;22933:1;22930;22927:8;22924:2;;;22938:18;;:::i;:::-;-1:-1:-1;22975:9:101;;22914:76::o;22995:221::-;23034:4;23063:10;23123;;;;23093;;23145:12;;;23142:2;;;23160:18;;:::i;23221:437::-;23300:1;23296:12;;;;23343;;;23364:2;;23418:4;23410:6;23406:17;23396:27;;23364:2;23471;23463:6;23460:14;23440:18;23437:38;23434:2;;;-1:-1:-1;;;23505:1:101;23498:88;23609:4;23606:1;23599:15;23637:4;23634:1;23627:15;23663:195;23702:3;23733:66;23726:5;23723:77;23720:2;;;23803:18;;:::i;:::-;-1:-1:-1;23850:1:101;23839:13;;23710:148::o;23863:112::-;23895:1;23921;23911:2;;23926:18;;:::i;:::-;-1:-1:-1;23960:9:101;;23901:74::o;23980:184::-;-1:-1:-1;;;24029:1:101;24022:88;24129:4;24126:1;24119:15;24153:4;24150:1;24143:15;24169:184;-1:-1:-1;;;24218:1:101;24211:88;24318:4;24315:1;24308:15;24342:4;24339:1;24332:15;24358:184;-1:-1:-1;;;24407:1:101;24400:88;24507:4;24504:1;24497:15;24531:4;24528:1;24521:15;24547:184;-1:-1:-1;;;24596:1:101;24589:88;24696:4;24693:1;24686:15;24720:4;24717:1;24710:15;24736:184;-1:-1:-1;;;24785:1:101;24778:88;24885:4;24882:1;24875:15;24909:4;24906:1;24899: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 buffer) 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 of 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 seven year minimum,\\n                of accurate historical lookups with current estimates of 1 new block\\n                every 15 seconds - assuming each block contains 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\":\"0x446d8221329601d40464981a50a0e31f3fd48da0ebf0fea646c5a089ccfbdff4\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 282,
                "contract": "@pooltogether/v4-core/contracts/Ticket.sol:Ticket",
                "label": "_balances",
                "offset": 0,
                "slot": "0",
                "type": "t_mapping(t_address,t_uint256)"
              },
              {
                "astId": 288,
                "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": 290,
                "contract": "@pooltogether/v4-core/contracts/Ticket.sol:Ticket",
                "label": "_totalSupply",
                "offset": 0,
                "slot": "2",
                "type": "t_uint256"
              },
              {
                "astId": 292,
                "contract": "@pooltogether/v4-core/contracts/Ticket.sol:Ticket",
                "label": "_name",
                "offset": 0,
                "slot": "3",
                "type": "t_string_storage"
              },
              {
                "astId": 294,
                "contract": "@pooltogether/v4-core/contracts/Ticket.sol:Ticket",
                "label": "_symbol",
                "offset": 0,
                "slot": "4",
                "type": "t_string_storage"
              },
              {
                "astId": 938,
                "contract": "@pooltogether/v4-core/contracts/Ticket.sol:Ticket",
                "label": "_nonces",
                "offset": 0,
                "slot": "5",
                "type": "t_mapping(t_address,t_struct(Counter)1803_storage)"
              },
              {
                "astId": 9656,
                "contract": "@pooltogether/v4-core/contracts/Ticket.sol:Ticket",
                "label": "userTwabs",
                "offset": 0,
                "slot": "6",
                "type": "t_mapping(t_address,t_struct(Account)12494_storage)"
              },
              {
                "astId": 9660,
                "contract": "@pooltogether/v4-core/contracts/Ticket.sol:Ticket",
                "label": "totalSupplyTwab",
                "offset": 0,
                "slot": "7",
                "type": "t_struct(Account)12494_storage"
              },
              {
                "astId": 9665,
                "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)12066_storage)16777215_storage": {
                "base": "t_struct(Observation)12066_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)12494_storage)": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => struct TwabLib.Account)",
                "numberOfBytes": "32",
                "value": "t_struct(Account)12494_storage"
              },
              "t_mapping(t_address,t_struct(Counter)1803_storage)": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => struct Counters.Counter)",
                "numberOfBytes": "32",
                "value": "t_struct(Counter)1803_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)12494_storage": {
                "encoding": "inplace",
                "label": "struct TwabLib.Account",
                "members": [
                  {
                    "astId": 12488,
                    "contract": "@pooltogether/v4-core/contracts/Ticket.sol:Ticket",
                    "label": "details",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_struct(AccountDetails)12485_storage"
                  },
                  {
                    "astId": 12493,
                    "contract": "@pooltogether/v4-core/contracts/Ticket.sol:Ticket",
                    "label": "twabs",
                    "offset": 0,
                    "slot": "1",
                    "type": "t_array(t_struct(Observation)12066_storage)16777215_storage"
                  }
                ],
                "numberOfBytes": "536870912"
              },
              "t_struct(AccountDetails)12485_storage": {
                "encoding": "inplace",
                "label": "struct TwabLib.AccountDetails",
                "members": [
                  {
                    "astId": 12480,
                    "contract": "@pooltogether/v4-core/contracts/Ticket.sol:Ticket",
                    "label": "balance",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_uint208"
                  },
                  {
                    "astId": 12482,
                    "contract": "@pooltogether/v4-core/contracts/Ticket.sol:Ticket",
                    "label": "nextTwabIndex",
                    "offset": 26,
                    "slot": "0",
                    "type": "t_uint24"
                  },
                  {
                    "astId": 12484,
                    "contract": "@pooltogether/v4-core/contracts/Ticket.sol:Ticket",
                    "label": "cardinality",
                    "offset": 29,
                    "slot": "0",
                    "type": "t_uint24"
                  }
                ],
                "numberOfBytes": "32"
              },
              "t_struct(Counter)1803_storage": {
                "encoding": "inplace",
                "label": "struct Counters.Counter",
                "members": [
                  {
                    "astId": 1802,
                    "contract": "@pooltogether/v4-core/contracts/Ticket.sol:Ticket",
                    "label": "_value",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_uint256"
                  }
                ],
                "numberOfBytes": "32"
              },
              "t_struct(Observation)12066_storage": {
                "encoding": "inplace",
                "label": "struct ObservationLib.Observation",
                "members": [
                  {
                    "astId": 12063,
                    "contract": "@pooltogether/v4-core/contracts/Ticket.sol:Ticket",
                    "label": "amount",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_uint224"
                  },
                  {
                    "astId": 12065,
                    "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.8.6;\\n\\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..)\\n */\\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   */\\n  event RandomNumberRequested(uint32 indexed requestId, address indexed sender);\\n\\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   */\\n  event RandomNumberCompleted(uint32 indexed requestId, uint256 randomNumber);\\n\\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   */\\n  function getLastRequestId() external view returns (uint32 requestId);\\n\\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   */\\n  function getRequestFee() external view returns (address feeToken, uint256 requestFee);\\n\\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.\\n   * The calling contract should \\\"lock\\\" all activity until the result is available via the `requestId`\\n   */\\n  function requestRandomNumber() external returns (uint32 requestId, uint32 lockBlock);\\n\\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   */\\n  function isRequestComplete(uint32 requestId) external view returns (bool isCompleted);\\n\\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   */\\n  function randomNumber(uint32 requestId) external returns (uint256 randomNum);\\n}\\n\",\"keccak256\":\"0x24803ae776bba768a3a3f65d3b7e5fc100c7b5881a8e5e39d6c5df2735a3b5cb\",\"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.8.6;\\n\\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..)\\n */\\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   */\\n  event RandomNumberRequested(uint32 indexed requestId, address indexed sender);\\n\\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   */\\n  event RandomNumberCompleted(uint32 indexed requestId, uint256 randomNumber);\\n\\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   */\\n  function getLastRequestId() external view returns (uint32 requestId);\\n\\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   */\\n  function getRequestFee() external view returns (address feeToken, uint256 requestFee);\\n\\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.\\n   * The calling contract should \\\"lock\\\" all activity until the result is available via the `requestId`\\n   */\\n  function requestRandomNumber() external returns (uint32 requestId, uint32 lockBlock);\\n\\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   */\\n  function isRequestComplete(uint32 requestId) external view returns (bool isCompleted);\\n\\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   */\\n  function randomNumber(uint32 requestId) external returns (uint256 randomNum);\\n}\\n\",\"keccak256\":\"0x24803ae776bba768a3a3f65d3b7e5fc100c7b5881a8e5e39d6c5df2735a3b5cb\",\"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 drawIds to consider",
                  "user": "The users address"
                },
                "returns": {
                  "_0": "Array of balances"
                }
              },
              "getPrizeDistributionBuffer()": {
                "returns": {
                  "_0": "IPrizeDistributionBuffer"
                }
              }
            },
            "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 drawIds to consider\",\"user\":\"The users address\"},\"returns\":{\"_0\":\"Array of balances\"}},\"getPrizeDistributionBuffer()\":{\"returns\":{\"_0\":\"IPrizeDistributionBuffer\"}}},\"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 prizeDistributionBuffer 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.8.6;\\n\\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..)\\n */\\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   */\\n  event RandomNumberRequested(uint32 indexed requestId, address indexed sender);\\n\\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   */\\n  event RandomNumberCompleted(uint32 indexed requestId, uint256 randomNumber);\\n\\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   */\\n  function getLastRequestId() external view returns (uint32 requestId);\\n\\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   */\\n  function getRequestFee() external view returns (address feeToken, uint256 requestFee);\\n\\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.\\n   * The calling contract should \\\"lock\\\" all activity until the result is available via the `requestId`\\n   */\\n  function requestRandomNumber() external returns (uint32 requestId, uint32 lockBlock);\\n\\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   */\\n  function isRequestComplete(uint32 requestId) external view returns (bool isCompleted);\\n\\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   */\\n  function randomNumber(uint32 requestId) external returns (uint256 randomNum);\\n}\\n\",\"keccak256\":\"0x24803ae776bba768a3a3f65d3b7e5fc100c7b5881a8e5e39d6c5df2735a3b5cb\",\"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 IPrizeDistributionSource\\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\":\"0xdfcc3dc33457e44d8917f33185925eff78ea21e5018250b3accf2db8a7aa0242\",\"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 prizeDistributionBuffer variable.\\n     * @return IPrizeDistributionBuffer\\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 drawIds 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\":\"0x51b3bacbdd715929d909063e66519096c2ef858b646e80f66691d155ccc8d520\",\"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\\nimport \\\"./IPrizeDistributionSource.sol\\\";\\n\\n/** @title  IPrizeDistributionBuffer\\n * @author PoolTogether Inc Team\\n * @notice The PrizeDistributionBuffer interface.\\n */\\ninterface IPrizeDistributionBuffer is IPrizeDistributionSource {\\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 (\\n            IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution,\\n            uint32 drawId\\n        );\\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 (\\n            IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution,\\n            uint32 drawId\\n        );\\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(\\n        uint32 drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata draw\\n    ) external returns (uint32);\\n}\\n\",\"keccak256\":\"0xa66b0d958502adda03e80924381bae30802f1c8d80823a9b787b8c66f6a7d835\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionSource.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/** @title IPrizeDistributionSource\\n * @author PoolTogether Inc Team\\n * @notice The PrizeDistributionSource interface.\\n */\\ninterface IPrizeDistributionSource {\\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 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 (PrizeDistribution[] memory);\\n}\\n\",\"keccak256\":\"0x05ec47edc2684790a869a866576e7338229cc4eeafe1171bfc8cd7fa1c0cc9a0\",\"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 valid 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\":\"0x9d90a364aafbb26a680259ad470222368aabe139cd6200eeb02ec0c6b93bc317\",\"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 buffer) 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 of 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 seven year minimum,\\n                of accurate historical lookups with current estimates of 1 new block\\n                every 15 seconds - assuming each block contains 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\":\"0x446d8221329601d40464981a50a0e31f3fd48da0ebf0fea646c5a089ccfbdff4\",\"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 prizeDistributionBuffer 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 IPrizeDistributionSource.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 IPrizeDistributionSource.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 IPrizeDistributionSource.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 IPrizeDistributionSource.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 IPrizeDistributionSource.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 IPrizeDistributionSource.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 IPrizeDistributionSource.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 IPrizeDistributionSource.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 IPrizeDistributionSource.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 IPrizeDistributionSource.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 IPrizeDistributionSource.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 IPrizeDistributionSource.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 IPrizeDistributionSource.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 IPrizeDistributionSource.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\\nimport \\\"./IPrizeDistributionSource.sol\\\";\\n\\n/** @title  IPrizeDistributionBuffer\\n * @author PoolTogether Inc Team\\n * @notice The PrizeDistributionBuffer interface.\\n */\\ninterface IPrizeDistributionBuffer is IPrizeDistributionSource {\\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 (\\n            IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution,\\n            uint32 drawId\\n        );\\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 (\\n            IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution,\\n            uint32 drawId\\n        );\\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(\\n        uint32 drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata draw\\n    ) external returns (uint32);\\n}\\n\",\"keccak256\":\"0xa66b0d958502adda03e80924381bae30802f1c8d80823a9b787b8c66f6a7d835\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionSource.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/** @title IPrizeDistributionSource\\n * @author PoolTogether Inc Team\\n * @notice The PrizeDistributionSource interface.\\n */\\ninterface IPrizeDistributionSource {\\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 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 (PrizeDistribution[] memory);\\n}\\n\",\"keccak256\":\"0x05ec47edc2684790a869a866576e7338229cc4eeafe1171bfc8cd7fa1c0cc9a0\",\"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/IPrizeDistributionSource.sol": {
        "IPrizeDistributionSource": {
          "abi": [
            {
              "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 IPrizeDistributionSource.PrizeDistribution[]",
                  "name": "",
                  "type": "tuple[]"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            }
          ],
          "devdoc": {
            "author": "PoolTogether Inc Team",
            "kind": "dev",
            "methods": {
              "getPrizeDistributions(uint32[])": {
                "params": {
                  "drawIds": "drawIds to get PrizeDistribution for"
                },
                "returns": {
                  "_0": "prizeDistributionList"
                }
              }
            },
            "title": "IPrizeDistributionSource",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "",
              "opcodes": "",
              "sourceMap": ""
            },
            "gasEstimates": null,
            "methodIdentifiers": {
              "getPrizeDistributions(uint32[])": "d30a5daf"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"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 IPrizeDistributionSource.PrizeDistribution[]\",\"name\":\"\",\"type\":\"tuple[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"PoolTogether Inc Team\",\"kind\":\"dev\",\"methods\":{\"getPrizeDistributions(uint32[])\":{\"params\":{\"drawIds\":\"drawIds to get PrizeDistribution for\"},\"returns\":{\"_0\":\"prizeDistributionList\"}}},\"title\":\"IPrizeDistributionSource\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"getPrizeDistributions(uint32[])\":{\"notice\":\"Gets PrizeDistribution list from array of drawIds\"}},\"notice\":\"The PrizeDistributionSource interface.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionSource.sol\":\"IPrizeDistributionSource\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionSource.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/** @title IPrizeDistributionSource\\n * @author PoolTogether Inc Team\\n * @notice The PrizeDistributionSource interface.\\n */\\ninterface IPrizeDistributionSource {\\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 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 (PrizeDistribution[] memory);\\n}\\n\",\"keccak256\":\"0x05ec47edc2684790a869a866576e7338229cc4eeafe1171bfc8cd7fa1c0cc9a0\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {
              "getPrizeDistributions(uint32[])": {
                "notice": "Gets PrizeDistribution list from array of drawIds"
              }
            },
            "notice": "The PrizeDistributionSource 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 valid 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.8.6;\\n\\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..)\\n */\\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   */\\n  event RandomNumberRequested(uint32 indexed requestId, address indexed sender);\\n\\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   */\\n  event RandomNumberCompleted(uint32 indexed requestId, uint256 randomNumber);\\n\\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   */\\n  function getLastRequestId() external view returns (uint32 requestId);\\n\\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   */\\n  function getRequestFee() external view returns (address feeToken, uint256 requestFee);\\n\\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.\\n   * The calling contract should \\\"lock\\\" all activity until the result is available via the `requestId`\\n   */\\n  function requestRandomNumber() external returns (uint32 requestId, uint32 lockBlock);\\n\\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   */\\n  function isRequestComplete(uint32 requestId) external view returns (bool isCompleted);\\n\\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   */\\n  function randomNumber(uint32 requestId) external returns (uint256 randomNum);\\n}\\n\",\"keccak256\":\"0x24803ae776bba768a3a3f65d3b7e5fc100c7b5881a8e5e39d6c5df2735a3b5cb\",\"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 IPrizeDistributionSource\\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\":\"0xdfcc3dc33457e44d8917f33185925eff78ea21e5018250b3accf2db8a7aa0242\",\"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 prizeDistributionBuffer variable.\\n     * @return IPrizeDistributionBuffer\\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 drawIds 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\":\"0x51b3bacbdd715929d909063e66519096c2ef858b646e80f66691d155ccc8d520\",\"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\\nimport \\\"./IPrizeDistributionSource.sol\\\";\\n\\n/** @title  IPrizeDistributionBuffer\\n * @author PoolTogether Inc Team\\n * @notice The PrizeDistributionBuffer interface.\\n */\\ninterface IPrizeDistributionBuffer is IPrizeDistributionSource {\\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 (\\n            IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution,\\n            uint32 drawId\\n        );\\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 (\\n            IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution,\\n            uint32 drawId\\n        );\\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(\\n        uint32 drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata draw\\n    ) external returns (uint32);\\n}\\n\",\"keccak256\":\"0xa66b0d958502adda03e80924381bae30802f1c8d80823a9b787b8c66f6a7d835\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionSource.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/** @title IPrizeDistributionSource\\n * @author PoolTogether Inc Team\\n * @notice The PrizeDistributionSource interface.\\n */\\ninterface IPrizeDistributionSource {\\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 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 (PrizeDistribution[] memory);\\n}\\n\",\"keccak256\":\"0x05ec47edc2684790a869a866576e7338229cc4eeafe1171bfc8cd7fa1c0cc9a0\",\"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 valid 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\":\"0x9d90a364aafbb26a680259ad470222368aabe139cd6200eeb02ec0c6b93bc317\",\"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 buffer) 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 of 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 seven year minimum,\\n                of accurate historical lookups with current estimates of 1 new block\\n                every 15 seconds - assuming each block contains 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\":\"0x446d8221329601d40464981a50a0e31f3fd48da0ebf0fea646c5a089ccfbdff4\",\"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 valid 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.\"}},\"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.\\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\":\"0xa3cc6bff882d541d6642bbff0988fc592ff513a682dde6888ab55eaec29df7a9\",\"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 buffer) 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 of 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 seven year minimum,\\n                of accurate historical lookups with current estimates of 1 new block\\n                every 15 seconds - assuming each block contains 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\":\"0x446d8221329601d40464981a50a0e31f3fd48da0ebf0fea646c5a089ccfbdff4\",\"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."
              }
            },
            "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.\\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\":\"0xa3cc6bff882d541d6642bbff0988fc592ff513a682dde6888ab55eaec29df7a9\",\"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 buffer) 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 of 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 seven year minimum,\\n                of accurate historical lookups with current estimates of 1 new block\\n                every 15 seconds - assuming each block contains 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\":\"0x446d8221329601d40464981a50a0e31f3fd48da0ebf0fea646c5a089ccfbdff4\",\"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 buffer) 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 of 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 seven year minimum,\\n                of accurate historical lookups with current estimates of 1 new block\\n                every 15 seconds - assuming each block contains 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\":\"0x446d8221329601d40464981a50a0e31f3fd48da0ebf0fea646c5a089ccfbdff4\",\"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:58:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;157:1949:58;;;;;;;;;;;;;;;;;"
            },
            "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:58:-: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:59:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;771:1489:59;;;;;;;;;;;;;;;;;"
            },
            "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:59:-: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:60:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;529:3861:60;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@MAX_CARDINALITY_12061": {
                  "entryPoint": null,
                  "id": 12061,
                  "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:101",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:101",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "121:91:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "131:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "143:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "154:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "139:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "139:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "131:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "173:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "188:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "196:8:101",
                                        "type": "",
                                        "value": "0xffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "184:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "184:21:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "166:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "166:40:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "166:40:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint24__to_t_uint24__fromStack_library_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "90:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "101:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "112:4:101",
                            "type": ""
                          }
                        ],
                        "src": "14:198:101"
                      }
                    ]
                  },
                  "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": 101,
                  "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:60:-:0;;;;;;;;;;;;;;;;;;;;;;;;690:49;;731:8;690:49;;;;;196:8:101;184:21;;;166:40;;154:2;139:18;690:49:60;;;;;;"
            },
            "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:61:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;344:2576:61;;;;;;;;;;;;;;;;;"
            },
            "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:61:-: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:62:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;61:2375:62;;;;;;;;;;;;;;;;;"
            },
            "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:62:-: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": "608f610038600b82828239805160001a607314602b57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe730000000000000000000000000000000000000000301460806040526004361060335760003560e01c80638200d873146038575b600080fd5b604162ffffff81565b60405162ffffff909116815260200160405180910390f3fea26469706673582212203deedd0ed5fea58782a37953931d802563e92731ee5e8e659a3c4b7c26234aa964736f6c63430008060033",
              "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 RETURNDATASIZE 0xEE 0xDD 0xE 0xD5 INVALID 0xA5 DUP8 DUP3 LOG3 PUSH26 0x53931D802563E92731EE5E8E659A3C4B7C26234AA964736F6C63 NUMBER STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "934:18392:63:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;934:18392:63;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@MAX_CARDINALITY_12478": {
                  "entryPoint": null,
                  "id": 12478,
                  "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:101",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:101",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "121:91:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "131:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "143:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "154:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "139:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "139:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "131:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "173:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "188:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "196:8:101",
                                        "type": "",
                                        "value": "0xffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "184:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "184:21:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "166:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "166:40:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "166:40:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint24__to_t_uint24__fromStack_library_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "90:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "101:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "112:4:101",
                            "type": ""
                          }
                        ],
                        "src": "14:198:101"
                      }
                    ]
                  },
                  "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": 101,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "730000000000000000000000000000000000000000301460806040526004361060335760003560e01c80638200d873146038575b600080fd5b604162ffffff81565b60405162ffffff909116815260200160405180910390f3fea26469706673582212203deedd0ed5fea58782a37953931d802563e92731ee5e8e659a3c4b7c26234aa964736f6c63430008060033",
              "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 RETURNDATASIZE 0xEE 0xDD 0xE 0xD5 INVALID 0xA5 DUP8 DUP3 LOG3 PUSH26 0x53931D802563E92731EE5E8E659A3C4B7C26234AA964736F6C63 NUMBER STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "934:18392:63:-:0;;;;;;;;;;;;;;;;;;;;;;;;2024:49;;2065:8;2024:49;;;;;196:8:101;184:21;;;166:40;;154:2;139:18;2024:49:63;;;;;;"
            },
            "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 seven year minimum, of accurate historical lookups with current estimates of 1 new block every 15 seconds - assuming each block contains 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 buffer) 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 of 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 buffer) 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 of 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 seven year minimum,\\n                of accurate historical lookups with current estimates of 1 new block\\n                every 15 seconds - assuming each block contains 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\":\"0x446d8221329601d40464981a50a0e31f3fd48da0ebf0fea646c5a089ccfbdff4\",\"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 seven year minimum, of accurate historical lookups with current estimates of 1 new block every 15 seconds - assuming each block contains 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 buffer) 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 of 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": "608060405234801561001057600080fd5b50610c29806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c8063a81bc43b1461003b578063c00dbd5114610050575b600080fd5b61004e6100493660046109cd565b610063565b005b61004e61005e36600461097a565b61022a565b6000856001600160a01b031663c002c4d66040518163ffffffff1660e01b815260040160206040518083038186803b15801561009e57600080fd5b505afa1580156100b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100d6919061093b565b90506000866001600160a01b03166321df0da76040518163ffffffff1660e01b815260040160206040518083038186803b15801561011357600080fd5b505afa158015610127573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061014b919061093b565b90506001600160a01b03811663d505accf333089883561017160408b0160208c01610b06565b604080517fffffffff0000000000000000000000000000000000000000000000000000000060e089901b1681526001600160a01b0396871660048201529590941660248601526044850192909252606484015260ff16608483015287013560a4820152606087013560c482015260e401600060405180830381600087803b1580156101fb57600080fd5b505af115801561020f573d6000803e3d6000fd5b5050505061022187838389898861032a565b50505050505050565b6000846001600160a01b031663c002c4d66040518163ffffffff1660e01b815260040160206040518083038186803b15801561026557600080fd5b505afa158015610279573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061029d919061093b565b90506000856001600160a01b03166321df0da76040518163ffffffff1660e01b815260040160206040518083038186803b1580156102da57600080fd5b505afa1580156102ee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610312919061093b565b905061032286838388888861032a565b505050505050565b610337843385898661041b565b600061034b36839003830160208401610a5b565b90506001600160a01b03861663919974dc8461036a602086018661091e565b845160208601516040808801516060890151915160e088901b7fffffffff000000000000000000000000000000000000000000000000000000001681526001600160a01b039687166004820152959094166024860152604485019290925260ff166064840152608483019190915260a482015260c401600060405180830381600087803b1580156103fa57600080fd5b505af115801561040e573d6000803e3d6000fd5b5050505050505050505050565b6104306001600160a01b0386168530866104c6565b6104446001600160a01b038616838561057d565b6040517fffaad6a50000000000000000000000000000000000000000000000000000000081526001600160a01b0382811660048301526024820185905283169063ffaad6a590604401600060405180830381600087803b1580156104a757600080fd5b505af11580156104bb573d6000803e3d6000fd5b505050505050505050565b6040516001600160a01b03808516602483015283166044820152606481018290526105779085907f23b872dd00000000000000000000000000000000000000000000000000000000906084015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217909152610670565b50505050565b6040517fdd62ed3e0000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b038381166024830152600091839186169063dd62ed3e9060440160206040518083038186803b1580156105e257600080fd5b505afa1580156105f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061061a9190610aed565b6106249190610b70565b6040516001600160a01b0385166024820152604481018290529091506105779085907f095ea7b30000000000000000000000000000000000000000000000000000000090606401610513565b60006106c5826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661075f9092919063ffffffff16565b80519091501561075a57808060200190518101906106e39190610958565b61075a5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b505050565b606061076e8484600085610778565b90505b9392505050565b6060824710156107f05760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610751565b843b61083e5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610751565b600080866001600160a01b0316858760405161085a9190610b21565b60006040518083038185875af1925050503d8060008114610897576040519150601f19603f3d011682016040523d82523d6000602084013e61089c565b606091505b50915091506108ac8282866108b7565b979650505050505050565b606083156108c6575081610771565b8251156108d65782518084602001fd5b8160405162461bcd60e51b81526004016107519190610b3d565b600060a0828403121561090257600080fd5b50919050565b803560ff8116811461091957600080fd5b919050565b60006020828403121561093057600080fd5b813561077181610bdb565b60006020828403121561094d57600080fd5b815161077181610bdb565b60006020828403121561096a57600080fd5b8151801515811461077157600080fd5b600080600080610100858703121561099157600080fd5b843561099c81610bdb565b93506020850135925060408501356109b381610bdb565b91506109c286606087016108f0565b905092959194509250565b60008060008060008587036101808112156109e757600080fd5b86356109f281610bdb565b9550602087013594506040870135610a0981610bdb565b935060807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa082011215610a3b57600080fd5b50606086019150610a4f8760e088016108f0565b90509295509295909350565b600060808284031215610a6d57600080fd5b6040516080810181811067ffffffffffffffff82111715610ab7577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405282358152610aca60208401610908565b602082015260408301356040820152606083013560608201528091505092915050565b600060208284031215610aff57600080fd5b5051919050565b600060208284031215610b1857600080fd5b61077182610908565b60008251610b33818460208701610baf565b9190910192915050565b6020815260008251806020840152610b5c816040850160208701610baf565b601f01601f19169190910160400192915050565b60008219821115610baa577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b500190565b60005b83811015610bca578181015183820152602001610bb2565b838111156105775750506000910152565b6001600160a01b0381168114610bf057600080fd5b5056fea26469706673582212205629d17f2cfa4bc97ce0ccf32b83435150edbc2b8157972defce9d05eb9b274464736f6c63430008060033",
              "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 JUMP 0x29 0xD1 PUSH32 0x2CFA4BC97CE0CCF32B83435150EDBC2B8157972DEFCE9D05EB9B274464736F6C PUSH4 0x43000806 STOP CALLER ",
              "sourceMap": "1109:3988:64:-:0;;;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@_callOptionalReturn_1343": {
                  "entryPoint": 1648,
                  "id": 1343,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_depositToAndDelegate_13392": {
                  "entryPoint": 810,
                  "id": 13392,
                  "parameterSlots": 6,
                  "returnSlots": 0
                },
                "@_depositTo_13435": {
                  "entryPoint": 1051,
                  "id": 13435,
                  "parameterSlots": 5,
                  "returnSlots": 0
                },
                "@depositToAndDelegate_13342": {
                  "entryPoint": 554,
                  "id": 13342,
                  "parameterSlots": 4,
                  "returnSlots": 0
                },
                "@functionCallWithValue_1639": {
                  "entryPoint": 1912,
                  "id": 1639,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "@functionCall_1569": {
                  "entryPoint": 1887,
                  "id": 1569,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@isContract_1498": {
                  "entryPoint": null,
                  "id": 1498,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@permitAndDepositToAndDelegate_13302": {
                  "entryPoint": 99,
                  "id": 13302,
                  "parameterSlots": 5,
                  "returnSlots": 0
                },
                "@safeIncreaseAllowance_1257": {
                  "entryPoint": 1405,
                  "id": 1257,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@safeTransferFrom_1177": {
                  "entryPoint": 1222,
                  "id": 1177,
                  "parameterSlots": 4,
                  "returnSlots": 0
                },
                "@verifyCallResult_1774": {
                  "entryPoint": 2231,
                  "id": 1774,
                  "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_$11495t_uint256t_addresst_struct$_DelegateSignature_$13233_calldata_ptr": {
                  "entryPoint": 2426,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 4
                },
                "abi_decode_tuple_t_contract$_IPrizePool_$11495t_uint256t_addresst_struct$_Signature_$13227_calldata_ptrt_struct$_DelegateSignature_$13233_calldata_ptr": {
                  "entryPoint": 2509,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 5
                },
                "abi_decode_tuple_t_contract$_ITicket_$11825_fromMemory": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_struct$_Signature_$13227_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:9036:101",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:101",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "94:86:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "134:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "143:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "146:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "136:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "136:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "136:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "115:3:101"
                                      },
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "120:6:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "111:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "111:16:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "129:3:101",
                                    "type": "",
                                    "value": "160"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "107:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "107:26:101"
                              },
                              "nodeType": "YulIf",
                              "src": "104:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "159:15:101",
                              "value": {
                                "name": "offset",
                                "nodeType": "YulIdentifier",
                                "src": "168:6:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "159:5:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_struct_DelegateSignature_calldata",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "68:6:101",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "76:3:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "84:5:101",
                            "type": ""
                          }
                        ],
                        "src": "14:166:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "232:109:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "242:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "264:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "251:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "251:20:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "242:5:101"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "319:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "328:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "331:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "321:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "321:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "321:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "293:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "304:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "311:4:101",
                                            "type": "",
                                            "value": "0xff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "300:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "300:16:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "290:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "290:27:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "283:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "283:35:101"
                              },
                              "nodeType": "YulIf",
                              "src": "280:2:101"
                            }
                          ]
                        },
                        "name": "abi_decode_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "211:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "222:5:101",
                            "type": ""
                          }
                        ],
                        "src": "185:156:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "416:177:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "462:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "471:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "474:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "464:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "464:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "464:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "437:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "446:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "433:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "433:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "458:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "429:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "429:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "426:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "487:36:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "513:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "500:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "500:23:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "491:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "557:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "532:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "532:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "532:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "572:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "582:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "572:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "382:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "393:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "405:6:101",
                            "type": ""
                          }
                        ],
                        "src": "346:247:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "679:170:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "725:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "734:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "737:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "727:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "727:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "727:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "700:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "709:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "696:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "696:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "721:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "692:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "692:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "689:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "750:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "769:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "763:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "763:16:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "754:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "813:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "788:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "788:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "788:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "828:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "838:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "828:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "645:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "656:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "668:6:101",
                            "type": ""
                          }
                        ],
                        "src": "598:251:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "932:199:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "978:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "987:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "990:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "980:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "980:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "980:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "953:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "962:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "949:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "949:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "974:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "945:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "945:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "942:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1003:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1022:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1016:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1016:16:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1007:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1085:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1094:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1097:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1087:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1087:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1087:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1054:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "1075:5:101"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "iszero",
                                              "nodeType": "YulIdentifier",
                                              "src": "1068:6:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1068:13:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "1061:6:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1061:21:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1051:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1051:32:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1044:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1044:40:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1041:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1110:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1120:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1110:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_bool_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "898:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "909:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "921:6:101",
                            "type": ""
                          }
                        ],
                        "src": "854:277:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1315:445:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1362:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1371:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1374:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1364:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1364:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1364:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1336:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1345:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1332:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1332:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1357:3:101",
                                    "type": "",
                                    "value": "256"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1328:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1328:33:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1325:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1387:36:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1413:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1400:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1400:23:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1391:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1457:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1432:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1432:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1432:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1472:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1482:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1472:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1496:42:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1523:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1534:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1519:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1519:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1506:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1506:32:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1496:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1547:47:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1579:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1590:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1575:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1575:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1562:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1562:32:101"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1551:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1628:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1603:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1603:33:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1603:33:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1645:17:101",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "1655:7:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "1645:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1671:83:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1730:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1741:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1726:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1726:18:101"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1746:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_struct_DelegateSignature_calldata",
                                  "nodeType": "YulIdentifier",
                                  "src": "1681:44:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1681:73:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "1671:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_contract$_IPrizePool_$11495t_uint256t_addresst_struct$_DelegateSignature_$13233_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1257:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1268:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1280:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1288:6:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "1296:6:101",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "1304:6:101",
                            "type": ""
                          }
                        ],
                        "src": "1136:624:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1991:618:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2001:33:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "2015:7:101"
                                  },
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2024:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "2011:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2011:23:101"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2005:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2059:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2068:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2071:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2061:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2061:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2061:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2050:2:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2054:3:101",
                                    "type": "",
                                    "value": "384"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2046:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2046:12:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2043:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2084:36:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2110:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2097:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2097:23:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2088:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "2154:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "2129:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2129:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2129:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2169:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2179:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2169:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2193:42:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2220:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2231:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2216:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2216:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2203:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2203:32:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2193:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2244:47:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2276:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2287:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2272:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2272:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2259:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2259:32:101"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2248:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2325:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "2300:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2300:33:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2300:33:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2342:17:101",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "2352:7:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "2342:6:101"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2457:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2466:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2469:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2459:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2459:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2459:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "2379:2:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2383:66:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2375:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2375:75:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2452:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2371:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2371:85:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2368:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2482:28:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2496:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2507:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2492:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2492:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "2482:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2519:84:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2578:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2589:3:101",
                                        "type": "",
                                        "value": "224"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2574:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2574:19:101"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "2595:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_struct_DelegateSignature_calldata",
                                  "nodeType": "YulIdentifier",
                                  "src": "2529:44:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2529:74:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value4",
                                  "nodeType": "YulIdentifier",
                                  "src": "2519:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_contract$_IPrizePool_$11495t_uint256t_addresst_struct$_Signature_$13227_calldata_ptrt_struct$_DelegateSignature_$13233_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1925:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1936:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1948:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1956:6:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "1964:6:101",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "1972:6:101",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "1980:6:101",
                            "type": ""
                          }
                        ],
                        "src": "1765:844:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2712:170:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2758:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2767:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2770:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2760:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2760:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2760:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2733:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2742:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2729:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2729:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2754:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2725:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2725:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2722:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2783:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2802:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2796:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2796:16:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2787:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "2846:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "2821:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2821:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2821:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2861:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2871:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2861:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_contract$_ITicket_$11825_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2678:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2689:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2701:6:101",
                            "type": ""
                          }
                        ],
                        "src": "2614:268:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2985:701:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3032:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3041:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3044:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3034:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3034:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3034:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3006:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3015:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3002:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3002:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3027:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2998:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2998:33:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2995:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3057:23:101",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3077:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3071:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3071:9:101"
                              },
                              "variables": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "3061:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3089:34:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "3111:6:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3119:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3107:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3107:16:101"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "3093:10:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3206:168:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3227:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3230:77:101",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "3220:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3220:88:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3220:88:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3328:1:101",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3331:4:101",
                                          "type": "",
                                          "value": "0x41"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "3321:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3321:15:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3321:15:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3356:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3359:4:101",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3349:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3349:15:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3349:15:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "3141:10:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3153:18:101",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "3138:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3138:34:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "3177:10:101"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "3189:6:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "3174:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3174:22:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "3135:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3135:62:101"
                              },
                              "nodeType": "YulIf",
                              "src": "3132:2:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3390:2:101",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "3394:10:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3383:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3383:22:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3383:22:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "3421:6:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3442:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "calldataload",
                                      "nodeType": "YulIdentifier",
                                      "src": "3429:12:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3429:23:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3414:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3414:39:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3414:39:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "3473:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3481:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3469:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3469:15:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "3507:9:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "3518:2:101",
                                            "type": "",
                                            "value": "32"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "3503:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3503:18:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint8",
                                      "nodeType": "YulIdentifier",
                                      "src": "3486:16:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3486:36:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3462:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3462:61:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3462:61:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "3543:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3551:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3539:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3539:15:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "3573:9:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "3584:2:101",
                                            "type": "",
                                            "value": "64"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "3569:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3569:18:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "calldataload",
                                      "nodeType": "YulIdentifier",
                                      "src": "3556:12:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3556:32:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3532:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3532:57:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3532:57:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "3609:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3617:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3605:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3605:15:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "3639:9:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "3650:2:101",
                                            "type": "",
                                            "value": "96"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "3635:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3635:18:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "calldataload",
                                      "nodeType": "YulIdentifier",
                                      "src": "3622:12:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3622:32:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3598:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3598:57:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3598:57:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3664:16:101",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "3674:6:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3664:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_struct$_Signature_$13227_memory_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2951:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2962:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2974:6:101",
                            "type": ""
                          }
                        ],
                        "src": "2887:799:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3772:103:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3818:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3827:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3830:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3820:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3820:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3820:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3793:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3802:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3789:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3789:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3814:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3785:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3785:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "3782:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3843:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3859:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3853:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3853:16:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3843:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3738:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "3749:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3761:6:101",
                            "type": ""
                          }
                        ],
                        "src": "3691:184:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3948:114:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3994:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4003:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4006:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3996:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3996:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3996:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3969:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3978:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3965:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3965:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3990:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3961:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3961:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "3958:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4019:37:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4046:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint8",
                                  "nodeType": "YulIdentifier",
                                  "src": "4029:16:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4029:27:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "4019:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3914:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "3925:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3937:6:101",
                            "type": ""
                          }
                        ],
                        "src": "3880:182:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4204:137:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4214:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "4234:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4228:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4228:13:101"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "4218:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "4276:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4284:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4272:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4272:17:101"
                                  },
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "4291:3:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "4296:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "4250:21:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4250:53:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4250:53:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4312:23:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "4323:3:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "4328:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4319:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4319:16:101"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "4312:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "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": "4180:3:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4185:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "4196:3:101",
                            "type": ""
                          }
                        ],
                        "src": "4067:274:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4475:198:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "4485:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4497:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4508:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4493:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4493:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4485:4:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4520:52:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "4530:42:101",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4524:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4588:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "4603:6:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "4611:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4599:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4599:15:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4581:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4581:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4581:34:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4635:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4646:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4631:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4631:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "4655:6:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "4663:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4651:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4651:15:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4624:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4624:43:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4624:43:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4436:9:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "4447:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4455:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4466:4:101",
                            "type": ""
                          }
                        ],
                        "src": "4346:327:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4835:241:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "4845:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4857:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4868:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4853:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4853:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4845:4:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4880:52:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "4890:42:101",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4884:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4948:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "4963:6:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "4971:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4959:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4959:15:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4941:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4941:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4941:34:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4995:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5006:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4991:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4991:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "5015:6:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "5023:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5011:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5011:15:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4984:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4984:43:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4984:43:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5047:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5058:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5043:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5043:18:101"
                                  },
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "5063:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5036:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5036:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5036:34:101"
                            }
                          ]
                        },
                        "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": "4788:9:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "4799:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "4807:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4815:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4826:4:101",
                            "type": ""
                          }
                        ],
                        "src": "4678:398:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5346:428:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "5356:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5368:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5379:3:101",
                                    "type": "",
                                    "value": "224"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5364:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5364:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5356:4:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5392:52:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "5402:42:101",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "5396:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5460:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "5475:6:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "5483:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5471:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5471:15:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5453:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5453:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5453:34:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5507:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5518:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5503:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5503:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "5527:6:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "5535:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5523:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5523:15:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5496:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5496:43:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5496:43:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5559:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5570:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5555:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5555:18:101"
                                  },
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "5575:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5548:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5548:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5548:34:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5602:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5613:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5598:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5598:18:101"
                                  },
                                  {
                                    "name": "value3",
                                    "nodeType": "YulIdentifier",
                                    "src": "5618:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5591:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5591:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5591:34:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5645:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5656:3:101",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5641:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5641:19:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value4",
                                        "nodeType": "YulIdentifier",
                                        "src": "5666:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5674:4:101",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5662:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5662:17:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5634:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5634:46:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5634:46:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5700:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5711:3:101",
                                        "type": "",
                                        "value": "160"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5696:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5696:19:101"
                                  },
                                  {
                                    "name": "value5",
                                    "nodeType": "YulIdentifier",
                                    "src": "5717:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5689:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5689:35:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5689:35:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5744:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5755:3:101",
                                        "type": "",
                                        "value": "192"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5740:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5740:19:101"
                                  },
                                  {
                                    "name": "value6",
                                    "nodeType": "YulIdentifier",
                                    "src": "5761:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5733:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5733:35:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5733:35:101"
                            }
                          ]
                        },
                        "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": "5267:9:101",
                            "type": ""
                          },
                          {
                            "name": "value6",
                            "nodeType": "YulTypedName",
                            "src": "5278:6:101",
                            "type": ""
                          },
                          {
                            "name": "value5",
                            "nodeType": "YulTypedName",
                            "src": "5286:6:101",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "5294:6:101",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "5302:6:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "5310:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "5318:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5326:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5337:4:101",
                            "type": ""
                          }
                        ],
                        "src": "5081:693:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6016:384:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "6026:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6038:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6049:3:101",
                                    "type": "",
                                    "value": "192"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6034:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6034:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6026:4:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6062:52:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "6072:42:101",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6066:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6130:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "6145:6:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6153:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6141:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6141:15:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6123:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6123:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6123:34:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6177:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6188:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6173:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6173:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6197:6:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6205:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6193:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6193:15:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6166:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6166:43:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6166:43:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6229:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6240:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6225:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6225:18:101"
                                  },
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "6245:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6218:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6218:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6218:34:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6272:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6283:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6268:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6268:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value3",
                                        "nodeType": "YulIdentifier",
                                        "src": "6292:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6300:4:101",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6288:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6288:17:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6261:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6261:45:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6261:45:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6326:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6337:3:101",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6322:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6322:19:101"
                                  },
                                  {
                                    "name": "value4",
                                    "nodeType": "YulIdentifier",
                                    "src": "6343:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6315:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6315:35:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6315:35:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6370:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6381:3:101",
                                        "type": "",
                                        "value": "160"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6366:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6366:19:101"
                                  },
                                  {
                                    "name": "value5",
                                    "nodeType": "YulIdentifier",
                                    "src": "6387:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6359:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6359:35:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6359:35:101"
                            }
                          ]
                        },
                        "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": "5945:9:101",
                            "type": ""
                          },
                          {
                            "name": "value5",
                            "nodeType": "YulTypedName",
                            "src": "5956:6:101",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "5964:6:101",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "5972:6:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "5980:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "5988:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5996:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6007:4:101",
                            "type": ""
                          }
                        ],
                        "src": "5779:621:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6534:168:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "6544:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6556:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6567:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6552:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6552:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6544:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6586:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "6601:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6609:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6597:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6597:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6579:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6579:74:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6579:74:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6673:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6684:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6669:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6669:18:101"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6689:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6662:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6662:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6662:34:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6495:9:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "6506:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6514:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6525:4:101",
                            "type": ""
                          }
                        ],
                        "src": "6405:297:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6828:321:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6845:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6856:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6838:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6838:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6838:21:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6868:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "6888:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "6882:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6882:13:101"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "6872:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6915:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6926:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6911:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6911:18:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "6931:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6904:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6904:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6904:34:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "6973:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6981:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6969:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6969:15:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6990:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7001:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6986:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6986:18:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "7006:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "6947:21:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6947:66:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6947:66:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7022:121:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7038:9:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "7057:6:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "7065:2:101",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "7053:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "7053:15:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "7070:66:101",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "7049:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "7049:88:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7034:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7034:104:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7140:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7030:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7030:113:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7022:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6797:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6808:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6819:4:101",
                            "type": ""
                          }
                        ],
                        "src": "6707:442:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7328:228:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7345:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7356:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7338:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7338:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7338:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7379:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7390:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7375:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7375:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7395:2:101",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7368:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7368:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7368:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7418:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7429:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7414:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7414:18:101"
                                  },
                                  {
                                    "hexValue": "416464726573733a20696e73756666696369656e742062616c616e636520666f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7434:34:101",
                                    "type": "",
                                    "value": "Address: insufficient balance fo"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7407:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7407:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7407:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7489:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7500:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7485:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7485:18:101"
                                  },
                                  {
                                    "hexValue": "722063616c6c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7505:8:101",
                                    "type": "",
                                    "value": "r call"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7478:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7478:36:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7478:36:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7523:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7535:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7546:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7531:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7531:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7523:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7305:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7319:4:101",
                            "type": ""
                          }
                        ],
                        "src": "7154:402:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7735:179:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7752:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7763:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7745:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7745:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7745:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7786:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7797:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7782:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7782:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7802:2:101",
                                    "type": "",
                                    "value": "29"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7775:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7775:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7775:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7825:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7836:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7821:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7821:18:101"
                                  },
                                  {
                                    "hexValue": "416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7841:31:101",
                                    "type": "",
                                    "value": "Address: call to non-contract"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7814:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7814:59:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7814:59:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7882:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7894:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7905:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7890:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7890:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7882:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7712:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7726:4:101",
                            "type": ""
                          }
                        ],
                        "src": "7561:353:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8093:232:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8110:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8121:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8103:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8103:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8103:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8144:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8155:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8140:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8140:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8160:2:101",
                                    "type": "",
                                    "value": "42"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8133:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8133:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8133:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8183:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8194:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8179:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8179:18:101"
                                  },
                                  {
                                    "hexValue": "5361666545524332303a204552433230206f7065726174696f6e20646964206e",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8199:34:101",
                                    "type": "",
                                    "value": "SafeERC20: ERC20 operation did n"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8172:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8172:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8172:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8254:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8265:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8250:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8250:18:101"
                                  },
                                  {
                                    "hexValue": "6f742073756363656564",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8270:12:101",
                                    "type": "",
                                    "value": "ot succeed"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8243:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8243:40:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8243:40:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8292:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8304:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8315:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8300:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8300:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8292:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_e11ad79d1e4a7f2e5f376964cb99e8e8f7904e3fc16a109f7a7ecb9aa7956dcd__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8070:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8084:4:101",
                            "type": ""
                          }
                        ],
                        "src": "7919:406:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8378:234:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8413:168:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8434:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8437:77:101",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8427:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8427:88:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8427:88:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8535:1:101",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8538:4:101",
                                          "type": "",
                                          "value": "0x11"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8528:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8528:15:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8528:15:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8563:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8566:4:101",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "8556:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8556:15:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8556:15:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8394:1:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "8401:1:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "8397:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8397:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "8391:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8391:13:101"
                              },
                              "nodeType": "YulIf",
                              "src": "8388:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8590:16:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8601:1:101"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8604:1:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8597:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8597:9:101"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "8590:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "8361:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "8364:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "8370:3:101",
                            "type": ""
                          }
                        ],
                        "src": "8330:282:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8670:205:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8680:10:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "8689:1:101",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "8684:1:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8749:63:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "8774:3:101"
                                            },
                                            {
                                              "name": "i",
                                              "nodeType": "YulIdentifier",
                                              "src": "8779:1:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "8770:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8770:11:101"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8793:3:101"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "8798:1:101"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "8789:3:101"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "8789:11:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "8783:5:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8783:18:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8763:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8763:39:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8763:39:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "8710:1:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "8713:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "8707:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8707:13:101"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "8721:19:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "8723:15:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "8732:1:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8735:2:101",
                                          "type": "",
                                          "value": "32"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "8728:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8728:10:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "8723:1:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "8703:3:101",
                                "statements": []
                              },
                              "src": "8699:113:101"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8838:31:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "8851:3:101"
                                            },
                                            {
                                              "name": "length",
                                              "nodeType": "YulIdentifier",
                                              "src": "8856:6:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "8847:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "8847:16:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8865:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8840:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8840:27:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8840:27:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "8827:1:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "8830:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "8824:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8824:13:101"
                              },
                              "nodeType": "YulIf",
                              "src": "8821:2:101"
                            }
                          ]
                        },
                        "name": "copy_memory_to_memory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "src",
                            "nodeType": "YulTypedName",
                            "src": "8648:3:101",
                            "type": ""
                          },
                          {
                            "name": "dst",
                            "nodeType": "YulTypedName",
                            "src": "8653:3:101",
                            "type": ""
                          },
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "8658:6:101",
                            "type": ""
                          }
                        ],
                        "src": "8617:258:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8925:109:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9012:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9021:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9024:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "9014:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9014:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9014:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "8948:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "8959:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "8966:42:101",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "8955:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "8955:54:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "8945:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8945:65:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "8938:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8938:73:101"
                              },
                              "nodeType": "YulIf",
                              "src": "8935:2:101"
                            }
                          ]
                        },
                        "name": "validator_revert_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "8914:5:101",
                            "type": ""
                          }
                        ],
                        "src": "8880:154:101"
                      }
                    ]
                  },
                  "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_$11495t_uint256t_addresst_struct$_DelegateSignature_$13233_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_$11495t_uint256t_addresst_struct$_Signature_$13227_calldata_ptrt_struct$_DelegateSignature_$13233_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_$11825_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_$13227_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": 101,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106100365760003560e01c8063a81bc43b1461003b578063c00dbd5114610050575b600080fd5b61004e6100493660046109cd565b610063565b005b61004e61005e36600461097a565b61022a565b6000856001600160a01b031663c002c4d66040518163ffffffff1660e01b815260040160206040518083038186803b15801561009e57600080fd5b505afa1580156100b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100d6919061093b565b90506000866001600160a01b03166321df0da76040518163ffffffff1660e01b815260040160206040518083038186803b15801561011357600080fd5b505afa158015610127573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061014b919061093b565b90506001600160a01b03811663d505accf333089883561017160408b0160208c01610b06565b604080517fffffffff0000000000000000000000000000000000000000000000000000000060e089901b1681526001600160a01b0396871660048201529590941660248601526044850192909252606484015260ff16608483015287013560a4820152606087013560c482015260e401600060405180830381600087803b1580156101fb57600080fd5b505af115801561020f573d6000803e3d6000fd5b5050505061022187838389898861032a565b50505050505050565b6000846001600160a01b031663c002c4d66040518163ffffffff1660e01b815260040160206040518083038186803b15801561026557600080fd5b505afa158015610279573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061029d919061093b565b90506000856001600160a01b03166321df0da76040518163ffffffff1660e01b815260040160206040518083038186803b1580156102da57600080fd5b505afa1580156102ee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610312919061093b565b905061032286838388888861032a565b505050505050565b610337843385898661041b565b600061034b36839003830160208401610a5b565b90506001600160a01b03861663919974dc8461036a602086018661091e565b845160208601516040808801516060890151915160e088901b7fffffffff000000000000000000000000000000000000000000000000000000001681526001600160a01b039687166004820152959094166024860152604485019290925260ff166064840152608483019190915260a482015260c401600060405180830381600087803b1580156103fa57600080fd5b505af115801561040e573d6000803e3d6000fd5b5050505050505050505050565b6104306001600160a01b0386168530866104c6565b6104446001600160a01b038616838561057d565b6040517fffaad6a50000000000000000000000000000000000000000000000000000000081526001600160a01b0382811660048301526024820185905283169063ffaad6a590604401600060405180830381600087803b1580156104a757600080fd5b505af11580156104bb573d6000803e3d6000fd5b505050505050505050565b6040516001600160a01b03808516602483015283166044820152606481018290526105779085907f23b872dd00000000000000000000000000000000000000000000000000000000906084015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217909152610670565b50505050565b6040517fdd62ed3e0000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b038381166024830152600091839186169063dd62ed3e9060440160206040518083038186803b1580156105e257600080fd5b505afa1580156105f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061061a9190610aed565b6106249190610b70565b6040516001600160a01b0385166024820152604481018290529091506105779085907f095ea7b30000000000000000000000000000000000000000000000000000000090606401610513565b60006106c5826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661075f9092919063ffffffff16565b80519091501561075a57808060200190518101906106e39190610958565b61075a5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b505050565b606061076e8484600085610778565b90505b9392505050565b6060824710156107f05760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610751565b843b61083e5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610751565b600080866001600160a01b0316858760405161085a9190610b21565b60006040518083038185875af1925050503d8060008114610897576040519150601f19603f3d011682016040523d82523d6000602084013e61089c565b606091505b50915091506108ac8282866108b7565b979650505050505050565b606083156108c6575081610771565b8251156108d65782518084602001fd5b8160405162461bcd60e51b81526004016107519190610b3d565b600060a0828403121561090257600080fd5b50919050565b803560ff8116811461091957600080fd5b919050565b60006020828403121561093057600080fd5b813561077181610bdb565b60006020828403121561094d57600080fd5b815161077181610bdb565b60006020828403121561096a57600080fd5b8151801515811461077157600080fd5b600080600080610100858703121561099157600080fd5b843561099c81610bdb565b93506020850135925060408501356109b381610bdb565b91506109c286606087016108f0565b905092959194509250565b60008060008060008587036101808112156109e757600080fd5b86356109f281610bdb565b9550602087013594506040870135610a0981610bdb565b935060807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa082011215610a3b57600080fd5b50606086019150610a4f8760e088016108f0565b90509295509295909350565b600060808284031215610a6d57600080fd5b6040516080810181811067ffffffffffffffff82111715610ab7577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405282358152610aca60208401610908565b602082015260408301356040820152606083013560608201528091505092915050565b600060208284031215610aff57600080fd5b5051919050565b600060208284031215610b1857600080fd5b61077182610908565b60008251610b33818460208701610baf565b9190910192915050565b6020815260008251806020840152610b5c816040850160208701610baf565b601f01601f19169190910160400192915050565b60008219821115610baa577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b500190565b60005b83811015610bca578181015183820152602001610bb2565b838111156105775750506000910152565b6001600160a01b0381168114610bf057600080fd5b5056fea26469706673582212205629d17f2cfa4bc97ce0ccf32b83435150edbc2b8157972defce9d05eb9b274464736f6c63430008060033",
              "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 JUMP 0x29 0xD1 PUSH32 0x2CFA4BC97CE0CCF32B83435150EDBC2B8157972DEFCE9D05EB9B274464736F6C PUSH4 0x43000806 STOP CALLER ",
              "sourceMap": "1109:3988:64:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1688:777;;;;;;:::i;:::-;;:::i;:::-;;2811:468;;;;;;:::i;:::-;;:::i;1688:777::-;1929:15;1947:10;-1:-1:-1;;;;;1947:20:64;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1929:40;;1979:14;1996:10;-1:-1:-1;;;;;1996:19:64;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1979:38;-1:-1:-1;;;;;;2028:27:64;;;2069:10;2101:4;2120:7;2141:25;;2180:18;;;;;;;;:::i;:::-;2212;2028:244;;;;;;;;;;-1:-1:-1;;;;;5471:15:101;;;2028:244:64;;;5453:34:101;5523:15;;;;5503:18;;;5496:43;5555:18;;;5548:34;;;;5598:18;;;5591:34;5674:4;5662:17;5641:19;;;5634:46;2212:18:64;;;5696:19:101;;;5689:35;2244:18:64;;;;5740:19:101;;;5733:35;5364:19;;2028:244:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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:64;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2998:40;;3048:14;3065:10;-1:-1:-1;;;;;3065:19:64;;: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:64;;;4184:3;4201:27;;;;:18;:27;:::i;:::-;4242:18;;4274:11;;;;4299;;;;;4324;;;;4141:204;;;;;;;;;;-1:-1:-1;;;;;6141:15:101;;;4141:204:64;;;6123:34:101;6193:15;;;;6173:18;;;6166:43;6225:18;;;6218:34;;;;6300:4;6288:17;6268:18;;;6261:45;6322:19;;;6315:35;;;;6366:19;;;6359:35;6034:19;;4141:204:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3996:356;3772:580;;;;;;:::o;4735:360::-;4902:63;-1:-1:-1;;;;;4902:31:64;;4934:6;4950:4;4957:7;4902:31;:63::i;:::-;4975:57;-1:-1:-1;;;;;4975:36:64;;5012:10;5024:7;4975:36;:57::i;:::-;5042:46;;;;;-1:-1:-1;;;;;6597:55:101;;;5042:46:64;;;6579:74:101;6669:18;;;6662:34;;;5042:32:64;;;;;6552:18:101;;5042:46:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4735:360;;;;;:::o;912:241:9:-;1077:68;;-1:-1:-1;;;;;4959:15:101;;;1077:68:9;;;4941:34:101;5011:15;;4991:18;;;4984:43;5043:18;;;5036:34;;;1050:96:9;;1070:5;;1100:27;;4853:18:101;;1077:68:9;;;;-1:-1:-1;;1077:68:9;;;;;;;;;;;;;;;;;;;;;;;;;;;1050:19;:96::i;:::-;912:241;;;;:::o;2022:310::-;2171:39;;;;;2195:4;2171:39;;;4581:34:101;-1:-1:-1;;;;;4651:15:101;;;4631:18;;;4624:43;2148:20:9;;2213:5;;2171:15;;;;;4493:18:101;;2171:39:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:47;;;;:::i;:::-;2255:69;;-1:-1:-1;;;;;6597:55:101;;2255:69:9;;;6579:74:101;6669:18;;;6662:34;;;2148:70:9;;-1:-1:-1;2228:97:9;;2248:5;;2278:22;;6552:18:101;;2255:69:9;6534:168:101;3207:706:9;3626:23;3652:69;3680:4;3652:69;;;;;;;;;;;;;;;;;3660:5;-1:-1:-1;;;;;3652:27:9;;;:69;;;;;:::i;:::-;3735:17;;3626:95;;-1:-1:-1;3735:21:9;3731:176;;3830:10;3819:30;;;;;;;;;;;;:::i;:::-;3811:85;;;;-1:-1:-1;;;3811:85:9;;8121:2:101;3811:85:9;;;8103:21:101;8160:2;8140:18;;;8133:30;8199:34;8179:18;;;8172:62;8270:12;8250:18;;;8243:40;8300:19;;3811:85:9;;;;;;;;;3277:636;3207:706;;:::o;3514:223:12:-;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:12;;7356:2:101;4790:81:12;;;7338:21:101;7395:2;7375:18;;;7368:30;7434:34;7414:18;;;7407:62;7505:8;7485:18;;;7478:36;7531:19;;4790:81:12;7328:228:101;4790:81:12;1087:20;;4881:60;;;;-1:-1:-1;;;4881:60:12;;7763:2:101;4881:60:12;;;7745:21:101;7802:2;7782:18;;;7775:30;7841:31;7821:18;;;7814:59;7890:18;;4881:60:12;7735:179:101;4881:60:12;4953:12;4967:23;4994:6;-1:-1:-1;;;;;4994:11:12;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:12:o;7214:692::-;7360:12;7388:7;7384:516;;;-1:-1:-1;7418:10:12;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:12;;;;;;;;:::i;14:166:101:-;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:101;94:86;-1:-1:-1;94:86:101: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:624;1280:6;1288;1296;1304;1357:3;1345:9;1336:7;1332:23;1328:33;1325:2;;;1374:1;1371;1364:12;1325:2;1413:9;1400:23;1432:31;1457:5;1432:31;:::i;:::-;1482:5;-1:-1:-1;1534:2:101;1519:18;;1506:32;;-1:-1:-1;1590:2:101;1575:18;;1562:32;1603:33;1562:32;1603:33;:::i;:::-;1655:7;-1:-1:-1;1681:73:101;1746:7;1741:2;1726:18;;1681:73;:::i;:::-;1671:83;;1315:445;;;;;;;:::o;1765:844::-;1948:6;1956;1964;1972;1980;2024:9;2015:7;2011:23;2054:3;2050:2;2046:12;2043:2;;;2071:1;2068;2061:12;2043:2;2110:9;2097:23;2129:31;2154:5;2129:31;:::i;:::-;2179:5;-1:-1:-1;2231:2:101;2216:18;;2203:32;;-1:-1:-1;2287:2:101;2272:18;;2259:32;2300:33;2259:32;2300:33;:::i;:::-;2352:7;-1:-1:-1;2452:3:101;2383:66;2375:75;;2371:85;2368:2;;;2469:1;2466;2459:12;2368:2;;2507;2496:9;2492:18;2482:28;;2529:74;2595:7;2589:3;2578:9;2574:19;2529:74;:::i;:::-;2519:84;;1991:618;;;;;;;;:::o;2887:799::-;2974:6;3027:3;3015:9;3006:7;3002:23;2998:33;2995:2;;;3044:1;3041;3034:12;2995:2;3077;3071:9;3119:3;3111:6;3107:16;3189:6;3177:10;3174:22;3153:18;3141:10;3138:34;3135:62;3132:2;;;3230:77;3227:1;3220:88;3331:4;3328:1;3321:15;3359:4;3356:1;3349:15;3132:2;3390;3383:22;3429:23;;3414:39;;3486:36;3518:2;3503:18;;3486:36;:::i;:::-;3481:2;3473:6;3469:15;3462:61;3584:2;3573:9;3569:18;3556:32;3551:2;3543:6;3539:15;3532:57;3650:2;3639:9;3635:18;3622:32;3617:2;3609:6;3605:15;3598:57;3674:6;3664:16;;;2985:701;;;;:::o;3691:184::-;3761:6;3814:2;3802:9;3793:7;3789:23;3785:32;3782:2;;;3830:1;3827;3820:12;3782:2;-1:-1:-1;3853:16:101;;3772:103;-1:-1:-1;3772:103:101:o;3880:182::-;3937:6;3990:2;3978:9;3969:7;3965:23;3961:32;3958:2;;;4006:1;4003;3996:12;3958:2;4029:27;4046:9;4029:27;:::i;4067:274::-;4196:3;4234:6;4228:13;4250:53;4296:6;4291:3;4284:4;4276:6;4272:17;4250:53;:::i;:::-;4319:16;;;;;4204:137;-1:-1:-1;;4204:137:101:o;6707:442::-;6856:2;6845:9;6838:21;6819:4;6888:6;6882:13;6931:6;6926:2;6915:9;6911:18;6904:34;6947:66;7006:6;7001:2;6990:9;6986:18;6981:2;6973:6;6969:15;6947:66;:::i;:::-;7065:2;7053:15;-1:-1:-1;;7049:88:101;7034:104;;;;7140:2;7030:113;;6828:321;-1:-1:-1;;6828:321:101:o;8330:282::-;8370:3;8401:1;8397:6;8394:1;8391:13;8388:2;;;8437:77;8434:1;8427:88;8538:4;8535:1;8528:15;8566:4;8563:1;8556:15;8388:2;-1:-1:-1;8597:9:101;;8378:234::o;8617:258::-;8689:1;8699:113;8713:6;8710:1;8707:13;8699:113;;;8789:11;;;8783:18;8770:11;;;8763:39;8735:2;8728:10;8699:113;;;8830:6;8827:1;8824:13;8821:2;;;-1:-1:-1;;8865:1:101;8847:16;;8840:27;8670:205::o;8880:154::-;-1:-1:-1;;;;;8959:5:101;8955:54;8948:5;8945:65;8935:2;;9024:1;9021;9014:12;8935:2;8925: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.\\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\":\"0xa3cc6bff882d541d6642bbff0988fc592ff513a682dde6888ab55eaec29df7a9\",\"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 buffer) 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 of 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 seven year minimum,\\n                of accurate historical lookups with current estimates of 1 new block\\n                every 15 seconds - assuming each block contains 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\":\"0x446d8221329601d40464981a50a0e31f3fd48da0ebf0fea646c5a089ccfbdff4\",\"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.\"}},\"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.\\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\":\"0xa3cc6bff882d541d6642bbff0988fc592ff513a682dde6888ab55eaec29df7a9\",\"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 buffer) 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 of 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 seven year minimum,\\n                of accurate historical lookups with current estimates of 1 new block\\n                every 15 seconds - assuming each block contains 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\":\"0x446d8221329601d40464981a50a0e31f3fd48da0ebf0fea646c5a089ccfbdff4\",\"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": 5205,
                "contract": "@pooltogether/v4-core/contracts/prize-pool/PrizePool.sol:PrizePool",
                "label": "_owner",
                "offset": 0,
                "slot": "0",
                "type": "t_address"
              },
              {
                "astId": 5207,
                "contract": "@pooltogether/v4-core/contracts/prize-pool/PrizePool.sol:PrizePool",
                "label": "_pendingOwner",
                "offset": 0,
                "slot": "1",
                "type": "t_address"
              },
              {
                "astId": 237,
                "contract": "@pooltogether/v4-core/contracts/prize-pool/PrizePool.sol:PrizePool",
                "label": "_status",
                "offset": 0,
                "slot": "2",
                "type": "t_uint256"
              },
              {
                "astId": 13475,
                "contract": "@pooltogether/v4-core/contracts/prize-pool/PrizePool.sol:PrizePool",
                "label": "ticket",
                "offset": 0,
                "slot": "3",
                "type": "t_contract(ITicket)11825"
              },
              {
                "astId": 13478,
                "contract": "@pooltogether/v4-core/contracts/prize-pool/PrizePool.sol:PrizePool",
                "label": "prizeStrategy",
                "offset": 0,
                "slot": "4",
                "type": "t_address"
              },
              {
                "astId": 13481,
                "contract": "@pooltogether/v4-core/contracts/prize-pool/PrizePool.sol:PrizePool",
                "label": "balanceCap",
                "offset": 0,
                "slot": "5",
                "type": "t_uint256"
              },
              {
                "astId": 13484,
                "contract": "@pooltogether/v4-core/contracts/prize-pool/PrizePool.sol:PrizePool",
                "label": "liquidityCap",
                "offset": 0,
                "slot": "6",
                "type": "t_uint256"
              },
              {
                "astId": 13487,
                "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)11825": {
                "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."
              }
            },
            "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": {
                "@_13534": {
                  "entryPoint": null,
                  "id": 13534,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_14603": {
                  "entryPoint": null,
                  "id": 14603,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_245": {
                  "entryPoint": null,
                  "id": 245,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@_5230": {
                  "entryPoint": null,
                  "id": 5230,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setLiquidityCap_14405": {
                  "entryPoint": 654,
                  "id": 14405,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setOwner_5327": {
                  "entryPoint": 574,
                  "id": 5327,
                  "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_$17542_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:101",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:101",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "103:170:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "149:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "158:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "161:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "151:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "151:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "151:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "124:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "133:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "120:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "120:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "145:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "116:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "116:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "113:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "174:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "193:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "187:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "187:16:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "178:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "237:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "212:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "212:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "212:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "252:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "262:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "252:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address_payable_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "69:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "80:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "92:6:101",
                            "type": ""
                          }
                        ],
                        "src": "14:259:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "398:287:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "444:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "453:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "456:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "446:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "446:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "446:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "419:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "428:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "415:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "415:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "440:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "411:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "411:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "408:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "469:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "488:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "482:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "482:16:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "473:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "532:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "507:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "507:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "507:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "547:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "557:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "547:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "571:40:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "596:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "607:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "592:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "592:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "586:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "586:25:101"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "575:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "645:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "620:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "620:33:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "620:33:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "662:17:101",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "672:7:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "662:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_contract$_IYieldSource_$17542_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "356:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "367:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "379:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "387:6:101",
                            "type": ""
                          }
                        ],
                        "src": "278:407:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "807:89:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "824:3:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "833:6:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "845:3:101",
                                            "type": "",
                                            "value": "224"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "850:10:101",
                                            "type": "",
                                            "value": "0xffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "shl",
                                          "nodeType": "YulIdentifier",
                                          "src": "841:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "841:20:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "829:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "829:33:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "817:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "817:46:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "817:46:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "872:18:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "883:3:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "888:1:101",
                                    "type": "",
                                    "value": "4"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "879:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "879:11:101"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "872:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_packed_t_bytes4__to_t_bytes4__nonPadded_inplace_fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "783:3:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "788:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "799:3:101",
                            "type": ""
                          }
                        ],
                        "src": "690:206:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1038:289:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1048:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "1068:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1062:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1062:13:101"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "1052:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1084:10:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "1093:1:101",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "1088:1:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1155:77:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "pos",
                                              "nodeType": "YulIdentifier",
                                              "src": "1180:3:101"
                                            },
                                            {
                                              "name": "i",
                                              "nodeType": "YulIdentifier",
                                              "src": "1185:1:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "1176:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "1176:11:101"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "arguments": [
                                                    {
                                                      "name": "value0",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "1203:6:101"
                                                    },
                                                    {
                                                      "name": "i",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "1211:1:101"
                                                    }
                                                  ],
                                                  "functionName": {
                                                    "name": "add",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "1199:3:101"
                                                  },
                                                  "nodeType": "YulFunctionCall",
                                                  "src": "1199:14:101"
                                                },
                                                {
                                                  "kind": "number",
                                                  "nodeType": "YulLiteral",
                                                  "src": "1215:4:101",
                                                  "type": "",
                                                  "value": "0x20"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "1195:3:101"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "1195:25:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "1189:5:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "1189:32:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1169:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1169:53:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1169:53:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "1114:1:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1117:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1111:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1111:13:101"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "1125:21:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "1127:17:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "1136:1:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1139:4:101",
                                          "type": "",
                                          "value": "0x20"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "1132:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1132:12:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "1127:1:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "1107:3:101",
                                "statements": []
                              },
                              "src": "1103:129:101"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1258:31:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "pos",
                                              "nodeType": "YulIdentifier",
                                              "src": "1271:3:101"
                                            },
                                            {
                                              "name": "length",
                                              "nodeType": "YulIdentifier",
                                              "src": "1276:6:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "1267:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "1267:16:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1285:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1260:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1260:27:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1260:27:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "1247:1:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1250:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1244:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1244:13:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1241:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1298:23:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "1309:3:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1314:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1305:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1305:16:101"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "1298:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "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:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1019:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "1030:3:101",
                            "type": ""
                          }
                        ],
                        "src": "901:426:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1506:231:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1523:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1534:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1516:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1516:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1516:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1557:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1568:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1553:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1553:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1573:2:101",
                                    "type": "",
                                    "value": "41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1546:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1546:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1546:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1596:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1607:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1592:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1592:18:101"
                                  },
                                  {
                                    "hexValue": "5969656c64536f757263655072697a65506f6f6c2f696e76616c69642d796965",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "1612:34:101",
                                    "type": "",
                                    "value": "YieldSourcePrizePool/invalid-yie"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1585:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1585:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1585:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1667:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1678:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1663:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1663:18:101"
                                  },
                                  {
                                    "hexValue": "6c642d736f75726365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "1683:11:101",
                                    "type": "",
                                    "value": "ld-source"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1656:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1656:39:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1656:39:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1704:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1716:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1727:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1712:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1712:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1704:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_11a209ccfa541311d13853078244f17ddd8fdab4bc6a8bba4b0700d66b1422e4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1483:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1497:4:101",
                            "type": ""
                          }
                        ],
                        "src": "1332:405:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1916:240:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1933:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1944:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1926:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1926:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1926:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1967:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1978:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1963:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1963:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1983:2:101",
                                    "type": "",
                                    "value": "50"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1956:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1956:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1956:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2006:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2017:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2002:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2002:18:101"
                                  },
                                  {
                                    "hexValue": "5969656c64536f757263655072697a65506f6f6c2f7969656c642d736f757263",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2022:34:101",
                                    "type": "",
                                    "value": "YieldSourcePrizePool/yield-sourc"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1995:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1995:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1995:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2077:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2088:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2073:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2073:18:101"
                                  },
                                  {
                                    "hexValue": "652d6e6f742d7a65726f2d61646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2093:20:101",
                                    "type": "",
                                    "value": "e-not-zero-address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2066:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2066:48:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2066:48:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2123:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2135:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2146:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2131:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2131:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2123:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7dbbc08f44bcdf3b7293b9e33119edb15fece3a9f724a4cac7c7d47b1a9e7221__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1893:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1907:4:101",
                            "type": ""
                          }
                        ],
                        "src": "1742:414:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2262:76:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2272:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2284:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2295:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2280:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2280:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2272:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2314:9:101"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "2325:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2307:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2307:25:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2307:25:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2231:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2242:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2253:4:101",
                            "type": ""
                          }
                        ],
                        "src": "2161:177:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2388:86:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2452:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2461:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2464:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2454:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2454:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2454:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2411:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "2422:5:101"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "2437:3:101",
                                                    "type": "",
                                                    "value": "160"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "2442:1:101",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "2433:3:101"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "2433:11:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "2446:1:101",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "2429:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "2429:19:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "2418:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2418:31:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "2408:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2408:42:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "2401:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2401:50:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2398:2:101"
                            }
                          ]
                        },
                        "name": "validator_revert_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "2377:5:101",
                            "type": ""
                          }
                        ],
                        "src": "2343:131:101"
                      }
                    ]
                  },
                  "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_$17542_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": 101,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "60a06040523480156200001157600080fd5b5060405162002bcc38038062002bcc8339810160408190526200003491620002f0565b818062000041816200023e565b506001600255620000546000196200028e565b506001600160a01b038116620000cc5760405162461bcd60e51b815260206004820152603260248201527f5969656c64536f757263655072697a65506f6f6c2f7969656c642d736f757263604482015271652d6e6f742d7a65726f2d6164647265737360701b60648201526084015b60405180910390fd5b606081901b6001600160601b03191660805260405163c89039c560e01b602082015260009081906001600160a01b0384169060240160408051601f19818403018152908290526200011d916200032f565b600060405180830381855afa9150503d80600081146200015a576040519150601f19603f3d011682016040523d82523d6000602084013e6200015f565b606091505b509150915060008082511115620001895781806020019051810190620001869190620002c9565b90505b8280156200019f57506001600160a01b03811615155b620001ff5760405162461bcd60e51b815260206004820152602960248201527f5969656c64536f757263655072697a65506f6f6c2f696e76616c69642d7969656044820152686c642d736f7572636560b81b6064820152608401620000c3565b6040516001600160a01b038516907ff40fcec21964ffb566044d083b4073f29f7f7929110ea19e1b3ebe375d89055e90600090a2505050505062000386565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60068190556040518181527f3ff20538222f568f27ff436c0c49dfd3e48d5b8f86533a3f759dc1c7089775ab9060200160405180910390a150565b600060208284031215620002dc57600080fd5b8151620002e9816200036d565b9392505050565b600080604083850312156200030457600080fd5b825162000311816200036d565b602084015190925062000324816200036d565b809150509250929050565b6000825160005b8181101562000352576020818601810151858301520162000336565b8181111562000362576000828501525b509190910192915050565b6001600160a01b03811681146200038357600080fd5b50565b60805160601c6127fd620003cf600039600081816103d10152818161177301528181611876015281816119a001528181611a0d01528181611c650152611dc301526127fd6000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c80637b99adb11161010f578063c002c4d6116100a2578063e6d8a94b11610071578063e6d8a94b14610441578063f2fde38b14610449578063ffa1ad741461045c578063ffaad6a5146104a557600080fd5b8063c002c4d6146103fb578063d7a169eb1461040c578063d804abaf1461041f578063e30c39781461043057600080fd5b8063aec9c307116100de578063aec9c307146103b1578063b15a49c1146103c4578063b2470e5c146103cc578063b69ef8a8146103f357600080fd5b80637b99adb1146103675780638da5cb5b1461037a57806391ca480e1461038b5780639470b0bd1461039e57600080fd5b806333e5761f11610187578063630665b411610156578063630665b4146103315780636a3fd4f914610339578063715018a61461034c57806378b3d3271461035457600080fd5b806333e5761f1461030657806335faa4161461030e5780634e71e0c8146103165780635d8a776e1461031e57600080fd5b80631c65c78b116101c35780631c65c78b1461029d57806321df0da7146102c05780632b0ab144146102e05780632f7627e3146102f357600080fd5b806308234319146101f557806313f55e391461020c578063150b7a021461022157806316960d551461028a575b600080fd5b6005545b6040519081526020015b60405180910390f35b61021f61021a366004612480565b6104b8565b005b61025961022f3660046124c1565b7f150b7a020000000000000000000000000000000000000000000000000000000095945050505050565b6040517fffffffff000000000000000000000000000000000000000000000000000000009091168152602001610203565b61021f6102983660046123eb565b61057a565b6102b06102ab3660046123b1565b610844565b6040519015158152602001610203565b6102c86109eb565b6040516001600160a01b039091168152602001610203565b61021f6102ee366004612480565b6109fa565b61021f6103013660046125f0565b610aa9565b6101f9610c06565b61021f610c10565b61021f610d98565b61021f61032c366004612560565b610e26565b6007546101f9565b6102b06103473660046123b1565b610f4c565b61021f610f5d565b6102b06103623660046123b1565b610fd2565b61021f610375366004612629565b610feb565b6000546001600160a01b03166102c8565b61021f6103993660046123b1565b611060565b6101f96103ac366004612560565b6110d2565b6102b06103bf366004612629565b611233565b6006546101f9565b6102c87f000000000000000000000000000000000000000000000000000000000000000081565b6101f96112a7565b6003546001600160a01b03166102c8565b61021f61041a36600461258c565b6112b1565b6004546001600160a01b03166102c8565b6001546001600160a01b03166102c8565b6101f96113f1565b61021f6104573660046123b1565b6114ef565b6104986040518060400160405280600581526020017f342e302e3000000000000000000000000000000000000000000000000000000081525081565b60405161020391906126e7565b61021f6104b3366004612560565b61162b565b6004546001600160a01b031633146105175760405162461bcd60e51b815260206004820152601c60248201527f5072697a65506f6f6c2f6f6e6c792d7072697a6553747261746567790000000060448201526064015b60405180910390fd5b6105228383836116ec565b1561057557816001600160a01b0316836001600160a01b03167fb0bac59718cd343c80a813518afcf36846cfcfe6d56e2b3cab9bd49f5f9b251c8360405161056c91815260200190565b60405180910390a35b505050565b6004546001600160a01b031633146105d45760405162461bcd60e51b815260206004820152601c60248201527f5072697a65506f6f6c2f6f6e6c792d7072697a65537472617465677900000000604482015260640161050e565b6105dd8361176f565b6106295760405162461bcd60e51b815260206004820181905260248201527f5072697a65506f6f6c2f696e76616c69642d65787465726e616c2d746f6b656e604482015260640161050e565b806106335761083e565b60008167ffffffffffffffff81111561064e5761064e61279c565b604051908082528060200260200182016040528015610677578160200160208202803683370190505b5090506000805b838110156107e857856001600160a01b03166342842e0e30898888868181106106a9576106a9612786565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e088901b1681526001600160a01b03958616600482015294909316602485015250602090910201356044820152606401600060405180830381600087803b15801561071857600080fd5b505af1925050508015610729575060015b61079a573d808015610757576040519150601f19603f3d011682016040523d82523d6000602084013e61075c565b606091505b507f17e975018310f88872b58d4d8263adca83cf5c1893496ea2a86923dab15276ad8160405161078c91906126e7565b60405180910390a1506107d6565b600191508484828181106107b0576107b0612786565b905060200201358382815181106107c9576107c9612786565b6020026020010181815250505b806107e081612755565b91505061067e565b50801561083b57846001600160a01b0316866001600160a01b03167f69c2de32bc4d47f488e72626a6cfdee85089342e52675e7de79c4b417623960c8460405161083291906126a3565b60405180910390a35b50505b50505050565b6000336108596000546001600160a01b031690565b6001600160a01b0316146108af5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161050e565b6001600160a01b03821661092b5760405162461bcd60e51b815260206004820152602160248201527f5072697a65506f6f6c2f7469636b65742d6e6f742d7a65726f2d61646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161050e565b6003546001600160a01b0316156109845760405162461bcd60e51b815260206004820152601c60248201527f5072697a65506f6f6c2f7469636b65742d616c72656164792d73657400000000604482015260640161050e565b6003805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0384169081179091556040517f9f9d59c87dbdc6ca82d9e5924782004b9aebc366c505c0ccab12f61e2a9f332190600090a26109e3600019611836565b506001919050565b60006109f5611872565b905090565b6004546001600160a01b03163314610a545760405162461bcd60e51b815260206004820152601c60248201527f5072697a65506f6f6c2f6f6e6c792d7072697a65537472617465677900000000604482015260640161050e565b610a5f8383836116ec565b1561057557816001600160a01b0316836001600160a01b03167fc65f48aca3b7a99b7443d04b8ffbb073156179bc628dc3f7def50477489734698360405161056c91815260200190565b33610abc6000546001600160a01b031690565b6001600160a01b031614610b125760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161050e565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a082319060240160206040518083038186803b158015610b5457600080fd5b505afa158015610b68573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b8c9190612642565b1115610c02576040517f5c19a95c0000000000000000000000000000000000000000000000000000000081526001600160a01b038281166004830152831690635c19a95c90602401600060405180830381600087803b158015610bee57600080fd5b505af115801561083b573d6000803e3d6000fd5b5050565b60006109f5611905565b600280541415610c625760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161050e565b6002805533610c796000546001600160a01b031690565b6001600160a01b031614610ccf5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161050e565b6000610cd9611872565b6040516370a0823160e01b81523060048201526001600160a01b0391909116906370a082319060240160206040518083038186803b158015610d1a57600080fd5b505afa158015610d2e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d529190612642565b9050610d5d8161199b565b6040518181527f7f221332ee403570bf4d61630b58189ea566ff1635269001e9df6a890f413dd89060200160405180910390a1506001600255565b6001546001600160a01b03163314610df25760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e657200604482015260640161050e565b600154610e07906001600160a01b0316611a74565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b6004546001600160a01b03163314610e805760405162461bcd60e51b815260206004820152601c60248201527f5072697a65506f6f6c2f6f6e6c792d7072697a65537472617465677900000000604482015260640161050e565b80610e89575050565b60075480821115610edc5760405162461bcd60e51b815260206004820152601d60248201527f5072697a65506f6f6c2f61776172642d657863656564732d617661696c000000604482015260640161050e565b8181036007556003546001600160a01b0316610ef9848483611ad1565b806001600160a01b0316846001600160a01b03167fe2554529d99ab7a67db6b4cea2b32c7d55ae325f958861e05f304fdded867e3185604051610f3e91815260200190565b60405180910390a350505050565b6000610f578261176f565b92915050565b33610f706000546001600160a01b031690565b6001600160a01b031614610fc65760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161050e565b610fd06000611a74565b565b6003546000906001600160a01b03808416911614610f57565b33610ffe6000546001600160a01b031690565b6001600160a01b0316146110545760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161050e565b61105d81611b51565b50565b336110736000546001600160a01b031690565b6001600160a01b0316146110c95760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161050e565b61105d81611b86565b60006002805414156111265760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161050e565b600280556003546040517f631b5dfb0000000000000000000000000000000000000000000000000000000081523360048201526001600160a01b0385811660248301526044820185905290911690819063631b5dfb90606401600060405180830381600087803b15801561119957600080fd5b505af11580156111ad573d6000803e3d6000fd5b5050505060006111bc84611c33565b90506111db85826111cb611872565b6001600160a01b03169190611ce9565b60408051858152602081018390526001600160a01b03808516929088169133917fe56473357106d0cdea364a045d5ab7abb44b6bd1c0f092ba3734983a43459f8f910160405180910390a46001600255949350505050565b6000336112486000546001600160a01b031690565b6001600160a01b03161461129e5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161050e565b6109e382611836565b60006109f5611d92565b6002805414156113035760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161050e565b600280558161131181611e23565b61135d5760405162461bcd60e51b815260206004820152601f60248201527f5072697a65506f6f6c2f657863656564732d6c69717569646974792d63617000604482015260640161050e565b611368338585611e59565b6003546040517f33e39b610000000000000000000000000000000000000000000000000000000081523360048201526001600160a01b038481166024830152909116906333e39b6190604401600060405180830381600087803b1580156113ce57600080fd5b505af11580156113e2573d6000803e3d6000fd5b50506001600255505050505050565b60006002805414156114455760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161050e565b600280556000611453611905565b6007549091506000611463611d92565b9050600083821161147557600061147f565b61147f8483612712565b9050600083821161149157600061149b565b61149b8483612712565b905080156114e157600782905560405181815291935083917fce2b6e507c7ca1a20ce136810f524eefc19ba4c7e4866eb6cc0cba76e778d4be9060200160405180910390a15b505060016002555092915050565b336115026000546001600160a01b031690565b6001600160a01b0316146115585760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161050e565b6001600160a01b0381166115d45760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161050e565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b60028054141561167d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161050e565b600280558061168b81611e23565b6116d75760405162461bcd60e51b815260206004820152601f60248201527f5072697a65506f6f6c2f657863656564732d6c69717569646974792d63617000604482015260640161050e565b6116e2338484611e59565b5050600160025550565b60006116f78361176f565b6117435760405162461bcd60e51b815260206004820181905260248201527f5072697a65506f6f6c2f696e76616c69642d65787465726e616c2d746f6b656e604482015260640161050e565b8161175057506000611768565b6117646001600160a01b0384168584611ce9565b5060015b9392505050565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03838116908216148015906117685750806001600160a01b031663c89039c56040518163ffffffff1660e01b815260040160206040518083038186803b1580156117e257600080fd5b505afa1580156117f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061181a91906123ce565b6001600160a01b0316836001600160a01b031614159392505050565b60058190556040518181527f439b9ac8f2088164a8d80921758209db1623cf1a37a48913679ef3a43d7a5cf7906020015b60405180910390a150565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c89039c56040518163ffffffff1660e01b815260040160206040518083038186803b1580156118cd57600080fd5b505afa1580156118e1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109f591906123ce565b600354604080517f18160ddd00000000000000000000000000000000000000000000000000000000815290516000926001600160a01b0316916318160ddd916004808301926020929190829003018186803b15801561196357600080fd5b505afa158015611977573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109f59190612642565b6119d87f0000000000000000000000000000000000000000000000000000000000000000826119c8611872565b6001600160a01b03169190611f4b565b6040517f87a6eeef000000000000000000000000000000000000000000000000000000008152600481018290523060248201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906387a6eeef90604401600060405180830381600087803b158015611a5957600080fd5b505af1158015611a6d573d6000803e3d6000fd5b5050505050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040517f5d7b07580000000000000000000000000000000000000000000000000000000081526001600160a01b03848116600483015260248201849052821690635d7b075890604401600060405180830381600087803b158015611b3457600080fd5b505af1158015611b48573d6000803e3d6000fd5b50505050505050565b60068190556040518181527f3ff20538222f568f27ff436c0c49dfd3e48d5b8f86533a3f759dc1c7089775ab90602001611867565b6001600160a01b038116611bdc5760405162461bcd60e51b815260206004820181905260248201527f5072697a65506f6f6c2f7072697a6553747261746567792d6e6f742d7a65726f604482015260640161050e565b6004805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f7f58dc86bc2e435cb77ca0edb1df55e25f90caf2d6bd866971715437d456a21290600090a250565b6040517f013054c2000000000000000000000000000000000000000000000000000000008152600481018290526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063013054c290602401602060405180830381600087803b158015611cb157600080fd5b505af1158015611cc5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f579190612642565b6040516001600160a01b0383166024820152604481018290526105759084907fa9059cbb00000000000000000000000000000000000000000000000000000000906064015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff000000000000000000000000000000000000000000000000000000009093169290921790915261203e565b6040517fb99152d00000000000000000000000000000000000000000000000000000000081523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063b99152d090602401602060405180830381600087803b158015611e0f57600080fd5b505af1158015611977573d6000803e3d6000fd5b600654600090600019811415611e3c5750600192915050565b8083611e46611905565b611e5091906126fa565b11159392505050565b611e638282612123565b611eaf5760405162461bcd60e51b815260206004820152601d60248201527f5072697a65506f6f6c2f657863656564732d62616c616e63652d636170000000604482015260640161050e565b6003546001600160a01b0316611eda843084611ec9611872565b6001600160a01b03169291906121d1565b611ee5838383611ad1565b611eee8261199b565b806001600160a01b0316836001600160a01b0316856001600160a01b03167f4174a9435a04d04d274c76779cad136a41fde6937c56241c09ab9d3c7064a1a985604051611f3d91815260200190565b60405180910390a450505050565b6040517fdd62ed3e0000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b038381166024830152600091839186169063dd62ed3e9060440160206040518083038186803b158015611fb057600080fd5b505afa158015611fc4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fe89190612642565b611ff291906126fa565b6040516001600160a01b03851660248201526044810182905290915061083e9085907f095ea7b30000000000000000000000000000000000000000000000000000000090606401611d2e565b6000612093826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166122229092919063ffffffff16565b80519091501561057557808060200190518101906120b191906125ce565b6105755760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f74207375636365656400000000000000000000000000000000000000000000606482015260840161050e565b60055460009060001981141561213d576001915050610f57565b6003546040516370a0823160e01b81526001600160a01b038681166004830152839286929116906370a082319060240160206040518083038186803b15801561218557600080fd5b505afa158015612199573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121bd9190612642565b6121c791906126fa565b1115949350505050565b6040516001600160a01b038085166024830152831660448201526064810182905261083e9085907f23b872dd0000000000000000000000000000000000000000000000000000000090608401611d2e565b60606122318484600085612239565b949350505050565b6060824710156122b15760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c0000000000000000000000000000000000000000000000000000606482015260840161050e565b843b6122ff5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161050e565b600080866001600160a01b0316858760405161231b9190612687565b60006040518083038185875af1925050503d8060008114612358576040519150601f19603f3d011682016040523d82523d6000602084013e61235d565b606091505b509150915061236d828286612378565b979650505050505050565b60608315612387575081611768565b8251156123975782518084602001fd5b8160405162461bcd60e51b815260040161050e91906126e7565b6000602082840312156123c357600080fd5b8135611768816127b2565b6000602082840312156123e057600080fd5b8151611768816127b2565b6000806000806060858703121561240157600080fd5b843561240c816127b2565b9350602085013561241c816127b2565b9250604085013567ffffffffffffffff8082111561243957600080fd5b818701915087601f83011261244d57600080fd5b81358181111561245c57600080fd5b8860208260051b850101111561247157600080fd5b95989497505060200194505050565b60008060006060848603121561249557600080fd5b83356124a0816127b2565b925060208401356124b0816127b2565b929592945050506040919091013590565b6000806000806000608086880312156124d957600080fd5b85356124e4816127b2565b945060208601356124f4816127b2565b935060408601359250606086013567ffffffffffffffff8082111561251857600080fd5b818801915088601f83011261252c57600080fd5b81358181111561253b57600080fd5b89602082850101111561254d57600080fd5b9699959850939650602001949392505050565b6000806040838503121561257357600080fd5b823561257e816127b2565b946020939093013593505050565b6000806000606084860312156125a157600080fd5b83356125ac816127b2565b92506020840135915060408401356125c3816127b2565b809150509250925092565b6000602082840312156125e057600080fd5b8151801515811461176857600080fd5b6000806040838503121561260357600080fd5b823561260e816127b2565b9150602083013561261e816127b2565b809150509250929050565b60006020828403121561263b57600080fd5b5035919050565b60006020828403121561265457600080fd5b5051919050565b60008151808452612673816020860160208601612729565b601f01601f19169290920160200192915050565b60008251612699818460208701612729565b9190910192915050565b6020808252825182820181905260009190848201906040850190845b818110156126db578351835292840192918401916001016126bf565b50909695505050505050565b602081526000611768602083018461265b565b6000821982111561270d5761270d612770565b500190565b60008282101561272457612724612770565b500390565b60005b8381101561274457818101518382015260200161272c565b8381111561083e5750506000910152565b600060001982141561276957612769612770565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461105d57600080fdfea26469706673582212201eda748ddcd0d2c41d6df51ad43fd4dd0f21b5f0febbaeb98b7ade4a382f4af964736f6c63430008060033",
              "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 0x1E 0xDA PUSH21 0x8DDCD0D2C41D6DF51AD43FD4DD0F21B5F0FEBBAEB9 DUP12 PUSH27 0xDE4A382F4AF964736F6C6343000806003300000000000000000000 ",
              "sourceMap": "641:3753:66:-:0;;;1399:772;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1464:6;;1648:24:33;1464:6:66;1648:9:33;:24::i;:::-;-1:-1:-1;1701:1:3;1806:7;:22;2625:35:65::2;-1:-1:-1::0;;2625:16:65::2;:35::i;:::-;-1:-1:-1::0;;;;;;1503:35:66;::::1;1482:132;;;::::0;-1:-1:-1;;;1482:132:66;;1944:2:101;1482:132:66::1;::::0;::::1;1926:21:101::0;1983:2;1963:18;;;1956:30;2022:34;2002:18;;;1995:62;-1:-1:-1;;;2073:18:101;;;2066:48;2131:19;;1482:132:66::1;;;;;;;;;1625:26;::::0;;;-1:-1:-1;;;;;;1625:26:66;::::1;::::0;1813:52:::1;::::0;-1:-1:-1;;;1813:52:66::1;::::0;::::1;817:46:101::0;1730:14:66::1;::::0;;;-1:-1:-1;;;;;1625:26:66;::::1;::::0;879:11:101;;1813:52:66::1;::::0;;-1:-1:-1;;1813:52:66;;::::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:66;::::1;::::0;::::1;2028:43;2020:97;;;::::0;-1:-1:-1;;;2020:97:66;;1534:2:101;2020:97:66::1;::::0;::::1;1516:21:101::0;1573:2;1553:18;;;1546:30;1612:34;1592:18;;;1585:62;-1:-1:-1;;;1663:18:101;;;1656:39;1712:19;;2020:97:66::1;1506:231:101::0;2020:97:66::1;2133:31;::::0;-1:-1:-1;;;;;2133:31:66;::::1;::::0;::::1;::::0;;;::::1;1472:699;;;1399:772:::0;;641:3753;;3470:174:33;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:33;;;-1:-1:-1;;;;;;3562:18:33;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;13592:148:65:-;13660:12;:28;;;13703:30;;2307:25:101;;;13703:30:65;;2295:2:101;2280:18;13703:30:65;;;;;;;13592:148;:::o;14:259:101:-;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:101: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:101;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:101;;;;;1038:289;-1:-1:-1;;1038:289:101:o;2343:131::-;-1:-1:-1;;;;;2418:31:101;;2408:42;;2398:2;;2464:1;2461;2454:12;2398:2;2388:86;:::o;:::-;641:3753:66;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@VERSION_13471": {
                  "entryPoint": null,
                  "id": 13471,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@_balance_14676": {
                  "entryPoint": 7570,
                  "id": 14676,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_callOptionalReturn_1343": {
                  "entryPoint": 8254,
                  "id": 1343,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_canAddLiquidity_14360": {
                  "entryPoint": 7715,
                  "id": 14360,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_canAwardExternal_14660": {
                  "entryPoint": 5999,
                  "id": 14660,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_canDeposit_14329": {
                  "entryPoint": 8483,
                  "id": 14329,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@_depositTo_13823": {
                  "entryPoint": 7769,
                  "id": 13823,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_isControlled_14375": {
                  "entryPoint": null,
                  "id": 14375,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_mint_14294": {
                  "entryPoint": 6865,
                  "id": 14294,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_redeem_14734": {
                  "entryPoint": 7219,
                  "id": 14734,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_setBalanceCap_14390": {
                  "entryPoint": 6198,
                  "id": 14390,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setLiquidityCap_14405": {
                  "entryPoint": 6993,
                  "id": 14405,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setOwner_5327": {
                  "entryPoint": 6772,
                  "id": 5327,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setPrizeStrategy_14430": {
                  "entryPoint": 7046,
                  "id": 14430,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_supply_14719": {
                  "entryPoint": 6555,
                  "id": 14719,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_ticketTotalSupply_14441": {
                  "entryPoint": 6405,
                  "id": 14441,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_token_14691": {
                  "entryPoint": 6258,
                  "id": 14691,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_transferOut_14275": {
                  "entryPoint": 5868,
                  "id": 14275,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@awardBalance_13555": {
                  "entryPoint": null,
                  "id": 13555,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@awardExternalERC20_13982": {
                  "entryPoint": 2554,
                  "id": 13982,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@awardExternalERC721_14085": {
                  "entryPoint": 1402,
                  "id": 14085,
                  "parameterSlots": 4,
                  "returnSlots": 0
                },
                "@award_13928": {
                  "entryPoint": 3622,
                  "id": 13928,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@balance_13545": {
                  "entryPoint": 4775,
                  "id": 13545,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@canAwardExternal_13569": {
                  "entryPoint": 3916,
                  "id": 13569,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@captureAwardBalance_13717": {
                  "entryPoint": 5105,
                  "id": 13717,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@claimOwnership_5307": {
                  "entryPoint": 3480,
                  "id": 5307,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@compLikeDelegate_14218": {
                  "entryPoint": 2729,
                  "id": 14218,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@depositToAndDelegate_13771": {
                  "entryPoint": 4785,
                  "id": 13771,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@depositTo_13739": {
                  "entryPoint": 5675,
                  "id": 13739,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@functionCallWithValue_1639": {
                  "entryPoint": 8761,
                  "id": 1639,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "@functionCall_1569": {
                  "entryPoint": 8738,
                  "id": 1569,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@getAccountedBalance_13595": {
                  "entryPoint": 3078,
                  "id": 13595,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getBalanceCap_13605": {
                  "entryPoint": null,
                  "id": 13605,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getLiquidityCap_13615": {
                  "entryPoint": null,
                  "id": 13615,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getPrizeStrategy_13636": {
                  "entryPoint": null,
                  "id": 13636,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getTicket_13626": {
                  "entryPoint": null,
                  "id": 13626,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getToken_13650": {
                  "entryPoint": 2539,
                  "id": 13650,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@isContract_1498": {
                  "entryPoint": null,
                  "id": 1498,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@isControlled_13584": {
                  "entryPoint": 4050,
                  "id": 13584,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@onERC721Received_14238": {
                  "entryPoint": null,
                  "id": 14238,
                  "parameterSlots": 5,
                  "returnSlots": 1
                },
                "@owner_5239": {
                  "entryPoint": null,
                  "id": 5239,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@pendingOwner_5248": {
                  "entryPoint": null,
                  "id": 5248,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@renounceOwnership_5262": {
                  "entryPoint": 3933,
                  "id": 5262,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@safeIncreaseAllowance_1257": {
                  "entryPoint": 8011,
                  "id": 1257,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@safeTransferFrom_1177": {
                  "entryPoint": 8657,
                  "id": 1177,
                  "parameterSlots": 4,
                  "returnSlots": 0
                },
                "@safeTransfer_1151": {
                  "entryPoint": 7401,
                  "id": 1151,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@setBalanceCap_14103": {
                  "entryPoint": 4659,
                  "id": 14103,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@setLiquidityCap_14117": {
                  "entryPoint": 4075,
                  "id": 14117,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@setPrizeStrategy_14188": {
                  "entryPoint": 4192,
                  "id": 14188,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@setTicket_14174": {
                  "entryPoint": 2116,
                  "id": 14174,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@sweep_14631": {
                  "entryPoint": 3088,
                  "id": 14631,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@transferExternalERC20_13955": {
                  "entryPoint": 1208,
                  "id": 13955,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@transferOwnership_5289": {
                  "entryPoint": 5359,
                  "id": 5289,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@verifyCallResult_1774": {
                  "entryPoint": 9080,
                  "id": 1774,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@withdrawFrom_13875": {
                  "entryPoint": 4306,
                  "id": 13875,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@yieldSource_14508": {
                  "entryPoint": null,
                  "id": 14508,
                  "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_$10642t_address": {
                  "entryPoint": 9712,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_contract$_ITicket_$11825": {
                  "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_$11825__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_IYieldSource_$17542__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:16590:101",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:101",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "84:177:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "130:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "139:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "142:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "132:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "132:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "132:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "105:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "114:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "101:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "101:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "126:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "97:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "97:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "94:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "155:36:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "181:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "168:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "168:23:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "159:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "225:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "200:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "200:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "200:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "240:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "250:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "240:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "50:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "61:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "73:6:101",
                            "type": ""
                          }
                        ],
                        "src": "14:247:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "347:170:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "393:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "402:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "405:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "395:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "395:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "395:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "368:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "377:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "364:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "364:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "389:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "360:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "360:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "357:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "418:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "437:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "431:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "431:16:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "422:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "481:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "456:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "456:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "456:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "496:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "506:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "496:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "313:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "324:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "336:6:101",
                            "type": ""
                          }
                        ],
                        "src": "266:251:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "661:752:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "707:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "716:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "719:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "709:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "709:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "709:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "682:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "691:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "678:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "678:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "703:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "674:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "674:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "671:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "732:36:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "758:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "745:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "745:23:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "736:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "802:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "777:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "777:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "777:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "817:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "827:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "817:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "841:47:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "873:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "884:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "869:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "869:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "856:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "856:32:101"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "845:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "922:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "897:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "897:33:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "897:33:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "939:17:101",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "949:7:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "939:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "965:46:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "996:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1007:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "992:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "992:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "979:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "979:32:101"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "969:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1020:28:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "1030:18:101",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1024:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1075:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1084:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1087:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1077:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1077:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1077:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1063:6:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1071:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1060:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1060:14:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1057:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1100:32:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1114:9:101"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1125:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1110:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1110:22:101"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "1104:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1180:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1189:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1192:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1182:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1182:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1182:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "1159:2:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1163:4:101",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1155:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1155:13:101"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1170:7:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1151:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1151:27:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1144:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1144:35:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1141:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1205:30:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "1232:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1219:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1219:16:101"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "1209:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1262:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1271:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1274:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1264:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1264:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1264:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1250:6:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1258:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1247:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1247:14:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1244:2:101"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1336:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1345:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1348:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1338:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1338:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1338:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "1301:2:101"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1309:1:101",
                                                "type": "",
                                                "value": "5"
                                              },
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "1312:6:101"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "1305:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1305:14:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1297:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1297:23:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1322:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1293:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1293:32:101"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1327:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1290:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1290:45:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1287:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1361:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "1375:2:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1379:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1371:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1371:11:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "1361:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1391:16:101",
                              "value": {
                                "name": "length",
                                "nodeType": "YulIdentifier",
                                "src": "1401:6:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "1391:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_addresst_array$_t_uint256_$dyn_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "603:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "614:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "626:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "634:6:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "642:6:101",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "650:6:101",
                            "type": ""
                          }
                        ],
                        "src": "522:891:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1522:352:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1568:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1577:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1580:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1570:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1570:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1570:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1543:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1552:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1539:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1539:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1564:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1535:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1535:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1532:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1593:36:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1619:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1606:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1606:23:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1597:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1663:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1638:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1638:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1638:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1678:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1688:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1678:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1702:47:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1734:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1745:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1730:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1730:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1717:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1717:32:101"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1706:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1783:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1758:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1758:33:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1758:33:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1800:17:101",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "1810:7:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1800:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1826:42:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1853:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1864:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1849:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1849:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1836:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1836:32:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "1826:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1472:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1483:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1495:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1503:6:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "1511:6:101",
                            "type": ""
                          }
                        ],
                        "src": "1418:456:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2019:796:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2066:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2075:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2078:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2068:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2068:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2068:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2040:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2049:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2036:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2036:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2061:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2032:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2032:33:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2029:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2091:36:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2117:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2104:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2104:23:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2095:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "2161:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "2136:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2136:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2136:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2176:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2186:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2176:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2200:47:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2232:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2243:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2228:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2228:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2215:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2215:32:101"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2204:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2281:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "2256:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2256:33:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2256:33:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2298:17:101",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "2308:7:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2298:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2324:42:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2351:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2362:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2347:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2347:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2334:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2334:32:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "2324:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2375:46:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2406:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2417:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2402:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2402:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2389:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2389:32:101"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "2379:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2430:28:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "2440:18:101",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2434:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2485:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2494:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2497:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2487:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2487:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2487:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "2473:6:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2481:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2470:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2470:14:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2467:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2510:32:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2524:9:101"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "2535:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2520:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2520:22:101"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "2514:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2590:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2599:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2602:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2592:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2592:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2592:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "2569:2:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2573:4:101",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2565:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2565:13:101"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2580:7:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "2561:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2561:27:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "2554:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2554:35:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2551:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2615:30:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "2642:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2629:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2629:16:101"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "2619:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2672:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2681:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2684:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2674:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2674:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2674:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "2660:6:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2668:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2657:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2657:14:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2654:2:101"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2738:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2747:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2750:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2740:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2740:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2740:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "2711:2:101"
                                          },
                                          {
                                            "name": "length",
                                            "nodeType": "YulIdentifier",
                                            "src": "2715:6:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2707:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2707:15:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2724:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2703:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2703:24:101"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "2729:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2700:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2700:37:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2697:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2763:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "2777:2:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2781:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2773:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2773:11:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "2763:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2793:16:101",
                              "value": {
                                "name": "length",
                                "nodeType": "YulIdentifier",
                                "src": "2803:6:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value4",
                                  "nodeType": "YulIdentifier",
                                  "src": "2793:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_addresst_uint256t_bytes_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1953:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1964:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1976:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1984:6:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "1992:6:101",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "2000:6:101",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "2008:6:101",
                            "type": ""
                          }
                        ],
                        "src": "1879:936:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2907:228:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2953:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2962:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2965:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2955:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2955:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2955:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2928:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2937:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2924:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2924:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2949:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2920:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2920:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2917:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2978:36:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3004:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2991:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2991:23:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2982:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "3048:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "3023:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3023:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3023:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3063:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "3073:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3063:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3087:42:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3114:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3125:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3110:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3110:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3097:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3097:32:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "3087:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2865:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2876:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2888:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2896:6:101",
                            "type": ""
                          }
                        ],
                        "src": "2820:315:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3244:352:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3290:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3299:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3302:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3292:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3292:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3292:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3265:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3274:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3261:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3261:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3286:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3257:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3257:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "3254:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3315:36:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3341:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3328:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3328:23:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "3319:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "3385:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "3360:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3360:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3360:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3400:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "3410:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3400:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3424:42:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3451:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3462:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3447:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3447:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3434:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3434:32:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "3424:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3475:47:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3507:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3518:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3503:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3503:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3490:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3490:32:101"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3479:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3556:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "3531:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3531:33:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3531:33:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3573:17:101",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "3583:7:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "3573:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint256t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3194:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "3205:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3217:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "3225:6:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "3233:6:101",
                            "type": ""
                          }
                        ],
                        "src": "3140:456:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3679:199:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3725:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3734:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3737:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3727:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3727:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3727:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3700:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3709:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3696:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3696:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3721:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3692:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3692:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "3689:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3750:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3769:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3763:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3763:16:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "3754:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3832:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3841:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3844:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3834:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3834:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3834:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "3801:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "3822:5:101"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "iszero",
                                              "nodeType": "YulIdentifier",
                                              "src": "3815:6:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "3815:13:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "3808:6:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3808:21:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "3798:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3798:32:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "3791:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3791:40:101"
                              },
                              "nodeType": "YulIf",
                              "src": "3788:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3857:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "3867:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3857:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_bool_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3645:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "3656:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3668:6:101",
                            "type": ""
                          }
                        ],
                        "src": "3601:277:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3989:301:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4035:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4044:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4047:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4037:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4037:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4037:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "4010:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4019:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "4006:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4006:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4031:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4002:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4002:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "3999:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4060:36:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4086:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4073:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4073:23:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "4064:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "4130:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "4105:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4105:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4105:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4145:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "4155:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "4145:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4169:47:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4201:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4212:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4197:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4197:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4184:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4184:32:101"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4173:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4250:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "4225:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4225:33:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4225:33:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4267:17:101",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "4277:7:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "4267:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_contract$_ICompLike_$10642t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3947:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "3958:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3970:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "3978:6:101",
                            "type": ""
                          }
                        ],
                        "src": "3883:407:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4382:177:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4428:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4437:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4440:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4430:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4430:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4430:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "4403:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4412:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "4399:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4399:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4424:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4395:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4395:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "4392:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4453:36:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4479:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4466:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4466:23:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "4457:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "4523:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "4498:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4498:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4498:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4538:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "4548:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "4538:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_contract$_ITicket_$11825",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4348:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "4359:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4371:6:101",
                            "type": ""
                          }
                        ],
                        "src": "4295:264:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4634:110:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4680:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4689:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4692:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4682:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4682:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4682:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "4655:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4664:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "4651:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4651:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4676:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4647:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4647:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "4644:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4705:33:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4728:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4715:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4715:23:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "4705:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4600:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "4611:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4623:6:101",
                            "type": ""
                          }
                        ],
                        "src": "4564:180:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4830:103:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4876:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4885:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4888:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4878:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4878:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4878:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "4851:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4860:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "4847:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4847:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4872:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4843:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4843:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "4840:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4901:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4917:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4911:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4911:16:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "4901:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4796:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "4807:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4819:6:101",
                            "type": ""
                          }
                        ],
                        "src": "4749:184:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4987:267:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4997:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "5017:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "5011:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5011:12:101"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "5001:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "5039:3:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "5044:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5032:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5032:19:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5032:19:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "5086:5:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5093:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5082:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5082:16:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "5104:3:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5109:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5100:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5100:14:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "5116:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "5060:21:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5060:63:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5060:63:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5132:116:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "5147:3:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "5160:6:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "5168:2:101",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "5156:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "5156:15:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "5173:66:101",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "5152:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "5152:88:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5143:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5143:98:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5243:4:101",
                                    "type": "",
                                    "value": "0x20"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5139:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5139:109:101"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "5132:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_bytes",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "4964:5:101",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "4971:3:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "4979:3:101",
                            "type": ""
                          }
                        ],
                        "src": "4938:316:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5396:137:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5406:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "5426:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "5420:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5420:13:101"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "5410:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "5468:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5476:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5464:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5464:17:101"
                                  },
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "5483:3:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "5488:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "5442:21:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5442:53:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5442:53:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5504:23:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "5515:3:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "5520:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5511:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5511:16:101"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "5504:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "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": "5372:3:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5377:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "5388:3:101",
                            "type": ""
                          }
                        ],
                        "src": "5259:274:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5639:125:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "5649:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5661:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5672:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5657:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5657:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5649:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5691:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "5706:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5714:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5702:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5702:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5684:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5684:74:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5684:74:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5608:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5619:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5630:4:101",
                            "type": ""
                          }
                        ],
                        "src": "5538:226:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5898:198:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "5908:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5920:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5931:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5916:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5916:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5908:4:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5943:52:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "5953:42:101",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "5947:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6011:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "6026:6:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6034:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6022:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6022:15:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6004:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6004:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6004:34:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6058:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6069:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6054:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6054:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6078:6:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6086:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6074:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6074:15:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6047:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6047:43:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6047:43:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5859:9:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "5870:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5878:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5889:4:101",
                            "type": ""
                          }
                        ],
                        "src": "5769:327:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6258:241:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "6268:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6280:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6291:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6276:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6276:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6268:4:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6303:52:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "6313:42:101",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6307:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6371:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "6386:6:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6394:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6382:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6382:15:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6364:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6364:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6364:34:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6418:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6429:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6414:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6414:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6438:6:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6446:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6434:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6434:15:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6407:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6407:43:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6407:43:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6470:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6481:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6466:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6466:18:101"
                                  },
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "6486:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6459:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6459:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6459:34:101"
                            }
                          ]
                        },
                        "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": "6211:9:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "6222:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "6230:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6238:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6249:4:101",
                            "type": ""
                          }
                        ],
                        "src": "6101:398:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6633:168:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "6643:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6655:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6666:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6651:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6651:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6643:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6685:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "6700:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6708:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6696:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6696:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6678:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6678:74:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6678:74:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6772:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6783:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6768:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6768:18:101"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6788:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6761:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6761:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6761:34:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6594:9:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "6605:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6613:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6624:4:101",
                            "type": ""
                          }
                        ],
                        "src": "6504:297:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6957:481:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6967:12:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "6977:2:101",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6971:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6988:32:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7006:9:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7017:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7002:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7002:18:101"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6992:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7036:9:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7047:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7029:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7029:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7029:21:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7059:17:101",
                              "value": {
                                "name": "tail_1",
                                "nodeType": "YulIdentifier",
                                "src": "7070:6:101"
                              },
                              "variables": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulTypedName",
                                  "src": "7063:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7085:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "7105:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "7099:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7099:13:101"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "7089:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7128:6:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "7136:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7121:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7121:22:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7121:22:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7152:25:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7163:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7174:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7159:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7159:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "7152:3:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7186:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "7204:6:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7212:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7200:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7200:15:101"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "7190:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7224:10:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "7233:1:101",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "7228:1:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7292:120:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "7313:3:101"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "srcPtr",
                                              "nodeType": "YulIdentifier",
                                              "src": "7324:6:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "7318:5:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "7318:13:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "7306:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7306:26:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7306:26:101"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "7345:19:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "7356:3:101"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "7361:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "7352:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7352:12:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "7345:3:101"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "7377:25:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "7391:6:101"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "7399:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "7387:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7387:15:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "7377:6:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "7254:1:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "7257:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "7251:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7251:13:101"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "7265:18:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "7267:14:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "7276:1:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7279:1:101",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "7272:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7272:9:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "7267:1:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "7247:3:101",
                                "statements": []
                              },
                              "src": "7243:169:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7421:11:101",
                              "value": {
                                "name": "pos",
                                "nodeType": "YulIdentifier",
                                "src": "7429:3:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7421:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "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": "6926:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6937:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6948:4:101",
                            "type": ""
                          }
                        ],
                        "src": "6806:632:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7538:92:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7548:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7560:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7571:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7556:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7556:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7548:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7590:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "7615:6:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "7608:6:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "7608:14:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "7601:6:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7601:22:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7583:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7583:41:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7583:41:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7507:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7518:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7529:4:101",
                            "type": ""
                          }
                        ],
                        "src": "7443:187:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7734:149:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7744:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7756:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7767:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7752:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7752:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7744:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7786:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "7801:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7809:66:101",
                                        "type": "",
                                        "value": "0xffffffff00000000000000000000000000000000000000000000000000000000"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "7797:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7797:79:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7779:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7779:98:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7779:98:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7703:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7714:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7725:4:101",
                            "type": ""
                          }
                        ],
                        "src": "7635:248:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8007:98:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8024:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8035:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8017:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8017:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8017:21:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8047:52:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "8072:6:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8084:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8095:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8080:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8080:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_bytes",
                                  "nodeType": "YulIdentifier",
                                  "src": "8055:16:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8055:44:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8047:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bytes_memory_ptr__to_t_bytes_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7976:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7987:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7998:4:101",
                            "type": ""
                          }
                        ],
                        "src": "7888:217:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8228:125:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8238:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8250:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8261:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8246:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8246:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8238:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8280:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "8295:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8303:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "8291:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8291:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8273:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8273:74:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8273:74:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_ITicket_$11825__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8197:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8208:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8219:4:101",
                            "type": ""
                          }
                        ],
                        "src": "8110:243:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8481:125:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8491:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8503:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8514:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8499:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8499:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8491:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8533:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "8548:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8556:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "8544:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8544:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8526:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8526:74:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8526:74:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IYieldSource_$17542__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8450:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8461:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8472:4:101",
                            "type": ""
                          }
                        ],
                        "src": "8358:248:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8732:98:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8749:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8760:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8742:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8742:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8742:21:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8772:52:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "8797:6:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8809:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8820:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8805:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8805:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_bytes",
                                  "nodeType": "YulIdentifier",
                                  "src": "8780:16:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8780:44:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8772:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8701:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8712:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8723:4:101",
                            "type": ""
                          }
                        ],
                        "src": "8611:219:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9009:182:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9026:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9037:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9019:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9019:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9019:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9060:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9071:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9056:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9056:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9076:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9049:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9049:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9049:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9099:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9110:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9095:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9095:18:101"
                                  },
                                  {
                                    "hexValue": "5072697a65506f6f6c2f7072697a6553747261746567792d6e6f742d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9115:34:101",
                                    "type": "",
                                    "value": "PrizePool/prizeStrategy-not-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9088:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9088:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9088:62:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9159:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9171:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9182:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9167:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9167:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9159:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_26382493735482afb64e2730b659f83ec825a39efdf1dab6c392861c6866a708__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8986:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9000:4:101",
                            "type": ""
                          }
                        ],
                        "src": "8835:356:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9370:178:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9387:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9398:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9380:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9380:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9380:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9421:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9432:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9417:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9417:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9437:2:101",
                                    "type": "",
                                    "value": "28"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9410:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9410:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9410:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9460:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9471:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9456:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9456:18:101"
                                  },
                                  {
                                    "hexValue": "5072697a65506f6f6c2f6f6e6c792d7072697a655374726174656779",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9476:30:101",
                                    "type": "",
                                    "value": "PrizePool/only-prizeStrategy"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9449:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9449:58:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9449:58:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9516:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9528:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9539:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9524:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9524:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9516:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_2fbc253d0606e293128a98dd182d0059517715f8bf709aa69f3e693de4f6b3e8__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9347:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9361:4:101",
                            "type": ""
                          }
                        ],
                        "src": "9196:352:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9727:223:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9744:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9755:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9737:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9737:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9737:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9778:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9789:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9774:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9774:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9794:2:101",
                                    "type": "",
                                    "value": "33"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9767:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9767:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9767:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9817:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9828:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9813:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9813:18:101"
                                  },
                                  {
                                    "hexValue": "5072697a65506f6f6c2f7469636b65742d6e6f742d7a65726f2d616464726573",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9833:34:101",
                                    "type": "",
                                    "value": "PrizePool/ticket-not-zero-addres"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9806:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9806:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9806:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9888:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9899:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9884:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9884:18:101"
                                  },
                                  {
                                    "hexValue": "73",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9904:3:101",
                                    "type": "",
                                    "value": "s"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9877:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9877:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9877:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9917:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9929:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9940:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9925:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9925:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9917:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_4fe9a4a904824f8ce19ec4e362470f8c1e40b7a6286240ca34153904bf735f4b__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9704:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9718:4:101",
                            "type": ""
                          }
                        ],
                        "src": "9553:397:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10129:228:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10146:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10157:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10139:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10139:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10139:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10180:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10191:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10176:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10176:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10196:2:101",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10169:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10169:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10169:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10219:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10230:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10215:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10215:18:101"
                                  },
                                  {
                                    "hexValue": "416464726573733a20696e73756666696369656e742062616c616e636520666f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10235:34:101",
                                    "type": "",
                                    "value": "Address: insufficient balance fo"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10208:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10208:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10208:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10290:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10301:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10286:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10286:18:101"
                                  },
                                  {
                                    "hexValue": "722063616c6c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10306:8:101",
                                    "type": "",
                                    "value": "r call"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10279:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10279:36:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10279:36:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10324:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10336:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10347:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10332:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10332:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10324:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10106:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10120:4:101",
                            "type": ""
                          }
                        ],
                        "src": "9955:402:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10536:174:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10553:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10564:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10546:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10546:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10546:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10587:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10598:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10583:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10583:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10603:2:101",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10576:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10576:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10576:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10626:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10637:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10622:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10622:18:101"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10642:26:101",
                                    "type": "",
                                    "value": "Ownable/caller-not-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10615:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10615:54:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10615:54:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10678:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10690:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10701:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10686:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10686:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10678:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10513:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10527:4:101",
                            "type": ""
                          }
                        ],
                        "src": "10362:348:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10889:182:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10906:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10917:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10899:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10899:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10899:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10940:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10951:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10936:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10936:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10956:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10929:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10929:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10929:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10979:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10990:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10975:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10975:18:101"
                                  },
                                  {
                                    "hexValue": "5072697a65506f6f6c2f696e76616c69642d65787465726e616c2d746f6b656e",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10995:34:101",
                                    "type": "",
                                    "value": "PrizePool/invalid-external-token"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10968:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10968:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10968:62:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11039:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11051:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11062:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11047:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11047:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11039:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_70015170bd0ff7647e8b415974bb2cd3deaef75f675ffd0943fc2b2e59f78c17__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10866:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10880:4:101",
                            "type": ""
                          }
                        ],
                        "src": "10715:356:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11250:181:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11267:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11278:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11260:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11260:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11260:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11301:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11312:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11297:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11297:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11317:2:101",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11290:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11290:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11290:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11340:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11351:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11336:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11336:18:101"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11356:33:101",
                                    "type": "",
                                    "value": "Ownable/caller-not-pendingOwner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11329:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11329:61:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11329:61:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11399:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11411:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11422:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11407:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11407:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11399:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11227:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11241:4:101",
                            "type": ""
                          }
                        ],
                        "src": "11076:355:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11610:178:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11627:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11638:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11620:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11620:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11620:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11661:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11672:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11657:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11657:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11677:2:101",
                                    "type": "",
                                    "value": "28"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11650:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11650:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11650:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11700:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "11711:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11696:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11696:18:101"
                                  },
                                  {
                                    "hexValue": "5072697a65506f6f6c2f7469636b65742d616c72656164792d736574",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "11716:30:101",
                                    "type": "",
                                    "value": "PrizePool/ticket-already-set"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11689:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11689:58:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11689:58:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11756:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11768:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11779:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11764:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11764:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11756:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_8f5251c537987c1d4eeffe9c1d8ca9e771fbd6e18d298e288a82ed3e7e0af3e0__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11587:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11601:4:101",
                            "type": ""
                          }
                        ],
                        "src": "11436:352:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11967:179:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11984:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11995:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11977:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11977:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11977:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12018:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12029:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12014:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12014:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12034:2:101",
                                    "type": "",
                                    "value": "29"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12007:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12007:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12007:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12057:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12068:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12053:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12053:18:101"
                                  },
                                  {
                                    "hexValue": "5072697a65506f6f6c2f61776172642d657863656564732d617661696c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "12073:31:101",
                                    "type": "",
                                    "value": "PrizePool/award-exceeds-avail"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12046:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12046:59:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12046:59:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12114:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12126:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12137:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12122:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12122:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12114:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_b318e53c70e443990590a11dbdc3502c73f947c1cb24069cc99314336e041bc4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11944:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11958:4:101",
                            "type": ""
                          }
                        ],
                        "src": "11793:353:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12325:179:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12342:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12353:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12335:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12335:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12335:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12376:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12387:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12372:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12372:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12392:2:101",
                                    "type": "",
                                    "value": "29"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12365:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12365:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12365:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12415:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12426:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12411:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12411:18:101"
                                  },
                                  {
                                    "hexValue": "416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "12431:31:101",
                                    "type": "",
                                    "value": "Address: call to non-contract"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12404:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12404:59:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12404:59:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12472:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12484:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12495:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12480:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12480:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12472:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12302:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12316:4:101",
                            "type": ""
                          }
                        ],
                        "src": "12151:353:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12683:227:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12700:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12711:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12693:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12693:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12693:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12734:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12745:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12730:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12730:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12750:2:101",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12723:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12723:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12723:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12773:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12784:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12769:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12769:18:101"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d6164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "12789:34:101",
                                    "type": "",
                                    "value": "Ownable/pendingOwner-not-zero-ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12762:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12762:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12762:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "12844:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12855:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "12840:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12840:18:101"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "12860:7:101",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12833:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12833:35:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12833:35:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12877:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12889:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12900:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12885:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12885:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12877:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12660:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12674:4:101",
                            "type": ""
                          }
                        ],
                        "src": "12509:401:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13089:232:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13106:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13117:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13099:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13099:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13099:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13140:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13151:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13136:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13136:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13156:2:101",
                                    "type": "",
                                    "value": "42"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13129:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13129:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13129:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13179:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13190:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13175:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13175:18:101"
                                  },
                                  {
                                    "hexValue": "5361666545524332303a204552433230206f7065726174696f6e20646964206e",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "13195:34:101",
                                    "type": "",
                                    "value": "SafeERC20: ERC20 operation did n"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13168:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13168:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13168:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13250:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13261:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13246:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13246:18:101"
                                  },
                                  {
                                    "hexValue": "6f742073756363656564",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "13266:12:101",
                                    "type": "",
                                    "value": "ot succeed"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13239:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13239:40:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13239:40:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13288:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13300:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13311:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13296:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13296:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "13288:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_e11ad79d1e4a7f2e5f376964cb99e8e8f7904e3fc16a109f7a7ecb9aa7956dcd__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "13066:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "13080:4:101",
                            "type": ""
                          }
                        ],
                        "src": "12915:406:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13500:181:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13517:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13528:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13510:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13510:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13510:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13551:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13562:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13547:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13547:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13567:2:101",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13540:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13540:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13540:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13590:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13601:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13586:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13586:18:101"
                                  },
                                  {
                                    "hexValue": "5265656e7472616e637947756172643a207265656e7472616e742063616c6c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "13606:33:101",
                                    "type": "",
                                    "value": "ReentrancyGuard: reentrant call"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13579:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13579:61:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13579:61:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13649:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13661:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13672:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13657:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13657:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "13649:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "13477:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "13491:4:101",
                            "type": ""
                          }
                        ],
                        "src": "13326:355:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13860:181:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13877:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13888:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13870:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13870:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13870:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13911:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13922:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13907:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13907:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13927:2:101",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13900:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13900:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13900:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13950:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13961:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13946:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13946:18:101"
                                  },
                                  {
                                    "hexValue": "5072697a65506f6f6c2f657863656564732d6c69717569646974792d636170",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "13966:33:101",
                                    "type": "",
                                    "value": "PrizePool/exceeds-liquidity-cap"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13939:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13939:61:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13939:61:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "14009:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14021:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14032:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "14017:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14017:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "14009:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_f5408887fc5db7609075b1b033c7b9771809273c478e7d6375044008d48f0752__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "13837:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "13851:4:101",
                            "type": ""
                          }
                        ],
                        "src": "13686:355:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14220:179:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14237:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14248:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14230:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14230:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14230:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14271:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14282:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14267:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14267:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14287:2:101",
                                    "type": "",
                                    "value": "29"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14260:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14260:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14260:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14310:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14321:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14306:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14306:18:101"
                                  },
                                  {
                                    "hexValue": "5072697a65506f6f6c2f657863656564732d62616c616e63652d636170",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "14326:31:101",
                                    "type": "",
                                    "value": "PrizePool/exceeds-balance-cap"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14299:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14299:59:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14299:59:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "14367:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14379:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14390:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "14375:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14375:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "14367:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_ff36047efaace6b2a7f1dbf3cd858fd2b7c7f70638a89d957007df6d5c27b6f3__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "14197:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "14211:4:101",
                            "type": ""
                          }
                        ],
                        "src": "14046:353:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14505:76:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "14515:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14527:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14538:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "14523:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14523:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "14515:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14557:9:101"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "14568:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14550:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14550:25:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14550:25:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "14474:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "14485:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "14496:4:101",
                            "type": ""
                          }
                        ],
                        "src": "14404:177:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14715:168:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "14725:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14737:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14748:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "14733:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14733:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "14725:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14767:9:101"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "14778:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14760:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14760:25:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14760:25:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14805:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14816:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14801:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14801:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "14825:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14833:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "14821:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14821:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14794:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14794:83:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14794:83:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256_t_address__to_t_uint256_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "14676:9:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "14687:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "14695:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "14706:4:101",
                            "type": ""
                          }
                        ],
                        "src": "14586:297:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15017:119:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "15027:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15039:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15050:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "15035:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15035:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "15027:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15069:9:101"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "15080:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15062:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15062:25:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15062:25:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15107:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15118:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15103:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15103:18:101"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "15123:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15096:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15096:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15096:34:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "14978:9:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "14989:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "14997:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "15008:4:101",
                            "type": ""
                          }
                        ],
                        "src": "14888:248:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15189:80:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "15216:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "15218:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "15218:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "15218:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "15205:1:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "15212:1:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "15208:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15208:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "15202:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15202:13:101"
                              },
                              "nodeType": "YulIf",
                              "src": "15199:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "15247:16:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "15258:1:101"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "15261:1:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "15254:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15254:9:101"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "15247:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "15172:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "15175:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "15181:3:101",
                            "type": ""
                          }
                        ],
                        "src": "15141:128:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15323:76:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "15345:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "15347:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "15347:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "15347:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "15339:1:101"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "15342:1:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "15336:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15336:8:101"
                              },
                              "nodeType": "YulIf",
                              "src": "15333:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "15376:17:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "15388:1:101"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "15391:1:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "15384:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15384:9:101"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "15376:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "15305:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "15308:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "15314:4:101",
                            "type": ""
                          }
                        ],
                        "src": "15274:125:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15457:205:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "15467:10:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "15476:1:101",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "15471:1:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "15536:63:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "15561:3:101"
                                            },
                                            {
                                              "name": "i",
                                              "nodeType": "YulIdentifier",
                                              "src": "15566:1:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "15557:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "15557:11:101"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "15580:3:101"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "15585:1:101"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "15576:3:101"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "15576:11:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "15570:5:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "15570:18:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "15550:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "15550:39:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "15550:39:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "15497:1:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "15500:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "15494:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15494:13:101"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "15508:19:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "15510:15:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "15519:1:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "15522:2:101",
                                          "type": "",
                                          "value": "32"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "15515:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "15515:10:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "15510:1:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "15490:3:101",
                                "statements": []
                              },
                              "src": "15486:113:101"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "15625:31:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "15638:3:101"
                                            },
                                            {
                                              "name": "length",
                                              "nodeType": "YulIdentifier",
                                              "src": "15643:6:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "15634:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "15634:16:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "15652:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "15627:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "15627:27:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "15627:27:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "15614:1:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "15617:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "15611:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15611:13:101"
                              },
                              "nodeType": "YulIf",
                              "src": "15608:2:101"
                            }
                          ]
                        },
                        "name": "copy_memory_to_memory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "src",
                            "nodeType": "YulTypedName",
                            "src": "15435:3:101",
                            "type": ""
                          },
                          {
                            "name": "dst",
                            "nodeType": "YulTypedName",
                            "src": "15440:3:101",
                            "type": ""
                          },
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "15445:6:101",
                            "type": ""
                          }
                        ],
                        "src": "15404:258:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15714:148:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "15805:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "15807:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "15807:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "15807:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "15730:5:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15737:66:101",
                                    "type": "",
                                    "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "15727:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15727:77:101"
                              },
                              "nodeType": "YulIf",
                              "src": "15724:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "15836:20:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "15847:5:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15854:1:101",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "15843:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15843:13:101"
                              },
                              "variableNames": [
                                {
                                  "name": "ret",
                                  "nodeType": "YulIdentifier",
                                  "src": "15836:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "increment_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "15696:5:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "ret",
                            "nodeType": "YulTypedName",
                            "src": "15706:3:101",
                            "type": ""
                          }
                        ],
                        "src": "15667:195:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15899:152:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15916:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15919:77:101",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15909:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15909:88:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15909:88:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16013:1:101",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16016:4:101",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16006:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16006:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16006:15:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16037:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16040:4:101",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "16030:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16030:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16030:15:101"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "15867:184:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "16088:152:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16105:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16108:77:101",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16098:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16098:88:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16098:88:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16202:1:101",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16205:4:101",
                                    "type": "",
                                    "value": "0x32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16195:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16195:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16195:15:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16226:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16229:4:101",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "16219:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16219:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16219:15:101"
                            }
                          ]
                        },
                        "name": "panic_error_0x32",
                        "nodeType": "YulFunctionDefinition",
                        "src": "16056:184:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "16277:152:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16294:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16297:77:101",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16287:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16287:88:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16287:88:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16391:1:101",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16394:4:101",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16384:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16384:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16384:15:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16415:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16418:4:101",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "16408:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16408:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16408:15:101"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "16245:184:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "16479:109:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "16566:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "16575:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "16578:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "16568:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "16568:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "16568:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "16502:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "16513:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "16520:42:101",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "16509:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "16509:54:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "16499:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16499:65:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "16492:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16492:73:101"
                              },
                              "nodeType": "YulIf",
                              "src": "16489:2:101"
                            }
                          ]
                        },
                        "name": "validator_revert_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "16468:5:101",
                            "type": ""
                          }
                        ],
                        "src": "16434:154:101"
                      }
                    ]
                  },
                  "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_$10642t_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_$11825(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_$11825__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_$17542__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": 101,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {
                "14508": [
                  {
                    "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": "608060405234801561001057600080fd5b50600436106101f05760003560e01c80637b99adb11161010f578063c002c4d6116100a2578063e6d8a94b11610071578063e6d8a94b14610441578063f2fde38b14610449578063ffa1ad741461045c578063ffaad6a5146104a557600080fd5b8063c002c4d6146103fb578063d7a169eb1461040c578063d804abaf1461041f578063e30c39781461043057600080fd5b8063aec9c307116100de578063aec9c307146103b1578063b15a49c1146103c4578063b2470e5c146103cc578063b69ef8a8146103f357600080fd5b80637b99adb1146103675780638da5cb5b1461037a57806391ca480e1461038b5780639470b0bd1461039e57600080fd5b806333e5761f11610187578063630665b411610156578063630665b4146103315780636a3fd4f914610339578063715018a61461034c57806378b3d3271461035457600080fd5b806333e5761f1461030657806335faa4161461030e5780634e71e0c8146103165780635d8a776e1461031e57600080fd5b80631c65c78b116101c35780631c65c78b1461029d57806321df0da7146102c05780632b0ab144146102e05780632f7627e3146102f357600080fd5b806308234319146101f557806313f55e391461020c578063150b7a021461022157806316960d551461028a575b600080fd5b6005545b6040519081526020015b60405180910390f35b61021f61021a366004612480565b6104b8565b005b61025961022f3660046124c1565b7f150b7a020000000000000000000000000000000000000000000000000000000095945050505050565b6040517fffffffff000000000000000000000000000000000000000000000000000000009091168152602001610203565b61021f6102983660046123eb565b61057a565b6102b06102ab3660046123b1565b610844565b6040519015158152602001610203565b6102c86109eb565b6040516001600160a01b039091168152602001610203565b61021f6102ee366004612480565b6109fa565b61021f6103013660046125f0565b610aa9565b6101f9610c06565b61021f610c10565b61021f610d98565b61021f61032c366004612560565b610e26565b6007546101f9565b6102b06103473660046123b1565b610f4c565b61021f610f5d565b6102b06103623660046123b1565b610fd2565b61021f610375366004612629565b610feb565b6000546001600160a01b03166102c8565b61021f6103993660046123b1565b611060565b6101f96103ac366004612560565b6110d2565b6102b06103bf366004612629565b611233565b6006546101f9565b6102c87f000000000000000000000000000000000000000000000000000000000000000081565b6101f96112a7565b6003546001600160a01b03166102c8565b61021f61041a36600461258c565b6112b1565b6004546001600160a01b03166102c8565b6001546001600160a01b03166102c8565b6101f96113f1565b61021f6104573660046123b1565b6114ef565b6104986040518060400160405280600581526020017f342e302e3000000000000000000000000000000000000000000000000000000081525081565b60405161020391906126e7565b61021f6104b3366004612560565b61162b565b6004546001600160a01b031633146105175760405162461bcd60e51b815260206004820152601c60248201527f5072697a65506f6f6c2f6f6e6c792d7072697a6553747261746567790000000060448201526064015b60405180910390fd5b6105228383836116ec565b1561057557816001600160a01b0316836001600160a01b03167fb0bac59718cd343c80a813518afcf36846cfcfe6d56e2b3cab9bd49f5f9b251c8360405161056c91815260200190565b60405180910390a35b505050565b6004546001600160a01b031633146105d45760405162461bcd60e51b815260206004820152601c60248201527f5072697a65506f6f6c2f6f6e6c792d7072697a65537472617465677900000000604482015260640161050e565b6105dd8361176f565b6106295760405162461bcd60e51b815260206004820181905260248201527f5072697a65506f6f6c2f696e76616c69642d65787465726e616c2d746f6b656e604482015260640161050e565b806106335761083e565b60008167ffffffffffffffff81111561064e5761064e61279c565b604051908082528060200260200182016040528015610677578160200160208202803683370190505b5090506000805b838110156107e857856001600160a01b03166342842e0e30898888868181106106a9576106a9612786565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e088901b1681526001600160a01b03958616600482015294909316602485015250602090910201356044820152606401600060405180830381600087803b15801561071857600080fd5b505af1925050508015610729575060015b61079a573d808015610757576040519150601f19603f3d011682016040523d82523d6000602084013e61075c565b606091505b507f17e975018310f88872b58d4d8263adca83cf5c1893496ea2a86923dab15276ad8160405161078c91906126e7565b60405180910390a1506107d6565b600191508484828181106107b0576107b0612786565b905060200201358382815181106107c9576107c9612786565b6020026020010181815250505b806107e081612755565b91505061067e565b50801561083b57846001600160a01b0316866001600160a01b03167f69c2de32bc4d47f488e72626a6cfdee85089342e52675e7de79c4b417623960c8460405161083291906126a3565b60405180910390a35b50505b50505050565b6000336108596000546001600160a01b031690565b6001600160a01b0316146108af5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161050e565b6001600160a01b03821661092b5760405162461bcd60e51b815260206004820152602160248201527f5072697a65506f6f6c2f7469636b65742d6e6f742d7a65726f2d61646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161050e565b6003546001600160a01b0316156109845760405162461bcd60e51b815260206004820152601c60248201527f5072697a65506f6f6c2f7469636b65742d616c72656164792d73657400000000604482015260640161050e565b6003805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0384169081179091556040517f9f9d59c87dbdc6ca82d9e5924782004b9aebc366c505c0ccab12f61e2a9f332190600090a26109e3600019611836565b506001919050565b60006109f5611872565b905090565b6004546001600160a01b03163314610a545760405162461bcd60e51b815260206004820152601c60248201527f5072697a65506f6f6c2f6f6e6c792d7072697a65537472617465677900000000604482015260640161050e565b610a5f8383836116ec565b1561057557816001600160a01b0316836001600160a01b03167fc65f48aca3b7a99b7443d04b8ffbb073156179bc628dc3f7def50477489734698360405161056c91815260200190565b33610abc6000546001600160a01b031690565b6001600160a01b031614610b125760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161050e565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a082319060240160206040518083038186803b158015610b5457600080fd5b505afa158015610b68573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b8c9190612642565b1115610c02576040517f5c19a95c0000000000000000000000000000000000000000000000000000000081526001600160a01b038281166004830152831690635c19a95c90602401600060405180830381600087803b158015610bee57600080fd5b505af115801561083b573d6000803e3d6000fd5b5050565b60006109f5611905565b600280541415610c625760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161050e565b6002805533610c796000546001600160a01b031690565b6001600160a01b031614610ccf5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161050e565b6000610cd9611872565b6040516370a0823160e01b81523060048201526001600160a01b0391909116906370a082319060240160206040518083038186803b158015610d1a57600080fd5b505afa158015610d2e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d529190612642565b9050610d5d8161199b565b6040518181527f7f221332ee403570bf4d61630b58189ea566ff1635269001e9df6a890f413dd89060200160405180910390a1506001600255565b6001546001600160a01b03163314610df25760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e657200604482015260640161050e565b600154610e07906001600160a01b0316611a74565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b6004546001600160a01b03163314610e805760405162461bcd60e51b815260206004820152601c60248201527f5072697a65506f6f6c2f6f6e6c792d7072697a65537472617465677900000000604482015260640161050e565b80610e89575050565b60075480821115610edc5760405162461bcd60e51b815260206004820152601d60248201527f5072697a65506f6f6c2f61776172642d657863656564732d617661696c000000604482015260640161050e565b8181036007556003546001600160a01b0316610ef9848483611ad1565b806001600160a01b0316846001600160a01b03167fe2554529d99ab7a67db6b4cea2b32c7d55ae325f958861e05f304fdded867e3185604051610f3e91815260200190565b60405180910390a350505050565b6000610f578261176f565b92915050565b33610f706000546001600160a01b031690565b6001600160a01b031614610fc65760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161050e565b610fd06000611a74565b565b6003546000906001600160a01b03808416911614610f57565b33610ffe6000546001600160a01b031690565b6001600160a01b0316146110545760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161050e565b61105d81611b51565b50565b336110736000546001600160a01b031690565b6001600160a01b0316146110c95760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161050e565b61105d81611b86565b60006002805414156111265760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161050e565b600280556003546040517f631b5dfb0000000000000000000000000000000000000000000000000000000081523360048201526001600160a01b0385811660248301526044820185905290911690819063631b5dfb90606401600060405180830381600087803b15801561119957600080fd5b505af11580156111ad573d6000803e3d6000fd5b5050505060006111bc84611c33565b90506111db85826111cb611872565b6001600160a01b03169190611ce9565b60408051858152602081018390526001600160a01b03808516929088169133917fe56473357106d0cdea364a045d5ab7abb44b6bd1c0f092ba3734983a43459f8f910160405180910390a46001600255949350505050565b6000336112486000546001600160a01b031690565b6001600160a01b03161461129e5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161050e565b6109e382611836565b60006109f5611d92565b6002805414156113035760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161050e565b600280558161131181611e23565b61135d5760405162461bcd60e51b815260206004820152601f60248201527f5072697a65506f6f6c2f657863656564732d6c69717569646974792d63617000604482015260640161050e565b611368338585611e59565b6003546040517f33e39b610000000000000000000000000000000000000000000000000000000081523360048201526001600160a01b038481166024830152909116906333e39b6190604401600060405180830381600087803b1580156113ce57600080fd5b505af11580156113e2573d6000803e3d6000fd5b50506001600255505050505050565b60006002805414156114455760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161050e565b600280556000611453611905565b6007549091506000611463611d92565b9050600083821161147557600061147f565b61147f8483612712565b9050600083821161149157600061149b565b61149b8483612712565b905080156114e157600782905560405181815291935083917fce2b6e507c7ca1a20ce136810f524eefc19ba4c7e4866eb6cc0cba76e778d4be9060200160405180910390a15b505060016002555092915050565b336115026000546001600160a01b031690565b6001600160a01b0316146115585760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161050e565b6001600160a01b0381166115d45760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161050e565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b60028054141561167d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161050e565b600280558061168b81611e23565b6116d75760405162461bcd60e51b815260206004820152601f60248201527f5072697a65506f6f6c2f657863656564732d6c69717569646974792d63617000604482015260640161050e565b6116e2338484611e59565b5050600160025550565b60006116f78361176f565b6117435760405162461bcd60e51b815260206004820181905260248201527f5072697a65506f6f6c2f696e76616c69642d65787465726e616c2d746f6b656e604482015260640161050e565b8161175057506000611768565b6117646001600160a01b0384168584611ce9565b5060015b9392505050565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03838116908216148015906117685750806001600160a01b031663c89039c56040518163ffffffff1660e01b815260040160206040518083038186803b1580156117e257600080fd5b505afa1580156117f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061181a91906123ce565b6001600160a01b0316836001600160a01b031614159392505050565b60058190556040518181527f439b9ac8f2088164a8d80921758209db1623cf1a37a48913679ef3a43d7a5cf7906020015b60405180910390a150565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c89039c56040518163ffffffff1660e01b815260040160206040518083038186803b1580156118cd57600080fd5b505afa1580156118e1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109f591906123ce565b600354604080517f18160ddd00000000000000000000000000000000000000000000000000000000815290516000926001600160a01b0316916318160ddd916004808301926020929190829003018186803b15801561196357600080fd5b505afa158015611977573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109f59190612642565b6119d87f0000000000000000000000000000000000000000000000000000000000000000826119c8611872565b6001600160a01b03169190611f4b565b6040517f87a6eeef000000000000000000000000000000000000000000000000000000008152600481018290523060248201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906387a6eeef90604401600060405180830381600087803b158015611a5957600080fd5b505af1158015611a6d573d6000803e3d6000fd5b5050505050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040517f5d7b07580000000000000000000000000000000000000000000000000000000081526001600160a01b03848116600483015260248201849052821690635d7b075890604401600060405180830381600087803b158015611b3457600080fd5b505af1158015611b48573d6000803e3d6000fd5b50505050505050565b60068190556040518181527f3ff20538222f568f27ff436c0c49dfd3e48d5b8f86533a3f759dc1c7089775ab90602001611867565b6001600160a01b038116611bdc5760405162461bcd60e51b815260206004820181905260248201527f5072697a65506f6f6c2f7072697a6553747261746567792d6e6f742d7a65726f604482015260640161050e565b6004805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f7f58dc86bc2e435cb77ca0edb1df55e25f90caf2d6bd866971715437d456a21290600090a250565b6040517f013054c2000000000000000000000000000000000000000000000000000000008152600481018290526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063013054c290602401602060405180830381600087803b158015611cb157600080fd5b505af1158015611cc5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f579190612642565b6040516001600160a01b0383166024820152604481018290526105759084907fa9059cbb00000000000000000000000000000000000000000000000000000000906064015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff000000000000000000000000000000000000000000000000000000009093169290921790915261203e565b6040517fb99152d00000000000000000000000000000000000000000000000000000000081523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063b99152d090602401602060405180830381600087803b158015611e0f57600080fd5b505af1158015611977573d6000803e3d6000fd5b600654600090600019811415611e3c5750600192915050565b8083611e46611905565b611e5091906126fa565b11159392505050565b611e638282612123565b611eaf5760405162461bcd60e51b815260206004820152601d60248201527f5072697a65506f6f6c2f657863656564732d62616c616e63652d636170000000604482015260640161050e565b6003546001600160a01b0316611eda843084611ec9611872565b6001600160a01b03169291906121d1565b611ee5838383611ad1565b611eee8261199b565b806001600160a01b0316836001600160a01b0316856001600160a01b03167f4174a9435a04d04d274c76779cad136a41fde6937c56241c09ab9d3c7064a1a985604051611f3d91815260200190565b60405180910390a450505050565b6040517fdd62ed3e0000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b038381166024830152600091839186169063dd62ed3e9060440160206040518083038186803b158015611fb057600080fd5b505afa158015611fc4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fe89190612642565b611ff291906126fa565b6040516001600160a01b03851660248201526044810182905290915061083e9085907f095ea7b30000000000000000000000000000000000000000000000000000000090606401611d2e565b6000612093826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166122229092919063ffffffff16565b80519091501561057557808060200190518101906120b191906125ce565b6105755760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f74207375636365656400000000000000000000000000000000000000000000606482015260840161050e565b60055460009060001981141561213d576001915050610f57565b6003546040516370a0823160e01b81526001600160a01b038681166004830152839286929116906370a082319060240160206040518083038186803b15801561218557600080fd5b505afa158015612199573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121bd9190612642565b6121c791906126fa565b1115949350505050565b6040516001600160a01b038085166024830152831660448201526064810182905261083e9085907f23b872dd0000000000000000000000000000000000000000000000000000000090608401611d2e565b60606122318484600085612239565b949350505050565b6060824710156122b15760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c0000000000000000000000000000000000000000000000000000606482015260840161050e565b843b6122ff5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161050e565b600080866001600160a01b0316858760405161231b9190612687565b60006040518083038185875af1925050503d8060008114612358576040519150601f19603f3d011682016040523d82523d6000602084013e61235d565b606091505b509150915061236d828286612378565b979650505050505050565b60608315612387575081611768565b8251156123975782518084602001fd5b8160405162461bcd60e51b815260040161050e91906126e7565b6000602082840312156123c357600080fd5b8135611768816127b2565b6000602082840312156123e057600080fd5b8151611768816127b2565b6000806000806060858703121561240157600080fd5b843561240c816127b2565b9350602085013561241c816127b2565b9250604085013567ffffffffffffffff8082111561243957600080fd5b818701915087601f83011261244d57600080fd5b81358181111561245c57600080fd5b8860208260051b850101111561247157600080fd5b95989497505060200194505050565b60008060006060848603121561249557600080fd5b83356124a0816127b2565b925060208401356124b0816127b2565b929592945050506040919091013590565b6000806000806000608086880312156124d957600080fd5b85356124e4816127b2565b945060208601356124f4816127b2565b935060408601359250606086013567ffffffffffffffff8082111561251857600080fd5b818801915088601f83011261252c57600080fd5b81358181111561253b57600080fd5b89602082850101111561254d57600080fd5b9699959850939650602001949392505050565b6000806040838503121561257357600080fd5b823561257e816127b2565b946020939093013593505050565b6000806000606084860312156125a157600080fd5b83356125ac816127b2565b92506020840135915060408401356125c3816127b2565b809150509250925092565b6000602082840312156125e057600080fd5b8151801515811461176857600080fd5b6000806040838503121561260357600080fd5b823561260e816127b2565b9150602083013561261e816127b2565b809150509250929050565b60006020828403121561263b57600080fd5b5035919050565b60006020828403121561265457600080fd5b5051919050565b60008151808452612673816020860160208601612729565b601f01601f19169290920160200192915050565b60008251612699818460208701612729565b9190910192915050565b6020808252825182820181905260009190848201906040850190845b818110156126db578351835292840192918401916001016126bf565b50909695505050505050565b602081526000611768602083018461265b565b6000821982111561270d5761270d612770565b500190565b60008282101561272457612724612770565b500390565b60005b8381101561274457818101518382015260200161272c565b8381111561083e5750506000910152565b600060001982141561276957612769612770565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461105d57600080fdfea26469706673582212201eda748ddcd0d2c41d6df51ad43fd4dd0f21b5f0febbaeb98b7ade4a382f4af964736f6c63430008060033",
              "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 0x1E 0xDA PUSH21 0x8DDCD0D2C41D6DF51AD43FD4DD0F21B5F0FEBBAEB9 DUP12 PUSH27 0xDE4A382F4AF964736F6C6343000806003300000000000000000000 ",
              "sourceMap": "641:3753:66:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3545:100:65;3628:10;;3545:100;;;14550:25:101;;;14538:2;14523:18;3545:100:65;;;;;;;;7453:299;;;;;;:::i;:::-;;:::i;:::-;;10285:212;;;;;;:::i;:::-;10449:41;10285:212;;;;;;;;;;;7809:66:101;7797:79;;;7779:98;;7767:2;7752:18;10285:212:65;7734:149:101;8118:961:65;;;;;;:::i;:::-;;:::i;9466:379::-;;;;;;:::i;:::-;;:::i;:::-;;;7608:14:101;;7601:22;7583:41;;7571:2;7556:18;9466:379:65;7538:92:101;4095:102:65;;;:::i;:::-;;;-1:-1:-1;;;;;5702:55:101;;;5684:74;;5672:2;5657:18;4095:102:65;5639:125:101;7789:292:65;;;;;;:::i;:::-;;:::i;10047:196::-;;;;;;:::i;:::-;;:::i;3392:116::-;;;:::i;2297:173:66:-;;;:::i;3147:129:33:-;;;:::i;6909:507:65:-;;;;;;:::i;:::-;;:::i;2886:109::-;2968:20;;2886:109;;3032:145;;;;;;:::i;:::-;;:::i;2508:94:33:-;;;:::i;3214:141:65:-;;;;;;:::i;:::-;;:::i;9305:124::-;;;;;;:::i;:::-;;:::i;1814:85:33:-;1860:7;1886:6;-1:-1:-1;;;;;1886:6:33;1814:85;;9882:128:65;;;;;;:::i;:::-;;:::i;6371:501::-;;;;;;:::i;:::-;;:::i;9116:152::-;;;;;;:::i;:::-;;:::i;3682:104::-;3767:12;;3682:104;;799:41:66;;;;;2760:89:65;;;:::i;3823:92::-;3902:6;;-1:-1:-1;;;;;3902:6:65;3823:92;;5405:285;;;;;;:::i;:::-;;:::i;3952:106::-;4038:13;;-1:-1:-1;;;;;4038:13:65;3952:106;;2014:101:33;2095:13;;-1:-1:-1;;;;;2095:13:33;2014:101;;4234:903:65;;;:::i;2751:234:33:-;;;;;;:::i;:::-;;:::i;1362:40:65:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;5174:194::-;;;;;;:::i;:::-;;:::i;7453:299::-;2094:13;;-1:-1:-1;;;;;2094:13:65;2080:10;:27;2072:68;;;;-1:-1:-1;;;2072:68:65;;9398:2:101;2072:68:65;;;9380:21:101;9437:2;9417:18;;;9410:30;9476;9456:18;;;9449:58;9524:18;;2072:68:65;;;;;;;;;7618:42:::1;7631:3;7636:14;7652:7;7618:12;:42::i;:::-;7614:132;;;7711:14;-1:-1:-1::0;;;;;7681:54:65::1;7706:3;-1:-1:-1::0;;;;;7681:54:65::1;;7727:7;7681:54;;;;14550:25:101::0;;14538:2;14523:18;;14505:76;7681:54:65::1;;;;;;;;7614:132;7453:299:::0;;;:::o;8118:961::-;2094:13;;-1:-1:-1;;;;;2094:13:65;2080:10;:27;2072:68;;;;-1:-1:-1;;;2072:68:65;;9398:2:101;2072:68:65;;;9380:21:101;9437:2;9417:18;;;9410:30;9476;9456:18;;;9449:58;9524:18;;2072:68:65;9370:178:101;2072:68:65;8298:33:::1;8316:14;8298:17;:33::i;:::-;8290:78;;;::::0;-1:-1:-1;;;8290:78:65;;10917:2:101;8290:78:65::1;::::0;::::1;10899:21:101::0;;;10936:18;;;10929:30;10995:34;10975:18;;;10968:62;11047:18;;8290:78:65::1;10889:182:101::0;8290:78:65::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:65::1;-1:-1:-1::0;8447:67:65;-1:-1:-1;8525:23:65::1;::::0;8559:390:::1;8579:20:::0;;::::1;8559:390;;;8632:14;-1:-1:-1::0;;;;;8624:40:65::1;;8673:4;8680:3;8685:9;;8695:1;8685:12;;;;;;;:::i;:::-;8624:74;::::0;;::::1;::::0;;;;;;-1:-1:-1;;;;;6382:15:101;;;8624:74:65::1;::::0;::::1;6364:34:101::0;6434:15;;;;6414:18;;;6407:43;-1:-1:-1;8685:12:65::1;::::0;;::::1;;;6466:18:101::0;;;6459:34;6276:18;;8624:74:65::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:65::1;9024:3;-1:-1:-1::0;;;;;9002:60:65::1;;9045:16;9002:60;;;;;;:::i;:::-;;;;;;;;8958:115;8280:799;;2150:1;8118:961:::0;;;;:::o;9466:379::-;9539:4;3838:10:33;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:33;;3819:58;;;;-1:-1:-1;;;3819:58:33;;10564:2:101;3819:58:33;;;10546:21:101;10603:2;10583:18;;;10576:30;10642:26;10622:18;;;10615:54;10686:18;;3819:58:33;10536:174:101;3819:58:33;-1:-1:-1;;;;;9563:30:65;::::1;9555:76;;;::::0;-1:-1:-1;;;9555:76:65;;9755:2:101;9555:76:65::1;::::0;::::1;9737:21:101::0;9794:2;9774:18;;;9767:30;9833:34;9813:18;;;9806:62;9904:3;9884:18;;;9877:31;9925:19;;9555:76:65::1;9727:223:101::0;9555:76:65::1;9657:6;::::0;-1:-1:-1;;;;;9657:6:65::1;9649:29:::0;9641:70:::1;;;::::0;-1:-1:-1;;;9641:70:65;;11638:2:101;9641:70:65::1;::::0;::::1;11620:21:101::0;11677:2;11657:18;;;11650:30;11716;11696:18;;;11689:58;11764:18;;9641:70:65::1;11610:178:101::0;9641:70:65::1;9722:6;:16:::0;;-1:-1:-1;;9722:16:65::1;-1:-1:-1::0;;;;;9722:16:65;::::1;::::0;;::::1;::::0;;;9754:18:::1;::::0;::::1;::::0;-1:-1:-1;;9754:18:65::1;9783:33;-1:-1:-1::0;;9783:14:65::1;:33::i;:::-;-1:-1:-1::0;9834:4:65::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:65;2080:10;:27;2072:68;;;;-1:-1:-1;;;2072:68:65;;9398:2:101;2072:68:65;;;9380:21:101;9437:2;9417:18;;;9410:30;9476;9456:18;;;9449:58;9524:18;;2072:68:65;9370:178:101;2072:68:65;7951:42:::1;7964:3;7969:14;7985:7;7951:12;:42::i;:::-;7947:128;;;8040:14;-1:-1:-1::0;;;;;8014:50:65::1;8035:3;-1:-1:-1::0;;;;;8014:50:65::1;;8056:7;8014:50;;;;14550:25:101::0;;14538:2;14523:18;;14505:76;10047:196:65;3838:10:33;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:33;;3819:58;;;;-1:-1:-1;;;3819:58:33;;10564:2:101;3819:58:33;;;10546:21:101;10603:2;10583:18;;;10576:30;10642:26;10622:18;;;10615:54;10686:18;;3819:58:33;10536:174:101;3819:58:33;10149:34:65::1;::::0;-1:-1:-1;;;10149:34:65;;10177:4:::1;10149:34;::::0;::::1;5684:74:101::0;10186:1:65::1;::::0;-1:-1:-1;;;;;10149:19:65;::::1;::::0;::::1;::::0;5657:18:101;;10149:34:65::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:38;10145:92;;;10203:23;::::0;;;;-1:-1:-1;;;;;5702:55:101;;;10203:23:65::1;::::0;::::1;5684:74:101::0;10203:18:65;::::1;::::0;::::1;::::0;5657::101;;10203:23:65::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;10145:92;10047:196:::0;;:::o;3392:116::-;3455:7;3481:20;:18;:20::i;2297:173:66:-;1744:1:3;2325:7;;:19;;2317:63;;;;-1:-1:-1;;;2317:63:3;;13528:2:101;2317:63:3;;;13510:21:101;13567:2;13547:18;;;13540:30;13606:33;13586:18;;;13579:61;13657:18;;2317:63:3;13500:181:101;2317:63:3;1744:1;2455:18;;3838:10:33::1;3827:7;1860::::0;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;3827:7:::1;-1:-1:-1::0;;;;;3827:21:33::1;;3819:58;;;::::0;-1:-1:-1;;;3819:58:33;;10564:2:101;3819:58:33::1;::::0;::::1;10546:21:101::0;10603:2;10583:18;;;10576:30;10642:26;10622:18;;;10615:54;10686:18;;3819:58:33::1;10536:174:101::0;3819:58:33::1;2356:15:66::2;2374:8;:6;:8::i;:::-;:33;::::0;-1:-1:-1;;;2374:33:66;;2401:4:::2;2374:33;::::0;::::2;5684:74:101::0;-1:-1:-1;;;;;2374:18:66;;;::::2;::::0;::::2;::::0;5657::101;;2374:33:66::2;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2356:51;;2417:16;2425:7;2417;:16::i;:::-;2449:14;::::0;14550:25:101;;;2449:14:66::2;::::0;14538:2:101;14523:18;2449:14:66::2;;;;;;;-1:-1:-1::0;1701:1:3;2628:7;:22;2297:173:66:o;3147:129:33:-;4050:13;;-1:-1:-1;;;;;4050:13:33;4036:10;:27;4028:71;;;;-1:-1:-1;;;4028:71:33;;11278:2:101;4028:71:33;;;11260:21:101;11317:2;11297:18;;;11290:30;11356:33;11336:18;;;11329:61;11407:18;;4028:71:33;11250:181:101;4028:71:33;3219:13:::1;::::0;3209:24:::1;::::0;-1:-1:-1;;;;;3219:13:33::1;3209:9;:24::i;:::-;3243:13;:26:::0;;-1:-1:-1;;3243:26:33::1;::::0;;3147:129::o;6909:507:65:-;2094:13;;-1:-1:-1;;;;;2094:13:65;2080:10;:27;2072:68;;;;-1:-1:-1;;;2072:68:65;;9398:2:101;2072:68:65;;;9380:21:101;9437:2;9417:18;;;9410:30;9476;9456:18;;;9449:58;9524:18;;2072:68:65;9370:178:101;2072:68:65;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:65;;11995:2:101;7120:72:65::1;::::0;::::1;11977:21:101::0;12034:2;12014:18;;;12007:30;12073:31;12053:18;;;12046:59;12122:18;;7120:72:65::1;11967:179:101::0;7120:72:65::1;7250:29:::0;;::::1;7227:20;:52:::0;7318:6:::1;::::0;-1:-1:-1;;;;;7318:6:65::1;7335:28;7341:3:::0;7272:7;7318:6;7335:5:::1;:28::i;:::-;7392:7;-1:-1:-1::0;;;;;7379:30:65::1;7387:3;-1:-1:-1::0;;;;;7379:30:65::1;;7401:7;7379:30;;;;14550:25:101::0;;14538:2;14523:18;;14505:76;7379:30:65::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:65:o;2508:94:33:-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:33;;3819:58;;;;-1:-1:-1;;;3819:58:33;;10564:2:101;3819:58:33;;;10546:21:101;10603:2;10583:18;;;10576:30;10642:26;10622:18;;;10615:54;10686:18;;3819:58:33;10536:174:101;3819:58:33;2574:21:::1;2592:1;2574:9;:21::i;:::-;2508:94::o:0;3214:141:65:-;13170:6;;3294:4;;-1:-1:-1;;;;;13170:26:65;;;:6;;:26;3317:31;13074:130;9305:124;3838:10:33;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:33;;3819:58;;;;-1:-1:-1;;;3819:58:33;;10564:2:101;3819:58:33;;;10546:21:101;10603:2;10583:18;;;10576:30;10642:26;10622:18;;;10615:54;10686:18;;3819:58:33;10536:174:101;3819:58:33;9391:31:65::1;9408:13;9391:16;:31::i;:::-;9305:124:::0;:::o;9882:128::-;3838:10:33;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:33;;3819:58;;;;-1:-1:-1;;;3819:58:33;;10564:2:101;3819:58:33;;;10546:21:101;10603:2;10583:18;;;10576:30;10642:26;10622:18;;;10615:54;10686:18;;3819:58:33;10536:174:101;3819:58:33;9970:33:65::1;9988:14;9970:17;:33::i;6371:501::-:0;6497:7;1744:1:3;2325:7;;:19;;2317:63;;;;-1:-1:-1;;;2317:63:3;;13528:2:101;2317:63:3;;;13510:21:101;13567:2;13547:18;;;13540:30;13606:33;13586:18;;;13579:61;13657:18;;2317:63:3;13500:181:101;2317:63:3;1744:1;2455:18;;6538:6:65::1;::::0;6583:54:::1;::::0;;;;6610:10:::1;6583:54;::::0;::::1;6364:34:101::0;-1:-1:-1;;;;;6434:15:101;;;6414:18;;;6407:43;6466:18;;;6459:34;;;6538:6:65;;::::1;::::0;;;6583:26:::1;::::0;6276:18:101;;6583:54:65::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:65::1;::::0;:39;:21:::1;:39::i;:::-;6780:58;::::0;;15062:25:101;;;15118:2;15103:18;;15096:34;;;-1:-1:-1;;;;;6780:58:65;;::::1;::::0;;;::::1;::::0;6791:10:::1;::::0;6780:58:::1;::::0;15035:18:101;6780:58:65::1;;;;;;;1701:1:3::0;2628:7;:22;6856:9:65;6371:501;-1:-1:-1;;;;6371:501:65:o;9116:152::-;9197:4;3838:10:33;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:33;;3819:58;;;;-1:-1:-1;;;3819:58:33;;10564:2:101;3819:58:33;;;10546:21:101;10603:2;10583:18;;;10576:30;10642:26;10622:18;;;10615:54;10686:18;;3819:58:33;10536:174:101;3819:58:33;9213:27:65::1;9228:11;9213:14;:27::i;2760:89::-:0;2806:7;2832:10;:8;:10::i;5405:285::-;1744:1:3;2325:7;;:19;;2317:63;;;;-1:-1:-1;;;2317:63:3;;13528:2:101;2317:63:3;;;13510:21:101;13567:2;13547:18;;;13540:30;13606:33;13586:18;;;13579:61;13657:18;;2317:63:3;13500:181:101;2317:63:3;1744:1;2455:18;;5563:7:65;2327:25:::1;5563:7:::0;2327:16:::1;:25::i;:::-;2319:69;;;::::0;-1:-1:-1;;;2319:69:65;;13888:2:101;2319:69:65::1;::::0;::::1;13870:21:101::0;13927:2;13907:18;;;13900:30;13966:33;13946:18;;;13939:61;14017:18;;2319:69:65::1;13860:181:101::0;2319:69:65::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;6004:34:101::0;-1:-1:-1;;;;;6074:15:101;;;6054:18;;;6047:43;5632:6:65;;::::2;::::0;:28:::2;::::0;5916:18:101;;5632:51:65::2;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;;1701:1:3;2628:7;:22;-1:-1:-1;;;;;;5405:285:65:o;4234:903::-;4305:7;1744:1:3;2325:7;;:19;;2317:63;;;;-1:-1:-1;;;2317:63:3;;13528:2:101;2317:63:3;;;13510:21:101;13567:2;13547:18;;;13540:30;13606:33;13586:18;;;13579:61;13657:18;;2317:63:3;13500:181:101;2317:63:3;1744:1;2455:18;;4324:25:65::1;4352:20;:18;:20::i;:::-;4412;::::0;4324:48;;-1:-1:-1;4382:27:65::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:65;;4887:207:::1;;4983:20;:42:::0;;;5045:38:::1;::::0;14550:25:101;;;4956:13:65;;-1:-1:-1;4956:13:65;;5045:38:::1;::::0;14538:2:101;14523:18;5045:38:65::1;;;;;;;4887:207;-1:-1:-1::0;;1701:1:3;2628:7;:22;-1:-1:-1;5111:19:65;4234:903;-1:-1:-1;;4234:903:65:o;2751:234:33:-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:33;;3819:58;;;;-1:-1:-1;;;3819:58:33;;10564:2:101;3819:58:33;;;10546:21:101;10603:2;10583:18;;;10576:30;10642:26;10622:18;;;10615:54;10686:18;;3819:58:33;10536:174:101;3819:58:33;-1:-1:-1;;;;;2834:23:33;::::1;2826:73;;;::::0;-1:-1:-1;;;2826:73:33;;12711:2:101;2826:73:33::1;::::0;::::1;12693:21:101::0;12750:2;12730:18;;;12723:30;12789:34;12769:18;;;12762:62;12860:7;12840:18;;;12833:35;12885:19;;2826:73:33::1;12683:227:101::0;2826:73:33::1;2910:13;:25:::0;;-1:-1:-1;;2910:25:33::1;-1:-1:-1::0;;;;;2910:25:33;::::1;::::0;;::::1;::::0;;;2951:27:::1;::::0;::::1;::::0;-1:-1:-1;;2951:27:33::1;2751:234:::0;:::o;5174:194:65:-;1744:1:3;2325:7;;:19;;2317:63;;;;-1:-1:-1;;;2317:63:3;;13528:2:101;2317:63:3;;;13510:21:101;13567:2;13547:18;;;13540:30;13606:33;13586:18;;;13579:61;13657:18;;2317:63:3;13500:181:101;2317:63:3;1744:1;2455:18;;5302:7:65;2327:25:::1;5302:7:::0;2327:16:::1;:25::i;:::-;2319:69;;;::::0;-1:-1:-1;;;2319:69:65;;13888:2:101;2319:69:65::1;::::0;::::1;13870:21:101::0;13927:2;13907:18;;;13900:30;13966:33;13946:18;;;13939:61;14017:18;;2319:69:65::1;13860:181:101::0;2319:69:65::1;5325:36:::2;5336:10;5348:3;5353:7;5325:10;:36::i;:::-;-1:-1:-1::0;;1701:1:3;2628:7;:22;-1:-1:-1;5174:194:65:o;10936:372::-;11060:4;11084:33;11102:14;11084:17;:33::i;:::-;11076:78;;;;-1:-1:-1;;;11076:78:65;;10917:2:101;11076:78:65;;;10899:21:101;;;10936:18;;;10929:30;10995:34;10975:18;;;10968:62;11047:18;;11076:78:65;10889:182:101;11076:78:65;11169:12;11165:55;;-1:-1:-1;11204:5:65;11197:12;;11165:55;11230:49;-1:-1:-1;;;;;11230:35:65;;11266:3;11271:7;11230:35;:49::i;:::-;-1:-1:-1;11297:4:65;10936:372;;;;;;:::o;2887:286:66:-;2970:4;3014:11;-1:-1:-1;;;;;3056:39:66;;;;;;;;;;:100;;;3129:12;-1:-1:-1;;;;;3129:25:66;;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;3111:45:66;:14;-1:-1:-1;;;;;3111:45:66;;;3035:131;2887:286;-1:-1:-1;;;2887:286:66:o;13334:136:65:-;13398:10;:24;;;13437:26;;14550:25:101;;;13437:26:65;;14538:2:101;14523:18;13437:26:65;;;;;;;;13334:136;:::o;3594:116:66:-;3644:6;3676:11;-1:-1:-1;;;;;3676:24:66;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;14215:106:65:-;14294:6;;:20;;;;;;;;14268:7;;-1:-1:-1;;;;;14294:6:65;;:18;;:20;;;;;;;;;;;;;;:6;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;3844:201:66:-;3910:65;3949:11;3963;3910:8;:6;:8::i;:::-;-1:-1:-1;;;;;3910:30:66;;:65;:30;:65::i;:::-;3985:53;;;;;;;;14760:25:101;;;4032:4:66;14801:18:101;;;14794:83;3985:11:66;-1:-1:-1;;;;;3985:25:66;;;;14733:18:101;;3985:53:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3844:201;:::o;3470:174:33:-;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:33;;;-1:-1:-1;;3562:18:33;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;11602:172:65:-;11722:45;;;;;-1:-1:-1;;;;;6696:55:101;;;11722:45:65;;;6678:74:101;6768:18;;;6761:34;;;11722:31:65;;;;;6651:18:101;;11722:45:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11602:172;;;:::o;13592:148::-;13660:12;:28;;;13703:30;;14550:25:101;;;13703:30:65;;14538:2:101;14523:18;13703:30:65;14505:76:101;13887:239:65;-1:-1:-1;;;;;13965:28:65;;13957:73;;;;-1:-1:-1;;;13957:73:65;;9037:2:101;13957:73:65;;;9019:21:101;;;9056:18;;;9049:30;9115:34;9095:18;;;9088:62;9167:18;;13957:73:65;9009:182:101;13957:73:65;14041:13;:30;;-1:-1:-1;;14041:30:65;-1:-1:-1;;;;;14041:30:65;;;;;;;;14087:32;;;;-1:-1:-1;;14087:32:65;13887:239;:::o;4254:138:66:-;4347:38;;;;;;;;14550:25:101;;;4321:7:66;;4347:11;-1:-1:-1;;;;;4347:23:66;;;;14523:18:101;;4347:38:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;701:205:9:-;840:58;;-1:-1:-1;;;;;6696:55:101;;840:58:9;;;6678:74:101;6768:18;;;6761:34;;;813:86:9;;833:5;;863:23;;6651:18:101;;840:58:9;;;;-1:-1:-1;;840:58:9;;;;;;;;;;;;;;;;;;;;;;;;;;;813:19;:86::i;3337:121:66:-;3410:41;;;;;3445:4;3410:41;;;5684:74:101;3384:7:66;;3410:11;-1:-1:-1;;;;;3410:26:66;;;;5657:18:101;;3410:41:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12605:252:65;12711:12;;12671:4;;-1:-1:-1;;12737:34:65;;12733:51;;;-1:-1:-1;12780:4:65;;12605:252;-1:-1:-1;;12605:252:65:o;12733:51::-;12836:13;12825:7;12802:20;:18;:20::i;:::-;:30;;;;:::i;:::-;:47;;;12605:252;-1:-1:-1;;;12605:252:65:o;5938:396::-;6038:25;6050:3;6055:7;6038:11;:25::i;:::-;6030:67;;;;-1:-1:-1;;;6030:67:65;;14248:2:101;6030:67:65;;;14230:21:101;14287:2;14267:18;;;14260:30;14326:31;14306:18;;;14299:59;14375:18;;6030:67:65;14220:179:101;6030:67:65;6126:6;;-1:-1:-1;;;;;6126:6:65;6143:60;6169:9;6188:4;6195:7;6143:8;:6;:8::i;:::-;-1:-1:-1;;;;;6143:25:65;;: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:65;6305:3;-1:-1:-1;;;;;6284:43:65;6294:9;-1:-1:-1;;;;;6284:43:65;;6319:7;6284:43;;;;14550:25:101;;14538:2;14523:18;;14505:76;6284:43:65;;;;;;;;6020:314;5938:396;;;:::o;2022:310:9:-;2171:39;;;;;2195:4;2171:39;;;6004:34:101;-1:-1:-1;;;;;6074:15:101;;;6054:18;;;6047:43;2148:20:9;;2213:5;;2171:15;;;;;5916:18:101;;2171:39:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:47;;;;:::i;:::-;2255:69;;-1:-1:-1;;;;;6696:55:101;;2255:69:9;;;6678:74:101;6768:18;;;6761:34;;;2148:70:9;;-1:-1:-1;2228:97:9;;2248:5;;2278:22;;6651:18:101;;2255:69:9;6633:168:101;3207:706:9;3626:23;3652:69;3680:4;3652:69;;;;;;;;;;;;;;;;;3660:5;-1:-1:-1;;;;;3652:27:9;;;:69;;;;;:::i;:::-;3735:17;;3626:95;;-1:-1:-1;3735:21:9;3731:176;;3830:10;3819:30;;;;;;;;;;;;:::i;:::-;3811:85;;;;-1:-1:-1;;;3811:85:9;;13117:2:101;3811:85:9;;;13099:21:101;13156:2;13136:18;;;13129:30;13195:34;13175:18;;;13168:62;13266:12;13246:18;;;13239:40;13296:19;;3811:85:9;13089:232:101;12093:259:65;12207:10;;12169:4;;-1:-1:-1;;12232:32:65;;12228:49;;;12273:4;12266:11;;;;;12228:49;12296:6;;:23;;-1:-1:-1;;;12296:23:65;;-1:-1:-1;;;;;5702:55:101;;;12296:23:65;;;5684:74:101;12333:11:65;;12322:7;;12296:6;;;:16;;5657:18:101;;12296:23:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:33;;;;:::i;:::-;:48;;;12093:259;-1:-1:-1;;;;12093:259:65:o;912:241:9:-;1077:68;;-1:-1:-1;;;;;6382:15:101;;;1077:68:9;;;6364:34:101;6434:15;;6414:18;;;6407:43;6466:18;;;6459:34;;;1050:96:9;;1070:5;;1100:27;;6276:18:101;;1077:68:9;6258:241:101;3514:223:12;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:12:o;4601:499::-;4766:12;4823:5;4798:21;:30;;4790:81;;;;-1:-1:-1;;;4790:81:12;;10157:2:101;4790:81:12;;;10139:21:101;10196:2;10176:18;;;10169:30;10235:34;10215:18;;;10208:62;10306:8;10286:18;;;10279:36;10332:19;;4790:81:12;10129:228:101;4790:81:12;1087:20;;4881:60;;;;-1:-1:-1;;;4881:60:12;;12353:2:101;4881:60:12;;;12335:21:101;12392:2;12372:18;;;12365:30;12431:31;12411:18;;;12404:59;12480:18;;4881:60:12;12325:179:101;4881:60:12;4953:12;4967:23;4994:6;-1:-1:-1;;;;;4994:11:12;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:12:o;7214:692::-;7360:12;7388:7;7384:516;;;-1:-1:-1;7418:10:12;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:12;;;;;;;;:::i;14:247:101:-;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:101;869:18;;856:32;897:33;856:32;897:33;:::i;:::-;949:7;-1:-1:-1;1007:2:101;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:101;1371:11;;-1:-1:-1;;;661:752:101: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:101;1730:18;;1717:32;1758:33;1717:32;1758:33;:::i;:::-;1522:352;;1810:7;;-1:-1:-1;;;1864:2:101;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:101;2228:18;;2215:32;2256:33;2215:32;2256:33;:::i;:::-;2308:7;-1:-1:-1;2362:2:101;2347:18;;2334:32;;-1:-1:-1;2417:2:101;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:101;;-1:-1:-1;2781:2:101;2773:11;;2803:6;2019:796;-1:-1:-1;;;2019:796:101: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:101: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:101;3447:18;;3434:32;;-1:-1:-1;3518:2:101;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:407;3970:6;3978;4031:2;4019:9;4010:7;4006:23;4002:32;3999:2;;;4047:1;4044;4037:12;3999:2;4086:9;4073:23;4105:31;4130:5;4105:31;:::i;:::-;4155:5;-1:-1:-1;4212:2:101;4197:18;;4184:32;4225:33;4184:32;4225:33;:::i;:::-;4277:7;4267:17;;;3989:301;;;;;:::o;4564:180::-;4623:6;4676:2;4664:9;4655:7;4651:23;4647:32;4644:2;;;4692:1;4689;4682:12;4644:2;-1:-1:-1;4715:23:101;;4634:110;-1:-1:-1;4634:110:101:o;4749:184::-;4819:6;4872:2;4860:9;4851:7;4847:23;4843:32;4840:2;;;4888:1;4885;4878:12;4840:2;-1:-1:-1;4911:16:101;;4830:103;-1:-1:-1;4830:103:101:o;4938:316::-;4979:3;5017:5;5011:12;5044:6;5039:3;5032:19;5060:63;5116:6;5109:4;5104:3;5100:14;5093:4;5086:5;5082:16;5060:63;:::i;:::-;5168:2;5156:15;-1:-1:-1;;5152:88:101;5143:98;;;;5243:4;5139:109;;4987:267;-1:-1:-1;;4987:267:101:o;5259:274::-;5388:3;5426:6;5420:13;5442:53;5488:6;5483:3;5476:4;5468:6;5464:17;5442:53;:::i;:::-;5511:16;;;;;5396:137;-1:-1:-1;;5396:137:101:o;6806:632::-;6977:2;7029:21;;;7099:13;;7002:18;;;7121:22;;;6948:4;;6977:2;7200:15;;;;7174:2;7159:18;;;6948:4;7243:169;7257:6;7254:1;7251:13;7243:169;;;7318:13;;7306:26;;7387:15;;;;7352:12;;;;7279:1;7272:9;7243:169;;;-1:-1:-1;7429:3:101;;6957:481;-1:-1:-1;;;;;;6957:481:101:o;7888:217::-;8035:2;8024:9;8017:21;7998:4;8055:44;8095:2;8084:9;8080:18;8072:6;8055:44;:::i;15141:128::-;15181:3;15212:1;15208:6;15205:1;15202:13;15199:2;;;15218:18;;:::i;:::-;-1:-1:-1;15254:9:101;;15189:80::o;15274:125::-;15314:4;15342:1;15339;15336:8;15333:2;;;15347:18;;:::i;:::-;-1:-1:-1;15384:9:101;;15323:76::o;15404:258::-;15476:1;15486:113;15500:6;15497:1;15494:13;15486:113;;;15576:11;;;15570:18;15557:11;;;15550:39;15522:2;15515:10;15486:113;;;15617:6;15614:1;15611:13;15608:2;;;-1:-1:-1;;15652:1:101;15634:16;;15627:27;15457:205::o;15667:195::-;15706:3;-1:-1:-1;;15730:5:101;15727:77;15724:2;;;15807:18;;:::i;:::-;-1:-1:-1;15854:1:101;15843:13;;15714:148::o;15867:184::-;-1:-1:-1;;;15916:1:101;15909:88;16016:4;16013:1;16006:15;16040:4;16037:1;16030:15;16056:184;-1:-1:-1;;;16105:1:101;16098:88;16205:4;16202:1;16195:15;16229:4;16226:1;16219:15;16245:184;-1:-1:-1;;;16294:1:101;16287:88;16394:4;16391:1;16384:15;16418:4;16415:1;16408:15;16434:154;-1:-1:-1;;;;;16513:5:101;16509:54;16502:5;16499:65;16489:2;;16578:1;16575;16568: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.\"},\"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.\\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\":\"0xa3cc6bff882d541d6642bbff0988fc592ff513a682dde6888ab55eaec29df7a9\",\"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 buffer) 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 of 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 seven year minimum,\\n                of accurate historical lookups with current estimates of 1 new block\\n                every 15 seconds - assuming each block contains 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\":\"0x446d8221329601d40464981a50a0e31f3fd48da0ebf0fea646c5a089ccfbdff4\",\"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": 5205,
                "contract": "@pooltogether/v4-core/contracts/prize-pool/YieldSourcePrizePool.sol:YieldSourcePrizePool",
                "label": "_owner",
                "offset": 0,
                "slot": "0",
                "type": "t_address"
              },
              {
                "astId": 5207,
                "contract": "@pooltogether/v4-core/contracts/prize-pool/YieldSourcePrizePool.sol:YieldSourcePrizePool",
                "label": "_pendingOwner",
                "offset": 0,
                "slot": "1",
                "type": "t_address"
              },
              {
                "astId": 237,
                "contract": "@pooltogether/v4-core/contracts/prize-pool/YieldSourcePrizePool.sol:YieldSourcePrizePool",
                "label": "_status",
                "offset": 0,
                "slot": "2",
                "type": "t_uint256"
              },
              {
                "astId": 13475,
                "contract": "@pooltogether/v4-core/contracts/prize-pool/YieldSourcePrizePool.sol:YieldSourcePrizePool",
                "label": "ticket",
                "offset": 0,
                "slot": "3",
                "type": "t_contract(ITicket)11825"
              },
              {
                "astId": 13478,
                "contract": "@pooltogether/v4-core/contracts/prize-pool/YieldSourcePrizePool.sol:YieldSourcePrizePool",
                "label": "prizeStrategy",
                "offset": 0,
                "slot": "4",
                "type": "t_address"
              },
              {
                "astId": 13481,
                "contract": "@pooltogether/v4-core/contracts/prize-pool/YieldSourcePrizePool.sol:YieldSourcePrizePool",
                "label": "balanceCap",
                "offset": 0,
                "slot": "5",
                "type": "t_uint256"
              },
              {
                "astId": 13484,
                "contract": "@pooltogether/v4-core/contracts/prize-pool/YieldSourcePrizePool.sol:YieldSourcePrizePool",
                "label": "liquidityCap",
                "offset": 0,
                "slot": "6",
                "type": "t_uint256"
              },
              {
                "astId": 13487,
                "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)11825": {
                "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."
              },
              "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.\\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\":\"0xa3cc6bff882d541d6642bbff0988fc592ff513a682dde6888ab55eaec29df7a9\",\"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 buffer) 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 of 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 seven year minimum,\\n                of accurate historical lookups with current estimates of 1 new block\\n                every 15 seconds - assuming each block contains 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\":\"0x446d8221329601d40464981a50a0e31f3fd48da0ebf0fea646c5a089ccfbdff4\",\"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": 5205,
                "contract": "@pooltogether/v4-core/contracts/prize-strategy/PrizeSplit.sol:PrizeSplit",
                "label": "_owner",
                "offset": 0,
                "slot": "0",
                "type": "t_address"
              },
              {
                "astId": 5207,
                "contract": "@pooltogether/v4-core/contracts/prize-strategy/PrizeSplit.sol:PrizeSplit",
                "label": "_pendingOwner",
                "offset": 0,
                "slot": "1",
                "type": "t_address"
              },
              {
                "astId": 14748,
                "contract": "@pooltogether/v4-core/contracts/prize-strategy/PrizeSplit.sol:PrizeSplit",
                "label": "_prizeSplits",
                "offset": 0,
                "slot": "2",
                "type": "t_array(t_struct(PrizeSplitConfig)11515_storage)dyn_storage"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_array(t_struct(PrizeSplitConfig)11515_storage)dyn_storage": {
                "base": "t_struct(PrizeSplitConfig)11515_storage",
                "encoding": "dynamic_array",
                "label": "struct IPrizeSplit.PrizeSplitConfig[]",
                "numberOfBytes": "32"
              },
              "t_struct(PrizeSplitConfig)11515_storage": {
                "encoding": "inplace",
                "label": "struct IPrizeSplit.PrizeSplitConfig",
                "members": [
                  {
                    "astId": 11512,
                    "contract": "@pooltogether/v4-core/contracts/prize-strategy/PrizeSplit.sol:PrizeSplit",
                    "label": "target",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_address"
                  },
                  {
                    "astId": 11514,
                    "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": {
                "@_15142": {
                  "entryPoint": null,
                  "id": 15142,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_5230": {
                  "entryPoint": null,
                  "id": 5230,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setOwner_5327": {
                  "entryPoint": 269,
                  "id": 5327,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "abi_decode_tuple_t_addresst_contract$_IPrizePool_$11495_fromMemory": {
                  "entryPoint": 349,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_encode_tuple_t_contract$_IPrizePool_$11495__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:1200:101",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:101",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "132:287:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "178:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "187:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "190:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "180:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "180:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "180:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "153:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "162:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "149:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "149:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "174:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "145:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "145:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "142:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "203:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "222:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "216:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "216:16:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "207:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "266:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "241:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "241:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "241:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "281:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "291:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "281:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "305:40:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "330:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "341:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "326:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "326:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "320:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "320:25:101"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "309:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "379:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "354:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "354:33:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "354:33:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "396:17:101",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "406:7:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "396:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_contract$_IPrizePool_$11495_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "90:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "101:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "113:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "121:6:101",
                            "type": ""
                          }
                        ],
                        "src": "14:405:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "545:102:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "555:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "567:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "578:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "563:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "563:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "555:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "597:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "612:6:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "628:3:101",
                                                "type": "",
                                                "value": "160"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "633:1:101",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "624:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "624:11:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "637:1:101",
                                            "type": "",
                                            "value": "1"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "sub",
                                          "nodeType": "YulIdentifier",
                                          "src": "620:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "620:19:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "608:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "608:32:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "590:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "590:51:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "590:51:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IPrizePool_$11495__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "514:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "525:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "536:4:101",
                            "type": ""
                          }
                        ],
                        "src": "424:223:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "826:236:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "843:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "854:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "836:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "836:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "836:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "877:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "888:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "873:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "873:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "893:2:101",
                                    "type": "",
                                    "value": "46"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "866:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "866:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "866:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "916:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "927:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "912:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "912:18:101"
                                  },
                                  {
                                    "hexValue": "5072697a6553706c697453747261746567792f7072697a652d706f6f6c2d6e6f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "932:34:101",
                                    "type": "",
                                    "value": "PrizeSplitStrategy/prize-pool-no"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "905:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "905:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "905:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "987:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "998:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "983:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "983:18:101"
                                  },
                                  {
                                    "hexValue": "742d7a65726f2d61646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "1003:16:101",
                                    "type": "",
                                    "value": "t-zero-address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "976:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "976:44:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "976:44:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1029:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1041:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1052:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1037:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1037:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1029:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_f9fc44fe3aa7ee21ea2cdd22b631ab2cd09324a8cfe0653e1e16eb1ea032e2b6__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "803:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "817:4:101",
                            "type": ""
                          }
                        ],
                        "src": "652:410:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1112:86:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1176:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1185:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1188:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1178:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1178:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1178:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1135:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1146:5:101"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "1161:3:101",
                                                    "type": "",
                                                    "value": "160"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "1166:1:101",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1157:3:101"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "1157:11:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1170:1:101",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "1153:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1153:19:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1142:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1142:31:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1132:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1132:42:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1125:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1125:50:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1122:2:101"
                            }
                          ]
                        },
                        "name": "validator_revert_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "1101:5:101",
                            "type": ""
                          }
                        ],
                        "src": "1067:131:101"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_tuple_t_addresst_contract$_IPrizePool_$11495_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_$11495__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": 101,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "60a06040523480156200001157600080fd5b506040516200154e3803806200154e83398101604081905262000034916200015d565b8162000040816200010d565b506001600160a01b038116620000b35760405162461bcd60e51b815260206004820152602e60248201527f5072697a6553706c697453747261746567792f7072697a652d706f6f6c2d6e6f60448201526d742d7a65726f2d6164647265737360901b606482015260840160405180910390fd5b606081901b6001600160601b0319166080526040516001600160a01b0380831682528316907f09e48df7857bd0c1e0d31bb8a85d42cf1874817895f171c917f6ee2cea73ec209060200160405180910390a25050620001b5565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080604083850312156200017157600080fd5b82516200017e816200019c565b602084015190925062000191816200019c565b809150509250929050565b6001600160a01b0381168114620001b257600080fd5b50565b60805160601c611365620001e96000396000818161013401528181610b0d01528181610eab0152610f7c01526113656000f3fe608060405234801561001057600080fd5b50600436106100d45760003560e01c80638da5cb5b11610081578063e30c39781161005b578063e30c3978146101cd578063e4fc6b6d146101de578063f2fde38b146101f457600080fd5b80638da5cb5b1461016c578063cf1e3b591461017d578063cf713d6e1461019257600080fd5b80634e71e0c8116100b25780634e71e0c814610122578063715018a61461012a578063884bf67c1461013257600080fd5b8063056ea84f146100d9578063063a2298146100ee57806345a9f18714610101575b600080fd5b6100ec6100e7366004611176565b610207565b005b6100ec6100fc3660046110c8565b6104b6565b61010a6103e881565b60405161ffff90911681526020015b60405180910390f35b6100ec61092b565b6100ec6109b9565b7f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b039091168152602001610119565b6000546001600160a01b0316610154565b610185610a2e565b60405161011991906111e6565b6101a56101a03660046111b4565b610aa5565b6040805182516001600160a01b0316815260209283015161ffff169281019290925201610119565b6001546001600160a01b0316610154565b6101e6610b08565b604051908152602001610119565b6100ec6102023660046110a4565b610bfc565b3361021a6000546001600160a01b031690565b6001600160a01b0316146102755760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064015b60405180910390fd5b60025460ff8216106102ef5760405162461bcd60e51b815260206004820152602160248201527f5072697a6553706c69742f6e6f6e6578697374656e742d7072697a6573706c6960448201527f7400000000000000000000000000000000000000000000000000000000000000606482015260840161026c565b81516001600160a01b031661036b5760405162461bcd60e51b8152602060048201526024808201527f5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d746160448201527f7267657400000000000000000000000000000000000000000000000000000000606482015260840161026c565b8160028260ff168154811061038257610382611301565b60009182526020808320845192018054949091015161ffff16600160a01b0275ffffffffffffffffffffffffffffffffffffffffffff199094166001600160a01b0390921691909117929092179091556103da610d38565b90506103e88111156104545760405162461bcd60e51b815260206004820152602e60248201527f5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d706560448201527f7263656e746167652d746f74616c000000000000000000000000000000000000606482015260840161026c565b82600001516001600160a01b03167f0865d776fd684728838c688d6a6a82888f61c57a4032c8c320c24949317b9a348460200151846040516104a992919061ffff92909216825260ff16602082015260400190565b60405180910390a2505050565b336104c96000546001600160a01b031690565b6001600160a01b03161461051f5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161026c565b8060ff8111156105975760405162461bcd60e51b815260206004820152602560248201527f5072697a6553706c69742f696e76616c69642d7072697a6573706c6974732d6c60448201527f656e677468000000000000000000000000000000000000000000000000000000606482015260840161026c565b60005b8181101561081b5760008484838181106105b6576105b6611301565b9050604002018036038101906105cc919061115a565b80519091506001600160a01b031661064b5760405162461bcd60e51b8152602060048201526024808201527f5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d746160448201527f7267657400000000000000000000000000000000000000000000000000000000606482015260840161026c565b60025482106106d0576002805460018101825560009190915281517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace9091018054602084015161ffff16600160a01b0275ffffffffffffffffffffffffffffffffffffffffffff199091166001600160a01b03909316929092179190911790556107b6565b6000600283815481106106e5576106e5611301565b6000918252602091829020604080518082019091529101546001600160a01b03808216808452600160a01b90920461ffff1693830193909352845191935091161415806107425750806020015161ffff16826020015161ffff1614155b156107ad57816002848154811061075b5761075b611301565b6000918252602091829020835191018054939092015161ffff16600160a01b0275ffffffffffffffffffffffffffffffffffffffffffff199093166001600160a01b03909116179190911790556107b4565b5050610809565b505b80516020808301516040805161ffff90921682529181018590526001600160a01b03909216917f0865d776fd684728838c688d6a6a82888f61c57a4032c8c320c24949317b9a34910160405180910390a2505b80610813816112ba565b91505061059a565b505b6002548110156108a15760028054600019810191908061083f5761083f6112eb565b6000828152602081208201600019908101805475ffffffffffffffffffffffffffffffffffffffffffff1916905590910190915560405182917f99fa473fdf53414bcd014cf6e7509fc58c68f7b86174767faa6ad5100cd5bae591a25061081d565b60006108ab610d38565b90506103e88111156109255760405162461bcd60e51b815260206004820152602e60248201527f5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d706560448201527f7263656e746167652d746f74616c000000000000000000000000000000000000606482015260840161026c565b50505050565b6001546001600160a01b031633146109855760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e657200604482015260640161026c565b60015461099a906001600160a01b0316610d9a565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b336109cc6000546001600160a01b031690565b6001600160a01b031614610a225760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161026c565b610a2c6000610d9a565b565b60606002805480602002602001604051908101604052809291908181526020016000905b82821015610a9c57600084815260209081902060408051808201909152908401546001600160a01b0381168252600160a01b900461ffff1681830152825260019092019101610a52565b50505050905090565b604080518082019091526000808252602082015260028281548110610acc57610acc611301565b6000918252602091829020604080518082019091529101546001600160a01b0381168252600160a01b900461ffff169181019190915292915050565b6000807f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663e6d8a94b6040518163ffffffff1660e01b8152600401602060405180830381600087803b158015610b6657600080fd5b505af1158015610b7a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b9e91906111cd565b905080610bad57600091505090565b6000610bb882610df7565b90507fddc9c30275a04c48091f24199f9c405765de34d979d6847f5b9798a57232d2e5610be582846112a3565b60405190815260200160405180910390a150919050565b33610c0f6000546001600160a01b031690565b6001600160a01b031614610c655760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161026c565b6001600160a01b038116610ce15760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161026c565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b6002546000908190815b81811015610d925760028181548110610d5d57610d5d611301565b600091825260209091200154610d7e90600160a01b900461ffff168461124a565b925080610d8a816112ba565b915050610d42565b509092915050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6002546000908290825b81811015610e9e57600060028281548110610e1e57610e1e611301565b60009182526020808320604080518082019091529201546001600160a01b0381168352600160a01b900461ffff169082018190529092506103e890610e639089611284565b610e6d9190611262565b9050610e7d826000015182610ea7565b610e8781866112a3565b945050508080610e96906112ba565b915050610e01565b50909392505050565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c002c4d66040518163ffffffff1660e01b815260040160206040518083038186803b158015610f0257600080fd5b505afa158015610f16573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f3a919061113d565b6040517f5d8a776e0000000000000000000000000000000000000000000000000000000081526001600160a01b038581166004830152602482018590529192507f000000000000000000000000000000000000000000000000000000000000000090911690635d8a776e90604401600060405180830381600087803b158015610fc257600080fd5b505af1158015610fd6573d6000803e3d6000fd5b50505050806001600160a01b0316836001600160a01b03167f40b9722744d0ba62d8b847077d65a712335b6769aa37fff7ad7852ec299222a78460405161101f91815260200190565b60405180910390a3505050565b60006040828403121561103e57600080fd5b6040516040810181811067ffffffffffffffff8211171561106f57634e487b7160e01b600052604160045260246000fd5b604052905080823561108081611317565b8152602083013561ffff8116811461109757600080fd5b6020919091015292915050565b6000602082840312156110b657600080fd5b81356110c181611317565b9392505050565b600080602083850312156110db57600080fd5b823567ffffffffffffffff808211156110f357600080fd5b818501915085601f83011261110757600080fd5b81358181111561111657600080fd5b8660208260061b850101111561112b57600080fd5b60209290920196919550909350505050565b60006020828403121561114f57600080fd5b81516110c181611317565b60006040828403121561116c57600080fd5b6110c1838361102c565b6000806060838503121561118957600080fd5b611193848461102c565b9150604083013560ff811681146111a957600080fd5b809150509250929050565b6000602082840312156111c657600080fd5b5035919050565b6000602082840312156111df57600080fd5b5051919050565b602080825282518282018190526000919060409081850190868401855b8281101561123d5761122d84835180516001600160a01b0316825260209081015161ffff16910152565b9284019290850190600101611203565b5091979650505050505050565b6000821982111561125d5761125d6112d5565b500190565b60008261127f57634e487b7160e01b600052601260045260246000fd5b500490565b600081600019048311821515161561129e5761129e6112d5565b500290565b6000828210156112b5576112b56112d5565b500390565b60006000198214156112ce576112ce6112d5565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038116811461132c57600080fd5b5056fea26469706673582212208d2c273591897b558afa87fce7e033ce0af25b7a06cbed527e5bcd89a5b0255664736f6c63430008060033",
              "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 DUP14 0x2C 0x27 CALLDATALOAD SWAP2 DUP10 PUSH28 0x558AFA87FCE7E033CE0AF25B7A06CBED527E5BCD89A5B0255664736F PUSH13 0x63430008060033000000000000 ",
              "sourceMap": "877:1936:68:-:0;;;1436:285;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1495:6;1648:24:33;1495:6:68;1648:9:33;:24::i;:::-;-1:-1:-1;;;;;;1534:33:68;::::1;1513:126;;;::::0;-1:-1:-1;;;1513:126:68;;854:2:101;1513:126:68::1;::::0;::::1;836:21:101::0;893:2;873:18;;;866:30;932:34;912:18;;;905:62;-1:-1:-1;;;983:18:101;;;976:44;1037:19;;1513:126:68::1;;;;;;;;1649:22;::::0;;;-1:-1:-1;;;;;;1649:22:68;::::1;::::0;1686:28:::1;::::0;-1:-1:-1;;;;;608:32:101;;;590:51;;1686:28:68;::::1;::::0;::::1;::::0;578:2:101;563:18;1686:28:68::1;;;;;;;1436:285:::0;;877:1936;;3470:174:33;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:33;;;-1:-1:-1;;;;;;3562:18:33;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;14:405:101:-;113:6;121;174:2;162:9;153:7;149:23;145:32;142:2;;;190:1;187;180:12;142:2;222:9;216:16;241:31;266:5;241:31;:::i;:::-;341:2;326:18;;320:25;291:5;;-1:-1:-1;354:33:101;320:25;354:33;:::i;:::-;406:7;396:17;;;132:287;;;;;:::o;1067:131::-;-1:-1:-1;;;;;1142:31:101;;1132:42;;1122:2;;1188:1;1185;1178:12;1122:2;1112:86;:::o;:::-;877:1936:68;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@ONE_AS_FIXED_POINT_3_14751": {
                  "entryPoint": null,
                  "id": 14751,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@_awardPrizeSplitAmount_15217": {
                  "entryPoint": 3751,
                  "id": 15217,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_distributePrizeSplits_15076": {
                  "entryPoint": 3575,
                  "id": 15076,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_setOwner_5327": {
                  "entryPoint": 3482,
                  "id": 5327,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_totalPrizeSplitPercentageAmount_15017": {
                  "entryPoint": 3384,
                  "id": 15017,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@claimOwnership_5307": {
                  "entryPoint": 2347,
                  "id": 5307,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@distribute_15176": {
                  "entryPoint": 2824,
                  "id": 15176,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getPrizePool_15187": {
                  "entryPoint": null,
                  "id": 15187,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getPrizeSplit_14766": {
                  "entryPoint": 2725,
                  "id": 14766,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@getPrizeSplits_14778": {
                  "entryPoint": 2606,
                  "id": 14778,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@owner_5239": {
                  "entryPoint": null,
                  "id": 5239,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@pendingOwner_5248": {
                  "entryPoint": null,
                  "id": 5248,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@renounceOwnership_5262": {
                  "entryPoint": 2489,
                  "id": 5262,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@setPrizeSplit_14981": {
                  "entryPoint": 519,
                  "id": 14981,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@setPrizeSplits_14923": {
                  "entryPoint": 1206,
                  "id": 14923,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@transferOwnership_5289": {
                  "entryPoint": 3068,
                  "id": 5289,
                  "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_$11515_calldata_ptr_$dyn_calldata_ptr": {
                  "entryPoint": 4296,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_contract$_ITicket_$11825_fromMemory": {
                  "entryPoint": 4413,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_struct$_PrizeSplitConfig_$11515_memory_ptr": {
                  "entryPoint": 4442,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_struct$_PrizeSplitConfig_$11515_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_$11515_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_PrizeSplitConfig_$11515_memory_ptr_$dyn_memory_ptr__fromStack_reversed": {
                  "entryPoint": 4582,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_IPrizePool_$11495__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_$11515_memory_ptr__to_t_struct$_PrizeSplitConfig_$11515_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:10448:101",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:101",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "87:740:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "131:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "140:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "143:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "133:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "133:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "133:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "108:3:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "113:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "104:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "104:19:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "125:4:101",
                                    "type": "",
                                    "value": "0x40"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "100:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "100:30:101"
                              },
                              "nodeType": "YulIf",
                              "src": "97:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "156:25:101",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "176:4:101",
                                    "type": "",
                                    "value": "0x40"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "170:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "170:11:101"
                              },
                              "variables": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "160:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "190:35:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "212:6:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "220:4:101",
                                    "type": "",
                                    "value": "0x40"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "208:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "208:17:101"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "194:10:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "308:168:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "329:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "332:77:101",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "322:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "322:88:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "322:88:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "430:1:101",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "433:4:101",
                                          "type": "",
                                          "value": "0x41"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "423:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "423:15:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "423:15:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "458:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "461:4:101",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "451:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "451:15:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "451:15:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "243:10:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "255:18:101",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "240:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "240:34:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "279:10:101"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "291:6:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "276:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "276:22:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "237:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "237:62:101"
                              },
                              "nodeType": "YulIf",
                              "src": "234:2:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "492:4:101",
                                    "type": "",
                                    "value": "0x40"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "498:10:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "485:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "485:24:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "485:24:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "518:15:101",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "527:6:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "518:5:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "542:38:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "570:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "557:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "557:23:101"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "546:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "614:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "589:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "589:33:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "589:33:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "638:6:101"
                                  },
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "646:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "631:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "631:23:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "631:23:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "663:47:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "695:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "706:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "691:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "691:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "678:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "678:32:101"
                              },
                              "variables": [
                                {
                                  "name": "value_2",
                                  "nodeType": "YulTypedName",
                                  "src": "667:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "764:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "773:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "776:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "766:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "766:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "766:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "732:7:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "745:7:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "754:6:101",
                                            "type": "",
                                            "value": "0xffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "741:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "741:20:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "729:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "729:33:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "722:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "722:41:101"
                              },
                              "nodeType": "YulIf",
                              "src": "719:2:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "800:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "808:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "796:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "796:15:101"
                                  },
                                  {
                                    "name": "value_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "813:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "789:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "789:32:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "789:32:101"
                            }
                          ]
                        },
                        "name": "abi_decode_struct_PrizeSplitConfig",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "58:9:101",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "69:3:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "77:5:101",
                            "type": ""
                          }
                        ],
                        "src": "14:813:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "902:177:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "948:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "957:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "960:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "950:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "950:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "950:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "923:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "932:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "919:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "919:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "944:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "915:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "915:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "912:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "973:36:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "999:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "986:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "986:23:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "977:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1043:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1018:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1018:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1018:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1058:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1068:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1058:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "868:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "879:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "891:6:101",
                            "type": ""
                          }
                        ],
                        "src": "832:247:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1226:510:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1272:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1281:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1284:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1274:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1274:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1274:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1247:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1256:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1243:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1243:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1268:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1239:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1239:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1236:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1297:37:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1324:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1311:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1311:23:101"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "1301:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1343:28:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "1353:18:101",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1347:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1398:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1407:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1410:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1400:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1400:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1400:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1386:6:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1394:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1383:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1383:14:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1380:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1423:32:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1437:9:101"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1448:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1433:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1433:22:101"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "1427:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1503:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1512:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1515:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1505:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1505:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1505:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "1482:2:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1486:4:101",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1478:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1478:13:101"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1493:7:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1474:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1474:27:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1467:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1467:35:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1464:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1528:30:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "1555:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1542:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1542:16:101"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "1532:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1585:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1594:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1597:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1587:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1587:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1587:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1573:6:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1581:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1570:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1570:14:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1567:2:101"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1659:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1668:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1671:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1661:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1661:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1661:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "1624:2:101"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1632:1:101",
                                                "type": "",
                                                "value": "6"
                                              },
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "1635:6:101"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "1628:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1628:14:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1620:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1620:23:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1645:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1616:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1616:32:101"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1650:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1613:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1613:45:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1610:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1684:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "1698:2:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1702:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1694:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1694:11:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1684:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1714:16:101",
                              "value": {
                                "name": "length",
                                "nodeType": "YulIdentifier",
                                "src": "1724:6:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1714:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_array$_t_struct$_PrizeSplitConfig_$11515_calldata_ptr_$dyn_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1184:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1195:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1207:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1215:6:101",
                            "type": ""
                          }
                        ],
                        "src": "1084:652:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1839:170:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1885:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1894:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1897:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1887:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1887:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1887:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1860:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1869:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1856:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1856:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1881:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1852:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1852:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1849:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1910:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1929:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1923:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1923:16:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1914:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1973:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1948:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1948:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1948:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1988:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1998:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1988:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_contract$_ITicket_$11825_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1805:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1816:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1828:6:101",
                            "type": ""
                          }
                        ],
                        "src": "1741:268:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2119:141:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2165:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2174:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2177:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2167:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2167:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2167:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2140:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2149:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2136:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2136:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2161:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2132:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2132:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2129:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2190:64:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2235:9:101"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "2246:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_struct_PrizeSplitConfig",
                                  "nodeType": "YulIdentifier",
                                  "src": "2200:34:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2200:54:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2190:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_struct$_PrizeSplitConfig_$11515_memory_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2085:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2096:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2108:6:101",
                            "type": ""
                          }
                        ],
                        "src": "2014:246:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2385:283:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2431:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2440:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2443:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2433:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2433:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2433:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2406:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2415:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2402:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2402:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2427:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2398:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2398:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2395:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2456:64:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2501:9:101"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "2512:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_struct_PrizeSplitConfig",
                                  "nodeType": "YulIdentifier",
                                  "src": "2466:34:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2466:54:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2456:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2529:45:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2559:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2570:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2555:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2555:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2542:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2542:32:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2533:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2622:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2631:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2634:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2624:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2624:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2624:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2596:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "2607:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2614:4:101",
                                            "type": "",
                                            "value": "0xff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "2603:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2603:16:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "2593:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2593:27:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "2586:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2586:35:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2583:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2647:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2657:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2647:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_struct$_PrizeSplitConfig_$11515_memory_ptrt_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2343:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2354:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2366:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2374:6:101",
                            "type": ""
                          }
                        ],
                        "src": "2265:403:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2743:110:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2789:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2798:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2801:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2791:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2791:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2791:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2764:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2773:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2760:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2760:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2785:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2756:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2756:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2753:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2814:33:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2837:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2824:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2824:23:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2814:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2709:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2720:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2732:6:101",
                            "type": ""
                          }
                        ],
                        "src": "2673:180:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2939:103:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2985:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2994:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2997:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2987:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2987:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2987:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2960:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2969:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2956:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2956:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2981:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2952:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2952:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2949:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3010:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3026:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3020:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3020:16:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3010:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2905:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2916:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2928:6:101",
                            "type": ""
                          }
                        ],
                        "src": "2858:184:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3107:159:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "3124:3:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "3139:5:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "3133:5:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3133:12:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3147:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3129:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3129:61:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3117:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3117:74:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3117:74:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "3211:3:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3216:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3207:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3207:14:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "3237:5:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "3244:4:101",
                                                "type": "",
                                                "value": "0x20"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "3233:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "3233:16:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "3227:5:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3227:23:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3252:6:101",
                                        "type": "",
                                        "value": "0xffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3223:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3223:36:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3200:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3200:60:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3200:60:101"
                            }
                          ]
                        },
                        "name": "abi_encode_struct_PrizeSplitConfig",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "3091:5:101",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "3098:3:101",
                            "type": ""
                          }
                        ],
                        "src": "3047:219:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3372:125:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3382:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3394:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3405:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3390:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3390:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3382:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3424:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "3439:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3447:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3435:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3435:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3417:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3417:74:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3417:74:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3341:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3352:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3363:4:101",
                            "type": ""
                          }
                        ],
                        "src": "3271:226:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3631:168:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3641:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3653:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3664:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3649:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3649:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3641:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3683:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "3698:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3706:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3694:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3694:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3676:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3676:74:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3676:74:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3770:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3781:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3766:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3766:18:101"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3786:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3759:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3759:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3759:34:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3592:9:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "3603:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3611:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3622:4:101",
                            "type": ""
                          }
                        ],
                        "src": "3502:297:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4025:530:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4035:12:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "4045:2:101",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4039:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4056:32:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4074:9:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4085:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4070:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4070:18:101"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4060:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4104:9:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4115:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4097:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4097:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4097:21:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4127:17:101",
                              "value": {
                                "name": "tail_1",
                                "nodeType": "YulIdentifier",
                                "src": "4138:6:101"
                              },
                              "variables": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulTypedName",
                                  "src": "4131:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4153:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "4173:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4167:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4167:13:101"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "4157:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4196:6:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "4204:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4189:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4189:22:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4189:22:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4220:12:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "4230:2:101",
                                "type": "",
                                "value": "64"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "4224:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4241:25:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4252:9:101"
                                  },
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "4263:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4248:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4248:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "4241:3:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4275:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "4293:6:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4301:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4289:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4289:15:101"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "4279:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4313:10:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "4322:1:101",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "4317:1:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4381:148:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "srcPtr",
                                              "nodeType": "YulIdentifier",
                                              "src": "4436:6:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "4430:5:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "4430:13:101"
                                        },
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "4445:3:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "abi_encode_struct_PrizeSplitConfig",
                                        "nodeType": "YulIdentifier",
                                        "src": "4395:34:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4395:54:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4395:54:101"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "4462:19:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "4473:3:101"
                                        },
                                        {
                                          "name": "_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "4478:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "4469:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4469:12:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "4462:3:101"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "4494:25:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "4508:6:101"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "4516:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "4504:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4504:15:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "4494:6:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "4343:1:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "4346:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4340:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4340:13:101"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "4354:18:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "4356:14:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "4365:1:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4368:1:101",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "4361:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4361:9:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "4356:1:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "4336:3:101",
                                "statements": []
                              },
                              "src": "4332:197:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4538:11:101",
                              "value": {
                                "name": "pos",
                                "nodeType": "YulIdentifier",
                                "src": "4546:3:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4538:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_array$_t_struct$_PrizeSplitConfig_$11515_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_PrizeSplitConfig_$11515_memory_ptr_$dyn_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3994:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4005:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4016:4:101",
                            "type": ""
                          }
                        ],
                        "src": "3804:751:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4681:125:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "4691:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4703:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4714:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4699:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4699:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4691:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4733:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "4748:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4756:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4744:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4744:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4726:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4726:74:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4726:74:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IPrizePool_$11495__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4650:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4661:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4672:4:101",
                            "type": ""
                          }
                        ],
                        "src": "4560:246:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4985:174:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5002:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5013:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4995:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4995:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4995:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5036:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5047:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5032:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5032:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5052:2:101",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5025:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5025:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5025:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5075:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5086:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5071:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5071:18:101"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5091:26:101",
                                    "type": "",
                                    "value": "Ownable/caller-not-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5064:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5064:54:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5064:54:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5127:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5139:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5150:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5135:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5135:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5127:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4962:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4976:4:101",
                            "type": ""
                          }
                        ],
                        "src": "4811:348:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5338:181:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5355:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5366:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5348:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5348:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5348:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5389:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5400:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5385:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5385:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5405:2:101",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5378:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5378:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5378:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5428:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5439:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5424:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5424:18:101"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5444:33:101",
                                    "type": "",
                                    "value": "Ownable/caller-not-pendingOwner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5417:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5417:61:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5417:61:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5487:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5499:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5510:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5495:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5495:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5487:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5315:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5329:4:101",
                            "type": ""
                          }
                        ],
                        "src": "5164:355:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5698:236:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5715:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5726:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5708:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5708:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5708:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5749:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5760:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5745:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5745:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5765:2:101",
                                    "type": "",
                                    "value": "46"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5738:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5738:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5738:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5788:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5799:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5784:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5784:18:101"
                                  },
                                  {
                                    "hexValue": "5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d7065",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5804:34:101",
                                    "type": "",
                                    "value": "PrizeSplit/invalid-prizesplit-pe"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5777:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5777:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5777:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5859:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5870:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5855:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5855:18:101"
                                  },
                                  {
                                    "hexValue": "7263656e746167652d746f74616c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5875:16:101",
                                    "type": "",
                                    "value": "rcentage-total"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5848:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5848:44:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5848:44:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5901:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5913:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5924:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5909:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5909:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5901:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_8caf09dbd474f6c2ce1f20d688d9164813cbaa95a96fadd53f90aeba012f121d__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5675:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5689:4:101",
                            "type": ""
                          }
                        ],
                        "src": "5524:410:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6113:226:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6130:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6141:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6123:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6123:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6123:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6164:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6175:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6160:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6160:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6180:2:101",
                                    "type": "",
                                    "value": "36"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6153:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6153:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6153:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6203:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6214:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6199:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6199:18:101"
                                  },
                                  {
                                    "hexValue": "5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d7461",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6219:34:101",
                                    "type": "",
                                    "value": "PrizeSplit/invalid-prizesplit-ta"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6192:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6192:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6192:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6274:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6285:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6270:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6270:18:101"
                                  },
                                  {
                                    "hexValue": "72676574",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6290:6:101",
                                    "type": "",
                                    "value": "rget"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6263:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6263:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6263:34:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6306:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6318:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6329:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6314:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6314:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6306:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c2bf5e97bdbf5e9b927dffef808ee78273fa651a3afe1eaa0c09593cd72a99b6__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6090:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6104:4:101",
                            "type": ""
                          }
                        ],
                        "src": "5939:400:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6518:227:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6535:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6546:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6528:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6528:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6528:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6569:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6580:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6565:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6565:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6585:2:101",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6558:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6558:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6558:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6608:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6619:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6604:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6604:18:101"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d6164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6624:34:101",
                                    "type": "",
                                    "value": "Ownable/pendingOwner-not-zero-ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6597:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6597:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6597:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6679:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6690:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6675:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6675:18:101"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6695:7:101",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6668:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6668:35:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6668:35:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6712:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6724:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6735:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6720:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6720:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6712:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6495:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6509:4:101",
                            "type": ""
                          }
                        ],
                        "src": "6344:401:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6924:227:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6941:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6952:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6934:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6934:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6934:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6975:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6986:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6971:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6971:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6991:2:101",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6964:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6964:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6964:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7014:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7025:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7010:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7010:18:101"
                                  },
                                  {
                                    "hexValue": "5072697a6553706c69742f696e76616c69642d7072697a6573706c6974732d6c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7030:34:101",
                                    "type": "",
                                    "value": "PrizeSplit/invalid-prizesplits-l"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7003:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7003:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7003:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7085:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7096:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7081:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7081:18:101"
                                  },
                                  {
                                    "hexValue": "656e677468",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7101:7:101",
                                    "type": "",
                                    "value": "ength"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7074:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7074:35:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7074:35:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7118:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7130:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7141:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7126:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7126:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7118:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d3ae29a63b903397e027eaba0ec483e167f056bbae431614c8af126c5b278db0__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6901:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6915:4:101",
                            "type": ""
                          }
                        ],
                        "src": "6750:401:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7330:223:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7347:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7358:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7340:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7340:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7340:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7381:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7392:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7377:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7377:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7397:2:101",
                                    "type": "",
                                    "value": "33"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7370:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7370:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7370:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7420:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7431:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7416:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7416:18:101"
                                  },
                                  {
                                    "hexValue": "5072697a6553706c69742f6e6f6e6578697374656e742d7072697a6573706c69",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7436:34:101",
                                    "type": "",
                                    "value": "PrizeSplit/nonexistent-prizespli"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7409:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7409:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7409:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7491:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7502:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7487:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7487:18:101"
                                  },
                                  {
                                    "hexValue": "74",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7507:3:101",
                                    "type": "",
                                    "value": "t"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7480:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7480:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7480:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7520:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7532:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7543:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7528:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7528:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7520:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_e12e235e5a46283c0a71e952bf528a7e5e20c3244f3896fd28907b763da4efb3__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7307:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7321:4:101",
                            "type": ""
                          }
                        ],
                        "src": "7156:397:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7729:104:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7739:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7751:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7762:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7747:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7747:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7739:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "7809:6:101"
                                  },
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7817:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_struct_PrizeSplitConfig",
                                  "nodeType": "YulIdentifier",
                                  "src": "7774:34:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7774:53:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7774:53:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_struct$_PrizeSplitConfig_$11515_memory_ptr__to_t_struct$_PrizeSplitConfig_$11515_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7698:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7709:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7720:4:101",
                            "type": ""
                          }
                        ],
                        "src": "7558:275:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7937:89:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7947:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7959:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7970:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7955:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7955:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7947:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7989:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "8004:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8012:6:101",
                                        "type": "",
                                        "value": "0xffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "8000:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8000:19:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7982:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7982:38:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7982:38:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint16__to_t_uint16__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7906:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7917:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7928:4:101",
                            "type": ""
                          }
                        ],
                        "src": "7838:188:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8158:132:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8168:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8180:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8191:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8176:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8176:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8168:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8210:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "8225:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8233:6:101",
                                        "type": "",
                                        "value": "0xffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "8221:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8221:19:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8203:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8203:38:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8203:38:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8261:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8272:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8257:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8257:18:101"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8277:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8250:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8250:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8250:34:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint16_t_uint256__to_t_uint16_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8119:9:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "8130:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8138:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8149:4:101",
                            "type": ""
                          }
                        ],
                        "src": "8031:259:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8420:143:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8430:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8442:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8453:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8438:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8438:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8430:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8472:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "8487:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8495:6:101",
                                        "type": "",
                                        "value": "0xffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "8483:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8483:19:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8465:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8465:38:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8465:38:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8523:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8534:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8519:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8519:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "8543:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8551:4:101",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "8539:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8539:17:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8512:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8512:45:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8512:45:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint16_t_uint8__to_t_uint16_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8381:9:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "8392:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8400:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8411:4:101",
                            "type": ""
                          }
                        ],
                        "src": "8295:268:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8669:76:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8679:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8691:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8702:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8687:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8687:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8679:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8721:9:101"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "8732:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8714:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8714:25:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8714:25:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8638:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8649:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8660:4:101",
                            "type": ""
                          }
                        ],
                        "src": "8568:177:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8798:80:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8825:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "8827:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8827:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8827:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8814:1:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "8821:1:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "8817:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8817:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "8811:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8811:13:101"
                              },
                              "nodeType": "YulIf",
                              "src": "8808:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8856:16:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "8867:1:101"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8870:1:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8863:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8863:9:101"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "8856:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "8781:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "8784:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "8790:3:101",
                            "type": ""
                          }
                        ],
                        "src": "8750:128:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8929:228:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8960:168:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8981:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "8984:77:101",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "8974:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8974:88:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8974:88:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9082:1:101",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9085:4:101",
                                          "type": "",
                                          "value": "0x12"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "9075:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9075:15:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9075:15:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9110:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9113:4:101",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "9103:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9103:15:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9103:15:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "8949:1:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "8942:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8942:9:101"
                              },
                              "nodeType": "YulIf",
                              "src": "8939:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9137:14:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "9146:1:101"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "9149:1:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "div",
                                  "nodeType": "YulIdentifier",
                                  "src": "9142:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9142:9:101"
                              },
                              "variableNames": [
                                {
                                  "name": "r",
                                  "nodeType": "YulIdentifier",
                                  "src": "9137:1:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_div_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "8914:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "8917:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "r",
                            "nodeType": "YulTypedName",
                            "src": "8923:1:101",
                            "type": ""
                          }
                        ],
                        "src": "8883:274:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9214:176:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9333:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "9335:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9335:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9335:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "x",
                                            "nodeType": "YulIdentifier",
                                            "src": "9245:1:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "9238:6:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "9238:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "9231:6:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9231:17:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "9253:1:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "9260:66:101",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                          },
                                          {
                                            "name": "x",
                                            "nodeType": "YulIdentifier",
                                            "src": "9328:1:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "div",
                                          "nodeType": "YulIdentifier",
                                          "src": "9256:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "9256:74:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "9250:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9250:81:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "9227:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9227:105:101"
                              },
                              "nodeType": "YulIf",
                              "src": "9224:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9364:20:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "9379:1:101"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "9382:1:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mul",
                                  "nodeType": "YulIdentifier",
                                  "src": "9375:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9375:9:101"
                              },
                              "variableNames": [
                                {
                                  "name": "product",
                                  "nodeType": "YulIdentifier",
                                  "src": "9364:7:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_mul_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "9193:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "9196:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "product",
                            "nodeType": "YulTypedName",
                            "src": "9202:7:101",
                            "type": ""
                          }
                        ],
                        "src": "9162:228:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9444:76:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9466:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "9468:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9468:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9468:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "9460:1:101"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "9463:1:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "9457:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9457:8:101"
                              },
                              "nodeType": "YulIf",
                              "src": "9454:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9497:17:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "9509:1:101"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "9512:1:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "9505:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9505:9:101"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "9497:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "9426:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "9429:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "9435:4:101",
                            "type": ""
                          }
                        ],
                        "src": "9395:125:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9572:148:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9663:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "9665:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9665:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9665:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "9588:5:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9595:66:101",
                                    "type": "",
                                    "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "9585:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9585:77:101"
                              },
                              "nodeType": "YulIf",
                              "src": "9582:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9694:20:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "9705:5:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9712:1:101",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9701:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9701:13:101"
                              },
                              "variableNames": [
                                {
                                  "name": "ret",
                                  "nodeType": "YulIdentifier",
                                  "src": "9694:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "increment_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "9554:5:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "ret",
                            "nodeType": "YulTypedName",
                            "src": "9564:3:101",
                            "type": ""
                          }
                        ],
                        "src": "9525:195:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9757:152:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9774:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9777:77:101",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9767:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9767:88:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9767:88:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9871:1:101",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9874:4:101",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9864:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9864:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9864:15:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9895:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9898:4:101",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "9888:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9888:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9888:15:101"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "9725:184:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9946:152:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9963:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9966:77:101",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9956:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9956:88:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9956:88:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10060:1:101",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10063:4:101",
                                    "type": "",
                                    "value": "0x31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10053:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10053:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10053:15:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10084:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10087:4:101",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "10077:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10077:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10077:15:101"
                            }
                          ]
                        },
                        "name": "panic_error_0x31",
                        "nodeType": "YulFunctionDefinition",
                        "src": "9914:184:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10135:152:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10152:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10155:77:101",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10145:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10145:88:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10145:88:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10249:1:101",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10252:4:101",
                                    "type": "",
                                    "value": "0x32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10242:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10242:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10242:15:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10273:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10276:4:101",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "10266:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10266:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10266:15:101"
                            }
                          ]
                        },
                        "name": "panic_error_0x32",
                        "nodeType": "YulFunctionDefinition",
                        "src": "10103:184:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10337:109:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "10424:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "10433:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "10436:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "10426:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10426:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "10426:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "10360:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "10371:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "10378:42:101",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "10367:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "10367:54:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "10357:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10357:65:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "10350:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10350:73:101"
                              },
                              "nodeType": "YulIf",
                              "src": "10347:2:101"
                            }
                          ]
                        },
                        "name": "validator_revert_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "10326:5:101",
                            "type": ""
                          }
                        ],
                        "src": "10292:154:101"
                      }
                    ]
                  },
                  "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_$11515_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_$11825_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_$11515_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_$11515_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_$11515_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_PrizeSplitConfig_$11515_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_$11495__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_$11515_memory_ptr__to_t_struct$_PrizeSplitConfig_$11515_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": 101,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {
                "15099": [
                  {
                    "length": 32,
                    "start": 308
                  },
                  {
                    "length": 32,
                    "start": 2829
                  },
                  {
                    "length": 32,
                    "start": 3755
                  },
                  {
                    "length": 32,
                    "start": 3964
                  }
                ]
              },
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106100d45760003560e01c80638da5cb5b11610081578063e30c39781161005b578063e30c3978146101cd578063e4fc6b6d146101de578063f2fde38b146101f457600080fd5b80638da5cb5b1461016c578063cf1e3b591461017d578063cf713d6e1461019257600080fd5b80634e71e0c8116100b25780634e71e0c814610122578063715018a61461012a578063884bf67c1461013257600080fd5b8063056ea84f146100d9578063063a2298146100ee57806345a9f18714610101575b600080fd5b6100ec6100e7366004611176565b610207565b005b6100ec6100fc3660046110c8565b6104b6565b61010a6103e881565b60405161ffff90911681526020015b60405180910390f35b6100ec61092b565b6100ec6109b9565b7f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b039091168152602001610119565b6000546001600160a01b0316610154565b610185610a2e565b60405161011991906111e6565b6101a56101a03660046111b4565b610aa5565b6040805182516001600160a01b0316815260209283015161ffff169281019290925201610119565b6001546001600160a01b0316610154565b6101e6610b08565b604051908152602001610119565b6100ec6102023660046110a4565b610bfc565b3361021a6000546001600160a01b031690565b6001600160a01b0316146102755760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064015b60405180910390fd5b60025460ff8216106102ef5760405162461bcd60e51b815260206004820152602160248201527f5072697a6553706c69742f6e6f6e6578697374656e742d7072697a6573706c6960448201527f7400000000000000000000000000000000000000000000000000000000000000606482015260840161026c565b81516001600160a01b031661036b5760405162461bcd60e51b8152602060048201526024808201527f5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d746160448201527f7267657400000000000000000000000000000000000000000000000000000000606482015260840161026c565b8160028260ff168154811061038257610382611301565b60009182526020808320845192018054949091015161ffff16600160a01b0275ffffffffffffffffffffffffffffffffffffffffffff199094166001600160a01b0390921691909117929092179091556103da610d38565b90506103e88111156104545760405162461bcd60e51b815260206004820152602e60248201527f5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d706560448201527f7263656e746167652d746f74616c000000000000000000000000000000000000606482015260840161026c565b82600001516001600160a01b03167f0865d776fd684728838c688d6a6a82888f61c57a4032c8c320c24949317b9a348460200151846040516104a992919061ffff92909216825260ff16602082015260400190565b60405180910390a2505050565b336104c96000546001600160a01b031690565b6001600160a01b03161461051f5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161026c565b8060ff8111156105975760405162461bcd60e51b815260206004820152602560248201527f5072697a6553706c69742f696e76616c69642d7072697a6573706c6974732d6c60448201527f656e677468000000000000000000000000000000000000000000000000000000606482015260840161026c565b60005b8181101561081b5760008484838181106105b6576105b6611301565b9050604002018036038101906105cc919061115a565b80519091506001600160a01b031661064b5760405162461bcd60e51b8152602060048201526024808201527f5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d746160448201527f7267657400000000000000000000000000000000000000000000000000000000606482015260840161026c565b60025482106106d0576002805460018101825560009190915281517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace9091018054602084015161ffff16600160a01b0275ffffffffffffffffffffffffffffffffffffffffffff199091166001600160a01b03909316929092179190911790556107b6565b6000600283815481106106e5576106e5611301565b6000918252602091829020604080518082019091529101546001600160a01b03808216808452600160a01b90920461ffff1693830193909352845191935091161415806107425750806020015161ffff16826020015161ffff1614155b156107ad57816002848154811061075b5761075b611301565b6000918252602091829020835191018054939092015161ffff16600160a01b0275ffffffffffffffffffffffffffffffffffffffffffff199093166001600160a01b03909116179190911790556107b4565b5050610809565b505b80516020808301516040805161ffff90921682529181018590526001600160a01b03909216917f0865d776fd684728838c688d6a6a82888f61c57a4032c8c320c24949317b9a34910160405180910390a2505b80610813816112ba565b91505061059a565b505b6002548110156108a15760028054600019810191908061083f5761083f6112eb565b6000828152602081208201600019908101805475ffffffffffffffffffffffffffffffffffffffffffff1916905590910190915560405182917f99fa473fdf53414bcd014cf6e7509fc58c68f7b86174767faa6ad5100cd5bae591a25061081d565b60006108ab610d38565b90506103e88111156109255760405162461bcd60e51b815260206004820152602e60248201527f5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d706560448201527f7263656e746167652d746f74616c000000000000000000000000000000000000606482015260840161026c565b50505050565b6001546001600160a01b031633146109855760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e657200604482015260640161026c565b60015461099a906001600160a01b0316610d9a565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b336109cc6000546001600160a01b031690565b6001600160a01b031614610a225760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161026c565b610a2c6000610d9a565b565b60606002805480602002602001604051908101604052809291908181526020016000905b82821015610a9c57600084815260209081902060408051808201909152908401546001600160a01b0381168252600160a01b900461ffff1681830152825260019092019101610a52565b50505050905090565b604080518082019091526000808252602082015260028281548110610acc57610acc611301565b6000918252602091829020604080518082019091529101546001600160a01b0381168252600160a01b900461ffff169181019190915292915050565b6000807f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663e6d8a94b6040518163ffffffff1660e01b8152600401602060405180830381600087803b158015610b6657600080fd5b505af1158015610b7a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b9e91906111cd565b905080610bad57600091505090565b6000610bb882610df7565b90507fddc9c30275a04c48091f24199f9c405765de34d979d6847f5b9798a57232d2e5610be582846112a3565b60405190815260200160405180910390a150919050565b33610c0f6000546001600160a01b031690565b6001600160a01b031614610c655760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161026c565b6001600160a01b038116610ce15760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161026c565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b6002546000908190815b81811015610d925760028181548110610d5d57610d5d611301565b600091825260209091200154610d7e90600160a01b900461ffff168461124a565b925080610d8a816112ba565b915050610d42565b509092915050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6002546000908290825b81811015610e9e57600060028281548110610e1e57610e1e611301565b60009182526020808320604080518082019091529201546001600160a01b0381168352600160a01b900461ffff169082018190529092506103e890610e639089611284565b610e6d9190611262565b9050610e7d826000015182610ea7565b610e8781866112a3565b945050508080610e96906112ba565b915050610e01565b50909392505050565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c002c4d66040518163ffffffff1660e01b815260040160206040518083038186803b158015610f0257600080fd5b505afa158015610f16573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f3a919061113d565b6040517f5d8a776e0000000000000000000000000000000000000000000000000000000081526001600160a01b038581166004830152602482018590529192507f000000000000000000000000000000000000000000000000000000000000000090911690635d8a776e90604401600060405180830381600087803b158015610fc257600080fd5b505af1158015610fd6573d6000803e3d6000fd5b50505050806001600160a01b0316836001600160a01b03167f40b9722744d0ba62d8b847077d65a712335b6769aa37fff7ad7852ec299222a78460405161101f91815260200190565b60405180910390a3505050565b60006040828403121561103e57600080fd5b6040516040810181811067ffffffffffffffff8211171561106f57634e487b7160e01b600052604160045260246000fd5b604052905080823561108081611317565b8152602083013561ffff8116811461109757600080fd5b6020919091015292915050565b6000602082840312156110b657600080fd5b81356110c181611317565b9392505050565b600080602083850312156110db57600080fd5b823567ffffffffffffffff808211156110f357600080fd5b818501915085601f83011261110757600080fd5b81358181111561111657600080fd5b8660208260061b850101111561112b57600080fd5b60209290920196919550909350505050565b60006020828403121561114f57600080fd5b81516110c181611317565b60006040828403121561116c57600080fd5b6110c1838361102c565b6000806060838503121561118957600080fd5b611193848461102c565b9150604083013560ff811681146111a957600080fd5b809150509250929050565b6000602082840312156111c657600080fd5b5035919050565b6000602082840312156111df57600080fd5b5051919050565b602080825282518282018190526000919060409081850190868401855b8281101561123d5761122d84835180516001600160a01b0316825260209081015161ffff16910152565b9284019290850190600101611203565b5091979650505050505050565b6000821982111561125d5761125d6112d5565b500190565b60008261127f57634e487b7160e01b600052601260045260246000fd5b500490565b600081600019048311821515161561129e5761129e6112d5565b500290565b6000828210156112b5576112b56112d5565b500390565b60006000198214156112ce576112ce6112d5565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038116811461132c57600080fd5b5056fea26469706673582212208d2c273591897b558afa87fce7e033ce0af25b7a06cbed527e5bcd89a5b0255664736f6c63430008060033",
              "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 DUP14 0x2C 0x27 CALLDATALOAD SWAP2 DUP10 PUSH28 0x558AFA87FCE7E033CE0AF25B7A06CBED527E5BCD89A5B0255664736F PUSH13 0x63430008060033000000000000 ",
              "sourceMap": "877:1936:68:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3265:835:67;;;;;;:::i;:::-;;:::i;:::-;;942:2285;;;;;;:::i;:::-;;:::i;404:50::-;;450:4;404:50;;;;;8012:6:101;8000:19;;;7982:38;;7970:2;7955:18;404:50:67;;;;;;;;3147:129:33;;;:::i;2508:94::-;;;:::i;2147:101:68:-;2232:9;2147:101;;;-1:-1:-1;;;;;3435:55:101;;;3417:74;;3405:2;3390:18;2147:101:68;3372:125:101;1814:85:33;1860:7;1886:6;-1:-1:-1;;;;;1886:6:33;1814:85;;783:121:67;;;:::i;:::-;;;;;;;:::i;549:196::-;;;;;;:::i;:::-;;:::i;:::-;;;;3133:12:101;;-1:-1:-1;;;;;3129:61:101;3117:74;;3244:4;3233:16;;;3227:23;3252:6;3223:36;3207:14;;;3200:60;;;;7747:18;549:196:67;7729:104:101;2014:101:33;2095:13;;-1:-1:-1;;;;;2095:13:33;2014:101;;1813:296:68;;;:::i;:::-;;;8714:25:101;;;8702:2;8687:18;1813:296:68;8669:76:101;2751:234:33;;;;;;:::i;:::-;;:::i;3265:835:67:-;3838:10:33;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:33;;3819:58;;;;-1:-1:-1;;;3819:58:33;;5013:2:101;3819:58:33;;;4995:21:101;5052:2;5032:18;;;5025:30;5091:26;5071:18;;;5064:54;5135:18;;3819:58:33;;;;;;;;;3442:12:67::1;:19:::0;3423:38:::1;::::0;::::1;;3415:84;;;::::0;-1:-1:-1;;;3415:84:67;;7358:2:101;3415:84:67::1;::::0;::::1;7340:21:101::0;7397:2;7377:18;;;7370:30;7436:34;7416:18;;;7409:62;7507:3;7487:18;;;7480:31;7528:19;;3415:84:67::1;7330:223:101::0;3415:84:67::1;3517:18:::0;;-1:-1:-1;;;;;3517:32:67::1;3509:81;;;::::0;-1:-1:-1;;;3509:81:67;;6141:2:101;3509:81:67::1;::::0;::::1;6123:21:101::0;6180:2;6160:18;;;6153:30;6219:34;6199:18;;;6192:62;6290:6;6270:18;;;6263:34;6314:19;;3509:81:67::1;6113:226:101::0;3509:81:67::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:67::1;-1:-1:-1::0;;3642:44:67;;;-1:-1:-1;;;;;3642:44:67;;::::1;::::0;;;;;;;::::1;::::0;;;3771:34:::1;:32;:34::i;:::-;3745:60:::0;-1:-1:-1;450:4:67::1;3823:39:::0;::::1;;3815:98;;;::::0;-1:-1:-1;;;3815:98:67;;5726:2:101;3815:98:67::1;::::0;::::1;5708:21:101::0;5765:2;5745:18;;;5738:30;5804:34;5784:18;;;5777:62;5875:16;5855:18;;;5848:44;5909:19;;3815:98:67::1;5698:236:101::0;3815:98:67::1;3999:11;:18;;;-1:-1:-1::0;;;;;3972:121:67::1;;4031:11;:22;;;4067:16;3972:121;;;;;;8495:6:101::0;8483:19;;;;8465:38;;8551:4;8539:17;8534:2;8519:18;;8512:45;8453:2;8438:18;;8420:143;3972:121:67::1;;;;;;;;3405:695;3265:835:::0;;:::o;942:2285::-;3838:10:33;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:33;;3819:58;;;;-1:-1:-1;;;3819:58:33;;5013:2:101;3819:58:33;;;4995:21:101;5052:2;5032:18;;;5025:30;5091:26;5071:18;;;5064:54;5135:18;;3819:58:33;4985:174:101;3819:58:33;1108:15:67;1172::::1;1148:39:::0;::::1;;1140:89;;;::::0;-1:-1:-1;;;1140:89:67;;6952:2:101;1140:89:67::1;::::0;::::1;6934:21:101::0;6991:2;6971:18;;;6964:30;7030:34;7010:18;;;7003:62;7101:7;7081:18;;;7074:35;7126:19;;1140:89:67::1;6924:227:101::0;1140:89:67::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:67::1;1552:75;;;::::0;-1:-1:-1;;;1552:75:67;;6141:2:101;1552:75:67::1;::::0;::::1;6123:21:101::0;6180:2;6160:18;;;6153:30;6219:34;6199:18;;;6192:62;6290:6;6270:18;;;6263:34;6314:19;;1552:75:67::1;6113:226:101::0;1552:75:67::1;1786:12;:19:::0;:28;-1:-1:-1;1782:691:67::1;;1834:12;:24:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;1834:24:67;;;;;;;;;::::1;::::0;;::::1;::::0;::::1;::::0;::::1;;-1:-1:-1::0;;;1834:24:67::1;-1:-1:-1::0;;1834:24:67;;;-1:-1:-1;;;;;1834:24:67;;::::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:67;;::::1;::::0;;;-1:-1:-1;;;1978:58:67;;::::1;;;::::0;;::::1;::::0;;;;2215:12;;1978:58;;-1:-1:-1;2215:35:67;::::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:67::1;-1:-1:-1::0;;2358:27:67;;;-1:-1:-1;;;;;2358:27:67;;::::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;;8233:6:101;8221:19;;;8203:38;;8257:18;;;8250:34;;;-1:-1:-1;;;;;2550:52:67;;::::1;::::0;::::1;::::0;8176:18:101;2550:52:67::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:67::1;;;2870:12;:19:::0;;-1:-1:-1;;2870:23:67;;;:12;:19;2921:18:::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;-1:-1:-1;;2921:18:67;;;;;-1:-1:-1;;2921:18:67;;;;;;;;;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:67::1;3130:39:::0;::::1;;3122:98;;;::::0;-1:-1:-1;;;3122:98:67;;5726:2:101;3122:98:67::1;::::0;::::1;5708:21:101::0;5765:2;5745:18;;;5738:30;5804:34;5784:18;;;5777:62;5875:16;5855:18;;;5848:44;5909:19;;3122:98:67::1;5698:236:101::0;3122:98:67::1;1067:2160;;942:2285:::0;;:::o;3147:129:33:-;4050:13;;-1:-1:-1;;;;;4050:13:33;4036:10;:27;4028:71;;;;-1:-1:-1;;;4028:71:33;;5366:2:101;4028:71:33;;;5348:21:101;5405:2;5385:18;;;5378:30;5444:33;5424:18;;;5417:61;5495:18;;4028:71:33;5338:181:101;4028:71:33;3219:13:::1;::::0;3209:24:::1;::::0;-1:-1:-1;;;;;3219:13:33::1;3209:9;:24::i;:::-;3243:13;:26:::0;;-1:-1:-1;;3243:26:33::1;::::0;;3147:129::o;2508:94::-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:33;;3819:58;;;;-1:-1:-1;;;3819:58:33;;5013:2:101;3819:58:33;;;4995:21:101;5052:2;5032:18;;;5025:30;5091:26;5071:18;;;5064:54;5135:18;;3819:58:33;4985:174:101;3819:58:33;2574:21:::1;2592:1;2574:9;:21::i;:::-;2508:94::o:0;783:121:67:-;841:25;885:12;878:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;878:19:67;;;;-1:-1:-1;;;878:19:67;;;;;;;;;;;;;;;;;;;;;;;;;783:121;:::o;549:196::-;-1:-1:-1;;;;;;;;;;;;;;;;;708:12:67;721:16;708:30;;;;;;;;:::i;:::-;;;;;;;;;;701:37;;;;;;;;;708:30;;701:37;-1:-1:-1;;;;;701:37:67;;;;-1:-1:-1;;;701:37:67;;;;;;;;;;;;;-1:-1:-1;;549:196:67:o;1813:296:68:-;1862:7;1881:13;1897:9;-1:-1:-1;;;;;1897:29:68;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1881:47;-1:-1:-1;1943:10:68;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:68;2056:22;1974:54;2056:5;:22;:::i;:::-;2044:35;;8714:25:101;;;8702:2;8687:18;2044:35:68;;;;;;;-1:-1:-1;2097:5:68;1813:296;-1:-1:-1;1813:296:68:o;2751:234:33:-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:33;;3819:58;;;;-1:-1:-1;;;3819:58:33;;5013:2:101;3819:58:33;;;4995:21:101;5052:2;5032:18;;;5025:30;5091:26;5071:18;;;5064:54;5135:18;;3819:58:33;4985:174:101;3819:58:33;-1:-1:-1;;;;;2834:23:33;::::1;2826:73;;;::::0;-1:-1:-1;;;2826:73:33;;6546:2:101;2826:73:33::1;::::0;::::1;6528:21:101::0;6585:2;6565:18;;;6558:30;6624:34;6604:18;;;6597:62;6695:7;6675:18;;;6668:35;6720:19;;2826:73:33::1;6518:227:101::0;2826:73:33::1;2910:13;:25:::0;;-1:-1:-1;;2910:25:33::1;-1:-1:-1::0;;;;;2910:25:33;::::1;::::0;;::::1;::::0;;;2951:27:::1;::::0;::::1;::::0;-1:-1:-1;;2951:27:33::1;2751:234:::0;:::o;4431:365:67:-;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:67;;;;4687:54;;:::i;:::-;;-1:-1:-1;4664:7:67;;;;:::i;:::-;;;;4613:139;;;-1:-1:-1;4769:20:67;;4431:365;-1:-1:-1;;4431:365:67:o;3470:174:33:-;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:33;;;-1:-1:-1;;3562:18:33;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;5043:681:67:-;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:67;;;;-1:-1:-1;;;5297:51:67;;;;;;;;;;;;-1:-1:-1;5415:4:67;;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:67;;5043:681;-1:-1:-1;;;5043:681:67:o;2572:239:68:-;2662:24;2689:9;-1:-1:-1;;;;;2689:19:68;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2720:29;;;;;-1:-1:-1;;;;;3694:55:101;;;2720:29:68;;;3676:74:101;3766:18;;;3759:34;;;2662:48:68;;-1:-1:-1;2720:9:68;:15;;;;;;3649:18:101;;2720:29:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2796:7;-1:-1:-1;;;;;2764:40:68;2782:3;-1:-1:-1;;;;;2764:40:68;;2787:7;2764:40;;;;8714:25:101;;8702:2;8687:18;;8669:76;2764:40:68;;;;;;;;2652:159;2572:239;;:::o;14:813:101:-;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:101;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:101;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:101: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:101:o;1084:652::-;1207:6;1215;1268:2;1256:9;1247:7;1243:23;1239:32;1236:2;;;1284:1;1281;1274:12;1236:2;1324:9;1311:23;1353:18;1394:2;1386:6;1383:14;1380:2;;;1410:1;1407;1400:12;1380:2;1448:6;1437:9;1433:22;1423:32;;1493:7;1486:4;1482:2;1478:13;1474:27;1464:2;;1515:1;1512;1505:12;1464:2;1555;1542:16;1581:2;1573:6;1570:14;1567:2;;;1597:1;1594;1587:12;1567:2;1650:7;1645:2;1635:6;1632:1;1628:14;1624:2;1620:23;1616:32;1613:45;1610:2;;;1671:1;1668;1661:12;1610:2;1702;1694:11;;;;;1724:6;;-1:-1:-1;1226:510:101;;-1:-1:-1;;;;1226:510:101:o;1741:268::-;1828:6;1881:2;1869:9;1860:7;1856:23;1852:32;1849:2;;;1897:1;1894;1887:12;1849:2;1929:9;1923:16;1948:31;1973:5;1948:31;:::i;2014:246::-;2108:6;2161:2;2149:9;2140:7;2136:23;2132:32;2129:2;;;2177:1;2174;2167:12;2129:2;2200:54;2246:7;2235:9;2200:54;:::i;2265:403::-;2366:6;2374;2427:2;2415:9;2406:7;2402:23;2398:32;2395:2;;;2443:1;2440;2433:12;2395:2;2466:54;2512:7;2501:9;2466:54;:::i;:::-;2456:64;;2570:2;2559:9;2555:18;2542:32;2614:4;2607:5;2603:16;2596:5;2593:27;2583:2;;2634:1;2631;2624:12;2583:2;2657:5;2647:15;;;2385:283;;;;;:::o;2673:180::-;2732:6;2785:2;2773:9;2764:7;2760:23;2756:32;2753:2;;;2801:1;2798;2791:12;2753:2;-1:-1:-1;2824:23:101;;2743:110;-1:-1:-1;2743:110:101:o;2858:184::-;2928:6;2981:2;2969:9;2960:7;2956:23;2952:32;2949:2;;;2997:1;2994;2987:12;2949:2;-1:-1:-1;3020:16:101;;2939:103;-1:-1:-1;2939:103:101:o;3804:751::-;4045:2;4097:21;;;4167:13;;4070:18;;;4189:22;;;4016:4;;4045:2;4230;;4248:18;;;;4289:15;;;4016:4;4332:197;4346:6;4343:1;4340:13;4332:197;;;4395:54;4445:3;4436:6;4430:13;3133:12;;-1:-1:-1;;;;;3129:61:101;3117:74;;3244:4;3233:16;;;3227:23;3252:6;3223:36;3207:14;;3200:60;3107:159;4395:54;4469:12;;;;4504:15;;;;4368:1;4361:9;4332:197;;;-1:-1:-1;4546:3:101;;4025:530;-1:-1:-1;;;;;;;4025:530:101:o;8750:128::-;8790:3;8821:1;8817:6;8814:1;8811:13;8808:2;;;8827:18;;:::i;:::-;-1:-1:-1;8863:9:101;;8798:80::o;8883:274::-;8923:1;8949;8939:2;;-1:-1:-1;;;8981:1:101;8974:88;9085:4;9082:1;9075:15;9113:4;9110:1;9103:15;8939:2;-1:-1:-1;9142:9:101;;8929:228::o;9162:::-;9202:7;9328:1;-1:-1:-1;;9256:74:101;9253:1;9250:81;9245:1;9238:9;9231:17;9227:105;9224:2;;;9335:18;;:::i;:::-;-1:-1:-1;9375:9:101;;9214:176::o;9395:125::-;9435:4;9463:1;9460;9457:8;9454:2;;;9468:18;;:::i;:::-;-1:-1:-1;9505:9:101;;9444:76::o;9525:195::-;9564:3;-1:-1:-1;;9588:5:101;9585:77;9582:2;;;9665:18;;:::i;:::-;-1:-1:-1;9712:1:101;9701:13;;9572:148::o;9725:184::-;-1:-1:-1;;;9774:1:101;9767:88;9874:4;9871:1;9864:15;9898:4;9895:1;9888:15;9914:184;-1:-1:-1;;;9963:1:101;9956:88;10063:4;10060:1;10053:15;10087:4;10084:1;10077:15;10103:184;-1:-1:-1;;;10152:1:101;10145:88;10252:4;10249:1;10242:15;10276:4;10273:1;10266:15;10292:154;-1:-1:-1;;;;;10371:5:101;10367:54;10360:5;10357:65;10347:2;;10436:1;10433;10426:12;10347:2;10337: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.\\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\":\"0xa3cc6bff882d541d6642bbff0988fc592ff513a682dde6888ab55eaec29df7a9\",\"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 buffer) 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 of 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 seven year minimum,\\n                of accurate historical lookups with current estimates of 1 new block\\n                every 15 seconds - assuming each block contains 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\":\"0x446d8221329601d40464981a50a0e31f3fd48da0ebf0fea646c5a089ccfbdff4\",\"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": 5205,
                "contract": "@pooltogether/v4-core/contracts/prize-strategy/PrizeSplitStrategy.sol:PrizeSplitStrategy",
                "label": "_owner",
                "offset": 0,
                "slot": "0",
                "type": "t_address"
              },
              {
                "astId": 5207,
                "contract": "@pooltogether/v4-core/contracts/prize-strategy/PrizeSplitStrategy.sol:PrizeSplitStrategy",
                "label": "_pendingOwner",
                "offset": 0,
                "slot": "1",
                "type": "t_address"
              },
              {
                "astId": 14748,
                "contract": "@pooltogether/v4-core/contracts/prize-strategy/PrizeSplitStrategy.sol:PrizeSplitStrategy",
                "label": "_prizeSplits",
                "offset": 0,
                "slot": "2",
                "type": "t_array(t_struct(PrizeSplitConfig)11515_storage)dyn_storage"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_array(t_struct(PrizeSplitConfig)11515_storage)dyn_storage": {
                "base": "t_struct(PrizeSplitConfig)11515_storage",
                "encoding": "dynamic_array",
                "label": "struct IPrizeSplit.PrizeSplitConfig[]",
                "numberOfBytes": "32"
              },
              "t_struct(PrizeSplitConfig)11515_storage": {
                "encoding": "inplace",
                "label": "struct IPrizeSplit.PrizeSplitConfig",
                "members": [
                  {
                    "astId": 11512,
                    "contract": "@pooltogether/v4-core/contracts/prize-strategy/PrizeSplitStrategy.sol:PrizeSplitStrategy",
                    "label": "target",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_address"
                  },
                  {
                    "astId": 11514,
                    "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-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": {
                "@_15268": {
                  "entryPoint": null,
                  "id": 15268,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_5230": {
                  "entryPoint": null,
                  "id": 5230,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setOwner_5327": {
                  "entryPoint": 149,
                  "id": 5327,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "abi_decode_tuple_t_addresst_contract$_IPrizeDistributionFactory_$16009t_contract$_IDrawCalculatorTimelock_$15999_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:101",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:101",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "197:404:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "243:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "252:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "255:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "245:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "245:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "245:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "218:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "227:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "214:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "214:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "239:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "210:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "210:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "207:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "268:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "287:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "281:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "281:16:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "272:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "331:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "306:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "306:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "306:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "346:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "356:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "346:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "370:40:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "395:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "406:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "391:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "391:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "385:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "385:25:101"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "374:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "444:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "419:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "419:33:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "419:33:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "461:17:101",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "471:7:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "461:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "487:40:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "512:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "523:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "508:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "508:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "502:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "502:25:101"
                              },
                              "variables": [
                                {
                                  "name": "value_2",
                                  "nodeType": "YulTypedName",
                                  "src": "491:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "561:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "536:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "536:33:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "536:33:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "578:17:101",
                              "value": {
                                "name": "value_2",
                                "nodeType": "YulIdentifier",
                                "src": "588:7:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "578:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_contract$_IPrizeDistributionFactory_$16009t_contract$_IDrawCalculatorTimelock_$15999_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "147:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "158:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "170:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "178:6:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "186:6:101",
                            "type": ""
                          }
                        ],
                        "src": "14:587:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "651:86:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "715:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "724:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "727:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "717:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "717:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "717:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "674:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "685:5:101"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "700:3:101",
                                                    "type": "",
                                                    "value": "160"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "705:1:101",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "696:3:101"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "696:11:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "709:1:101",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "692:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "692:19:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "681:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "681:31:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "671:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "671:42:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "664:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "664:50:101"
                              },
                              "nodeType": "YulIf",
                              "src": "661:2:101"
                            }
                          ]
                        },
                        "name": "validator_revert_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "640:5:101",
                            "type": ""
                          }
                        ],
                        "src": "606:131:101"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_tuple_t_addresst_contract$_IPrizeDistributionFactory_$16009t_contract$_IDrawCalculatorTimelock_$15999_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": 101,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "60c060405234801561001057600080fd5b50604051610bdc380380610bdc83398101604081905261002f916100e5565b8261003981610095565b506001600160601b0319606083811b821660805282901b1660a0526040516001600160a01b0382811691908416907f09e48df7857bd0c1e0d31bb8a85d42cf1874817895f171c917f6ee2cea73ec2090600090a350505061014a565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000806000606084860312156100fa57600080fd5b835161010581610132565b602085015190935061011681610132565b604085015190925061012781610132565b809150509250925092565b6001600160a01b038116811461014757600080fd5b50565b60805160601c60a05160601c610a5961018360003960008181610172015261037501526000818161010401526104a10152610a596000f3fe608060405234801561001057600080fd5b50600436106100be5760003560e01c8063a913c9da11610076578063d33219b41161005b578063d33219b41461016d578063e30c397814610194578063f2fde38b146101a557600080fd5b8063a913c9da14610137578063d0ebdbe71461014a57600080fd5b8063715018a6116100a7578063715018a6146100f757806378e072a9146100ff5780638da5cb5b1461012657600080fd5b8063481c6a75146100c35780634e71e0c8146100ed575b600080fd5b6002546001600160a01b03165b6040516001600160a01b0390911681526020015b60405180910390f35b6100f56101b8565b005b6100f561024b565b6100d07f000000000000000000000000000000000000000000000000000000000000000081565b6000546001600160a01b03166100d0565b6100f561014536600461090a565b6102c0565b61015d6101583660046108b8565b61058b565b60405190151581526020016100e4565b6100d07f000000000000000000000000000000000000000000000000000000000000000081565b6001546001600160a01b03166100d0565b6100f56101b33660046108b8565b610607565b6001546001600160a01b031633146102175760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e65720060448201526064015b60405180910390fd5b60015461022c906001600160a01b0316610743565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b3361025e6000546001600160a01b031690565b6001600160a01b0316146102b45760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161020e565b6102be6000610743565b565b336102d36002546001600160a01b031690565b6001600160a01b031614806103015750336102f66000546001600160a01b031690565b6001600160a01b0316145b6103735760405162461bcd60e51b815260206004820152602660248201527f4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f7260448201527f2d6f776e65720000000000000000000000000000000000000000000000000000606482015260840161020e565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316638871189b8360200151846080015163ffffffff1685604001516103c191906109d0565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815263ffffffff92909216600483015267ffffffffffffffff166024820152604401602060405180830381600087803b15801561042757600080fd5b505af115801561043b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061045f91906108e8565b5060208201516040517f0348b07600000000000000000000000000000000000000000000000000000000815263ffffffff9091166004820152602481018290527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690630348b07690604401600060405180830381600087803b1580156104ed57600080fd5b505af1158015610501573d6000803e3d6000fd5b50505050602082810180516040805186518152925163ffffffff908116948401949094528086015167ffffffffffffffff908116848301526060808801519091169084015260808087015185169084015260a08301859052519216917fedb65adbca0b9daa2f70fb5e43a2119fdc09136b9552987e6e82ac54b9131dfa9181900360c00190a25050565b6000336105a06000546001600160a01b031690565b6001600160a01b0316146105f65760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161020e565b6105ff826107a0565b90505b919050565b3361061a6000546001600160a01b031690565b6001600160a01b0316146106705760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161020e565b6001600160a01b0381166106ec5760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161020e565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6002546000906001600160a01b039081169083168114156108295760405162461bcd60e51b815260206004820152602360248201527f4d616e61676561626c652f6578697374696e672d6d616e616765722d6164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161020e565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385811691821790925560405190918316907f9cb45c728de594dab506a1f1a8554e24c8eeaf983618d5ec5dd7bc6f3c49feee90600090a350600192915050565b803563ffffffff8116811461060257600080fd5b803567ffffffffffffffff8116811461060257600080fd5b6000602082840312156108ca57600080fd5b81356001600160a01b03811681146108e157600080fd5b9392505050565b6000602082840312156108fa57600080fd5b815180151581146108e157600080fd5b60008082840360c081121561091e57600080fd5b60a081121561092c57600080fd5b5060405160a0810181811067ffffffffffffffff82111715610977577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040528335815261098a6020850161088c565b602082015261099b604085016108a0565b60408201526109ac606085016108a0565b60608201526109bd6080850161088c565b60808201529460a0939093013593505050565b600067ffffffffffffffff808316818516808303821115610a1a577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b0194935050505056fea2646970667358221220bdeda368db89c04c5fd4cc33f6ba76c41126cb391b8ea2949f3392df0f38140664736f6c63430008060033",
              "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 0xBD 0xED LOG3 PUSH9 0xDB89C04C5FD4CC33F6 0xBA PUSH23 0xC41126CB391B8EA2949F3392DF0F38140664736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "871:1520:69:-:0;;;1535:322;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1689:6;1648:24:33;1689:6:69;1648:9:33;:24::i;:::-;-1:-1:-1;;;;;;;1707:52:69::1;::::0;;;;;::::1;::::0;1769:20;;;;::::1;::::0;1804:46:::1;::::0;-1:-1:-1;;;;;1769:20:69;;::::1;::::0;1707:52;;::::1;::::0;1804:46:::1;::::0;;;::::1;1535:322:::0;;;871:1520;;3470:174:33;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:33;;;-1:-1:-1;;;;;;3562:18:33;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;14:587:101:-;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:101;385:25;419:33;:::i;:::-;523:2;508:18;;502:25;471:7;;-1:-1:-1;536:33:101;502:25;536:33;:::i;:::-;588:7;578:17;;;197:404;;;;;:::o;606:131::-;-1:-1:-1;;;;;681:31:101;;671:42;;661:2;;727:1;724;717:12;661:2;651:86;:::o;:::-;871:1520:69;;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@_setManager_5165": {
                  "entryPoint": 1952,
                  "id": 5165,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_setOwner_5327": {
                  "entryPoint": 1859,
                  "id": 5327,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@claimOwnership_5307": {
                  "entryPoint": 440,
                  "id": 5307,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@manager_5119": {
                  "entryPoint": null,
                  "id": 5119,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@owner_5239": {
                  "entryPoint": null,
                  "id": 5239,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@pendingOwner_5248": {
                  "entryPoint": null,
                  "id": 5248,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@prizeDistributionFactory_15235": {
                  "entryPoint": null,
                  "id": 15235,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@push_15308": {
                  "entryPoint": 704,
                  "id": 15308,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@renounceOwnership_5262": {
                  "entryPoint": 587,
                  "id": 5262,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@setManager_5134": {
                  "entryPoint": 1419,
                  "id": 5134,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@timelock_15239": {
                  "entryPoint": null,
                  "id": 15239,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@transferOwnership_5289": {
                  "entryPoint": 1543,
                  "id": 5289,
                  "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_$10697_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_$15999__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_IPrizeDistributionFactory_$16009__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_$10697_memory_ptr_t_uint256__to_t_struct$_Draw_$10697_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:6553:101",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:101",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "62:115:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "72:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "94:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "81:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "81:20:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "72:5:101"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "155:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "164:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "167:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "157:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "157:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "157:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "123:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "134:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "141:10:101",
                                            "type": "",
                                            "value": "0xffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "130:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "130:22:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "120:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "120:33:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "113:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "113:41:101"
                              },
                              "nodeType": "YulIf",
                              "src": "110:2:101"
                            }
                          ]
                        },
                        "name": "abi_decode_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "41:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "52:5:101",
                            "type": ""
                          }
                        ],
                        "src": "14:163:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "230:123:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "240:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "262:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "249:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "249:20:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "240:5:101"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "331:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "340:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "343:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "333:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "333:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "333:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "291:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "302:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "309:18:101",
                                            "type": "",
                                            "value": "0xffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "298:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "298:30:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "288:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "288:41:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "281:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "281:49:101"
                              },
                              "nodeType": "YulIf",
                              "src": "278:2:101"
                            }
                          ]
                        },
                        "name": "abi_decode_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "209:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "220:5:101",
                            "type": ""
                          }
                        ],
                        "src": "182:171:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "428:239:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "474:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "483:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "486:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "476:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "476:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "476:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "449:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "458:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "445:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "445:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "470:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "441:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "441:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "438:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "499:36:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "525:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "512:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "512:23:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "503:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "621:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "630:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "633:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "623:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "623:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "623:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "557:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "568:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "575:42:101",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "564:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "564:54:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "554:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "554:65:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "547:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "547:73:101"
                              },
                              "nodeType": "YulIf",
                              "src": "544:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "646:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "656:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "646:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "394:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "405:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "417:6:101",
                            "type": ""
                          }
                        ],
                        "src": "358:309:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "750:199:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "796:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "805:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "808:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "798:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "798:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "798:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "771:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "780:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "767:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "767:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "792:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "763:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "763:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "760:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "821:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "840:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "834:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "834:16:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "825:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "903:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "912:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "915:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "905:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "905:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "905:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "872:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "893:5:101"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "iszero",
                                              "nodeType": "YulIdentifier",
                                              "src": "886:6:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "886:13:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "879:6:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "879:21:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "869:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "869:32:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "862:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "862:40:101"
                              },
                              "nodeType": "YulIf",
                              "src": "859:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "928:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "938:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "928:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_bool_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "716:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "727:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "739:6:101",
                            "type": ""
                          }
                        ],
                        "src": "672:277:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1064:902:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1074:33:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1088:7:101"
                                  },
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1097:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "1084:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1084:23:101"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1078:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1132:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1141:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1144:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1134:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1134:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1134:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1123:2:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1127:3:101",
                                    "type": "",
                                    "value": "192"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1119:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1119:12:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1116:2:101"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1174:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1183:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1186:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1176:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1176:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1176:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1164:2:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1168:4:101",
                                    "type": "",
                                    "value": "0xa0"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1160:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1160:13:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1157:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1199:23:101",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1219:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1213:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1213:9:101"
                              },
                              "variables": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "1203:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1231:35:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "1253:6:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1261:4:101",
                                    "type": "",
                                    "value": "0xa0"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1249:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1249:17:101"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "1235:10:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1349:168:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1370:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1373:77:101",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1363:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1363:88:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1363:88:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1471:1:101",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1474:4:101",
                                          "type": "",
                                          "value": "0x41"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1464:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1464:15:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1464:15:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1499:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1502:4:101",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1492:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1492:15:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1492:15:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1284:10:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1296:18:101",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1281:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1281:34:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1320:10:101"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1332:6:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1317:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1317:22:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "1278:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1278:62:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1275:2:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1533:2:101",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "1537:10:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1526:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1526:22:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1526:22:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "1564:6:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1585:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "calldataload",
                                      "nodeType": "YulIdentifier",
                                      "src": "1572:12:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1572:23:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1557:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1557:39:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1557:39:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1616:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1624:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1612:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1612:15:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "1651:9:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1662:2:101",
                                            "type": "",
                                            "value": "32"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1647:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1647:18:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "1629:17:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1629:37:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1605:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1605:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1605:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1687:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1695:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1683:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1683:15:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "1722:9:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1733:2:101",
                                            "type": "",
                                            "value": "64"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1718:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1718:18:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint64",
                                      "nodeType": "YulIdentifier",
                                      "src": "1700:17:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1700:37:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1676:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1676:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1676:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1758:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1766:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1754:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1754:15:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "1793:9:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1804:2:101",
                                            "type": "",
                                            "value": "96"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1789:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1789:18:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint64",
                                      "nodeType": "YulIdentifier",
                                      "src": "1771:17:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1771:37:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1747:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1747:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1747:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1829:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1837:3:101",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1825:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1825:16:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "1865:9:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1876:3:101",
                                            "type": "",
                                            "value": "128"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1861:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1861:19:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "1843:17:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1843:38:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1818:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1818:64:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1818:64:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1891:16:101",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "1901:6:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1891:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1916:44:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1943:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1954:4:101",
                                        "type": "",
                                        "value": "0xa0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1939:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1939:20:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1926:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1926:34:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1916:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_struct$_Draw_$10697_memory_ptrt_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1022:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1033:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1045:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1053:6:101",
                            "type": ""
                          }
                        ],
                        "src": "954:1012:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2072:125:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2082:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2094:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2105:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2090:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2090:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2082:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2124:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "2139:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2147:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2135:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2135:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2117:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2117:74:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2117:74:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2041:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2052:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2063:4:101",
                            "type": ""
                          }
                        ],
                        "src": "1971:226:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2297:92:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2307:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2319:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2330:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2315:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2315:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2307:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2349:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "2374:6:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "2367:6:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2367:14:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "2360:6:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2360:22:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2342:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2342:41:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2342:41:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2266:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2277:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2288:4:101",
                            "type": ""
                          }
                        ],
                        "src": "2202:187:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2528:125:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2538:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2550:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2561:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2546:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2546:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2538:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2580:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "2595:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2603:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2591:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2591:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2573:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2573:74:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2573:74:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IDrawCalculatorTimelock_$15999__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2497:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2508:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2519:4:101",
                            "type": ""
                          }
                        ],
                        "src": "2394:259:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2794:125:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2804:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2816:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2827:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2812:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2812:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2804:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2846:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "2861:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2869:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2857:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2857:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2839:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2839:74:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2839:74:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IPrizeDistributionFactory_$16009__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2763:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2774:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2785:4:101",
                            "type": ""
                          }
                        ],
                        "src": "2658:261:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3098:225:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3115:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3126:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3108:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3108:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3108:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3149:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3160:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3145:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3145:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3165:2:101",
                                    "type": "",
                                    "value": "35"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3138:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3138:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3138:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3188:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3199:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3184:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3184:18:101"
                                  },
                                  {
                                    "hexValue": "4d616e61676561626c652f6578697374696e672d6d616e616765722d61646472",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3204:34:101",
                                    "type": "",
                                    "value": "Manageable/existing-manager-addr"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3177:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3177:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3177:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3259:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3270:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3255:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3255:18:101"
                                  },
                                  {
                                    "hexValue": "657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3275:5:101",
                                    "type": "",
                                    "value": "ess"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3248:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3248:33:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3248:33:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3290:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3302:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3313:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3298:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3298:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3290:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3075:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3089:4:101",
                            "type": ""
                          }
                        ],
                        "src": "2924:399:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3502:174:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3519:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3530:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3512:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3512:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3512:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3553:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3564:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3549:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3549:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3569:2:101",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3542:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3542:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3542:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3592:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3603:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3588:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3588:18:101"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3608:26:101",
                                    "type": "",
                                    "value": "Ownable/caller-not-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3581:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3581:54:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3581:54:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3644:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3656:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3667:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3652:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3652:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3644:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3479:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3493:4:101",
                            "type": ""
                          }
                        ],
                        "src": "3328:348:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3855:181:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3872:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3883:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3865:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3865:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3865:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3906:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3917:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3902:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3902:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3922:2:101",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3895:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3895:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3895:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3945:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3956:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3941:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3941:18:101"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3961:33:101",
                                    "type": "",
                                    "value": "Ownable/caller-not-pendingOwner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3934:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3934:61:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3934:61:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4004:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4016:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4027:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4012:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4012:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4004:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3832:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3846:4:101",
                            "type": ""
                          }
                        ],
                        "src": "3681:355:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4215:228:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4232:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4243:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4225:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4225:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4225:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4266:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4277:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4262:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4262:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4282:2:101",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4255:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4255:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4255:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4305:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4316:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4301:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4301:18:101"
                                  },
                                  {
                                    "hexValue": "4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f72",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4321:34:101",
                                    "type": "",
                                    "value": "Manageable/caller-not-manager-or"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4294:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4294:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4294:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4376:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4387:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4372:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4372:18:101"
                                  },
                                  {
                                    "hexValue": "2d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4392:8:101",
                                    "type": "",
                                    "value": "-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4365:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4365:36:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4365:36:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4410:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4422:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4433:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4418:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4418:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4410:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4192:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4206:4:101",
                            "type": ""
                          }
                        ],
                        "src": "4041:402:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4622:227:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4639:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4650:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4632:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4632:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4632:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4673:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4684:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4669:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4669:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4689:2:101",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4662:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4662:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4662:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4712:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4723:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4708:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4708:18:101"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d6164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4728:34:101",
                                    "type": "",
                                    "value": "Ownable/pendingOwner-not-zero-ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4701:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4701:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4701:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4783:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4794:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4779:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4779:18:101"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4799:7:101",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4772:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4772:35:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4772:35:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4816:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4828:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4839:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4824:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4824:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4816:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4599:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4613:4:101",
                            "type": ""
                          }
                        ],
                        "src": "4448:401:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5029:568:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "5039:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5051:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5062:3:101",
                                    "type": "",
                                    "value": "192"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5047:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5047:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5039:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5082:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "5099:6:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "mload",
                                      "nodeType": "YulIdentifier",
                                      "src": "5093:5:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5093:13:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5075:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5075:32:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5075:32:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5116:44:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "5146:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5154:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5142:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5142:17:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "5136:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5136:24:101"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0",
                                  "nodeType": "YulTypedName",
                                  "src": "5120:12:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5169:20:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "5179:10:101",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "5173:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5209:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5220:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5205:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5205:20:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "memberValue0",
                                        "nodeType": "YulIdentifier",
                                        "src": "5231:12:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "5245:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5227:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5227:21:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5198:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5198:51:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5198:51:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5258:46:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "5290:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5298:4:101",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5286:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5286:17:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "5280:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5280:24:101"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0_1",
                                  "nodeType": "YulTypedName",
                                  "src": "5262:14:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5313:28:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "5323:18:101",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "5317:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5361:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5372:4:101",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5357:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5357:20:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "memberValue0_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "5383:14:101"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "5399:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5379:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5379:23:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5350:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5350:53:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5350:53:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5423:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5434:4:101",
                                        "type": "",
                                        "value": "0x60"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5419:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5419:20:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value0",
                                                "nodeType": "YulIdentifier",
                                                "src": "5455:6:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "5463:4:101",
                                                "type": "",
                                                "value": "0x60"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "5451:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "5451:17:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "5445:5:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "5445:24:101"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "5471:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5441:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5441:33:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5412:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5412:63:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5412:63:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5495:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5506:4:101",
                                        "type": "",
                                        "value": "0x80"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5491:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5491:20:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value0",
                                                "nodeType": "YulIdentifier",
                                                "src": "5527:6:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "5535:4:101",
                                                "type": "",
                                                "value": "0x80"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "5523:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "5523:17:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "5517:5:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "5517:24:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "5543:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5513:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5513:33:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5484:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5484:63:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5484:63:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5567:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5578:3:101",
                                        "type": "",
                                        "value": "160"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5563:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5563:19:101"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "5584:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5556:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5556:35:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5556:35:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_struct$_Draw_$10697_memory_ptr_t_uint256__to_t_struct$_Draw_$10697_memory_ptr_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4990:9:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "5001:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5009:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5020:4:101",
                            "type": ""
                          }
                        ],
                        "src": "4854:743:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5729:136:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "5739:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5751:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5762:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5747:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5747:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5739:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5781:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "5796:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5804:10:101",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5792:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5792:23:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5774:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5774:42:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5774:42:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5836:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5847:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5832:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5832:18:101"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "5852:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5825:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5825:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5825:34:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint32_t_uint256__to_t_uint32_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5690:9:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "5701:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5709:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5720:4:101",
                            "type": ""
                          }
                        ],
                        "src": "5602:263:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5995:161:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "6005:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6017:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6028:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6013:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6013:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6005:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6047:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "6062:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6070:10:101",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6058:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6058:23:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6040:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6040:42:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6040:42:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6102:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6113:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6098:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6098:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6122:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6130:18:101",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6118:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6118:31:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6091:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6091:59:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6091:59:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint32_t_uint64__to_t_uint32_t_uint64__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5956:9:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "5967:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5975:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5986:4:101",
                            "type": ""
                          }
                        ],
                        "src": "5870:286:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6208:343:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6218:28:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "6228:18:101",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6222:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6255:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "6270:1:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6273:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "6266:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6266:10:101"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6259:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6285:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "6300:1:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6303:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "6296:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6296:10:101"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6289:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "6348:168:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6369:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6372:77:101",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "6362:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6362:88:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6362:88:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6470:1:101",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6473:4:101",
                                          "type": "",
                                          "value": "0x11"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "6463:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6463:15:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6463:15:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6498:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6501:4:101",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "6491:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6491:15:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6491:15:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6321:3:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6330:2:101"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6334:3:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "6326:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6326:12:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "6318:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6318:21:101"
                              },
                              "nodeType": "YulIf",
                              "src": "6315:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6525:20:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6536:3:101"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6541:3:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6532:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6532:13:101"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "6525:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "6191:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "6194:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "6200:3:101",
                            "type": ""
                          }
                        ],
                        "src": "6161:390:101"
                      }
                    ]
                  },
                  "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_$10697_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_$15999__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_$16009__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_$10697_memory_ptr_t_uint256__to_t_struct$_Draw_$10697_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": 101,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {
                "15235": [
                  {
                    "length": 32,
                    "start": 260
                  },
                  {
                    "length": 32,
                    "start": 1185
                  }
                ],
                "15239": [
                  {
                    "length": 32,
                    "start": 370
                  },
                  {
                    "length": 32,
                    "start": 885
                  }
                ]
              },
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106100be5760003560e01c8063a913c9da11610076578063d33219b41161005b578063d33219b41461016d578063e30c397814610194578063f2fde38b146101a557600080fd5b8063a913c9da14610137578063d0ebdbe71461014a57600080fd5b8063715018a6116100a7578063715018a6146100f757806378e072a9146100ff5780638da5cb5b1461012657600080fd5b8063481c6a75146100c35780634e71e0c8146100ed575b600080fd5b6002546001600160a01b03165b6040516001600160a01b0390911681526020015b60405180910390f35b6100f56101b8565b005b6100f561024b565b6100d07f000000000000000000000000000000000000000000000000000000000000000081565b6000546001600160a01b03166100d0565b6100f561014536600461090a565b6102c0565b61015d6101583660046108b8565b61058b565b60405190151581526020016100e4565b6100d07f000000000000000000000000000000000000000000000000000000000000000081565b6001546001600160a01b03166100d0565b6100f56101b33660046108b8565b610607565b6001546001600160a01b031633146102175760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e65720060448201526064015b60405180910390fd5b60015461022c906001600160a01b0316610743565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b3361025e6000546001600160a01b031690565b6001600160a01b0316146102b45760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161020e565b6102be6000610743565b565b336102d36002546001600160a01b031690565b6001600160a01b031614806103015750336102f66000546001600160a01b031690565b6001600160a01b0316145b6103735760405162461bcd60e51b815260206004820152602660248201527f4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f7260448201527f2d6f776e65720000000000000000000000000000000000000000000000000000606482015260840161020e565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316638871189b8360200151846080015163ffffffff1685604001516103c191906109d0565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815263ffffffff92909216600483015267ffffffffffffffff166024820152604401602060405180830381600087803b15801561042757600080fd5b505af115801561043b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061045f91906108e8565b5060208201516040517f0348b07600000000000000000000000000000000000000000000000000000000815263ffffffff9091166004820152602481018290527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690630348b07690604401600060405180830381600087803b1580156104ed57600080fd5b505af1158015610501573d6000803e3d6000fd5b50505050602082810180516040805186518152925163ffffffff908116948401949094528086015167ffffffffffffffff908116848301526060808801519091169084015260808087015185169084015260a08301859052519216917fedb65adbca0b9daa2f70fb5e43a2119fdc09136b9552987e6e82ac54b9131dfa9181900360c00190a25050565b6000336105a06000546001600160a01b031690565b6001600160a01b0316146105f65760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161020e565b6105ff826107a0565b90505b919050565b3361061a6000546001600160a01b031690565b6001600160a01b0316146106705760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161020e565b6001600160a01b0381166106ec5760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161020e565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6002546000906001600160a01b039081169083168114156108295760405162461bcd60e51b815260206004820152602360248201527f4d616e61676561626c652f6578697374696e672d6d616e616765722d6164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161020e565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385811691821790925560405190918316907f9cb45c728de594dab506a1f1a8554e24c8eeaf983618d5ec5dd7bc6f3c49feee90600090a350600192915050565b803563ffffffff8116811461060257600080fd5b803567ffffffffffffffff8116811461060257600080fd5b6000602082840312156108ca57600080fd5b81356001600160a01b03811681146108e157600080fd5b9392505050565b6000602082840312156108fa57600080fd5b815180151581146108e157600080fd5b60008082840360c081121561091e57600080fd5b60a081121561092c57600080fd5b5060405160a0810181811067ffffffffffffffff82111715610977577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040528335815261098a6020850161088c565b602082015261099b604085016108a0565b60408201526109ac606085016108a0565b60608201526109bd6080850161088c565b60808201529460a0939093013593505050565b600067ffffffffffffffff808316818516808303821115610a1a577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b0194935050505056fea2646970667358221220bdeda368db89c04c5fd4cc33f6ba76c41126cb391b8ea2949f3392df0f38140664736f6c63430008060033",
              "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 0xBD 0xED LOG3 PUSH9 0xDB89C04C5FD4CC33F6 0xBA PUSH23 0xC41126CB391B8EA2949F3392DF0F38140664736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "871:1520:69:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1403:89:32;1477:8;;-1:-1:-1;;;;;1477:8:32;1403:89;;;-1:-1:-1;;;;;2135:55:101;;;2117:74;;2105:2;2090:18;1403:89:32;;;;;;;;3147:129:33;;;:::i;:::-;;2508:94;;;:::i;1052:67:69:-;;;;;1814:85:33;1860:7;1886:6;-1:-1:-1;;;;;1886:6:33;1814:85;;1906:483:69;;;;;;:::i;:::-;;:::i;1744:123:32:-;;;;;;:::i;:::-;;:::i;:::-;;;2367:14:101;;2360:22;2342:41;;2330:2;2315:18;1744:123:32;2297:92:101;1176:49:69;;;;;2014:101:33;2095:13;;-1:-1:-1;;;;;2095:13:33;2014:101;;2751:234;;;;;;:::i;:::-;;:::i;3147:129::-;4050:13;;-1:-1:-1;;;;;4050:13:33;4036:10;:27;4028:71;;;;-1:-1:-1;;;4028:71:33;;3883:2:101;4028:71:33;;;3865:21:101;3922:2;3902:18;;;3895:30;3961:33;3941:18;;;3934:61;4012:18;;4028:71:33;;;;;;;;;3219:13:::1;::::0;3209:24:::1;::::0;-1:-1:-1;;;;;3219:13:33::1;3209:9;:24::i;:::-;3243:13;:26:::0;;-1:-1:-1;;3243:26:33::1;::::0;;3147:129::o;2508:94::-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:33;;3819:58;;;;-1:-1:-1;;;3819:58:33;;3530:2:101;3819:58:33;;;3512:21:101;3569:2;3549:18;;;3542:30;3608:26;3588:18;;;3581:54;3652:18;;3819:58:33;3502:174:101;3819:58:33;2574:21:::1;2592:1;2574:9;:21::i;:::-;2508:94::o:0;1906:483:69:-;2861:10:32;2848:9;1477:8;;-1:-1:-1;;;;;1477:8:32;;1403:89;2848:9;-1:-1:-1;;;;;2848:23:32;;:48;;;-1:-1:-1;2886:10:32;2875:7;1860::33;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;2875:7:32;-1:-1:-1;;;;;2875:21:32;;2848:48;2840:99;;;;-1:-1:-1;;;2840:99:32;;4243:2:101;2840:99:32;;;4225:21:101;4282:2;4262:18;;;4255:30;4321:34;4301:18;;;4294:62;4392:8;4372:18;;;4365:36;4418:19;;2840:99:32;4215:228:101;2840:99:32;2061:8:69::1;-1:-1:-1::0;;;;;2061:13:69::1;;2075:5;:12;;;2107:5;:25;;;2089:43;;:5;:15;;;:43;;;;:::i;:::-;2061:72;::::0;;::::1;::::0;;;;;;::::1;6058:23:101::0;;;;2061:72:69::1;::::0;::::1;6040:42:101::0;6130:18;6118:31;6098:18;;;6091:59;6013:18;;2061:72:69::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;2190:12:69::1;::::0;::::1;::::0;2143:87:::1;::::0;;;;5804:10:101;5792:23;;;2143:87:69::1;::::0;::::1;5774:42:101::0;5832:18;;;5825:34;;;2143:24:69::1;-1:-1:-1::0;;;;;2143:46:69::1;::::0;::::1;::::0;5747:18:101;;2143:87:69::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;;;2302:12:69::1;::::0;;::::1;::::0;;2245:137:::1;::::0;;5093:13:101;;5075:32;;5136:24;;2245:137:69::1;5227:21:101::0;;;5205:20;;;5198:51;;;;5286:17;;;5280:24;5323:18;5379:23;;;5357:20;;;5350:53;5463:4;5451:17;;;5445:24;5441:33;;;5419:20;;;5412:63;5535:4;5523:17;;;5517:24;5513:33;;5491:20;;;5484:63;5578:3;5563:19;;5556:35;;;2245:137:69;;::::1;::::0;::::1;::::0;;;;5062:3:101;2245:137:69;;::::1;1906:483:::0;;:::o;1744:123:32:-;1813:4;3838:10:33;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:33;;3819:58;;;;-1:-1:-1;;;3819:58:33;;3530:2:101;3819:58:33;;;3512:21:101;3569:2;3549:18;;;3542:30;3608:26;3588:18;;;3581:54;3652:18;;3819:58:33;3502:174:101;3819:58:33;1836:24:32::1;1848:11;1836;:24::i;:::-;1829:31;;3887:1:33;1744:123:32::0;;;:::o;2751:234:33:-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:33;;3819:58;;;;-1:-1:-1;;;3819:58:33;;3530:2:101;3819:58:33;;;3512:21:101;3569:2;3549:18;;;3542:30;3608:26;3588:18;;;3581:54;3652:18;;3819:58:33;3502:174:101;3819:58:33;-1:-1:-1;;;;;2834:23:33;::::1;2826:73;;;::::0;-1:-1:-1;;;2826:73:33;;4650:2:101;2826:73:33::1;::::0;::::1;4632:21:101::0;4689:2;4669:18;;;4662:30;4728:34;4708:18;;;4701:62;4799:7;4779:18;;;4772:35;4824:19;;2826:73:33::1;4622:227:101::0;2826:73:33::1;2910:13;:25:::0;;-1:-1:-1;;2910:25:33::1;-1:-1:-1::0;;;;;2910:25:33;::::1;::::0;;::::1;::::0;;;2951:27:::1;::::0;::::1;::::0;-1:-1:-1;;2951:27:33::1;2751:234:::0;:::o;3470:174::-;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:33;;;-1:-1:-1;;3562:18:33;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;2109:326:32:-;2211:8;;2168:4;;-1:-1:-1;;;;;2211:8:32;;;;2238:31;;;;;2230:79;;;;-1:-1:-1;;;2230:79:32;;3126:2:101;2230:79:32;;;3108:21:101;3165:2;3145:18;;;3138:30;3204:34;3184:18;;;3177:62;3275:5;3255:18;;;3248:33;3298:19;;2230:79:32;3098:225:101;2230:79:32;2320:8;:22;;-1:-1:-1;;2320:22:32;-1:-1:-1;;;;;2320:22:32;;;;;;;;;2358:49;;2320:22;;2358:49;;;;;-1:-1:-1;;2358:49:32;-1:-1:-1;2424:4:32;;2109:326;-1:-1:-1;;2109:326:32:o;14:163:101:-;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:101;564:54;557:5;554:65;544:2;;633:1;630;623:12;544:2;656:5;428:239;-1:-1:-1;;;428:239:101: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:1012;1045:6;1053;1097:9;1088:7;1084:23;1127:3;1123:2;1119:12;1116:2;;;1144:1;1141;1134:12;1116:2;1168:4;1164:2;1160:13;1157:2;;;1186:1;1183;1176:12;1157:2;;1219;1213:9;1261:4;1253:6;1249:17;1332:6;1320:10;1317:22;1296:18;1284:10;1281:34;1278:62;1275:2;;;1373:77;1370:1;1363:88;1474:4;1471:1;1464:15;1502:4;1499:1;1492:15;1275:2;1533;1526:22;1572:23;;1557:39;;1629:37;1662:2;1647:18;;1629:37;:::i;:::-;1624:2;1616:6;1612:15;1605:62;1700:37;1733:2;1722:9;1718:18;1700:37;:::i;:::-;1695:2;1687:6;1683:15;1676:62;1771:37;1804:2;1793:9;1789:18;1771:37;:::i;:::-;1766:2;1758:6;1754:15;1747:62;1843:38;1876:3;1865:9;1861:19;1843:38;:::i;:::-;1837:3;1825:16;;1818:64;1829:6;1954:4;1939:20;;;;1926:34;;-1:-1:-1;;;1064:902:101:o;6161:390::-;6200:3;6228:18;6273:2;6270:1;6266:10;6303:2;6300:1;6296:10;6334:3;6330:2;6326:12;6321:3;6318:21;6315:2;;;6372:77;6369:1;6362:88;6473:4;6470:1;6463:15;6501:4;6498:1;6491:15;6315:2;6532:13;;6208:343;-1:-1:-1;;;;6208:343:101: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.8.6;\\n\\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..)\\n */\\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   */\\n  event RandomNumberRequested(uint32 indexed requestId, address indexed sender);\\n\\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   */\\n  event RandomNumberCompleted(uint32 indexed requestId, uint256 randomNumber);\\n\\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   */\\n  function getLastRequestId() external view returns (uint32 requestId);\\n\\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   */\\n  function getRequestFee() external view returns (address feeToken, uint256 requestFee);\\n\\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.\\n   * The calling contract should \\\"lock\\\" all activity until the result is available via the `requestId`\\n   */\\n  function requestRandomNumber() external returns (uint32 requestId, uint32 lockBlock);\\n\\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   */\\n  function isRequestComplete(uint32 requestId) external view returns (bool isCompleted);\\n\\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   */\\n  function randomNumber(uint32 requestId) external returns (uint256 randomNum);\\n}\\n\",\"keccak256\":\"0x24803ae776bba768a3a3f65d3b7e5fc100c7b5881a8e5e39d6c5df2735a3b5cb\",\"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 IPrizeDistributionSource\\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\":\"0xdfcc3dc33457e44d8917f33185925eff78ea21e5018250b3accf2db8a7aa0242\",\"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 prizeDistributionBuffer variable.\\n     * @return IPrizeDistributionBuffer\\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 drawIds 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\":\"0x51b3bacbdd715929d909063e66519096c2ef858b646e80f66691d155ccc8d520\",\"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\\nimport \\\"./IPrizeDistributionSource.sol\\\";\\n\\n/** @title  IPrizeDistributionBuffer\\n * @author PoolTogether Inc Team\\n * @notice The PrizeDistributionBuffer interface.\\n */\\ninterface IPrizeDistributionBuffer is IPrizeDistributionSource {\\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 (\\n            IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution,\\n            uint32 drawId\\n        );\\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 (\\n            IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution,\\n            uint32 drawId\\n        );\\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(\\n        uint32 drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata draw\\n    ) external returns (uint32);\\n}\\n\",\"keccak256\":\"0xa66b0d958502adda03e80924381bae30802f1c8d80823a9b787b8c66f6a7d835\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionSource.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/** @title IPrizeDistributionSource\\n * @author PoolTogether Inc Team\\n * @notice The PrizeDistributionSource interface.\\n */\\ninterface IPrizeDistributionSource {\\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 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 (PrizeDistribution[] memory);\\n}\\n\",\"keccak256\":\"0x05ec47edc2684790a869a866576e7338229cc4eeafe1171bfc8cd7fa1c0cc9a0\",\"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 valid 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\":\"0x9d90a364aafbb26a680259ad470222368aabe139cd6200eeb02ec0c6b93bc317\",\"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 buffer) 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 of 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 seven year minimum,\\n                of accurate historical lookups with current estimates of 1 new block\\n                every 15 seconds - assuming each block contains 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\":\"0x446d8221329601d40464981a50a0e31f3fd48da0ebf0fea646c5a089ccfbdff4\",\"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": 5205,
                "contract": "@pooltogether/v4-timelocks/contracts/BeaconTimelockTrigger.sol:BeaconTimelockTrigger",
                "label": "_owner",
                "offset": 0,
                "slot": "0",
                "type": "t_address"
              },
              {
                "astId": 5207,
                "contract": "@pooltogether/v4-timelocks/contracts/BeaconTimelockTrigger.sol:BeaconTimelockTrigger",
                "label": "_pendingOwner",
                "offset": 0,
                "slot": "1",
                "type": "t_address"
              },
              {
                "astId": 5103,
                "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": {
                "@_15353": {
                  "entryPoint": null,
                  "id": 15353,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_5230": {
                  "entryPoint": null,
                  "id": 5230,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setOwner_5327": {
                  "entryPoint": 135,
                  "id": 5327,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "abi_decode_tuple_t_addresst_contract$_IDrawCalculator_$11003_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:562:101",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:101",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "137:287:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "183:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "192:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "195:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "185:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "185:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "185:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "158:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "167:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "154:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "154:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "179:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "150:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "150:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "147:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "208:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "227:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "221:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "221:16:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "212:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "271:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "246:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "246:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "246:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "286:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "296:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "286:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "310:40:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "335:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "346:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "331:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "331:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "325:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "325:25:101"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "314:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "384:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "359:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "359:33:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "359:33:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "401:17:101",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "411:7:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "401:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_contract$_IDrawCalculator_$11003_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "95:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "106:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "118:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "126:6:101",
                            "type": ""
                          }
                        ],
                        "src": "14:410:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "474:86:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "538:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "547:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "550:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "540:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "540:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "540:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "497:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "508:5:101"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "523:3:101",
                                                    "type": "",
                                                    "value": "160"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "528:1:101",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "519:3:101"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "519:11:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "532:1:101",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "515:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "515:19:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "504:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "504:31:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "494:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "494:42:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "487:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "487:50:101"
                              },
                              "nodeType": "YulIf",
                              "src": "484:2:101"
                            }
                          ]
                        },
                        "name": "validator_revert_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "463:5:101",
                            "type": ""
                          }
                        ],
                        "src": "429:131:101"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_tuple_t_addresst_contract$_IDrawCalculator_$11003_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": 101,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "60a060405234801561001057600080fd5b5060405161120338038061120383398101604081905261002f916100d7565b8161003981610087565b506001600160601b0319606082901b166080526040516001600160a01b038216907ff40fcec21964ffb566044d083b4073f29f7f7929110ea19e1b3ebe375d89055e90600090a25050610129565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080604083850312156100ea57600080fd5b82516100f581610111565b602084015190925061010681610111565b809150509250929050565b6001600160a01b038116811461012657600080fd5b50565b60805160601c6110b661014d6000396000818160e601526105f501526110b66000f3fe608060405234801561001057600080fd5b50600436106100df5760003560e01c80638da5cb5b1161008c578063d0ebdbe711610066578063d0ebdbe714610209578063d3a9c6121461021c578063e30c397814610224578063f2fde38b1461023557600080fd5b80638da5cb5b146101c4578063aaca392e146101d5578063bdf28f5e146101f657600080fd5b80636221a54b116100bd5780636221a54b1461013e578063715018a6146101995780638871189b146101a157600080fd5b80632d680cfa146100e4578063481c6a75146101235780634e71e0c814610134575b600080fd5b7f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b0390911681526020015b60405180910390f35b6002546001600160a01b0316610106565b61013c610248565b005b60408051808201825260008082526020918201528151808301835260035467ffffffffffffffff811680835263ffffffff6801000000000000000090920482169284019283528451908152915116918101919091520161011a565b61013c6102db565b6101b46101af366004610e5d565b610350565b604051901515815260200161011a565b6000546001600160a01b0316610106565b6101e86101e3366004610c63565b61052a565b60405161011a929190610f14565b61013c610204366004610de7565b610695565b6101b4610217366004610c41565b610782565b6101b46107fe565b6001546001600160a01b0316610106565b61013c610243366004610c41565b610840565b6001546001600160a01b031633146102a75760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e65720060448201526064015b60405180910390fd5b6001546102bc906001600160a01b031661097c565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b336102ee6000546001600160a01b031690565b6001600160a01b0316146103445760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161029e565b61034e600061097c565b565b6000336103656002546001600160a01b031690565b6001600160a01b031614806103935750336103886000546001600160a01b031690565b6001600160a01b0316145b6104055760405162461bcd60e51b815260206004820152602660248201527f4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f7260448201527f2d6f776e65720000000000000000000000000000000000000000000000000000606482015260840161029e565b6040805180820190915260035467ffffffffffffffff8116825268010000000000000000900463ffffffff1660208201819052610443906001610fad565b63ffffffff168463ffffffff161461049d5760405162461bcd60e51b815260206004820152601660248201527f4f4d2f6e6f742d6472617769642d706c75732d6f6e6500000000000000000000604482015260640161029e565b6104a6816109d9565b60408051808201825267ffffffffffffffff851680825263ffffffff87166020928301819052600380546bffffffffffffffffffffffff1916831768010000000000000000830217905592519081527f20bc545b2cd11ce6226bb1c860ff6f659360e1010b2c3b738c9937c71e45d314910160405180910390a25060019392505050565b6040805180820190915260035467ffffffffffffffff8116825268010000000000000000900463ffffffff166020820152606090819060005b868110156105c457816020015163ffffffff1688888381811061058857610588611054565b905060200201602081019061059d9190610e42565b63ffffffff1614156105b2576105b2826109d9565b806105bc81611005565b915050610563565b506040517faaca392e0000000000000000000000000000000000000000000000000000000081526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063aaca392e90610632908b908b908b908b908b90600401610e90565b60006040518083038186803b15801561064a57600080fd5b505afa15801561065e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526106869190810190610d15565b92509250509550959350505050565b336106a86000546001600160a01b031690565b6001600160a01b0316146106fe5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161029e565b8051600380546020808501805167ffffffffffffffff9095166bffffffffffffffffffffffff1990931683176801000000000000000063ffffffff9687160217909355604080519283529251909316928101929092527f51ca607fe37449f0b3448b77ae0b2162d498f335628b88d450cd671ebb5e1881910160405180910390a150565b6000336107976000546001600160a01b031690565b6001600160a01b0316146107ed5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161029e565b6107f682610a31565b90505b919050565b6040805180820190915260035467ffffffffffffffff8116825268010000000000000000900463ffffffff16602082015260009061083b90610b1d565b905090565b336108536000546001600160a01b031690565b6001600160a01b0316146108a95760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161029e565b6001600160a01b0381166109255760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161029e565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6109e281610b1d565b610a2e5760405162461bcd60e51b815260206004820152601760248201527f4f4d2f74696d656c6f636b2d6e6f742d65787069726564000000000000000000604482015260640161029e565b50565b6002546000906001600160a01b03908116908316811415610aba5760405162461bcd60e51b815260206004820152602360248201527f4d616e61676561626c652f6578697374696e672d6d616e616765722d6164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161029e565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385811691821790925560405190918316907f9cb45c728de594dab506a1f1a8554e24c8eeaf983618d5ec5dd7bc6f3c49feee90600090a350600192915050565b805160009067ffffffffffffffff16610b3857506001919050565b505167ffffffffffffffff16421190565b80356001600160a01b03811681146107f957600080fd5b60008083601f840112610b7257600080fd5b50813567ffffffffffffffff811115610b8a57600080fd5b602083019150836020828501011115610ba257600080fd5b9250929050565b600082601f830112610bba57600080fd5b815167ffffffffffffffff811115610bd457610bd461106a565b610be76020601f19601f84011601610f7c565b818152846020838601011115610bfc57600080fd5b610c0d826020830160208701610fd5565b949350505050565b803563ffffffff811681146107f957600080fd5b803567ffffffffffffffff811681146107f957600080fd5b600060208284031215610c5357600080fd5b610c5c82610b49565b9392505050565b600080600080600060608688031215610c7b57600080fd5b610c8486610b49565b9450602086013567ffffffffffffffff80821115610ca157600080fd5b818801915088601f830112610cb557600080fd5b813581811115610cc457600080fd5b8960208260051b8501011115610cd957600080fd5b602083019650809550506040880135915080821115610cf757600080fd5b50610d0488828901610b60565b969995985093965092949392505050565b60008060408385031215610d2857600080fd5b825167ffffffffffffffff80821115610d4057600080fd5b818501915085601f830112610d5457600080fd5b8151602082821115610d6857610d6861106a565b8160051b610d77828201610f7c565b8381528281019086840183880185018c1015610d9257600080fd5b600097505b85881015610db5578051835260019790970196918401918401610d97565b509289015192975091945050505080821115610dd057600080fd5b50610ddd85828601610ba9565b9150509250929050565b600060408284031215610df957600080fd5b6040516040810181811067ffffffffffffffff82111715610e1c57610e1c61106a565b604052610e2883610c29565b8152610e3660208401610c15565b60208201529392505050565b600060208284031215610e5457600080fd5b610c5c82610c15565b60008060408385031215610e7057600080fd5b610e7983610c15565b9150610e8760208401610c29565b90509250929050565b6001600160a01b038616815260606020808301829052908201859052600090869060808401835b88811015610ee05763ffffffff610ecd85610c15565b1682529282019290820190600101610eb7565b5084810360408601528581528587838301376000818701830152601f909501601f1916909401909301979650505050505050565b604080825283519082018190526000906020906060840190828701845b82811015610f4d57815184529284019290840190600101610f31565b505050838103828501528451808252610f6b81848401858901610fd5565b601f01601f19160101949350505050565b604051601f8201601f1916810167ffffffffffffffff81118282101715610fa557610fa561106a565b604052919050565b600063ffffffff808316818516808303821115610fcc57610fcc61103e565b01949350505050565b60005b83811015610ff0578181015183820152602001610fd8565b83811115610fff576000848401525b50505050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156110375761103761103e565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fdfea26469706673582212208e8f7e8fb86a085b69ad43610be143c4e3389700cdb6f81df205bc23250a364e64736f6c63430008060033",
              "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 DUP15 DUP16 PUSH31 0x8FB86A085B69AD43610BE143C4E3389700CDB6F81DF205BC23250A364E6473 PUSH16 0x6C634300080600330000000000000000 ",
              "sourceMap": "725:3639:70:-:0;;;1579:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1644:6;1648:24:33;1644:6:70;1648:9:33;:24::i;:::-;-1:-1:-1;;;;;;;1662:24:70::1;::::0;;;;::::1;::::0;1702:21:::1;::::0;-1:-1:-1;;;;;1662:24:70;::::1;::::0;1702:21:::1;::::0;;;::::1;1579:151:::0;;725:3639;;3470:174:33;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:33;;;-1:-1:-1;;;;;;3562:18:33;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;14:410:101:-;118:6;126;179:2;167:9;158:7;154:23;150:32;147:2;;;195:1;192;185:12;147:2;227:9;221:16;246:31;271:5;246:31;:::i;:::-;346:2;331:18;;325:25;296:5;;-1:-1:-1;359:33:101;325:25;359:33;:::i;:::-;411:7;401:17;;;137:287;;;;;:::o;429:131::-;-1:-1:-1;;;;;504:31:101;;494:42;;484:2;;550:1;547;540:12;484:2;474:86;:::o;:::-;725:3639:70;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@_requireTimelockElapsed_15548": {
                  "entryPoint": 2521,
                  "id": 15548,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setManager_5165": {
                  "entryPoint": 2609,
                  "id": 5165,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_setOwner_5327": {
                  "entryPoint": 2428,
                  "id": 5327,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_timelockHasElapsed_15533": {
                  "entryPoint": 2845,
                  "id": 15533,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@calculate_15408": {
                  "entryPoint": 1322,
                  "id": 15408,
                  "parameterSlots": 5,
                  "returnSlots": 2
                },
                "@claimOwnership_5307": {
                  "entryPoint": 584,
                  "id": 5307,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@getDrawCalculator_15466": {
                  "entryPoint": null,
                  "id": 15466,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@getTimelock_15477": {
                  "entryPoint": null,
                  "id": 15477,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@hasElapsed_15508": {
                  "entryPoint": 2046,
                  "id": 15508,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@lock_15455": {
                  "entryPoint": 848,
                  "id": 15455,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@manager_5119": {
                  "entryPoint": null,
                  "id": 5119,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@owner_5239": {
                  "entryPoint": null,
                  "id": 5239,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@pendingOwner_5248": {
                  "entryPoint": null,
                  "id": 5248,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@renounceOwnership_5262": {
                  "entryPoint": 731,
                  "id": 5262,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@setManager_5134": {
                  "entryPoint": 1922,
                  "id": 5134,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@setTimelock_15496": {
                  "entryPoint": 1685,
                  "id": 15496,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@transferOwnership_5289": {
                  "entryPoint": 2112,
                  "id": 5289,
                  "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_$15932_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_$11003__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_$15932_memory_ptr__to_t_struct$_Timelock_$15932_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:12309:101",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:101",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "63:147:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "73:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "95:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "82:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "82:20:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "73:5:101"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "188:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "197:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "200:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "190:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "190:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "190:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "124:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "135:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "142:42:101",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "131:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "131:54:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "121:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "121:65:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "114:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "114:73:101"
                              },
                              "nodeType": "YulIf",
                              "src": "111:2:101"
                            }
                          ]
                        },
                        "name": "abi_decode_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "42:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "53:5:101",
                            "type": ""
                          }
                        ],
                        "src": "14:196:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "287:275:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "336:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "345:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "348:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "338:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "338:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "338:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "315:6:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "323:4:101",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "311:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "311:17:101"
                                      },
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "330:3:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "307:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "307:27:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "300:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "300:35:101"
                              },
                              "nodeType": "YulIf",
                              "src": "297:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "361:30:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "384:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "371:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "371:20:101"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "361:6:101"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "434:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "443:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "446:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "436:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "436:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "436:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "406:6:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "414:18:101",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "403:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "403:30:101"
                              },
                              "nodeType": "YulIf",
                              "src": "400:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "459:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "475:6:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "483:4:101",
                                    "type": "",
                                    "value": "0x20"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "471:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "471:17:101"
                              },
                              "variableNames": [
                                {
                                  "name": "arrayPos",
                                  "nodeType": "YulIdentifier",
                                  "src": "459:8:101"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "540:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "549:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "552:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "542:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "542:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "542:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "511:6:101"
                                          },
                                          {
                                            "name": "length",
                                            "nodeType": "YulIdentifier",
                                            "src": "519:6:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "507:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "507:19:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "528:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "503:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "503:30:101"
                                  },
                                  {
                                    "name": "end",
                                    "nodeType": "YulIdentifier",
                                    "src": "535:3:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "500:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "500:39:101"
                              },
                              "nodeType": "YulIf",
                              "src": "497:2:101"
                            }
                          ]
                        },
                        "name": "abi_decode_bytes_calldata",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "250:6:101",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "258:3:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "arrayPos",
                            "nodeType": "YulTypedName",
                            "src": "266:8:101",
                            "type": ""
                          },
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "276:6:101",
                            "type": ""
                          }
                        ],
                        "src": "215:347:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "630:492:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "679:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "688:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "691:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "681:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "681:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "681:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "658:6:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "666:4:101",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "654:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "654:17:101"
                                      },
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "673:3:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "650:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "650:27:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "643:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "643:35:101"
                              },
                              "nodeType": "YulIf",
                              "src": "640:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "704:23:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "720:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "714:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "714:13:101"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "708:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "766:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "768:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "768:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "768:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "742:2:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "746:18:101",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "739:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "739:26:101"
                              },
                              "nodeType": "YulIf",
                              "src": "736:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "797:129:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "_1",
                                                "nodeType": "YulIdentifier",
                                                "src": "840:2:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "844:4:101",
                                                "type": "",
                                                "value": "0x1f"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "836:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "836:13:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "851:66:101",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "832:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "832:86:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "920:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "828:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "828:97:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "allocate_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "812:15:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "812:114:101"
                              },
                              "variables": [
                                {
                                  "name": "array_1",
                                  "nodeType": "YulTypedName",
                                  "src": "801:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "array_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "942:7:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "951:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "935:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "935:19:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "935:19:101"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1002:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1011:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1014:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1004:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1004:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1004:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "977:6:101"
                                          },
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "985:2:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "973:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "973:15:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "990:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "969:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "969:26:101"
                                  },
                                  {
                                    "name": "end",
                                    "nodeType": "YulIdentifier",
                                    "src": "997:3:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "966:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "966:35:101"
                              },
                              "nodeType": "YulIf",
                              "src": "963:2:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "1053:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1061:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1049:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1049:17:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "array_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1072:7:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1081:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1068:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1068:18:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1088:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1027:21:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1027:64:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1027:64:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1100:16:101",
                              "value": {
                                "name": "array_1",
                                "nodeType": "YulIdentifier",
                                "src": "1109:7:101"
                              },
                              "variableNames": [
                                {
                                  "name": "array",
                                  "nodeType": "YulIdentifier",
                                  "src": "1100:5:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_bytes_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "604:6:101",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "612:3:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "array",
                            "nodeType": "YulTypedName",
                            "src": "620:5:101",
                            "type": ""
                          }
                        ],
                        "src": "567:555:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1175:115:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1185:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1207:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1194:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1194:20:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "1185:5:101"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1268:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1277:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1280:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1270:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1270:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1270:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1236:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1247:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1254:10:101",
                                            "type": "",
                                            "value": "0xffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1243:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1243:22:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1233:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1233:33:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1226:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1226:41:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1223:2:101"
                            }
                          ]
                        },
                        "name": "abi_decode_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "1154:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "1165:5:101",
                            "type": ""
                          }
                        ],
                        "src": "1127:163:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1343:123:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1353:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1375:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1362:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1362:20:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "1353:5:101"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1444:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1453:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1456:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1446:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1446:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1446:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1404:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1415:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1422:18:101",
                                            "type": "",
                                            "value": "0xffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1411:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1411:30:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1401:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1401:41:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1394:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1394:49:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1391:2:101"
                            }
                          ]
                        },
                        "name": "abi_decode_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "1322:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "1333:5:101",
                            "type": ""
                          }
                        ],
                        "src": "1295:171:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1541:116:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1587:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1596:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1599:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1589:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1589:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1589:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1562:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1571:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1558:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1558:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1583:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1554:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1554:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1551:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1612:39:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1641:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1622:18:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1622:29:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1612:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1507:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1518:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1530:6:101",
                            "type": ""
                          }
                        ],
                        "src": "1471:186:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1819:818:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1865:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1874:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1877:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1867:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1867:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1867:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1840:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1849:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1836:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1836:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1861:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1832:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1832:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1829:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1890:39:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1919:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1900:18:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1900:29:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1890:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1938:46:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1969:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1980:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1965:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1965:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1952:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1952:32:101"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "1942:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1993:28:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "2003:18:101",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1997:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2048:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2057:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2060:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2050:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2050:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2050:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "2036:6:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2044:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2033:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2033:14:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2030:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2073:32:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2087:9:101"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "2098:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2083:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2083:22:101"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "2077:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2153:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2162:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2165:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2155:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2155:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2155:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "2132:2:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2136:4:101",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2128:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2128:13:101"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2143:7:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "2124:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2124:27:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "2117:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2117:35:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2114:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2178:30:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "2205:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2192:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2192:16:101"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "2182:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2235:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2244:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2247:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2237:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2237:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2237:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "2223:6:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2231:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2220:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2220:14:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2217:2:101"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2309:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2318:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2321:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2311:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2311:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2311:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "2274:2:101"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "2282:1:101",
                                                "type": "",
                                                "value": "5"
                                              },
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "2285:6:101"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "2278:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "2278:14:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2270:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2270:23:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2295:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2266:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2266:32:101"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "2300:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2263:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2263:45:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2260:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2334:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "2348:2:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2352:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2344:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2344:11:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2334:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2364:16:101",
                              "value": {
                                "name": "length",
                                "nodeType": "YulIdentifier",
                                "src": "2374:6:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "2364:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2389:48:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2422:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2433:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2418:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2418:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2405:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2405:32:101"
                              },
                              "variables": [
                                {
                                  "name": "offset_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2393:8:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2466:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2475:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2478:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2468:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2468:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2468:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2452:8:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2462:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2449:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2449:16:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2446:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2491:86:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2547:9:101"
                                      },
                                      {
                                        "name": "offset_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "2558:8:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2543:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2543:24:101"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "2569:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_bytes_calldata",
                                  "nodeType": "YulIdentifier",
                                  "src": "2517:25:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2517:60:101"
                              },
                              "variables": [
                                {
                                  "name": "value3_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2495:8:101",
                                  "type": ""
                                },
                                {
                                  "name": "value4_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2505:8:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2586:18:101",
                              "value": {
                                "name": "value3_1",
                                "nodeType": "YulIdentifier",
                                "src": "2596:8:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "2586:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2613:18:101",
                              "value": {
                                "name": "value4_1",
                                "nodeType": "YulIdentifier",
                                "src": "2623:8:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value4",
                                  "nodeType": "YulIdentifier",
                                  "src": "2613:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "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:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1764:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1776:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1784:6:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "1792:6:101",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "1800:6:101",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "1808:6:101",
                            "type": ""
                          }
                        ],
                        "src": "1662:975:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2774:1019:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2820:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2829:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2832:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2822:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2822:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2822:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2795:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2804:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2791:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2791:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2816:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2787:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2787:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2784:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2845:30:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2865:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2859:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2859:16:101"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "2849:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2884:28:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "2894:18:101",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2888:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2939:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2948:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2951:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2941:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2941:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2941:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "2927:6:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2935:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2924:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2924:14:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2921:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2964:32:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2978:9:101"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "2989:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2974:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2974:22:101"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "2968:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3044:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3053:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3056:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3046:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3046:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3046:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "3023:2:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "3027:4:101",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "3019:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3019:13:101"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3034:7:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "3015:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3015:27:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "3008:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3008:35:101"
                              },
                              "nodeType": "YulIf",
                              "src": "3005:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3069:19:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "3085:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3079:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3079:9:101"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "3073:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3097:14:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3107:4:101",
                                "type": "",
                                "value": "0x20"
                              },
                              "variables": [
                                {
                                  "name": "_4",
                                  "nodeType": "YulTypedName",
                                  "src": "3101:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3134:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "3136:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3136:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3136:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "3126:2:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3130:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3123:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3123:10:101"
                              },
                              "nodeType": "YulIf",
                              "src": "3120:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3165:20:101",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3179:1:101",
                                    "type": "",
                                    "value": "5"
                                  },
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "3182:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "shl",
                                  "nodeType": "YulIdentifier",
                                  "src": "3175:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3175:10:101"
                              },
                              "variables": [
                                {
                                  "name": "_5",
                                  "nodeType": "YulTypedName",
                                  "src": "3169:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3194:39:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "_5",
                                        "nodeType": "YulIdentifier",
                                        "src": "3225:2:101"
                                      },
                                      {
                                        "name": "_4",
                                        "nodeType": "YulIdentifier",
                                        "src": "3229:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3221:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3221:11:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "allocate_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "3205:15:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3205:28:101"
                              },
                              "variables": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulTypedName",
                                  "src": "3198:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3242:16:101",
                              "value": {
                                "name": "dst",
                                "nodeType": "YulIdentifier",
                                "src": "3255:3:101"
                              },
                              "variables": [
                                {
                                  "name": "dst_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3246:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "3274:3:101"
                                  },
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "3279:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3267:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3267:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3267:15:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3291:19:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "3302:3:101"
                                  },
                                  {
                                    "name": "_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "3307:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3298:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3298:12:101"
                              },
                              "variableNames": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulIdentifier",
                                  "src": "3291:3:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3319:22:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "3334:2:101"
                                  },
                                  {
                                    "name": "_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "3338:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3330:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3330:11:101"
                              },
                              "variables": [
                                {
                                  "name": "src",
                                  "nodeType": "YulTypedName",
                                  "src": "3323:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3387:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3396:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3399:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3389:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3389:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3389:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "3364:2:101"
                                          },
                                          {
                                            "name": "_5",
                                            "nodeType": "YulIdentifier",
                                            "src": "3368:2:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "3360:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3360:11:101"
                                      },
                                      {
                                        "name": "_4",
                                        "nodeType": "YulIdentifier",
                                        "src": "3373:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3356:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3356:20:101"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "3378:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3353:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3353:33:101"
                              },
                              "nodeType": "YulIf",
                              "src": "3350:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3412:10:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3421:1:101",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "3416:1:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3476:111:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "3497:3:101"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "3508:3:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "3502:5:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "3502:10:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "3490:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3490:23:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3490:23:101"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "3526:19:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "3537:3:101"
                                        },
                                        {
                                          "name": "_4",
                                          "nodeType": "YulIdentifier",
                                          "src": "3542:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "3533:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3533:12:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "dst",
                                        "nodeType": "YulIdentifier",
                                        "src": "3526:3:101"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "3558:19:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "3569:3:101"
                                        },
                                        {
                                          "name": "_4",
                                          "nodeType": "YulIdentifier",
                                          "src": "3574:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "3565:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3565:12:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "src",
                                        "nodeType": "YulIdentifier",
                                        "src": "3558:3:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "3442:1:101"
                                  },
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "3445:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3439:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3439:9:101"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "3449:18:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "3451:14:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "3460:1:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3463:1:101",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "3456:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3456:9:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "3451:1:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "3435:3:101",
                                "statements": []
                              },
                              "src": "3431:156:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3596:15:101",
                              "value": {
                                "name": "dst_1",
                                "nodeType": "YulIdentifier",
                                "src": "3606:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3596:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3620:41:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3646:9:101"
                                      },
                                      {
                                        "name": "_4",
                                        "nodeType": "YulIdentifier",
                                        "src": "3657:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3642:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3642:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3636:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3636:25:101"
                              },
                              "variables": [
                                {
                                  "name": "offset_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3624:8:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3690:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3699:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3702:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3692:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3692:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3692:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3676:8:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "3686:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3673:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3673:16:101"
                              },
                              "nodeType": "YulIf",
                              "src": "3670:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3715:72:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3757:9:101"
                                      },
                                      {
                                        "name": "offset_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "3768:8:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3753:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3753:24:101"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "3779:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_bytes_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "3725:27:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3725:62:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "3715:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "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:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2743:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2755:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2763:6:101",
                            "type": ""
                          }
                        ],
                        "src": "2642:1151:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3895:419:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3941:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3950:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3953:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3943:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3943:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3943:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3916:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3925:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3912:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3912:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3937:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3908:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3908:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "3905:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3966:23:101",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3986:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3980:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3980:9:101"
                              },
                              "variables": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "3970:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3998:33:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "4020:6:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4028:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4016:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4016:15:101"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "4002:10:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4106:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "4108:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4108:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4108:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "4049:10:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4061:18:101",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "4046:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4046:34:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "4085:10:101"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "4097:6:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "4082:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4082:22:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "4043:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4043:62:101"
                              },
                              "nodeType": "YulIf",
                              "src": "4040:2:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4144:2:101",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "4148:10:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4137:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4137:22:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4137:22:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "4175:6:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4201:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint64",
                                      "nodeType": "YulIdentifier",
                                      "src": "4183:17:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4183:28:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4168:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4168:44:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4168:44:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "4232:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4240:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4228:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4228:15:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "4267:9:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "4278:2:101",
                                            "type": "",
                                            "value": "32"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "4263:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4263:18:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "4245:17:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4245:37:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4221:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4221:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4221:62:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4292:16:101",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "4302:6:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "4292:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_struct$_Timelock_$15932_memory_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3861:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "3872:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3884:6:101",
                            "type": ""
                          }
                        ],
                        "src": "3798:516:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4388:115:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4434:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4443:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4446:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4436:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4436:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4436:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "4409:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4418:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "4405:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4405:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4430:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4401:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4401:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "4398:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4459:38:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4487:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "4469:17:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4469:28:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "4459:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4354:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "4365:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4377:6:101",
                            "type": ""
                          }
                        ],
                        "src": "4319:184:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4593:171:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4639:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4648:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4651:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4641:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4641:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4641:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "4614:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4623:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "4610:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4610:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4635:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4606:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4606:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "4603:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4664:38:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4692:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "4674:17:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4674:28:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "4664:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4711:47:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4743:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4754:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4739:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4739:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint64",
                                  "nodeType": "YulIdentifier",
                                  "src": "4721:17:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4721:37:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "4711:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint32t_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4551:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "4562:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4574:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "4582:6:101",
                            "type": ""
                          }
                        ],
                        "src": "4508:256:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4870:125:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "4880:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4892:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4903:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4888:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4888:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4880:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4922:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "4937:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4945:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4933:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4933:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4915:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4915:74:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4915:74:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4839:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4850:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4861:4:101",
                            "type": ""
                          }
                        ],
                        "src": "4769:226:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5243:842:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5253:32:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5271:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5282:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5267:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5267:18:101"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "5257:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5301:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "5316:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5324:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5312:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5312:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5294:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5294:74:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5294:74:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5377:12:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "5387:2:101",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "5381:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5409:9:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "5420:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5405:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5405:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5425:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5398:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5398:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5398:30:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5437:17:101",
                              "value": {
                                "name": "tail_1",
                                "nodeType": "YulIdentifier",
                                "src": "5448:6:101"
                              },
                              "variables": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulTypedName",
                                  "src": "5441:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "5470:6:101"
                                  },
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "5478:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5463:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5463:22:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5463:22:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5494:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5505:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5516:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5501:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5501:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "5494:3:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5529:20:101",
                              "value": {
                                "name": "value1",
                                "nodeType": "YulIdentifier",
                                "src": "5543:6:101"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "5533:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5558:10:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "5567:1:101",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "5562:1:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5626:149:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "5647:3:101"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "srcPtr",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "5674:6:101"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "abi_decode_uint32",
                                                "nodeType": "YulIdentifier",
                                                "src": "5656:17:101"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "5656:25:101"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "5683:10:101",
                                              "type": "",
                                              "value": "0xffffffff"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "and",
                                            "nodeType": "YulIdentifier",
                                            "src": "5652:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "5652:42:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "5640:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5640:55:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5640:55:101"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "5708:19:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "5719:3:101"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "5724:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "5715:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5715:12:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "5708:3:101"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "5740:25:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "5754:6:101"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "5762:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "5750:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5750:15:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "5740:6:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "5588:1:101"
                                  },
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "5591:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "5585:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5585:13:101"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "5599:18:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "5601:14:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "5610:1:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5613:1:101",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "5606:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5606:9:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "5601:1:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "5581:3:101",
                                "statements": []
                              },
                              "src": "5577:198:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5795:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5806:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5791:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5791:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "5815:3:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5820:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "5811:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5811:19:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5784:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5784:47:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5784:47:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "5847:3:101"
                                  },
                                  {
                                    "name": "value4",
                                    "nodeType": "YulIdentifier",
                                    "src": "5852:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5840:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5840:19:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5840:19:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "5885:3:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "5890:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5881:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5881:12:101"
                                  },
                                  {
                                    "name": "value3",
                                    "nodeType": "YulIdentifier",
                                    "src": "5895:6:101"
                                  },
                                  {
                                    "name": "value4",
                                    "nodeType": "YulIdentifier",
                                    "src": "5903:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldatacopy",
                                  "nodeType": "YulIdentifier",
                                  "src": "5868:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5868:42:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5868:42:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "pos",
                                            "nodeType": "YulIdentifier",
                                            "src": "5934:3:101"
                                          },
                                          {
                                            "name": "value4",
                                            "nodeType": "YulIdentifier",
                                            "src": "5939:6:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "5930:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "5930:16:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "5948:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5926:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5926:25:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5953:1:101",
                                    "type": "",
                                    "value": "0"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5919:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5919:36:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5919:36:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5964:115:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "5980:3:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value4",
                                                "nodeType": "YulIdentifier",
                                                "src": "5993:6:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "6001:2:101",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "5989:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "5989:15:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "6006:66:101",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "5985:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "5985:88:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5976:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5976:98:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6076:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5972:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5972:107:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5964:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "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:101",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "5191:6:101",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "5199:6:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "5207:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "5215:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5223:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5234:4:101",
                            "type": ""
                          }
                        ],
                        "src": "5000:1085:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6287:784:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6297:32:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6315:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6326:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6311:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6311:18:101"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6301:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6345:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6356:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6338:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6338:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6338:21:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6368:17:101",
                              "value": {
                                "name": "tail_1",
                                "nodeType": "YulIdentifier",
                                "src": "6379:6:101"
                              },
                              "variables": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulTypedName",
                                  "src": "6372:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6394:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "6414:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "6408:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6408:13:101"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "6398:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6437:6:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "6445:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6430:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6430:22:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6430:22:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6461:25:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6472:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6483:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6468:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6468:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "6461:3:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6495:14:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "6505:4:101",
                                "type": "",
                                "value": "0x20"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6499:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6518:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "6536:6:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6544:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6532:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6532:15:101"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "6522:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6556:10:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "6565:1:101",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "6560:1:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "6624:120:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "6645:3:101"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "srcPtr",
                                              "nodeType": "YulIdentifier",
                                              "src": "6656:6:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "6650:5:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "6650:13:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "6638:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6638:26:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6638:26:101"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "6677:19:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "6688:3:101"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "6693:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "6684:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6684:12:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "6677:3:101"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "6709:25:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "6723:6:101"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "6731:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "6719:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6719:15:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "6709:6:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "6586:1:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "6589:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "6583:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6583:13:101"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "6597:18:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "6599:14:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "6608:1:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6611:1:101",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "6604:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6604:9:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "6599:1:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "6579:3:101",
                                "statements": []
                              },
                              "src": "6575:169:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6764:9:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6775:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6760:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6760:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "6784:3:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6789:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "6780:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6780:19:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6753:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6753:47:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6753:47:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6809:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6831:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "6825:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6825:13:101"
                              },
                              "variables": [
                                {
                                  "name": "length_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6813:8:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "6854:3:101"
                                  },
                                  {
                                    "name": "length_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6859:8:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6847:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6847:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6847:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6903:6:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6911:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6899:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6899:15:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "6920:3:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6925:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6916:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6916:12:101"
                                  },
                                  {
                                    "name": "length_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6930:8:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "6877:21:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6877:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6877:62:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6948:117:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "6964:3:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length_1",
                                                "nodeType": "YulIdentifier",
                                                "src": "6977:8:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "6987:2:101",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "6973:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "6973:17:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "6992:66:101",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "6969:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "6969:90:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6960:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6960:100:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7062:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6956:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6956:109:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6948:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "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:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "6259:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6267:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6278:4:101",
                            "type": ""
                          }
                        ],
                        "src": "6090:981:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7171:92:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7181:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7193:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7204:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7189:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7189:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7181:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7223:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "7248:6:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "7241:6:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "7241:14:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "7234:6:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7234:22:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7216:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7216:41:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7216:41:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7140:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7151:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7162:4:101",
                            "type": ""
                          }
                        ],
                        "src": "7076:187:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7394:125:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7404:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7416:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7427:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7412:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7412:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7404:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7446:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "7461:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7469:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "7457:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7457:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7439:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7439:74:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7439:74:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IDrawCalculator_$11003__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7363:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7374:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7385:4:101",
                            "type": ""
                          }
                        ],
                        "src": "7268:251:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7698:173:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7715:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7726:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7708:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7708:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7708:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7749:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7760:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7745:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7745:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7765:2:101",
                                    "type": "",
                                    "value": "23"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7738:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7738:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7738:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7788:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7799:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7784:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7784:18:101"
                                  },
                                  {
                                    "hexValue": "4f4d2f74696d656c6f636b2d6e6f742d65787069726564",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7804:25:101",
                                    "type": "",
                                    "value": "OM/timelock-not-expired"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7777:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7777:53:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7777:53:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7839:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7851:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7862:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7847:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7847:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7839:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_3b94bf08c62f227970785d1aa1846dcc2e65986b745b5e79ce64e97e577b1104__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7675:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7689:4:101",
                            "type": ""
                          }
                        ],
                        "src": "7524:347:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8050:225:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8067:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8078:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8060:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8060:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8060:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8101:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8112:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8097:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8097:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8117:2:101",
                                    "type": "",
                                    "value": "35"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8090:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8090:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8090:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8140:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8151:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8136:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8136:18:101"
                                  },
                                  {
                                    "hexValue": "4d616e61676561626c652f6578697374696e672d6d616e616765722d61646472",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8156:34:101",
                                    "type": "",
                                    "value": "Manageable/existing-manager-addr"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8129:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8129:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8129:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8211:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8222:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8207:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8207:18:101"
                                  },
                                  {
                                    "hexValue": "657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8227:5:101",
                                    "type": "",
                                    "value": "ess"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8200:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8200:33:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8200:33:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8242:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8254:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8265:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8250:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8250:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8242:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8027:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8041:4:101",
                            "type": ""
                          }
                        ],
                        "src": "7876:399:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8454:174:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8471:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8482:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8464:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8464:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8464:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8505:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8516:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8501:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8501:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8521:2:101",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8494:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8494:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8494:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8544:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8555:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8540:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8540:18:101"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8560:26:101",
                                    "type": "",
                                    "value": "Ownable/caller-not-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8533:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8533:54:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8533:54:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8596:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8608:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8619:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8604:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8604:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8596:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8431:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8445:4:101",
                            "type": ""
                          }
                        ],
                        "src": "8280:348:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8807:181:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8824:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8835:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8817:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8817:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8817:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8858:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8869:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8854:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8854:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8874:2:101",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8847:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8847:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8847:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8897:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8908:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8893:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8893:18:101"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8913:33:101",
                                    "type": "",
                                    "value": "Ownable/caller-not-pendingOwner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8886:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8886:61:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8886:61:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8956:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8968:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8979:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8964:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8964:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8956:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8784:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8798:4:101",
                            "type": ""
                          }
                        ],
                        "src": "8633:355:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9167:172:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9184:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9195:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9177:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9177:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9177:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9218:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9229:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9214:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9214:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9234:2:101",
                                    "type": "",
                                    "value": "22"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9207:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9207:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9207:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9257:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9268:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9253:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9253:18:101"
                                  },
                                  {
                                    "hexValue": "4f4d2f6e6f742d6472617769642d706c75732d6f6e65",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9273:24:101",
                                    "type": "",
                                    "value": "OM/not-drawid-plus-one"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9246:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9246:52:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9246:52:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9307:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9319:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9330:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9315:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9315:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9307:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_a71dbedad0a9bb0ec5b3d22a69b03c3a407fe8d356a0633da67309c7fc7e9844__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9144:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9158:4:101",
                            "type": ""
                          }
                        ],
                        "src": "8993:346:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9518:228:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9535:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9546:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9528:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9528:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9528:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9569:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9580:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9565:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9565:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9585:2:101",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9558:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9558:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9558:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9608:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9619:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9604:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9604:18:101"
                                  },
                                  {
                                    "hexValue": "4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f72",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9624:34:101",
                                    "type": "",
                                    "value": "Manageable/caller-not-manager-or"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9597:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9597:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9597:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9679:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9690:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9675:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9675:18:101"
                                  },
                                  {
                                    "hexValue": "2d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9695:8:101",
                                    "type": "",
                                    "value": "-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9668:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9668:36:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9668:36:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9713:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9725:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9736:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9721:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9721:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9713:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9495:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9509:4:101",
                            "type": ""
                          }
                        ],
                        "src": "9344:402:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9925:227:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9942:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9953:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9935:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9935:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9935:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9976:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9987:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9972:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9972:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9992:2:101",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9965:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9965:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9965:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10015:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10026:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10011:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10011:18:101"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d6164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10031:34:101",
                                    "type": "",
                                    "value": "Ownable/pendingOwner-not-zero-ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10004:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10004:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10004:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10086:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10097:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10082:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10082:18:101"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "10102:7:101",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10075:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10075:35:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10075:35:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10119:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10131:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10142:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10127:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10127:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10119:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9902:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9916:4:101",
                            "type": ""
                          }
                        ],
                        "src": "9751:401:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10312:188:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "10322:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10334:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10345:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10330:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10330:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10322:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10364:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "10385:6:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "10379:5:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "10379:13:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10394:18:101",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "10375:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10375:38:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10357:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10357:57:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10357:57:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10434:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10445:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10430:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10430:20:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value0",
                                                "nodeType": "YulIdentifier",
                                                "src": "10466:6:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "10474:4:101",
                                                "type": "",
                                                "value": "0x20"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "10462:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "10462:17:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "10456:5:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "10456:24:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10482:10:101",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "10452:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10452:41:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10423:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10423:71:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10423:71:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_struct$_Timelock_$15932_memory_ptr__to_t_struct$_Timelock_$15932_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10281:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "10292:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10303:4:101",
                            "type": ""
                          }
                        ],
                        "src": "10157:343:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10604:101:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "10614:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10626:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10637:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10622:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10622:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10614:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10656:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "10671:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10679:18:101",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "10667:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10667:31:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10649:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10649:50:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10649:50:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10573:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "10584:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10595:4:101",
                            "type": ""
                          }
                        ],
                        "src": "10505:200:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10755:289:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "10765:19:101",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10781:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "10775:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10775:9:101"
                              },
                              "variableNames": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulIdentifier",
                                  "src": "10765:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "10793:117:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "10815:6:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "size",
                                            "nodeType": "YulIdentifier",
                                            "src": "10831:4:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "10837:2:101",
                                            "type": "",
                                            "value": "31"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "10827:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "10827:13:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10842:66:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "10823:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10823:86:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10811:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10811:99:101"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "10797:10:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "10985:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "10987:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10987:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "10987:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "10928:10:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10940:18:101",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "10925:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10925:34:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "10964:10:101"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "10976:6:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "10961:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10961:22:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "10922:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10922:62:101"
                              },
                              "nodeType": "YulIf",
                              "src": "10919:2:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11023:2:101",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "11027:10:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11016:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11016:22:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11016:22:101"
                            }
                          ]
                        },
                        "name": "allocate_memory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "size",
                            "nodeType": "YulTypedName",
                            "src": "10735:4:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "memPtr",
                            "nodeType": "YulTypedName",
                            "src": "10744:6:101",
                            "type": ""
                          }
                        ],
                        "src": "10710:334:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11096:181:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11106:20:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "11116:10:101",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "11110:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11135:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "11150:1:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "11153:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "11146:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11146:10:101"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "11139:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11165:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "11180:1:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "11183:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "11176:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11176:10:101"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "11169:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "11220:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "11222:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11222:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "11222:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "11201:3:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "11210:2:101"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "11214:3:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "11206:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11206:12:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "11198:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11198:21:101"
                              },
                              "nodeType": "YulIf",
                              "src": "11195:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11251:20:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "11262:3:101"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "11267:3:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11258:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11258:13:101"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "11251:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "11079:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "11082:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "11088:3:101",
                            "type": ""
                          }
                        ],
                        "src": "11049:228:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11335:205:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11345:10:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "11354:1:101",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "11349:1:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "11414:63:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "11439:3:101"
                                            },
                                            {
                                              "name": "i",
                                              "nodeType": "YulIdentifier",
                                              "src": "11444:1:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "11435:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "11435:11:101"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "11458:3:101"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "11463:1:101"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "11454:3:101"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "11454:11:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "11448:5:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "11448:18:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "11428:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11428:39:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "11428:39:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "11375:1:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "11378:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "11372:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11372:13:101"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "11386:19:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "11388:15:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "11397:1:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11400:2:101",
                                          "type": "",
                                          "value": "32"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "11393:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11393:10:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "11388:1:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "11368:3:101",
                                "statements": []
                              },
                              "src": "11364:113:101"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "11503:31:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "11516:3:101"
                                            },
                                            {
                                              "name": "length",
                                              "nodeType": "YulIdentifier",
                                              "src": "11521:6:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "11512:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "11512:16:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11530:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "11505:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11505:27:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "11505:27:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "11492:1:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "11495:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "11489:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11489:13:101"
                              },
                              "nodeType": "YulIf",
                              "src": "11486:2:101"
                            }
                          ]
                        },
                        "name": "copy_memory_to_memory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "src",
                            "nodeType": "YulTypedName",
                            "src": "11313:3:101",
                            "type": ""
                          },
                          {
                            "name": "dst",
                            "nodeType": "YulTypedName",
                            "src": "11318:3:101",
                            "type": ""
                          },
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "11323:6:101",
                            "type": ""
                          }
                        ],
                        "src": "11282:258:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11592:148:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "11683:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "11685:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11685:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "11685:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "11608:5:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11615:66:101",
                                    "type": "",
                                    "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "11605:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11605:77:101"
                              },
                              "nodeType": "YulIf",
                              "src": "11602:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11714:20:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "11725:5:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11732:1:101",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11721:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11721:13:101"
                              },
                              "variableNames": [
                                {
                                  "name": "ret",
                                  "nodeType": "YulIdentifier",
                                  "src": "11714:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "increment_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "11574:5:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "ret",
                            "nodeType": "YulTypedName",
                            "src": "11584:3:101",
                            "type": ""
                          }
                        ],
                        "src": "11545:195:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11777:152:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11794:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11797:77:101",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11787:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11787:88:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11787:88:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11891:1:101",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11894:4:101",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11884:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11884:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11884:15:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11915:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11918:4:101",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "11908:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11908:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11908:15:101"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "11745:184:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11966:152:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11983:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11986:77:101",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11976:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11976:88:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11976:88:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12080:1:101",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12083:4:101",
                                    "type": "",
                                    "value": "0x32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12073:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12073:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12073:15:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12104:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12107:4:101",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "12097:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12097:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12097:15:101"
                            }
                          ]
                        },
                        "name": "panic_error_0x32",
                        "nodeType": "YulFunctionDefinition",
                        "src": "11934:184:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12155:152:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12172:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12175:77:101",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12165:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12165:88:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12165:88:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12269:1:101",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12272:4:101",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12262:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12262:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12262:15:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12293:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12296:4:101",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "12286:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12286:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12286:15:101"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "12123:184:101"
                      }
                    ]
                  },
                  "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_$15932_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_$11003__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_$15932_memory_ptr__to_t_struct$_Timelock_$15932_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": 101,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {
                "15322": [
                  {
                    "length": 32,
                    "start": 230
                  },
                  {
                    "length": 32,
                    "start": 1525
                  }
                ]
              },
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106100df5760003560e01c80638da5cb5b1161008c578063d0ebdbe711610066578063d0ebdbe714610209578063d3a9c6121461021c578063e30c397814610224578063f2fde38b1461023557600080fd5b80638da5cb5b146101c4578063aaca392e146101d5578063bdf28f5e146101f657600080fd5b80636221a54b116100bd5780636221a54b1461013e578063715018a6146101995780638871189b146101a157600080fd5b80632d680cfa146100e4578063481c6a75146101235780634e71e0c814610134575b600080fd5b7f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b0390911681526020015b60405180910390f35b6002546001600160a01b0316610106565b61013c610248565b005b60408051808201825260008082526020918201528151808301835260035467ffffffffffffffff811680835263ffffffff6801000000000000000090920482169284019283528451908152915116918101919091520161011a565b61013c6102db565b6101b46101af366004610e5d565b610350565b604051901515815260200161011a565b6000546001600160a01b0316610106565b6101e86101e3366004610c63565b61052a565b60405161011a929190610f14565b61013c610204366004610de7565b610695565b6101b4610217366004610c41565b610782565b6101b46107fe565b6001546001600160a01b0316610106565b61013c610243366004610c41565b610840565b6001546001600160a01b031633146102a75760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e65720060448201526064015b60405180910390fd5b6001546102bc906001600160a01b031661097c565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b336102ee6000546001600160a01b031690565b6001600160a01b0316146103445760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161029e565b61034e600061097c565b565b6000336103656002546001600160a01b031690565b6001600160a01b031614806103935750336103886000546001600160a01b031690565b6001600160a01b0316145b6104055760405162461bcd60e51b815260206004820152602660248201527f4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f7260448201527f2d6f776e65720000000000000000000000000000000000000000000000000000606482015260840161029e565b6040805180820190915260035467ffffffffffffffff8116825268010000000000000000900463ffffffff1660208201819052610443906001610fad565b63ffffffff168463ffffffff161461049d5760405162461bcd60e51b815260206004820152601660248201527f4f4d2f6e6f742d6472617769642d706c75732d6f6e6500000000000000000000604482015260640161029e565b6104a6816109d9565b60408051808201825267ffffffffffffffff851680825263ffffffff87166020928301819052600380546bffffffffffffffffffffffff1916831768010000000000000000830217905592519081527f20bc545b2cd11ce6226bb1c860ff6f659360e1010b2c3b738c9937c71e45d314910160405180910390a25060019392505050565b6040805180820190915260035467ffffffffffffffff8116825268010000000000000000900463ffffffff166020820152606090819060005b868110156105c457816020015163ffffffff1688888381811061058857610588611054565b905060200201602081019061059d9190610e42565b63ffffffff1614156105b2576105b2826109d9565b806105bc81611005565b915050610563565b506040517faaca392e0000000000000000000000000000000000000000000000000000000081526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063aaca392e90610632908b908b908b908b908b90600401610e90565b60006040518083038186803b15801561064a57600080fd5b505afa15801561065e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526106869190810190610d15565b92509250509550959350505050565b336106a86000546001600160a01b031690565b6001600160a01b0316146106fe5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161029e565b8051600380546020808501805167ffffffffffffffff9095166bffffffffffffffffffffffff1990931683176801000000000000000063ffffffff9687160217909355604080519283529251909316928101929092527f51ca607fe37449f0b3448b77ae0b2162d498f335628b88d450cd671ebb5e1881910160405180910390a150565b6000336107976000546001600160a01b031690565b6001600160a01b0316146107ed5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161029e565b6107f682610a31565b90505b919050565b6040805180820190915260035467ffffffffffffffff8116825268010000000000000000900463ffffffff16602082015260009061083b90610b1d565b905090565b336108536000546001600160a01b031690565b6001600160a01b0316146108a95760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e65720000000000000000604482015260640161029e565b6001600160a01b0381166109255760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161029e565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6109e281610b1d565b610a2e5760405162461bcd60e51b815260206004820152601760248201527f4f4d2f74696d656c6f636b2d6e6f742d65787069726564000000000000000000604482015260640161029e565b50565b6002546000906001600160a01b03908116908316811415610aba5760405162461bcd60e51b815260206004820152602360248201527f4d616e61676561626c652f6578697374696e672d6d616e616765722d6164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161029e565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385811691821790925560405190918316907f9cb45c728de594dab506a1f1a8554e24c8eeaf983618d5ec5dd7bc6f3c49feee90600090a350600192915050565b805160009067ffffffffffffffff16610b3857506001919050565b505167ffffffffffffffff16421190565b80356001600160a01b03811681146107f957600080fd5b60008083601f840112610b7257600080fd5b50813567ffffffffffffffff811115610b8a57600080fd5b602083019150836020828501011115610ba257600080fd5b9250929050565b600082601f830112610bba57600080fd5b815167ffffffffffffffff811115610bd457610bd461106a565b610be76020601f19601f84011601610f7c565b818152846020838601011115610bfc57600080fd5b610c0d826020830160208701610fd5565b949350505050565b803563ffffffff811681146107f957600080fd5b803567ffffffffffffffff811681146107f957600080fd5b600060208284031215610c5357600080fd5b610c5c82610b49565b9392505050565b600080600080600060608688031215610c7b57600080fd5b610c8486610b49565b9450602086013567ffffffffffffffff80821115610ca157600080fd5b818801915088601f830112610cb557600080fd5b813581811115610cc457600080fd5b8960208260051b8501011115610cd957600080fd5b602083019650809550506040880135915080821115610cf757600080fd5b50610d0488828901610b60565b969995985093965092949392505050565b60008060408385031215610d2857600080fd5b825167ffffffffffffffff80821115610d4057600080fd5b818501915085601f830112610d5457600080fd5b8151602082821115610d6857610d6861106a565b8160051b610d77828201610f7c565b8381528281019086840183880185018c1015610d9257600080fd5b600097505b85881015610db5578051835260019790970196918401918401610d97565b509289015192975091945050505080821115610dd057600080fd5b50610ddd85828601610ba9565b9150509250929050565b600060408284031215610df957600080fd5b6040516040810181811067ffffffffffffffff82111715610e1c57610e1c61106a565b604052610e2883610c29565b8152610e3660208401610c15565b60208201529392505050565b600060208284031215610e5457600080fd5b610c5c82610c15565b60008060408385031215610e7057600080fd5b610e7983610c15565b9150610e8760208401610c29565b90509250929050565b6001600160a01b038616815260606020808301829052908201859052600090869060808401835b88811015610ee05763ffffffff610ecd85610c15565b1682529282019290820190600101610eb7565b5084810360408601528581528587838301376000818701830152601f909501601f1916909401909301979650505050505050565b604080825283519082018190526000906020906060840190828701845b82811015610f4d57815184529284019290840190600101610f31565b505050838103828501528451808252610f6b81848401858901610fd5565b601f01601f19160101949350505050565b604051601f8201601f1916810167ffffffffffffffff81118282101715610fa557610fa561106a565b604052919050565b600063ffffffff808316818516808303821115610fcc57610fcc61103e565b01949350505050565b60005b83811015610ff0578181015183820152602001610fd8565b83811115610fff576000848401525b50505050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156110375761103761103e565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fdfea26469706673582212208e8f7e8fb86a085b69ad43610be143c4e3389700cdb6f81df205bc23250a364e64736f6c63430008060033",
              "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 DUP15 DUP16 PUSH31 0x8FB86A085B69AD43610BE143C4E3389700CDB6F81DF205BC23250A364E6473 PUSH16 0x6C634300080600330000000000000000 ",
              "sourceMap": "725:3639:70:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2924:112;3019:10;2924:112;;;-1:-1:-1;;;;;4933:55:101;;;4915:74;;4903:2;4888:18;2924:112:70;;;;;;;;1403:89:32;1477:8;;-1:-1:-1;;;;;1477:8:32;1403:89;;3147:129:33;;;:::i;:::-;;3086:104:70;-1:-1:-1;;;;;;;;;;;;;;;;;3168:15:70;;;;;;;3175:8;3168:15;;;;;;;;;;;;;;;;;;;;3086:104;;10357:57:101;;;10456:24;;10452:41;10430:20;;;10423:71;;;;10330:18;3086:104:70;10312:188:101;2508:94:33;;;:::i;2422:452:70:-;;;;;;:::i;:::-;;:::i;:::-;;;7241:14:101;;7234:22;7216:41;;7204:2;7189:18;2422:452:70;7171:92:101;1814:85:33;1860:7;1886:6;-1:-1:-1;;;;;1886:6:33;1814:85;;1836:536:70;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;3240:151::-;;;;;;:::i;:::-;;:::i;1744:123:32:-;;;;;;:::i;:::-;;:::i;3441:113:70:-;;;:::i;2014:101:33:-;2095:13;;-1:-1:-1;;;;;2095:13:33;2014:101;;2751:234;;;;;;:::i;:::-;;:::i;3147:129::-;4050:13;;-1:-1:-1;;;;;4050:13:33;4036:10;:27;4028:71;;;;-1:-1:-1;;;4028:71:33;;8835:2:101;4028:71:33;;;8817:21:101;8874:2;8854:18;;;8847:30;8913:33;8893:18;;;8886:61;8964:18;;4028:71:33;;;;;;;;;3219:13:::1;::::0;3209:24:::1;::::0;-1:-1:-1;;;;;3219:13:33::1;3209:9;:24::i;:::-;3243:13;:26:::0;;-1:-1:-1;;3243:26:33::1;::::0;;3147:129::o;2508:94::-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:33;;3819:58;;;;-1:-1:-1;;;3819:58:33;;8482:2:101;3819:58:33;;;8464:21:101;8521:2;8501:18;;;8494:30;8560:26;8540:18;;;8533:54;8604:18;;3819:58:33;8454:174:101;3819:58:33;2574:21:::1;2592:1;2574:9;:21::i;:::-;2508:94::o:0;2422:452:70:-;2549:4;2861:10:32;2848:9;1477:8;;-1:-1:-1;;;;;1477:8:32;;1403:89;2848:9;-1:-1:-1;;;;;2848:23:32;;:48;;;-1:-1:-1;2886:10:32;2875:7;1860::33;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;2875:7:32;-1:-1:-1;;;;;2875:21:32;;2848:48;2840:99;;;;-1:-1:-1;;;2840:99:32;;9546:2:101;2840:99:32;;;9528:21:101;9585:2;9565:18;;;9558:30;9624:34;9604:18;;;9597:62;9695:8;9675:18;;;9668:36;9721:19;;2840:99:32;9518:228:101;2840:99:32;2569:36:70::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:70;;9195:2:101;2615:66:70::1;::::0;::::1;9177:21:101::0;9234:2;9214:18;;;9207:30;9273:24;9253:18;;;9246:52;9315:18;;2615:66:70::1;9167:172:101::0;2615:66:70::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:70;;;;;::::1;;::::0;;2814:31;;10649:50:101;;;2814:31:70::1;::::0;10622:18:101;2814:31:70::1;;;;;;;-1:-1:-1::0;2863:4:70::1;::::0;2422:452;-1:-1:-1;;;2422:452:70:o;1836:536::-;2021:36;;;;;;;;;2049:8;2021:36;;;;;;;;;;;;;;;1979:16;;;;-1:-1:-1;2068:239:70;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:70;;;;;-1:-1:-1;;;;;2324:10:70;:20;;;;:41;;2345:4;;2351:7;;;;2360:4;;;;2324:41;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;2324:41:70;;;;;;;;;;;;:::i;:::-;2317:48;;;;;1836:536;;;;;;;;:::o;3240:151::-;3838:10:33;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:33;;3819:58;;;;-1:-1:-1;;;3819:58:33;;8482:2:101;3819:58:33;;;8464:21:101;8521:2;8501:18;;;8494:30;8560:26;8540:18;;;8533:54;8604:18;;3819:58:33;8454:174:101;3819:58:33;3326:20:70;;:8:::1;:20:::0;;::::1;::::0;;::::1;::::0;;::::1;::::0;;::::1;-1:-1:-1::0;;3326:20:70;;;;;;::::1;::::0;;::::1;;;::::0;;;3362:22:::1;::::0;;10357:57:101;;;10456:24;;10452:41;;;10430:20;;;10423:71;;;;3362:22:70::1;::::0;10330:18:101;3362:22:70::1;;;;;;;3240:151:::0;:::o;1744:123:32:-;1813:4;3838:10:33;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:33;;3819:58;;;;-1:-1:-1;;;3819:58:33;;8482:2:101;3819:58:33;;;8464:21:101;8521:2;8501:18;;;8494:30;8560:26;8540:18;;;8533:54;8604:18;;3819:58:33;8454:174:101;3819:58:33;1836:24:32::1;1848:11;1836;:24::i;:::-;1829:31;;3887:1:33;1744:123:32::0;;;:::o;3441:113:70:-;3518:29;;;;;;;;;3538:8;3518:29;;;;;;;;;;;;;;;-1:-1:-1;;3518:29:70;;:19;:29::i;:::-;3511:36;;3441:113;:::o;2751:234:33:-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:33;;3819:58;;;;-1:-1:-1;;;3819:58:33;;8482:2:101;3819:58:33;;;8464:21:101;8521:2;8501:18;;;8494:30;8560:26;8540:18;;;8533:54;8604:18;;3819:58:33;8454:174:101;3819:58:33;-1:-1:-1;;;;;2834:23:33;::::1;2826:73;;;::::0;-1:-1:-1;;;2826:73:33;;9953:2:101;2826:73:33::1;::::0;::::1;9935:21:101::0;9992:2;9972:18;;;9965:30;10031:34;10011:18;;;10004:62;10102:7;10082:18;;;10075:35;10127:19;;2826:73:33::1;9925:227:101::0;2826:73:33::1;2910:13;:25:::0;;-1:-1:-1;;2910:25:33::1;-1:-1:-1::0;;;;;2910:25:33;::::1;::::0;;::::1;::::0;;;2951:27:::1;::::0;::::1;::::0;-1:-1:-1;;2951:27:33::1;2751:234:::0;:::o;3470:174::-;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:33;;;-1:-1:-1;;3562:18:33;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;4205:157:70:-;4297:30;4317:9;4297:19;:30::i;:::-;4289:66;;;;-1:-1:-1;;;4289:66:70;;7726:2:101;4289:66:70;;;7708:21:101;7765:2;7745:18;;;7738:30;7804:25;7784:18;;;7777:53;7847:18;;4289:66:70;7698:173:101;4289:66:70;4205:157;:::o;2109:326:32:-;2211:8;;2168:4;;-1:-1:-1;;;;;2211:8:32;;;;2238:31;;;;;2230:79;;;;-1:-1:-1;;;2230:79:32;;8078:2:101;2230:79:32;;;8060:21:101;8117:2;8097:18;;;8090:30;8156:34;8136:18;;;8129:62;8227:5;8207:18;;;8200:33;8250:19;;2230:79:32;8050:225:101;2230:79:32;2320:8;:22;;-1:-1:-1;;2320:22:32;-1:-1:-1;;;;;2320:22:32;;;;;;;;;2358:49;;2320:22;;2358:49;;;;;-1:-1:-1;;2358:49:32;-1:-1:-1;2424:4:32;;2109:326;-1:-1:-1;;2109:326:32:o;3715:356:70:-;3884:19;;3794:4;;3884:24;;3880:66;;-1:-1:-1;3931:4:70;;3715:356;-1:-1:-1;3715:356:70:o;3880:66::-;-1:-1:-1;4044:19:70;4026:37;;:15;:37;;3715:356::o;14:196:101:-;82:20;;-1:-1:-1;;;;;131:54:101;;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:101;;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:101;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:101: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:101: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:101;;-1:-1:-1;2596:8:101;;2491:86;1819:818;-1:-1:-1;;;1819:818:101: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:101;;;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:101;;;3636:25;3606:5;;-1:-1:-1;3636:25:101;;-1:-1:-1;;;;3673:16:101;;;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:101: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:101;;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:101;5976:98;;;5972:107;;;;5243:842;-1:-1:-1;;;;;;;5243:842:101: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:101;6960:100;6956:109;;6287:784;-1:-1:-1;;;;6287:784:101:o;10710:334::-;10781:2;10775:9;10837:2;10827:13;;-1:-1:-1;;10823:86:101;10811:99;;10940:18;10925:34;;10961:22;;;10922:62;10919:2;;;10987:18;;:::i;:::-;11023:2;11016:22;10755:289;;-1:-1:-1;10755:289:101:o;11049:228::-;11088:3;11116:10;11153:2;11150:1;11146:10;11183:2;11180:1;11176:10;11214:3;11210:2;11206:12;11201:3;11198:21;11195:2;;;11222:18;;:::i;:::-;11258:13;;11096:181;-1:-1:-1;;;;11096:181:101:o;11282:258::-;11354:1;11364:113;11378:6;11375:1;11372:13;11364:113;;;11454:11;;;11448:18;11435:11;;;11428:39;11400:2;11393:10;11364:113;;;11495:6;11492:1;11489:13;11486:2;;;11530:1;11521:6;11516:3;11512:16;11505:27;11486:2;;11335:205;;;:::o;11545:195::-;11584:3;11615:66;11608:5;11605:77;11602:2;;;11685:18;;:::i;:::-;-1:-1:-1;11732:1:101;11721:13;;11592:148::o;11745:184::-;-1:-1:-1;;;11794:1:101;11787:88;11894:4;11891:1;11884:15;11918:4;11915:1;11908:15;11934:184;-1:-1:-1;;;11983:1:101;11976:88;12083:4;12080:1;12073:15;12107:4;12104:1;12097:15;12123:184;-1:-1:-1;;;12172:1:101;12165:88;12272:4;12269:1;12262:15;12296:4;12293:1;12286: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.8.6;\\n\\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..)\\n */\\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   */\\n  event RandomNumberRequested(uint32 indexed requestId, address indexed sender);\\n\\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   */\\n  event RandomNumberCompleted(uint32 indexed requestId, uint256 randomNumber);\\n\\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   */\\n  function getLastRequestId() external view returns (uint32 requestId);\\n\\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   */\\n  function getRequestFee() external view returns (address feeToken, uint256 requestFee);\\n\\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.\\n   * The calling contract should \\\"lock\\\" all activity until the result is available via the `requestId`\\n   */\\n  function requestRandomNumber() external returns (uint32 requestId, uint32 lockBlock);\\n\\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   */\\n  function isRequestComplete(uint32 requestId) external view returns (bool isCompleted);\\n\\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   */\\n  function randomNumber(uint32 requestId) external returns (uint256 randomNum);\\n}\\n\",\"keccak256\":\"0x24803ae776bba768a3a3f65d3b7e5fc100c7b5881a8e5e39d6c5df2735a3b5cb\",\"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 IPrizeDistributionSource\\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\":\"0xdfcc3dc33457e44d8917f33185925eff78ea21e5018250b3accf2db8a7aa0242\",\"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 prizeDistributionBuffer variable.\\n     * @return IPrizeDistributionBuffer\\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 drawIds 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\":\"0x51b3bacbdd715929d909063e66519096c2ef858b646e80f66691d155ccc8d520\",\"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\\nimport \\\"./IPrizeDistributionSource.sol\\\";\\n\\n/** @title  IPrizeDistributionBuffer\\n * @author PoolTogether Inc Team\\n * @notice The PrizeDistributionBuffer interface.\\n */\\ninterface IPrizeDistributionBuffer is IPrizeDistributionSource {\\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 (\\n            IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution,\\n            uint32 drawId\\n        );\\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 (\\n            IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution,\\n            uint32 drawId\\n        );\\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(\\n        uint32 drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata draw\\n    ) external returns (uint32);\\n}\\n\",\"keccak256\":\"0xa66b0d958502adda03e80924381bae30802f1c8d80823a9b787b8c66f6a7d835\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionSource.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/** @title IPrizeDistributionSource\\n * @author PoolTogether Inc Team\\n * @notice The PrizeDistributionSource interface.\\n */\\ninterface IPrizeDistributionSource {\\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 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 (PrizeDistribution[] memory);\\n}\\n\",\"keccak256\":\"0x05ec47edc2684790a869a866576e7338229cc4eeafe1171bfc8cd7fa1c0cc9a0\",\"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 valid 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\":\"0x9d90a364aafbb26a680259ad470222368aabe139cd6200eeb02ec0c6b93bc317\",\"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 buffer) 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 of 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 seven year minimum,\\n                of accurate historical lookups with current estimates of 1 new block\\n                every 15 seconds - assuming each block contains 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\":\"0x446d8221329601d40464981a50a0e31f3fd48da0ebf0fea646c5a089ccfbdff4\",\"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": 5205,
                "contract": "@pooltogether/v4-timelocks/contracts/DrawCalculatorTimelock.sol:DrawCalculatorTimelock",
                "label": "_owner",
                "offset": 0,
                "slot": "0",
                "type": "t_address"
              },
              {
                "astId": 5207,
                "contract": "@pooltogether/v4-timelocks/contracts/DrawCalculatorTimelock.sol:DrawCalculatorTimelock",
                "label": "_pendingOwner",
                "offset": 0,
                "slot": "1",
                "type": "t_address"
              },
              {
                "astId": 5103,
                "contract": "@pooltogether/v4-timelocks/contracts/DrawCalculatorTimelock.sol:DrawCalculatorTimelock",
                "label": "_manager",
                "offset": 0,
                "slot": "2",
                "type": "t_address"
              },
              {
                "astId": 15326,
                "contract": "@pooltogether/v4-timelocks/contracts/DrawCalculatorTimelock.sol:DrawCalculatorTimelock",
                "label": "timelock",
                "offset": 0,
                "slot": "3",
                "type": "t_struct(Timelock)15932_storage"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_struct(Timelock)15932_storage": {
                "encoding": "inplace",
                "label": "struct IDrawCalculatorTimelock.Timelock",
                "members": [
                  {
                    "astId": 15929,
                    "contract": "@pooltogether/v4-timelocks/contracts/DrawCalculatorTimelock.sol:DrawCalculatorTimelock",
                    "label": "timestamp",
                    "offset": 0,
                    "slot": "0",
                    "type": "t_uint64"
                  },
                  {
                    "astId": 15931,
                    "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 IPrizeDistributionSource.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 IPrizeDistributionSource.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": {
                "@_15611": {
                  "entryPoint": null,
                  "id": 15611,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_5230": {
                  "entryPoint": null,
                  "id": 5230,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setOwner_5327": {
                  "entryPoint": 161,
                  "id": 5327,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "abi_decode_tuple_t_addresst_contract$_IPrizeDistributionBuffer_$11079t_contract$_IDrawCalculatorTimelock_$15999_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:738:101",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:101",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "196:404:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "242:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "251:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "254:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "244:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "244:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "244:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "217:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "226:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "213:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "213:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "238:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "209:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "209:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "206:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "267:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "286:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "280:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "280:16:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "271:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "330:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "305:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "305:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "305:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "345:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "355:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "345:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "369:40:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "394:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "405:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "390:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "390:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "384:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "384:25:101"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "373:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "443:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "418:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "418:33:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "418:33:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "460:17:101",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "470:7:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "460:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "486:40:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "511:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "522:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "507:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "507:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "501:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "501:25:101"
                              },
                              "variables": [
                                {
                                  "name": "value_2",
                                  "nodeType": "YulTypedName",
                                  "src": "490:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "560:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "535:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "535:33:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "535:33:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "577:17:101",
                              "value": {
                                "name": "value_2",
                                "nodeType": "YulIdentifier",
                                "src": "587:7:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "577:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_contract$_IPrizeDistributionBuffer_$11079t_contract$_IDrawCalculatorTimelock_$15999_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "146:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "157:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "169:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "177:6:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "185:6:101",
                            "type": ""
                          }
                        ],
                        "src": "14:586:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "650:86:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "714:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "723:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "726:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "716:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "716:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "716:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "673:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "684:5:101"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "699:3:101",
                                                    "type": "",
                                                    "value": "160"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "704:1:101",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "695:3:101"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "695:11:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "708:1:101",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "691:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "691:19:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "680:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "680:31:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "670:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "670:42:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "663:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "663:50:101"
                              },
                              "nodeType": "YulIf",
                              "src": "660:2:101"
                            }
                          ]
                        },
                        "name": "validator_revert_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "639:5:101",
                            "type": ""
                          }
                        ],
                        "src": "605:131:101"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_tuple_t_addresst_contract$_IPrizeDistributionBuffer_$11079t_contract$_IDrawCalculatorTimelock_$15999_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": 101,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "60a060405234801561001057600080fd5b50604051610e23380380610e2383398101604081905261002f916100f1565b82610039816100a1565b50606082901b6001600160601b031916608052600380546001600160a01b0319166001600160a01b0383811691821790925560405190918416907f09e48df7857bd0c1e0d31bb8a85d42cf1874817895f171c917f6ee2cea73ec2090600090a3505050610156565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008060006060848603121561010657600080fd5b83516101118161013e565b60208501519093506101228161013e565b60408501519092506101338161013e565b809150509250925092565b6001600160a01b038116811461015357600080fd5b50565b60805160601c610ca961017a6000396000818160c8015261045d0152610ca96000f3fe608060405234801561001057600080fd5b50600436106100be5760003560e01c8063af32b60511610076578063d33219b41161005b578063d33219b414610171578063e30c397814610184578063f2fde38b1461019557600080fd5b8063af32b6051461013b578063d0ebdbe71461014e57600080fd5b80634e71e0c8116100a75780634e71e0c814610118578063715018a6146101225780638da5cb5b1461012a57600080fd5b80630840bbdd146100c3578063481c6a7514610107575b600080fd5b6100ea7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020015b60405180910390f35b6002546001600160a01b03166100ea565b6101206101a8565b005b61012061023b565b6000546001600160a01b03166100ea565b61012061014936600461096a565b6102b0565b61016161015c366004610918565b610554565b60405190151581526020016100fe565b6003546100ea906001600160a01b031681565b6001546001600160a01b03166100ea565b6101206101a3366004610918565b6105d0565b6001546001600160a01b031633146102075760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e65720060448201526064015b60405180910390fd5b60015461021c906001600160a01b031661070c565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b3361024e6000546001600160a01b031690565b6001600160a01b0316146102a45760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016101fe565b6102ae600061070c565b565b336102c36002546001600160a01b031690565b6001600160a01b031614806102f15750336102e66000546001600160a01b031690565b6001600160a01b0316145b6103635760405162461bcd60e51b815260206004820152602660248201527f4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f7260448201527f2d6f776e6572000000000000000000000000000000000000000000000000000060648201526084016101fe565b6003546001600160a01b0316638871189b6103846040850160208601610a6c565b61039460a0860160808701610a6c565b63ffffffff166103aa6060870160408801610a87565b6103b49190610bf1565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815263ffffffff92909216600483015267ffffffffffffffff166024820152604401602060405180830381600087803b15801561041a57600080fd5b505af115801561042e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104529190610948565b506001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016631124e1dc6104926040850160208601610a6c565b836040518363ffffffff1660e01b81526004016104b0929190610bac565b602060405180830381600087803b1580156104ca57600080fd5b505af11580156104de573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105029190610948565b506105136040830160208401610a6c565b63ffffffff167fa8d834c585da75dc5076dfaed2f4cc0c65d2d07cfc01f7c27023ab61563f257e826040516105489190610b97565b60405180910390a25050565b6000336105696000546001600160a01b031690565b6001600160a01b0316146105bf5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016101fe565b6105c882610769565b90505b919050565b336105e36000546001600160a01b031690565b6001600160a01b0316146106395760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016101fe565b6001600160a01b0381166106b55760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016101fe565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6002546000906001600160a01b039081169083168114156107f25760405162461bcd60e51b815260206004820152602360248201527f4d616e61676561626c652f6578697374696e672d6d616e616765722d6164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016101fe565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385811691821790925560405190918316907f9cb45c728de594dab506a1f1a8554e24c8eeaf983618d5ec5dd7bc6f3c49feee90600090a350600192915050565b600082601f83011261086657600080fd5b60405161020080820182811067ffffffffffffffff8211171561088b5761088b610c44565b604052818482810187101561089f57600080fd5b600092505b60108310156108cb576108b6816108f3565b825260019290920191602091820191016108a4565b509195945050505050565b80356cffffffffffffffffffffffffff811681146105cb57600080fd5b803563ffffffff811681146105cb57600080fd5b803560ff811681146105cb57600080fd5b60006020828403121561092a57600080fd5b81356001600160a01b038116811461094157600080fd5b9392505050565b60006020828403121561095a57600080fd5b8151801515811461094157600080fd5b6000808284036103a081121561097f57600080fd5b60a081121561098d57600080fd5b8392506103007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60820112156109c157600080fd5b506109ca610bc7565b6109d660a08501610907565b81526109e460c08501610907565b60208201526109f560e085016108f3565b6040820152610100610a088186016108f3565b6060830152610a1a61012086016108f3565b6080830152610a2c61014086016108f3565b60a0830152610a3e61016086016108d6565b60c0830152610a51866101808701610855565b60e08301526103808501358183015250809150509250929050565b600060208284031215610a7e57600080fd5b610941826108f3565b600060208284031215610a9957600080fd5b813567ffffffffffffffff8116811461094157600080fd5b8060005b6010811015610ada57815163ffffffff16845260209384019390910190600101610ab5565b50505050565b60ff815116825260ff60208201511660208301526040810151610b0b604084018263ffffffff169052565b506060810151610b23606084018263ffffffff169052565b506080810151610b3b608084018263ffffffff169052565b5060a0810151610b5360a084018263ffffffff169052565b5060c0810151610b7460c08401826cffffffffffffffffffffffffff169052565b5060e0810151610b8760e0840182610ab1565b5061010001516102e09190910152565b6103008101610ba68284610ae0565b92915050565b63ffffffff8316815261032081016109416020830184610ae0565b604051610120810167ffffffffffffffff81118282101715610beb57610beb610c44565b60405290565b600067ffffffffffffffff808316818516808303821115610c3b577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b01949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fdfea26469706673582212201e5db0826f23ff304a471e1b00b78fb3b111dafe236980aeea9e7ae10bd993cd64736f6c63430008060033",
              "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 0x1E 0x5D 0xB0 DUP3 PUSH16 0x23FF304A471E1B00B78FB3B111DAFE23 PUSH10 0x80AEEA9E7AE10BD993CD PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "813:2429:71:-:0;;;2199:318;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2351:6;1648:24:33;2351:6:71;1648:9:33;:24::i;:::-;-1:-1:-1;2369:50:71::1;::::0;;;-1:-1:-1;;;;;;2369:50:71;::::1;::::0;2429:8:::1;:20:::0;;-1:-1:-1;;;;;;2429:20:71::1;-1:-1:-1::0;;;;;2429:20:71;;::::1;::::0;;::::1;::::0;;;2465:45:::1;::::0;2429:20;;2369:50;::::1;::::0;2465:45:::1;::::0;-1:-1:-1;;2465:45:71::1;2199:318:::0;;;813:2429;;3470:174:33;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:33;;;-1:-1:-1;;;;;;3562:18:33;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;14:586:101:-;169:6;177;185;238:2;226:9;217:7;213:23;209:32;206:2;;;254:1;251;244:12;206:2;286:9;280:16;305:31;330:5;305:31;:::i;:::-;405:2;390:18;;384:25;355:5;;-1:-1:-1;418:33:101;384:25;418:33;:::i;:::-;522:2;507:18;;501:25;470:7;;-1:-1:-1;535:33:101;501:25;535:33;:::i;:::-;587:7;577:17;;;196:404;;;;;:::o;605:131::-;-1:-1:-1;;;;;680:31:101;;670:42;;660:2;;726:1;723;716:12;660:2;650:86;:::o;:::-;813:2429:71;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@_setManager_5165": {
                  "entryPoint": 1897,
                  "id": 5165,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_setOwner_5327": {
                  "entryPoint": 1804,
                  "id": 5327,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@claimOwnership_5307": {
                  "entryPoint": 424,
                  "id": 5307,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@manager_5119": {
                  "entryPoint": null,
                  "id": 5119,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@owner_5239": {
                  "entryPoint": null,
                  "id": 5239,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@pendingOwner_5248": {
                  "entryPoint": null,
                  "id": 5248,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@prizeDistributionBuffer_15578": {
                  "entryPoint": null,
                  "id": 15578,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@push_15650": {
                  "entryPoint": 688,
                  "id": 15650,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@renounceOwnership_5262": {
                  "entryPoint": 571,
                  "id": 5262,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@setManager_5134": {
                  "entryPoint": 1364,
                  "id": 5134,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@timelock_15582": {
                  "entryPoint": null,
                  "id": 15582,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@transferOwnership_5289": {
                  "entryPoint": 1488,
                  "id": 5289,
                  "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_$10697_calldata_ptrt_struct$_PrizeDistribution_$11103_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_$15999__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_IPrizeDistributionBuffer_$11079__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_$11103_memory_ptr__to_t_struct$_PrizeDistribution_$11103_memory_ptr__fromStack_reversed": {
                  "entryPoint": 2967,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint32_t_struct$_PrizeDistribution_$11103_memory_ptr__to_t_uint32_t_struct$_PrizeDistribution_$11103_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:9623:101",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:101",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "73:649:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "122:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "131:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "134:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "124:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "124:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "124:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "101:6:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "109:4:101",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "97:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "97:17:101"
                                      },
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "116:3:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "93:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "93:27:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "86:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "86:35:101"
                              },
                              "nodeType": "YulIf",
                              "src": "83:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "147:23:101",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "167:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "161:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "161:9:101"
                              },
                              "variables": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "151:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "179:13:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "189:3:101",
                                "type": "",
                                "value": "512"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "183:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "201:33:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "223:6:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "231:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "219:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "219:15:101"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "205:10:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "309:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "311:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "311:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "311:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "252:10:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "264:18:101",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "249:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "249:34:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "288:10:101"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "300:6:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "285:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "285:22:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "246:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "246:62:101"
                              },
                              "nodeType": "YulIf",
                              "src": "243:2:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "347:2:101",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "351:10:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "340:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "340:22:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "340:22:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "371:17:101",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "382:6:101"
                              },
                              "variables": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulTypedName",
                                  "src": "375:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "397:17:101",
                              "value": {
                                "name": "offset",
                                "nodeType": "YulIdentifier",
                                "src": "408:6:101"
                              },
                              "variables": [
                                {
                                  "name": "src",
                                  "nodeType": "YulTypedName",
                                  "src": "401:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "451:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "460:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "463:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "453:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "453:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "453:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "433:6:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "441:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "429:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "429:15:101"
                                  },
                                  {
                                    "name": "end",
                                    "nodeType": "YulIdentifier",
                                    "src": "446:3:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "426:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "426:24:101"
                              },
                              "nodeType": "YulIf",
                              "src": "423:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "476:10:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "485:1:101",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "480:1:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "542:150:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "563:3:101"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "src",
                                              "nodeType": "YulIdentifier",
                                              "src": "586:3:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "abi_decode_uint32",
                                            "nodeType": "YulIdentifier",
                                            "src": "568:17:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "568:22:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "556:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "556:35:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "556:35:101"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "604:14:101",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "614:4:101",
                                      "type": "",
                                      "value": "0x20"
                                    },
                                    "variables": [
                                      {
                                        "name": "_2",
                                        "nodeType": "YulTypedName",
                                        "src": "608:2:101",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "631:19:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "642:3:101"
                                        },
                                        {
                                          "name": "_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "647:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "638:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "638:12:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "dst",
                                        "nodeType": "YulIdentifier",
                                        "src": "631:3:101"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "663:19:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "674:3:101"
                                        },
                                        {
                                          "name": "_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "679:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "670:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "670:12:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "src",
                                        "nodeType": "YulIdentifier",
                                        "src": "663:3:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "506:1:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "509:4:101",
                                    "type": "",
                                    "value": "0x10"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "503:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "503:11:101"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "515:18:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "517:14:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "526:1:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "529:1:101",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "522:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "522:9:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "517:1:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "499:3:101",
                                "statements": []
                              },
                              "src": "495:197:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "701:15:101",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "710:6:101"
                              },
                              "variableNames": [
                                {
                                  "name": "array",
                                  "nodeType": "YulIdentifier",
                                  "src": "701:5:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_array_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "47:6:101",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "55:3:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "array",
                            "nodeType": "YulTypedName",
                            "src": "63:5:101",
                            "type": ""
                          }
                        ],
                        "src": "14:708:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "776:133:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "786:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "808:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "795:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "795:20:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "786:5:101"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "887:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "896:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "899:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "889:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "889:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "889:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "837:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "848:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "855:28:101",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "844:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "844:40:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "834:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "834:51:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "827:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "827:59:101"
                              },
                              "nodeType": "YulIf",
                              "src": "824:2:101"
                            }
                          ]
                        },
                        "name": "abi_decode_uint104",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "755:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "766:5:101",
                            "type": ""
                          }
                        ],
                        "src": "727:182:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "962:115:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "972:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "994:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "981:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "981:20:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "972:5:101"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1055:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1064:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1067:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1057:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1057:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1057:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1023:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1034:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1041:10:101",
                                            "type": "",
                                            "value": "0xffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1030:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1030:22:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1020:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1020:33:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1013:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1013:41:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1010:2:101"
                            }
                          ]
                        },
                        "name": "abi_decode_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "941:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "952:5:101",
                            "type": ""
                          }
                        ],
                        "src": "914:163:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1129:109:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1139:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1161:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1148:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1148:20:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "1139:5:101"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1216:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1225:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1228:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1218:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1218:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1218:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1190:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1201:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1208:4:101",
                                            "type": "",
                                            "value": "0xff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1197:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1197:16:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1187:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1187:27:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1180:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1180:35:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1177:2:101"
                            }
                          ]
                        },
                        "name": "abi_decode_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "1108:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "1119:5:101",
                            "type": ""
                          }
                        ],
                        "src": "1082:156:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1313:239:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1359:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1368:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1371:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1361:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1361:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1361:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1334:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1343:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1330:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1330:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1355:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1326:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1326:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1323:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1384:36:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1410:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1397:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1397:23:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1388:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1506:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1515:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1518:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1508:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1508:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1508:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1442:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1453:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1460:42:101",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1449:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1449:54:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1439:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1439:65:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1432:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1432:73:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1429:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1531:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1541:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1531:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1279:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1290:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1302:6:101",
                            "type": ""
                          }
                        ],
                        "src": "1243:309:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1635:199:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1681:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1690:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1693:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1683:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1683:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1683:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1656:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1665:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1652:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1652:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1677:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1648:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1648:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1645:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1706:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1725:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1719:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1719:16:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1710:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1788:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1797:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1800:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1790:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1790:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1790:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1757:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "1778:5:101"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "iszero",
                                              "nodeType": "YulIdentifier",
                                              "src": "1771:6:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1771:13:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "1764:6:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1764:21:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1754:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1754:32:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1747:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1747:40:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1744:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1813:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1823:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1813:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_bool_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1601:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1612:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1624:6:101",
                            "type": ""
                          }
                        ],
                        "src": "1557:277:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1987:1006:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1997:33:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "2011:7:101"
                                  },
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2020:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "2007:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2007:23:101"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2001:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2055:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2064:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2067:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2057:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2057:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2057:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2046:2:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2050:3:101",
                                    "type": "",
                                    "value": "928"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2042:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2042:12:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2039:2:101"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2096:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2105:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2108:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2098:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2098:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2098:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2087:2:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2091:3:101",
                                    "type": "",
                                    "value": "160"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2083:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2083:12:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2080:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2121:19:101",
                              "value": {
                                "name": "headStart",
                                "nodeType": "YulIdentifier",
                                "src": "2131:9:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2121:6:101"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2241:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2250:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2253:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2243:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2243:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2243:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "2160:2:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2164:66:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2156:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2156:75:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2233:6:101",
                                    "type": "",
                                    "value": "0x0300"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2152:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2152:88:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2149:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2266:30:101",
                              "value": {
                                "arguments": [],
                                "functionName": {
                                  "name": "allocate_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "2279:15:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2279:17:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2270:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "2312:5:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "2340:9:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2351:3:101",
                                            "type": "",
                                            "value": "160"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2336:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2336:19:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint8",
                                      "nodeType": "YulIdentifier",
                                      "src": "2319:16:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2319:37:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2305:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2305:52:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2305:52:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2377:5:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2384:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2373:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2373:14:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "2410:9:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2421:3:101",
                                            "type": "",
                                            "value": "192"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2406:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2406:19:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint8",
                                      "nodeType": "YulIdentifier",
                                      "src": "2389:16:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2389:37:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2366:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2366:61:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2366:61:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2447:5:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2454:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2443:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2443:14:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "2481:9:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2492:3:101",
                                            "type": "",
                                            "value": "224"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2477:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2477:19:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "2459:17:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2459:38:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2436:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2436:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2436:62:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2507:13:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "2517:3:101",
                                "type": "",
                                "value": "256"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "2511:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2540:5:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2547:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2536:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2536:14:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "2574:9:101"
                                          },
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "2585:2:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2570:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2570:18:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "2552:17:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2552:37:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2529:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2529:61:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2529:61:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2610:5:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2617:3:101",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2606:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2606:15:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "2645:9:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2656:6:101",
                                            "type": "",
                                            "value": "0x0120"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2641:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2641:22:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "2623:17:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2623:41:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2599:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2599:66:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2599:66:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2685:5:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2692:3:101",
                                        "type": "",
                                        "value": "160"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2681:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2681:15:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "2720:9:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2731:3:101",
                                            "type": "",
                                            "value": "320"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2716:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2716:19:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "2698:17:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2698:38:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2674:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2674:63:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2674:63:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2757:5:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2764:3:101",
                                        "type": "",
                                        "value": "192"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2753:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2753:15:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "2793:9:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2804:3:101",
                                            "type": "",
                                            "value": "352"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2789:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2789:19:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint104",
                                      "nodeType": "YulIdentifier",
                                      "src": "2770:18:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2770:39:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2746:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2746:64:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2746:64:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2830:5:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2837:3:101",
                                        "type": "",
                                        "value": "224"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2826:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2826:15:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "2871:9:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2882:3:101",
                                            "type": "",
                                            "value": "384"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2867:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2867:19:101"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2888:7:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_array_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "2843:23:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2843:53:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2819:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2819:78:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2819:78:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2917:5:101"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "2924:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2913:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2913:14:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "2946:9:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2957:3:101",
                                            "type": "",
                                            "value": "896"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2942:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2942:19:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "calldataload",
                                      "nodeType": "YulIdentifier",
                                      "src": "2929:12:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2929:33:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2906:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2906:57:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2906:57:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2972:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2982:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2972:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_struct$_Draw_$10697_calldata_ptrt_struct$_PrizeDistribution_$11103_memory_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1945:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1956:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1968:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1976:6:101",
                            "type": ""
                          }
                        ],
                        "src": "1839:1154:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3067:115:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3113:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3122:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3125:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3115:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3115:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3115:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3088:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3097:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3084:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3084:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3109:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3080:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3080:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "3077:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3138:38:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3166:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "3148:17:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3148:28:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3138:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3033:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "3044:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3056:6:101",
                            "type": ""
                          }
                        ],
                        "src": "2998:184:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3256:215:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3302:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3311:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3314:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3304:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3304:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3304:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3277:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3286:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3273:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3273:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3298:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3269:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3269:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "3266:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3327:36:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3353:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3340:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3340:23:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "3331:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3425:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3434:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3437:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3427:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3427:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3427:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "3385:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "3396:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "3403:18:101",
                                            "type": "",
                                            "value": "0xffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "3392:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3392:30:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "3382:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3382:41:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "3375:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3375:49:101"
                              },
                              "nodeType": "YulIf",
                              "src": "3372:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3450:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "3460:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3450:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3222:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "3233:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3245:6:101",
                            "type": ""
                          }
                        ],
                        "src": "3187:284:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3525:293:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3535:10:101",
                              "value": {
                                "name": "pos",
                                "nodeType": "YulIdentifier",
                                "src": "3542:3:101"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "3535:3:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3554:19:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "3568:5:101"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "3558:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3582:10:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3591:1:101",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "3586:1:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3648:164:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "3669:3:101"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "srcPtr",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "3684:6:101"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "mload",
                                                "nodeType": "YulIdentifier",
                                                "src": "3678:5:101"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "3678:13:101"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "3693:10:101",
                                              "type": "",
                                              "value": "0xffffffff"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "and",
                                            "nodeType": "YulIdentifier",
                                            "src": "3674:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "3674:30:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "3662:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3662:43:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3662:43:101"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "3718:14:101",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "3728:4:101",
                                      "type": "",
                                      "value": "0x20"
                                    },
                                    "variables": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulTypedName",
                                        "src": "3722:2:101",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "3745:19:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "3756:3:101"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "3761:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "3752:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3752:12:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "3745:3:101"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "3777:25:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "3791:6:101"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "3799:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "3787:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3787:15:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "3777:6:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "3612:1:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3615:4:101",
                                    "type": "",
                                    "value": "0x10"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3609:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3609:11:101"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "3621:18:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "3623:14:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "3632:1:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3635:1:101",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "3628:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3628:9:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "3623:1:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "3605:3:101",
                                "statements": []
                              },
                              "src": "3601:211:101"
                            }
                          ]
                        },
                        "name": "abi_encode_array_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "3509:5:101",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "3516:3:101",
                            "type": ""
                          }
                        ],
                        "src": "3476:342:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3884:854:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "3901:3:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "3916:5:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "3910:5:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3910:12:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3924:4:101",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3906:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3906:23:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3894:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3894:36:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3894:36:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "3950:3:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3955:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3946:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3946:14:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "3976:5:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "3983:4:101",
                                                "type": "",
                                                "value": "0x20"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "3972:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "3972:16:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "3966:5:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3966:23:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3991:4:101",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3962:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3962:34:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3939:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3939:58:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3939:58:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4006:43:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "4036:5:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4043:4:101",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4032:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4032:16:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4026:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4026:23:101"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0",
                                  "nodeType": "YulTypedName",
                                  "src": "4010:12:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memberValue0",
                                    "nodeType": "YulIdentifier",
                                    "src": "4076:12:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "4094:3:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4099:4:101",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4090:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4090:14:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "4058:17:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4058:47:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4058:47:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4114:45:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "4146:5:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4153:4:101",
                                        "type": "",
                                        "value": "0x60"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4142:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4142:16:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4136:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4136:23:101"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4118:14:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memberValue0_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4186:14:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "4206:3:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4211:4:101",
                                        "type": "",
                                        "value": "0x60"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4202:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4202:14:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "4168:17:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4168:49:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4168:49:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4226:45:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "4258:5:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4265:4:101",
                                        "type": "",
                                        "value": "0x80"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4254:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4254:16:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4248:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4248:23:101"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0_2",
                                  "nodeType": "YulTypedName",
                                  "src": "4230:14:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memberValue0_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "4298:14:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "4318:3:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4323:4:101",
                                        "type": "",
                                        "value": "0x80"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4314:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4314:14:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "4280:17:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4280:49:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4280:49:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4338:45:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "4370:5:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4377:4:101",
                                        "type": "",
                                        "value": "0xa0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4366:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4366:16:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4360:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4360:23:101"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0_3",
                                  "nodeType": "YulTypedName",
                                  "src": "4342:14:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memberValue0_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "4410:14:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "4430:3:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4435:4:101",
                                        "type": "",
                                        "value": "0xa0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4426:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4426:14:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "4392:17:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4392:49:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4392:49:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4450:45:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "4482:5:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4489:4:101",
                                        "type": "",
                                        "value": "0xc0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4478:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4478:16:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4472:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4472:23:101"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0_4",
                                  "nodeType": "YulTypedName",
                                  "src": "4454:14:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memberValue0_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "4523:14:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "4543:3:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4548:4:101",
                                        "type": "",
                                        "value": "0xc0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4539:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4539:14:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_uint104",
                                  "nodeType": "YulIdentifier",
                                  "src": "4504:18:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4504:50:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4504:50:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4563:45:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "4595:5:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4602:4:101",
                                        "type": "",
                                        "value": "0xe0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4591:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4591:16:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4585:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4585:23:101"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0_5",
                                  "nodeType": "YulTypedName",
                                  "src": "4567:14:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memberValue0_5",
                                    "nodeType": "YulIdentifier",
                                    "src": "4641:14:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "4661:3:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4666:4:101",
                                        "type": "",
                                        "value": "0xe0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4657:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4657:14:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_array_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "4617:23:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4617:55:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4617:55:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "4692:3:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4697:6:101",
                                        "type": "",
                                        "value": "0x02e0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4688:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4688:16:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "4716:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "4723:6:101",
                                            "type": "",
                                            "value": "0x0100"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "4712:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4712:18:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "mload",
                                      "nodeType": "YulIdentifier",
                                      "src": "4706:5:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4706:25:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4681:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4681:51:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4681:51:101"
                            }
                          ]
                        },
                        "name": "abi_encode_struct_PrizeDistribution",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "3868:5:101",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "3875:3:101",
                            "type": ""
                          }
                        ],
                        "src": "3823:915:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4787:69:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "4804:3:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "4813:5:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4820:28:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4809:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4809:40:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4797:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4797:53:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4797:53:101"
                            }
                          ]
                        },
                        "name": "abi_encode_uint104",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "4771:5:101",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "4778:3:101",
                            "type": ""
                          }
                        ],
                        "src": "4743:113:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4904:51:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "4921:3:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "4930:5:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4937:10:101",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4926:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4926:22:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4914:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4914:35:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4914:35:101"
                            }
                          ]
                        },
                        "name": "abi_encode_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "4888:5:101",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "4895:3:101",
                            "type": ""
                          }
                        ],
                        "src": "4861:94:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5061:125:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "5071:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5083:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5094:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5079:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5079:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5071:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5113:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "5128:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5136:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5124:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5124:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5106:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5106:74:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5106:74:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5030:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5041:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5052:4:101",
                            "type": ""
                          }
                        ],
                        "src": "4960:226:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5286:92:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "5296:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5308:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5319:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5304:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5304:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5296:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5338:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "5363:6:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "5356:6:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "5356:14:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "5349:6:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5349:22:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5331:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5331:41:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5331:41:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5255:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5266:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5277:4:101",
                            "type": ""
                          }
                        ],
                        "src": "5191:187:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5517:125:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "5527:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5539:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5550:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5535:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5535:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5527:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5569:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "5584:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5592:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5580:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5580:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5562:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5562:74:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5562:74:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IDrawCalculatorTimelock_$15999__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5486:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5497:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5508:4:101",
                            "type": ""
                          }
                        ],
                        "src": "5383:259:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5782:125:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "5792:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5804:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5815:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5800:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5800:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5792:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5834:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "5849:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5857:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5845:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5845:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5827:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5827:74:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5827:74:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IPrizeDistributionBuffer_$11079__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5751:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5762:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5773:4:101",
                            "type": ""
                          }
                        ],
                        "src": "5647:260:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6086:225:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6103:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6114:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6096:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6096:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6096:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6137:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6148:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6133:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6133:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6153:2:101",
                                    "type": "",
                                    "value": "35"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6126:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6126:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6126:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6176:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6187:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6172:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6172:18:101"
                                  },
                                  {
                                    "hexValue": "4d616e61676561626c652f6578697374696e672d6d616e616765722d61646472",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6192:34:101",
                                    "type": "",
                                    "value": "Manageable/existing-manager-addr"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6165:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6165:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6165:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6247:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6258:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6243:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6243:18:101"
                                  },
                                  {
                                    "hexValue": "657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6263:5:101",
                                    "type": "",
                                    "value": "ess"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6236:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6236:33:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6236:33:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6278:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6290:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6301:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6286:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6286:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6278:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6063:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6077:4:101",
                            "type": ""
                          }
                        ],
                        "src": "5912:399:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6490:174:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6507:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6518:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6500:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6500:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6500:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6541:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6552:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6537:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6537:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6557:2:101",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6530:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6530:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6530:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6580:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6591:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6576:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6576:18:101"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6596:26:101",
                                    "type": "",
                                    "value": "Ownable/caller-not-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6569:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6569:54:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6569:54:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6632:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6644:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6655:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6640:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6640:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6632:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6467:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6481:4:101",
                            "type": ""
                          }
                        ],
                        "src": "6316:348:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6843:181:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6860:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6871:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6853:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6853:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6853:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6894:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6905:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6890:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6890:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6910:2:101",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6883:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6883:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6883:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6933:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6944:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6929:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6929:18:101"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "6949:33:101",
                                    "type": "",
                                    "value": "Ownable/caller-not-pendingOwner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6922:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6922:61:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6922:61:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6992:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7004:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7015:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7000:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7000:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6992:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6820:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6834:4:101",
                            "type": ""
                          }
                        ],
                        "src": "6669:355:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7203:228:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7220:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7231:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7213:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7213:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7213:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7254:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7265:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7250:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7250:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7270:2:101",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7243:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7243:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7243:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7293:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7304:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7289:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7289:18:101"
                                  },
                                  {
                                    "hexValue": "4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f72",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7309:34:101",
                                    "type": "",
                                    "value": "Manageable/caller-not-manager-or"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7282:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7282:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7282:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7364:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7375:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7360:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7360:18:101"
                                  },
                                  {
                                    "hexValue": "2d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7380:8:101",
                                    "type": "",
                                    "value": "-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7353:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7353:36:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7353:36:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7398:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7410:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7421:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7406:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7406:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7398:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7180:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7194:4:101",
                            "type": ""
                          }
                        ],
                        "src": "7029:402:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7610:227:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7627:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7638:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7620:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7620:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7620:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7661:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7672:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7657:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7657:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7677:2:101",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7650:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7650:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7650:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7700:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7711:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7696:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7696:18:101"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d6164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7716:34:101",
                                    "type": "",
                                    "value": "Ownable/pendingOwner-not-zero-ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7689:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7689:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7689:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7771:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7782:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7767:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7767:18:101"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7787:7:101",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7760:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7760:35:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7760:35:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7804:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7816:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7827:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7812:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7812:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7804:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7587:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7601:4:101",
                            "type": ""
                          }
                        ],
                        "src": "7436:401:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8015:106:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8025:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8037:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8048:3:101",
                                    "type": "",
                                    "value": "768"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8033:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8033:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8025:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "8097:6:101"
                                  },
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8105:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_struct_PrizeDistribution",
                                  "nodeType": "YulIdentifier",
                                  "src": "8061:35:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8061:54:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8061:54:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_struct$_PrizeDistribution_$11103_memory_ptr__to_t_struct$_PrizeDistribution_$11103_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7984:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7995:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8006:4:101",
                            "type": ""
                          }
                        ],
                        "src": "7842:279:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8325:166:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8335:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8347:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8358:3:101",
                                    "type": "",
                                    "value": "800"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8343:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8343:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8335:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8378:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "8393:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8401:10:101",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "8389:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8389:23:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8371:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8371:42:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8371:42:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8458:6:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8470:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8481:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8466:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8466:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_struct_PrizeDistribution",
                                  "nodeType": "YulIdentifier",
                                  "src": "8422:35:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8422:63:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8422:63:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint32_t_struct$_PrizeDistribution_$11103_memory_ptr__to_t_uint32_t_struct$_PrizeDistribution_$11103_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8286:9:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "8297:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8305:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8316:4:101",
                            "type": ""
                          }
                        ],
                        "src": "8126:365:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8621:161:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8631:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8643:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8654:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8639:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8639:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8631:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8673:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "8688:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8696:10:101",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "8684:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8684:23:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8666:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8666:42:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8666:42:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8728:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8739:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8724:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8724:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "8748:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8756:18:101",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "8744:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8744:31:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8717:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8717:59:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8717:59:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint32_t_uint64__to_t_uint32_t_uint64__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8582:9:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "8593:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8601:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8612:4:101",
                            "type": ""
                          }
                        ],
                        "src": "8496:286:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8828:209:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8838:19:101",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8854:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "8848:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8848:9:101"
                              },
                              "variableNames": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulIdentifier",
                                  "src": "8838:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8866:37:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "8888:6:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8896:6:101",
                                    "type": "",
                                    "value": "0x0120"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8884:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8884:19:101"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "8870:10:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "8978:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "8980:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "8980:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "8980:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "8921:10:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8933:18:101",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "8918:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8918:34:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "8957:10:101"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "8969:6:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "8954:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8954:22:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "8915:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8915:62:101"
                              },
                              "nodeType": "YulIf",
                              "src": "8912:2:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9016:2:101",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "9020:10:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9009:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9009:22:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9009:22:101"
                            }
                          ]
                        },
                        "name": "allocate_memory",
                        "nodeType": "YulFunctionDefinition",
                        "returnVariables": [
                          {
                            "name": "memPtr",
                            "nodeType": "YulTypedName",
                            "src": "8817:6:101",
                            "type": ""
                          }
                        ],
                        "src": "8787:250:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9089:343:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9099:28:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "9109:18:101",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "9103:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9136:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "9151:1:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "9154:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "9147:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9147:10:101"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "9140:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9166:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "9181:1:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "9184:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "9177:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9177:10:101"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "9170:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "9229:168:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9250:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9253:77:101",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "9243:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9243:88:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9243:88:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9351:1:101",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9354:4:101",
                                          "type": "",
                                          "value": "0x11"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "9344:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9344:15:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9344:15:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9379:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "9382:4:101",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "9372:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "9372:15:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "9372:15:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "9202:3:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "9211:2:101"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "9215:3:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "9207:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9207:12:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "9199:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9199:21:101"
                              },
                              "nodeType": "YulIf",
                              "src": "9196:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9406:20:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "9417:3:101"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "9422:3:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9413:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9413:13:101"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "9406:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "9072:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "9075:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "9081:3:101",
                            "type": ""
                          }
                        ],
                        "src": "9042:390:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9469:152:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9486:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9489:77:101",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9479:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9479:88:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9479:88:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9583:1:101",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9586:4:101",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9576:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9576:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9576:15:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9607:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9610:4:101",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "9600:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9600:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9600:15:101"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "9437:184:101"
                      }
                    ]
                  },
                  "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_$10697_calldata_ptrt_struct$_PrizeDistribution_$11103_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_$15999__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_$11079__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_$11103_memory_ptr__to_t_struct$_PrizeDistribution_$11103_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_$11103_memory_ptr__to_t_uint32_t_struct$_PrizeDistribution_$11103_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": 101,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {
                "15578": [
                  {
                    "length": 32,
                    "start": 200
                  },
                  {
                    "length": 32,
                    "start": 1117
                  }
                ]
              },
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106100be5760003560e01c8063af32b60511610076578063d33219b41161005b578063d33219b414610171578063e30c397814610184578063f2fde38b1461019557600080fd5b8063af32b6051461013b578063d0ebdbe71461014e57600080fd5b80634e71e0c8116100a75780634e71e0c814610118578063715018a6146101225780638da5cb5b1461012a57600080fd5b80630840bbdd146100c3578063481c6a7514610107575b600080fd5b6100ea7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020015b60405180910390f35b6002546001600160a01b03166100ea565b6101206101a8565b005b61012061023b565b6000546001600160a01b03166100ea565b61012061014936600461096a565b6102b0565b61016161015c366004610918565b610554565b60405190151581526020016100fe565b6003546100ea906001600160a01b031681565b6001546001600160a01b03166100ea565b6101206101a3366004610918565b6105d0565b6001546001600160a01b031633146102075760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e65720060448201526064015b60405180910390fd5b60015461021c906001600160a01b031661070c565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b3361024e6000546001600160a01b031690565b6001600160a01b0316146102a45760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016101fe565b6102ae600061070c565b565b336102c36002546001600160a01b031690565b6001600160a01b031614806102f15750336102e66000546001600160a01b031690565b6001600160a01b0316145b6103635760405162461bcd60e51b815260206004820152602660248201527f4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f7260448201527f2d6f776e6572000000000000000000000000000000000000000000000000000060648201526084016101fe565b6003546001600160a01b0316638871189b6103846040850160208601610a6c565b61039460a0860160808701610a6c565b63ffffffff166103aa6060870160408801610a87565b6103b49190610bf1565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815263ffffffff92909216600483015267ffffffffffffffff166024820152604401602060405180830381600087803b15801561041a57600080fd5b505af115801561042e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104529190610948565b506001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016631124e1dc6104926040850160208601610a6c565b836040518363ffffffff1660e01b81526004016104b0929190610bac565b602060405180830381600087803b1580156104ca57600080fd5b505af11580156104de573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105029190610948565b506105136040830160208401610a6c565b63ffffffff167fa8d834c585da75dc5076dfaed2f4cc0c65d2d07cfc01f7c27023ab61563f257e826040516105489190610b97565b60405180910390a25050565b6000336105696000546001600160a01b031690565b6001600160a01b0316146105bf5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016101fe565b6105c882610769565b90505b919050565b336105e36000546001600160a01b031690565b6001600160a01b0316146106395760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e6572000000000000000060448201526064016101fe565b6001600160a01b0381166106b55760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016101fe565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6002546000906001600160a01b039081169083168114156107f25760405162461bcd60e51b815260206004820152602360248201527f4d616e61676561626c652f6578697374696e672d6d616e616765722d6164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016101fe565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385811691821790925560405190918316907f9cb45c728de594dab506a1f1a8554e24c8eeaf983618d5ec5dd7bc6f3c49feee90600090a350600192915050565b600082601f83011261086657600080fd5b60405161020080820182811067ffffffffffffffff8211171561088b5761088b610c44565b604052818482810187101561089f57600080fd5b600092505b60108310156108cb576108b6816108f3565b825260019290920191602091820191016108a4565b509195945050505050565b80356cffffffffffffffffffffffffff811681146105cb57600080fd5b803563ffffffff811681146105cb57600080fd5b803560ff811681146105cb57600080fd5b60006020828403121561092a57600080fd5b81356001600160a01b038116811461094157600080fd5b9392505050565b60006020828403121561095a57600080fd5b8151801515811461094157600080fd5b6000808284036103a081121561097f57600080fd5b60a081121561098d57600080fd5b8392506103007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60820112156109c157600080fd5b506109ca610bc7565b6109d660a08501610907565b81526109e460c08501610907565b60208201526109f560e085016108f3565b6040820152610100610a088186016108f3565b6060830152610a1a61012086016108f3565b6080830152610a2c61014086016108f3565b60a0830152610a3e61016086016108d6565b60c0830152610a51866101808701610855565b60e08301526103808501358183015250809150509250929050565b600060208284031215610a7e57600080fd5b610941826108f3565b600060208284031215610a9957600080fd5b813567ffffffffffffffff8116811461094157600080fd5b8060005b6010811015610ada57815163ffffffff16845260209384019390910190600101610ab5565b50505050565b60ff815116825260ff60208201511660208301526040810151610b0b604084018263ffffffff169052565b506060810151610b23606084018263ffffffff169052565b506080810151610b3b608084018263ffffffff169052565b5060a0810151610b5360a084018263ffffffff169052565b5060c0810151610b7460c08401826cffffffffffffffffffffffffff169052565b5060e0810151610b8760e0840182610ab1565b5061010001516102e09190910152565b6103008101610ba68284610ae0565b92915050565b63ffffffff8316815261032081016109416020830184610ae0565b604051610120810167ffffffffffffffff81118282101715610beb57610beb610c44565b60405290565b600067ffffffffffffffff808316818516808303821115610c3b577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b01949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fdfea26469706673582212201e5db0826f23ff304a471e1b00b78fb3b111dafe236980aeea9e7ae10bd993cd64736f6c63430008060033",
              "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 0x1E 0x5D 0xB0 DUP3 PUSH16 0x23FF304A471E1B00B78FB3B111DAFE23 PUSH10 0x80AEEA9E7AE10BD993CD PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "813:2429:71:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1682:65;;;;;;;;-1:-1:-1;;;;;5124:55:101;;;5106:74;;5094:2;5079:18;1682:65:71;;;;;;;;1403:89:32;1477:8;;-1:-1:-1;;;;;1477:8:32;1403:89;;3147:129:33;;;:::i;:::-;;2508:94;;;:::i;1814:85::-;1860:7;1886:6;-1:-1:-1;;;;;1886:6:33;1814:85;;2749:491:71;;;;;;:::i;:::-;;:::i;1744:123:32:-;;;;;;:::i;:::-;;:::i;:::-;;;5356:14:101;;5349:22;5331:41;;5319:2;5304:18;1744:123:32;5286:92:101;1797:39:71;;;;;-1:-1:-1;;;;;1797:39:71;;;2014:101:33;2095:13;;-1:-1:-1;;;;;2095:13:33;2014:101;;2751:234;;;;;;:::i;:::-;;:::i;3147:129::-;4050:13;;-1:-1:-1;;;;;4050:13:33;4036:10;:27;4028:71;;;;-1:-1:-1;;;4028:71:33;;6871:2:101;4028:71:33;;;6853:21:101;6910:2;6890:18;;;6883:30;6949:33;6929:18;;;6922:61;7000:18;;4028:71:33;;;;;;;;;3219:13:::1;::::0;3209:24:::1;::::0;-1:-1:-1;;;;;3219:13:33::1;3209:9;:24::i;:::-;3243:13;:26:::0;;-1:-1:-1;;3243:26:33::1;::::0;;3147:129::o;2508:94::-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:33;;3819:58;;;;-1:-1:-1;;;3819:58:33;;6518:2:101;3819:58:33;;;6500:21:101;6557:2;6537:18;;;6530:30;6596:26;6576:18;;;6569:54;6640:18;;3819:58:33;6490:174:101;3819:58:33;2574:21:::1;2592:1;2574:9;:21::i;:::-;2508:94::o:0;2749:491:71:-;2861:10:32;2848:9;1477:8;;-1:-1:-1;;;;;1477:8:32;;1403:89;2848:9;-1:-1:-1;;;;;2848:23:32;;:48;;;-1:-1:-1;2886:10:32;2875:7;1860::33;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;2875:7:32;-1:-1:-1;;;;;2875:21:32;;2848:48;2840:99;;;;-1:-1:-1;;;2840:99:32;;7231:2:101;2840:99:32;;;7213:21:101;7270:2;7250:18;;;7243:30;7309:34;7289:18;;;7282:62;7380:8;7360:18;;;7353:36;7406:19;;2840:99:32;7203:228:101;2840:99:32;3000:8:71::1;::::0;-1:-1:-1;;;;;3000:8:71::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;8684:23:101::0;;;;3000:72:71::1;::::0;::::1;8666:42:101::0;8756:18;8744:31;8724:18;;;8717:59;8639:18;;3000:72:71::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;;3082:23:71::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:71::1;::::0;;;::::1;::::0;::::1;;:::i;:::-;3176:57;;;3214:18;3176:57;;;;;;:::i;:::-;;;;;;;;2749:491:::0;;:::o;1744:123:32:-;1813:4;3838:10:33;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:33;;3819:58;;;;-1:-1:-1;;;3819:58:33;;6518:2:101;3819:58:33;;;6500:21:101;6557:2;6537:18;;;6530:30;6596:26;6576:18;;;6569:54;6640:18;;3819:58:33;6490:174:101;3819:58:33;1836:24:32::1;1848:11;1836;:24::i;:::-;1829:31;;3887:1:33;1744:123:32::0;;;:::o;2751:234:33:-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:33;;3819:58;;;;-1:-1:-1;;;3819:58:33;;6518:2:101;3819:58:33;;;6500:21:101;6557:2;6537:18;;;6530:30;6596:26;6576:18;;;6569:54;6640:18;;3819:58:33;6490:174:101;3819:58:33;-1:-1:-1;;;;;2834:23:33;::::1;2826:73;;;::::0;-1:-1:-1;;;2826:73:33;;7638:2:101;2826:73:33::1;::::0;::::1;7620:21:101::0;7677:2;7657:18;;;7650:30;7716:34;7696:18;;;7689:62;7787:7;7767:18;;;7760:35;7812:19;;2826:73:33::1;7610:227:101::0;2826:73:33::1;2910:13;:25:::0;;-1:-1:-1;;2910:25:33::1;-1:-1:-1::0;;;;;2910:25:33;::::1;::::0;;::::1;::::0;;;2951:27:::1;::::0;::::1;::::0;-1:-1:-1;;2951:27:33::1;2751:234:::0;:::o;3470:174::-;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:33;;;-1:-1:-1;;3562:18:33;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;2109:326:32:-;2211:8;;2168:4;;-1:-1:-1;;;;;2211:8:32;;;;2238:31;;;;;2230:79;;;;-1:-1:-1;;;2230:79:32;;6114:2:101;2230:79:32;;;6096:21:101;6153:2;6133:18;;;6126:30;6192:34;6172:18;;;6165:62;6263:5;6243:18;;;6236:33;6286:19;;2230:79:32;6086:225:101;2230:79:32;2320:8;:22;;-1:-1:-1;;2320:22:32;-1:-1:-1;;;;;2320:22:32;;;;;;;;;2358:49;;2320:22;;2358:49;;;;;-1:-1:-1;;2358:49:32;-1:-1:-1;2424:4:32;;2109:326;-1:-1:-1;;2109:326:32:o;14:708:101:-;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:101;;;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:101;;73:649;-1:-1:-1;;;;;73:649:101: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:101;1449:54;1442:5;1439:65;1429:2;;1518:1;1515;1508:12;1429:2;1541:5;1313:239;-1:-1:-1;;;1313:239:101: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:1154;1968:6;1976;2020:9;2011:7;2007:23;2050:3;2046:2;2042:12;2039:2;;;2067:1;2064;2057:12;2039:2;2091:3;2087:2;2083:12;2080:2;;;2108:1;2105;2098:12;2080:2;2131:9;2121:19;;2233:6;2164:66;2160:2;2156:75;2152:88;2149:2;;;2253:1;2250;2243:12;2149:2;;2279:17;;:::i;:::-;2319:37;2351:3;2340:9;2336:19;2319:37;:::i;:::-;2312:5;2305:52;2389:37;2421:3;2410:9;2406:19;2389:37;:::i;:::-;2384:2;2377:5;2373:14;2366:61;2459:38;2492:3;2481:9;2477:19;2459:38;:::i;:::-;2454:2;2447:5;2443:14;2436:62;2517:3;2552:37;2585:2;2574:9;2570:18;2552:37;:::i;:::-;2547:2;2540:5;2536:14;2529:61;2623:41;2656:6;2645:9;2641:22;2623:41;:::i;:::-;2617:3;2610:5;2606:15;2599:66;2698:38;2731:3;2720:9;2716:19;2698:38;:::i;:::-;2692:3;2685:5;2681:15;2674:63;2770:39;2804:3;2793:9;2789:19;2770:39;:::i;:::-;2764:3;2757:5;2753:15;2746:64;2843:53;2888:7;2882:3;2871:9;2867:19;2843:53;:::i;:::-;2837:3;2830:5;2826:15;2819:78;2957:3;2946:9;2942:19;2929:33;2924:2;2917:5;2913:14;2906:57;;2982:5;2972:15;;;1987:1006;;;;;:::o;2998:184::-;3056:6;3109:2;3097:9;3088:7;3084:23;3080:32;3077:2;;;3125:1;3122;3115:12;3077:2;3148:28;3166:9;3148:28;:::i;3187:284::-;3245:6;3298:2;3286:9;3277:7;3273:23;3269:32;3266:2;;;3314:1;3311;3304:12;3266:2;3353:9;3340:23;3403:18;3396:5;3392:30;3385:5;3382:41;3372:2;;3437:1;3434;3427:12;3476:342;3568:5;3591:1;3601:211;3615:4;3612:1;3609:11;3601:211;;;3678:13;;3693:10;3674:30;3662:43;;3728:4;3752:12;;;;3787:15;;;;3635:1;3628:9;3601:211;;;3605:3;;3525:293;;:::o;3823:915::-;3924:4;3916:5;3910:12;3906:23;3901:3;3894:36;3991:4;3983;3976:5;3972:16;3966:23;3962:34;3955:4;3950:3;3946:14;3939:58;4043:4;4036:5;4032:16;4026:23;4058:47;4099:4;4094:3;4090:14;4076:12;4937:10;4926:22;4914:35;;4904:51;4058:47;;4153:4;4146:5;4142:16;4136:23;4168:49;4211:4;4206:3;4202:14;4186;4937:10;4926:22;4914:35;;4904:51;4168:49;;4265:4;4258:5;4254:16;4248:23;4280:49;4323:4;4318:3;4314:14;4298;4937:10;4926:22;4914:35;;4904:51;4280:49;;4377:4;4370:5;4366:16;4360:23;4392:49;4435:4;4430:3;4426:14;4410;4937:10;4926:22;4914:35;;4904:51;4392:49;;4489:4;4482:5;4478:16;4472:23;4504:50;4548:4;4543:3;4539:14;4523;4820:28;4809:40;4797:53;;4787:69;4504:50;;4602:4;4595:5;4591:16;4585:23;4617:55;4666:4;4661:3;4657:14;4641;4617:55;:::i;:::-;-1:-1:-1;4723:6:101;4712:18;4706:25;4697:6;4688:16;;;;4681:51;3884:854::o;7842:279::-;8048:3;8033:19;;8061:54;8037:9;8097:6;8061:54;:::i;:::-;8015:106;;;;:::o;8126:365::-;8401:10;8389:23;;8371:42;;8358:3;8343:19;;8422:63;8481:2;8466:18;;8458:6;8422:63;:::i;8787:250::-;8854:2;8848:9;8896:6;8884:19;;8933:18;8918:34;;8954:22;;;8915:62;8912:2;;;8980:18;;:::i;:::-;9016:2;9009:22;8828:209;:::o;9042:390::-;9081:3;9109:18;9154:2;9151:1;9147:10;9184:2;9181:1;9177:10;9215:3;9211:2;9207:12;9202:3;9199:21;9196:2;;;9253:77;9250:1;9243:88;9354:4;9351:1;9344:15;9382:4;9379:1;9372:15;9196:2;9413:13;;9089:343;-1:-1:-1;;;;9089:343:101:o;9437:184::-;9489:77;9486:1;9479:88;9586:4;9583:1;9576:15;9610:4;9607:1;9600: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 IPrizeDistributionSource.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 IPrizeDistributionSource.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.8.6;\\n\\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..)\\n */\\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   */\\n  event RandomNumberRequested(uint32 indexed requestId, address indexed sender);\\n\\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   */\\n  event RandomNumberCompleted(uint32 indexed requestId, uint256 randomNumber);\\n\\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   */\\n  function getLastRequestId() external view returns (uint32 requestId);\\n\\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   */\\n  function getRequestFee() external view returns (address feeToken, uint256 requestFee);\\n\\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.\\n   * The calling contract should \\\"lock\\\" all activity until the result is available via the `requestId`\\n   */\\n  function requestRandomNumber() external returns (uint32 requestId, uint32 lockBlock);\\n\\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   */\\n  function isRequestComplete(uint32 requestId) external view returns (bool isCompleted);\\n\\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   */\\n  function randomNumber(uint32 requestId) external returns (uint256 randomNum);\\n}\\n\",\"keccak256\":\"0x24803ae776bba768a3a3f65d3b7e5fc100c7b5881a8e5e39d6c5df2735a3b5cb\",\"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 IPrizeDistributionSource\\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\":\"0xdfcc3dc33457e44d8917f33185925eff78ea21e5018250b3accf2db8a7aa0242\",\"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 prizeDistributionBuffer variable.\\n     * @return IPrizeDistributionBuffer\\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 drawIds 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\":\"0x51b3bacbdd715929d909063e66519096c2ef858b646e80f66691d155ccc8d520\",\"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\\nimport \\\"./IPrizeDistributionSource.sol\\\";\\n\\n/** @title  IPrizeDistributionBuffer\\n * @author PoolTogether Inc Team\\n * @notice The PrizeDistributionBuffer interface.\\n */\\ninterface IPrizeDistributionBuffer is IPrizeDistributionSource {\\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 (\\n            IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution,\\n            uint32 drawId\\n        );\\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 (\\n            IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution,\\n            uint32 drawId\\n        );\\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(\\n        uint32 drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata draw\\n    ) external returns (uint32);\\n}\\n\",\"keccak256\":\"0xa66b0d958502adda03e80924381bae30802f1c8d80823a9b787b8c66f6a7d835\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionSource.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/** @title IPrizeDistributionSource\\n * @author PoolTogether Inc Team\\n * @notice The PrizeDistributionSource interface.\\n */\\ninterface IPrizeDistributionSource {\\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 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 (PrizeDistribution[] memory);\\n}\\n\",\"keccak256\":\"0x05ec47edc2684790a869a866576e7338229cc4eeafe1171bfc8cd7fa1c0cc9a0\",\"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 valid 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\":\"0x9d90a364aafbb26a680259ad470222368aabe139cd6200eeb02ec0c6b93bc317\",\"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 buffer) 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 of 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 seven year minimum,\\n                of accurate historical lookups with current estimates of 1 new block\\n                every 15 seconds - assuming each block contains 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\":\"0x446d8221329601d40464981a50a0e31f3fd48da0ebf0fea646c5a089ccfbdff4\",\"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": 5205,
                "contract": "@pooltogether/v4-timelocks/contracts/L1TimelockTrigger.sol:L1TimelockTrigger",
                "label": "_owner",
                "offset": 0,
                "slot": "0",
                "type": "t_address"
              },
              {
                "astId": 5207,
                "contract": "@pooltogether/v4-timelocks/contracts/L1TimelockTrigger.sol:L1TimelockTrigger",
                "label": "_pendingOwner",
                "offset": 0,
                "slot": "1",
                "type": "t_address"
              },
              {
                "astId": 5103,
                "contract": "@pooltogether/v4-timelocks/contracts/L1TimelockTrigger.sol:L1TimelockTrigger",
                "label": "_manager",
                "offset": 0,
                "slot": "2",
                "type": "t_address"
              },
              {
                "astId": 15582,
                "contract": "@pooltogether/v4-timelocks/contracts/L1TimelockTrigger.sol:L1TimelockTrigger",
                "label": "timelock",
                "offset": 0,
                "slot": "3",
                "type": "t_contract(IDrawCalculatorTimelock)15999"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_contract(IDrawCalculatorTimelock)15999": {
                "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 IPrizeDistributionSource.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 IPrizeDistributionSource.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": {
                "@_15733": {
                  "entryPoint": null,
                  "id": 15733,
                  "parameterSlots": 4,
                  "returnSlots": 0
                },
                "@_5230": {
                  "entryPoint": null,
                  "id": 5230,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setOwner_5327": {
                  "entryPoint": 178,
                  "id": 5327,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "abi_decode_tuple_t_addresst_contract$_IDrawBuffer_$10930t_contract$_IPrizeDistributionBuffer_$11079t_contract$_IDrawCalculatorTimelock_$15999_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:894:101",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:101",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "234:522:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "281:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "290:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "293:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "283:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "283:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "283:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "255:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "264:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "251:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "251:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "276:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "247:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "247:33:101"
                              },
                              "nodeType": "YulIf",
                              "src": "244:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "306:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "325:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "319:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "319:16:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "310:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "369:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "344:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "344:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "344:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "384:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "394:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "384:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "408:40:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "433:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "444:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "429:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "429:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "423:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "423:25:101"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "412:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "482:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "457:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "457:33:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "457:33:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "499:17:101",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "509:7:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "499:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "525:40:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "550:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "561:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "546:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "546:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "540:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "540:25:101"
                              },
                              "variables": [
                                {
                                  "name": "value_2",
                                  "nodeType": "YulTypedName",
                                  "src": "529:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "599:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "574:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "574:33:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "574:33:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "616:17:101",
                              "value": {
                                "name": "value_2",
                                "nodeType": "YulIdentifier",
                                "src": "626:7:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "616:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "642:40:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "667:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "678:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "663:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "663:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "657:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "657:25:101"
                              },
                              "variables": [
                                {
                                  "name": "value_3",
                                  "nodeType": "YulTypedName",
                                  "src": "646:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "716:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "691:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "691:33:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "691:33:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "733:17:101",
                              "value": {
                                "name": "value_3",
                                "nodeType": "YulIdentifier",
                                "src": "743:7:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "733:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_contract$_IDrawBuffer_$10930t_contract$_IPrizeDistributionBuffer_$11079t_contract$_IDrawCalculatorTimelock_$15999_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "176:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "187:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "199:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "207:6:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "215:6:101",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "223:6:101",
                            "type": ""
                          }
                        ],
                        "src": "14:742:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "806:86:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "870:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "879:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "882:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "872:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "872:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "872:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "829:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "840:5:101"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "855:3:101",
                                                    "type": "",
                                                    "value": "160"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "860:1:101",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "851:3:101"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "851:11:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "864:1:101",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "847:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "847:19:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "836:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "836:31:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "826:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "826:42:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "819:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "819:50:101"
                              },
                              "nodeType": "YulIf",
                              "src": "816:2:101"
                            }
                          ]
                        },
                        "name": "validator_revert_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "795:5:101",
                            "type": ""
                          }
                        ],
                        "src": "761:131:101"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_tuple_t_addresst_contract$_IDrawBuffer_$10930t_contract$_IPrizeDistributionBuffer_$11079t_contract$_IDrawCalculatorTimelock_$15999_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": 101,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "60c060405234801561001057600080fd5b506040516200104f3803806200104f83398101604081905261003191610102565b8361003b816100b2565b506001600160601b0319606084811b821660805283901b1660a052600380546001600160a01b038381166001600160a01b03199092168217909255604051909184811691908616907fc95935a66d15e0da5e412aca0ad27ae891d20b2fb91cf3994b6a3bf2b817808290600090a450505050610179565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000806000806080858703121561011857600080fd5b845161012381610161565b602086015190945061013481610161565b604086015190935061014581610161565b606086015190925061015681610161565b939692955090935050565b6001600160a01b038116811461017657600080fd5b50565b60805160601c60a05160601c610e9d620001b26000396000818160d3015261055801526000818161015e015261049b0152610e9d6000f3fe608060405234801561001057600080fd5b50600436106100c95760003560e01c8063af32b60511610081578063d33219b41161005b578063d33219b4146101a3578063e30c3978146101b6578063f2fde38b146101c757600080fd5b8063af32b60514610146578063ce343bb614610159578063d0ebdbe71461018057600080fd5b80634e71e0c8116100b25780634e71e0c814610123578063715018a61461012d5780638da5cb5b1461013557600080fd5b80630840bbdd146100ce578063481c6a7514610112575b600080fd5b6100f57f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020015b60405180910390f35b6002546001600160a01b03166100f5565b61012b6101da565b005b61012b61026d565b6000546001600160a01b03166100f5565b61012b610154366004610a50565b6102e2565b6100f57f000000000000000000000000000000000000000000000000000000000000000081565b61019361018e3660046109fe565b610629565b6040519015158152602001610109565b6003546100f5906001600160a01b031681565b6001546001600160a01b03166100f5565b61012b6101d53660046109fe565b6106a5565b6001546001600160a01b031633146102395760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e65720060448201526064015b60405180910390fd5b60015461024e906001600160a01b03166107e1565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b336102806000546001600160a01b031690565b6001600160a01b0316146102d65760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610230565b6102e060006107e1565b565b336102f56002546001600160a01b031690565b6001600160a01b031614806103235750336103186000546001600160a01b031690565b6001600160a01b0316145b6103955760405162461bcd60e51b815260206004820152602660248201527f4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f7260448201527f2d6f776e657200000000000000000000000000000000000000000000000000006064820152608401610230565b6003546020830151608084015160408501516001600160a01b0390931692638871189b92916103cc9163ffffffff90911690610dd0565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815263ffffffff92909216600483015267ffffffffffffffff166024820152604401602060405180830381600087803b15801561043257600080fd5b505af1158015610446573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061046a9190610a2e565b506040517f089eb9250000000000000000000000000000000000000000000000000000000081526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063089eb925906104d0908590600401610ca8565b602060405180830381600087803b1580156104ea57600080fd5b505af11580156104fe573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105229190610ba5565b5060208201516040517f1124e1dc0000000000000000000000000000000000000000000000000000000081526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001691631124e1dc9161058e91908590600401610d68565b602060405180830381600087803b1580156105a857600080fd5b505af11580156105bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105e09190610a2e565b50816020015163ffffffff167f4b2c9bed31045ac093e453f0c6fcdde124408fae75b3e3b3f788c1c0a8775f95838360405161061d929190610d04565b60405180910390a25050565b60003361063e6000546001600160a01b031690565b6001600160a01b0316146106945760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610230565b61069d8261083e565b90505b919050565b336106b86000546001600160a01b031690565b6001600160a01b03161461070e5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610230565b6001600160a01b03811661078a5760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610230565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6002546000906001600160a01b039081169083168114156108c75760405162461bcd60e51b815260206004820152602360248201527f4d616e61676561626c652f6578697374696e672d6d616e616765722d6164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610230565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385811691821790925560405190918316907f9cb45c728de594dab506a1f1a8554e24c8eeaf983618d5ec5dd7bc6f3c49feee90600090a350600192915050565b600082601f83011261093b57600080fd5b60405161020080820182811067ffffffffffffffff8211171561096057610960610e23565b604052818482810187101561097457600080fd5b600092505b60108310156109a257803561098d81610e52565b82526001929092019160209182019101610979565b509195945050505050565b80356cffffffffffffffffffffffffff811681146106a057600080fd5b80356106a081610e52565b803567ffffffffffffffff811681146106a057600080fd5b803560ff811681146106a057600080fd5b600060208284031215610a1057600080fd5b81356001600160a01b0381168114610a2757600080fd5b9392505050565b600060208284031215610a4057600080fd5b81518015158114610a2757600080fd5b6000808284036103a0811215610a6557600080fd5b60a0811215610a7357600080fd5b610a7b610d83565b843581526020850135610a8d81610e52565b6020820152610a9e604086016109d5565b6040820152610aaf606086016109d5565b60608201526080850135610ac281610e52565b608082015292506103007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6082011215610afa57600080fd5b50610b03610dac565b610b0f60a085016109ed565b8152610b1d60c085016109ed565b6020820152610b2e60e085016109ca565b6040820152610100610b418186016109ca565b6060830152610b5361012086016109ca565b6080830152610b6561014086016109ca565b60a0830152610b7761016086016109ad565b60c0830152610b8a86610180870161092a565b60e08301526103808501358183015250809150509250929050565b600060208284031215610bb757600080fd5b8151610a2781610e52565b8060005b6010811015610beb57815163ffffffff16845260209384019390910190600101610bc6565b50505050565b60ff815116825260ff60208201511660208301526040810151610c1c604084018263ffffffff169052565b506060810151610c34606084018263ffffffff169052565b506080810151610c4c608084018263ffffffff169052565b5060a0810151610c6460a084018263ffffffff169052565b5060c0810151610c8560c08401826cffffffffffffffffffffffffff169052565b5060e0810151610c9860e0840182610bc2565b5061010001516102e09190910152565b60a08101610cfe828480518252602081015163ffffffff80821660208501526040830151915067ffffffffffffffff80831660408601528060608501511660608601525080608084015116608085015250505050565b92915050565b6103a08101610d5b828580518252602081015163ffffffff80821660208501526040830151915067ffffffffffffffff80831660408601528060608501511660608601525080608084015116608085015250505050565b610a2760a0830184610bf1565b63ffffffff831681526103208101610a276020830184610bf1565b60405160a0810167ffffffffffffffff81118282101715610da657610da6610e23565b60405290565b604051610120810167ffffffffffffffff81118282101715610da657610da6610e23565b600067ffffffffffffffff808316818516808303821115610e1a577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b01949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b63ffffffff81168114610e6457600080fd5b5056fea2646970667358221220c7e7b302a5f4c46703fa0ae91fd7fcee0344750e866d1f749b11b94250c7d77e64736f6c63430008060033",
              "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 0xC7 0xE7 0xB3 MUL 0xA5 DELEGATECALL 0xC4 PUSH8 0x3FA0AE91FD7FCEE SUB DIFFICULTY PUSH22 0xE866D1F749B11B94250C7D77E64736F6C6343000806 STOP CALLER ",
              "sourceMap": "951:2663:72:-:0;;;2401:398;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2586:6;1648:24:33;2586:6:72;1648:9:33;:24::i;:::-;-1:-1:-1;;;;;;;2604:24:72::1;::::0;;;;;::::1;::::0;2638:50;;;;::::1;::::0;2698:8:::1;:20:::0;;-1:-1:-1;;;;;2698:20:72;;::::1;-1:-1:-1::0;;;;;;2698:20:72;;::::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:33;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:33;;;-1:-1:-1;;;;;;3562:18:33;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;14:742:101:-;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:101;423:25;457:33;:::i;:::-;561:2;546:18;;540:25;509:7;;-1:-1:-1;574:33:101;540:25;574:33;:::i;:::-;678:2;663:18;;657:25;626:7;;-1:-1:-1;691:33:101;657:25;691:33;:::i;:::-;234:522;;;;-1:-1:-1;234:522:101;;-1:-1:-1;;234:522:101:o;761:131::-;-1:-1:-1;;;;;836:31:101;;826:42;;816:2;;882:1;879;872:12;816:2;806:86;:::o;:::-;951:2663:72;;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@_setManager_5165": {
                  "entryPoint": 2110,
                  "id": 5165,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_setOwner_5327": {
                  "entryPoint": 2017,
                  "id": 5327,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@claimOwnership_5307": {
                  "entryPoint": 474,
                  "id": 5307,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@drawBuffer_15688": {
                  "entryPoint": null,
                  "id": 15688,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@manager_5119": {
                  "entryPoint": null,
                  "id": 5119,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@owner_5239": {
                  "entryPoint": null,
                  "id": 5239,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@pendingOwner_5248": {
                  "entryPoint": null,
                  "id": 5248,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@prizeDistributionBuffer_15692": {
                  "entryPoint": null,
                  "id": 15692,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@push_15779": {
                  "entryPoint": 738,
                  "id": 15779,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@renounceOwnership_5262": {
                  "entryPoint": 621,
                  "id": 5262,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@setManager_5134": {
                  "entryPoint": 1577,
                  "id": 5134,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@timelock_15696": {
                  "entryPoint": null,
                  "id": 15696,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@transferOwnership_5289": {
                  "entryPoint": 1701,
                  "id": 5289,
                  "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_$10697_memory_ptrt_struct$_PrizeDistribution_$11103_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_$10930__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_IDrawCalculatorTimelock_$15999__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_IPrizeDistributionBuffer_$11079__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_$10697_memory_ptr__to_t_struct$_Draw_$10697_memory_ptr__fromStack_reversed": {
                  "entryPoint": 3240,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_struct$_Draw_$10697_memory_ptr_t_struct$_PrizeDistribution_$11103_memory_ptr__to_t_struct$_Draw_$10697_memory_ptr_t_struct$_PrizeDistribution_$11103_memory_ptr__fromStack_reversed": {
                  "entryPoint": 3332,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint32_t_struct$_PrizeDistribution_$11103_memory_ptr__to_t_uint32_t_struct$_PrizeDistribution_$11103_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:11660:101",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:101",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "73:718:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "122:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "131:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "134:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "124:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "124:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "124:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "101:6:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "109:4:101",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "97:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "97:17:101"
                                      },
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "116:3:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "93:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "93:27:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "86:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "86:35:101"
                              },
                              "nodeType": "YulIf",
                              "src": "83:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "147:23:101",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "167:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "161:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "161:9:101"
                              },
                              "variables": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "151:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "179:13:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "189:3:101",
                                "type": "",
                                "value": "512"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "183:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "201:33:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "223:6:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "231:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "219:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "219:15:101"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "205:10:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "309:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "311:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "311:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "311:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "252:10:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "264:18:101",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "249:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "249:34:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "288:10:101"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "300:6:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "285:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "285:22:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "246:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "246:62:101"
                              },
                              "nodeType": "YulIf",
                              "src": "243:2:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "347:2:101",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "351:10:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "340:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "340:22:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "340:22:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "371:17:101",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "382:6:101"
                              },
                              "variables": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulTypedName",
                                  "src": "375:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "397:17:101",
                              "value": {
                                "name": "offset",
                                "nodeType": "YulIdentifier",
                                "src": "408:6:101"
                              },
                              "variables": [
                                {
                                  "name": "src",
                                  "nodeType": "YulTypedName",
                                  "src": "401:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "451:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "460:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "463:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "453:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "453:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "453:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "433:6:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "441:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "429:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "429:15:101"
                                  },
                                  {
                                    "name": "end",
                                    "nodeType": "YulIdentifier",
                                    "src": "446:3:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "426:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "426:24:101"
                              },
                              "nodeType": "YulIf",
                              "src": "423:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "476:10:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "485:1:101",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "480:1:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "542:219:101",
                                "statements": [
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "556:30:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "582:3:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "calldataload",
                                        "nodeType": "YulIdentifier",
                                        "src": "569:12:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "569:17:101"
                                    },
                                    "variables": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulTypedName",
                                        "src": "560:5:101",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "value",
                                          "nodeType": "YulIdentifier",
                                          "src": "623:5:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "validator_revert_uint32",
                                        "nodeType": "YulIdentifier",
                                        "src": "599:23:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "599:30:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "599:30:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "649:3:101"
                                        },
                                        {
                                          "name": "value",
                                          "nodeType": "YulIdentifier",
                                          "src": "654:5:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "642:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "642:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "642:18:101"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "673:14:101",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "683:4:101",
                                      "type": "",
                                      "value": "0x20"
                                    },
                                    "variables": [
                                      {
                                        "name": "_2",
                                        "nodeType": "YulTypedName",
                                        "src": "677:2:101",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "700:19:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "711:3:101"
                                        },
                                        {
                                          "name": "_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "716:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "707:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "707:12:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "dst",
                                        "nodeType": "YulIdentifier",
                                        "src": "700:3:101"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "732:19:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "743:3:101"
                                        },
                                        {
                                          "name": "_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "748:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "739:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "739:12:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "src",
                                        "nodeType": "YulIdentifier",
                                        "src": "732:3:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "506:1:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "509:4:101",
                                    "type": "",
                                    "value": "0x10"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "503:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "503:11:101"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "515:18:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "517:14:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "526:1:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "529:1:101",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "522:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "522:9:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "517:1:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "499:3:101",
                                "statements": []
                              },
                              "src": "495:266:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "770:15:101",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "779:6:101"
                              },
                              "variableNames": [
                                {
                                  "name": "array",
                                  "nodeType": "YulIdentifier",
                                  "src": "770:5:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_array_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "47:6:101",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "55:3:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "array",
                            "nodeType": "YulTypedName",
                            "src": "63:5:101",
                            "type": ""
                          }
                        ],
                        "src": "14:777:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "845:133:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "855:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "877:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "864:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "864:20:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "855:5:101"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "956:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "965:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "968:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "958:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "958:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "958:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "906:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "917:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "924:28:101",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "913:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "913:40:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "903:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "903:51:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "896:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "896:59:101"
                              },
                              "nodeType": "YulIf",
                              "src": "893:2:101"
                            }
                          ]
                        },
                        "name": "abi_decode_uint104",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "824:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "835:5:101",
                            "type": ""
                          }
                        ],
                        "src": "796:182:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1031:84:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1041:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1063:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1050:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1050:20:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "1041:5:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1103:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "1079:23:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1079:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1079:30:101"
                            }
                          ]
                        },
                        "name": "abi_decode_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "1010:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "1021:5:101",
                            "type": ""
                          }
                        ],
                        "src": "983:132:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1168:123:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1178:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1200:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1187:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1187:20:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "1178:5:101"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1269:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1278:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1281:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1271:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1271:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1271:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1229:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1240:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1247:18:101",
                                            "type": "",
                                            "value": "0xffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1236:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1236:30:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1226:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1226:41:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1219:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1219:49:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1216:2:101"
                            }
                          ]
                        },
                        "name": "abi_decode_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "1147:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "1158:5:101",
                            "type": ""
                          }
                        ],
                        "src": "1120:171:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1343:109:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1353:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1375:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1362:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1362:20:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "1353:5:101"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1430:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1439:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1442:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1432:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1432:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1432:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1404:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1415:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1422:4:101",
                                            "type": "",
                                            "value": "0xff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1411:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1411:16:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1401:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1401:27:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1394:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1394:35:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1391:2:101"
                            }
                          ]
                        },
                        "name": "abi_decode_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "1322:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "1333:5:101",
                            "type": ""
                          }
                        ],
                        "src": "1296:156:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1527:239:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1573:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1582:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1585:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1575:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1575:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1575:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1548:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1557:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1544:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1544:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1569:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1540:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1540:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1537:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1598:36:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1624:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1611:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1611:23:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1602:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1720:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1729:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1732:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1722:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1722:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1722:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1656:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1667:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1674:42:101",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1663:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1663:54:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1653:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1653:65:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1646:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1646:73:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1643:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1745:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1755:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1745:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1493:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1504:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1516:6:101",
                            "type": ""
                          }
                        ],
                        "src": "1457:309:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1849:199:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1895:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1904:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1907:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1897:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1897:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1897:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1870:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1879:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1866:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1866:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1891:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1862:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1862:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1859:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1920:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1939:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1933:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1933:16:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1924:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2002:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2011:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2014:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2004:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2004:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2004:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1971:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "1992:5:101"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "iszero",
                                              "nodeType": "YulIdentifier",
                                              "src": "1985:6:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1985:13:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "1978:6:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1978:21:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1968:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1968:32:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1961:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1961:40:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1958:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2027:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2037:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2027:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_bool_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1815:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1826:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1838:6:101",
                            "type": ""
                          }
                        ],
                        "src": "1771:277:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2199:1534:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2209:33:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "2223:7:101"
                                  },
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2232:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "2219:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2219:23:101"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2213:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2267:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2276:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2279:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2269:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2269:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2269:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2258:2:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2262:3:101",
                                    "type": "",
                                    "value": "928"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2254:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2254:12:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2251:2:101"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2309:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2318:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2321:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2311:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2311:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2311:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2299:2:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2303:4:101",
                                    "type": "",
                                    "value": "0xa0"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2295:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2295:13:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2292:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2334:35:101",
                              "value": {
                                "arguments": [],
                                "functionName": {
                                  "name": "allocate_memory_1588",
                                  "nodeType": "YulIdentifier",
                                  "src": "2347:20:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2347:22:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2338:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "2385:5:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2405:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "calldataload",
                                      "nodeType": "YulIdentifier",
                                      "src": "2392:12:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2392:23:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2378:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2378:38:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2378:38:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2425:47:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2457:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2468:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2453:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2453:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2440:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2440:32:101"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2429:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2505:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "2481:23:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2481:32:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2481:32:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2533:5:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2540:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2529:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2529:14:101"
                                  },
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2545:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2522:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2522:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2522:31:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2573:5:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2580:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2569:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2569:14:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "2607:9:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2618:2:101",
                                            "type": "",
                                            "value": "64"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2603:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2603:18:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint64",
                                      "nodeType": "YulIdentifier",
                                      "src": "2585:17:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2585:37:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2562:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2562:61:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2562:61:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2643:5:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2650:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2639:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2639:14:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "2677:9:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2688:2:101",
                                            "type": "",
                                            "value": "96"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "2673:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2673:18:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint64",
                                      "nodeType": "YulIdentifier",
                                      "src": "2655:17:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2655:37:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2632:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2632:61:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2632:61:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2702:48:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2734:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2745:3:101",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2730:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2730:19:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2717:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2717:33:101"
                              },
                              "variables": [
                                {
                                  "name": "value_2",
                                  "nodeType": "YulTypedName",
                                  "src": "2706:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "2783:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "2759:23:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2759:32:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2759:32:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2811:5:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2818:3:101",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2807:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2807:15:101"
                                  },
                                  {
                                    "name": "value_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "2824:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2800:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2800:32:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2800:32:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2841:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2851:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2841:6:101"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2957:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2966:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2969:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2959:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2959:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2959:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "2876:2:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2880:66:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2872:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2872:75:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2949:6:101",
                                    "type": "",
                                    "value": "0x0300"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2868:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2868:88:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2865:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2982:32:101",
                              "value": {
                                "arguments": [],
                                "functionName": {
                                  "name": "allocate_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "2997:15:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2997:17:101"
                              },
                              "variables": [
                                {
                                  "name": "value_3",
                                  "nodeType": "YulTypedName",
                                  "src": "2986:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "3030:7:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "3060:9:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "3071:4:101",
                                            "type": "",
                                            "value": "0xa0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "3056:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3056:20:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint8",
                                      "nodeType": "YulIdentifier",
                                      "src": "3039:16:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3039:38:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3023:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3023:55:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3023:55:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "3098:7:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3107:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3094:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3094:16:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "3133:9:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "3144:3:101",
                                            "type": "",
                                            "value": "192"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "3129:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3129:19:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint8",
                                      "nodeType": "YulIdentifier",
                                      "src": "3112:16:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3112:37:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3087:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3087:63:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3087:63:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "3170:7:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3179:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3166:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3166:16:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "3206:9:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "3217:3:101",
                                            "type": "",
                                            "value": "224"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "3202:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3202:19:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "3184:17:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3184:38:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3159:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3159:64:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3159:64:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3232:13:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "3242:3:101",
                                "type": "",
                                "value": "256"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "3236:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "3265:7:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3274:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3261:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3261:16:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "3301:9:101"
                                          },
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "3312:2:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "3297:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3297:18:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "3279:17:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3279:37:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3254:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3254:63:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3254:63:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "3337:7:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3346:3:101",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3333:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3333:17:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "3374:9:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "3385:6:101",
                                            "type": "",
                                            "value": "0x0120"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "3370:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3370:22:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "3352:17:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3352:41:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3326:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3326:68:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3326:68:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "3414:7:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3423:4:101",
                                        "type": "",
                                        "value": "0xa0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3410:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3410:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "3452:9:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "3463:3:101",
                                            "type": "",
                                            "value": "320"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "3448:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3448:19:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "3430:17:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3430:38:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3403:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3403:66:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3403:66:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "3489:7:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3498:3:101",
                                        "type": "",
                                        "value": "192"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3485:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3485:17:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "3527:9:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "3538:3:101",
                                            "type": "",
                                            "value": "352"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "3523:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3523:19:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint104",
                                      "nodeType": "YulIdentifier",
                                      "src": "3504:18:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3504:39:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3478:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3478:66:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3478:66:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "3564:7:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3573:3:101",
                                        "type": "",
                                        "value": "224"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3560:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3560:17:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "3607:9:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "3618:3:101",
                                            "type": "",
                                            "value": "384"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "3603:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3603:19:101"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3624:7:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_array_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "3579:23:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3579:53:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3553:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3553:80:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3553:80:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "3653:7:101"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "3662:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3649:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3649:16:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "3684:9:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "3695:3:101",
                                            "type": "",
                                            "value": "896"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "3680:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3680:19:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "calldataload",
                                      "nodeType": "YulIdentifier",
                                      "src": "3667:12:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3667:33:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3642:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3642:59:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3642:59:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3710:17:101",
                              "value": {
                                "name": "value_3",
                                "nodeType": "YulIdentifier",
                                "src": "3720:7:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "3710:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_struct$_Draw_$10697_memory_ptrt_struct$_PrizeDistribution_$11103_memory_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2157:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2168:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2180:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2188:6:101",
                            "type": ""
                          }
                        ],
                        "src": "2053:1680:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3818:169:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3864:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3873:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3876:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3866:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3866:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3866:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3839:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3848:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3835:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3835:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3860:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3831:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3831:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "3828:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3889:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3908:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3902:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3902:16:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "3893:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "3951:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "3927:23:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3927:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3927:30:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3966:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "3976:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3966:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint32_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3784:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "3795:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3807:6:101",
                            "type": ""
                          }
                        ],
                        "src": "3738:249:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4041:293:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "4051:10:101",
                              "value": {
                                "name": "pos",
                                "nodeType": "YulIdentifier",
                                "src": "4058:3:101"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "4051:3:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4070:19:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "4084:5:101"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "4074:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4098:10:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "4107:1:101",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "4102:1:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4164:164:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "4185:3:101"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "srcPtr",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "4200:6:101"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "mload",
                                                "nodeType": "YulIdentifier",
                                                "src": "4194:5:101"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "4194:13:101"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "4209:10:101",
                                              "type": "",
                                              "value": "0xffffffff"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "and",
                                            "nodeType": "YulIdentifier",
                                            "src": "4190:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "4190:30:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "4178:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4178:43:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4178:43:101"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "4234:14:101",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "4244:4:101",
                                      "type": "",
                                      "value": "0x20"
                                    },
                                    "variables": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulTypedName",
                                        "src": "4238:2:101",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "4261:19:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "4272:3:101"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "4277:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "4268:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4268:12:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "4261:3:101"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "4293:25:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "4307:6:101"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "4315:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "4303:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4303:15:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "4293:6:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "4128:1:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4131:4:101",
                                    "type": "",
                                    "value": "0x10"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4125:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4125:11:101"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "4137:18:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "4139:14:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "4148:1:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4151:1:101",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "4144:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4144:9:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "4139:1:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "4121:3:101",
                                "statements": []
                              },
                              "src": "4117:211:101"
                            }
                          ]
                        },
                        "name": "abi_encode_array_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "4025:5:101",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "4032:3:101",
                            "type": ""
                          }
                        ],
                        "src": "3992:342:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4387:453:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "4404:3:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "4415:5:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "mload",
                                      "nodeType": "YulIdentifier",
                                      "src": "4409:5:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4409:12:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4397:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4397:25:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4397:25:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4431:43:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "4461:5:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4468:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4457:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4457:16:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4451:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4451:23:101"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0",
                                  "nodeType": "YulTypedName",
                                  "src": "4435:12:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4483:20:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "4493:10:101",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4487:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "4523:3:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4528:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4519:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4519:14:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "memberValue0",
                                        "nodeType": "YulIdentifier",
                                        "src": "4539:12:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "4553:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4535:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4535:21:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4512:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4512:45:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4512:45:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4566:45:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "4598:5:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4605:4:101",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4594:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4594:16:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4588:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4588:23:101"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4570:14:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4620:28:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "4630:18:101",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "4624:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "4668:3:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4673:4:101",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4664:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4664:14:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "memberValue0_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "4684:14:101"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "4700:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4680:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4680:23:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4657:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4657:47:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4657:47:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "4724:3:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4729:4:101",
                                        "type": "",
                                        "value": "0x60"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4720:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4720:14:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "4750:5:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "4757:4:101",
                                                "type": "",
                                                "value": "0x60"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "4746:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4746:16:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "4740:5:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4740:23:101"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "4765:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4736:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4736:32:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4713:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4713:56:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4713:56:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "4789:3:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4794:4:101",
                                        "type": "",
                                        "value": "0x80"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4785:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4785:14:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "4815:5:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "4822:4:101",
                                                "type": "",
                                                "value": "0x80"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "4811:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4811:16:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "4805:5:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4805:23:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "4830:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4801:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4801:32:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4778:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4778:56:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4778:56:101"
                            }
                          ]
                        },
                        "name": "abi_encode_struct_Draw",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "4371:5:101",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "4378:3:101",
                            "type": ""
                          }
                        ],
                        "src": "4339:501:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4906:854:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "4923:3:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "4938:5:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "4932:5:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4932:12:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4946:4:101",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4928:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4928:23:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4916:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4916:36:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4916:36:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "4972:3:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4977:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4968:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4968:14:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "4998:5:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "5005:4:101",
                                                "type": "",
                                                "value": "0x20"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "4994:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4994:16:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "4988:5:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4988:23:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5013:4:101",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4984:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4984:34:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4961:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4961:58:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4961:58:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5028:43:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "5058:5:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5065:4:101",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5054:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5054:16:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "5048:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5048:23:101"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0",
                                  "nodeType": "YulTypedName",
                                  "src": "5032:12:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memberValue0",
                                    "nodeType": "YulIdentifier",
                                    "src": "5098:12:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "5116:3:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5121:4:101",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5112:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5112:14:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "5080:17:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5080:47:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5080:47:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5136:45:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "5168:5:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5175:4:101",
                                        "type": "",
                                        "value": "0x60"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5164:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5164:16:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "5158:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5158:23:101"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0_1",
                                  "nodeType": "YulTypedName",
                                  "src": "5140:14:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memberValue0_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "5208:14:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "5228:3:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5233:4:101",
                                        "type": "",
                                        "value": "0x60"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5224:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5224:14:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "5190:17:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5190:49:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5190:49:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5248:45:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "5280:5:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5287:4:101",
                                        "type": "",
                                        "value": "0x80"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5276:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5276:16:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "5270:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5270:23:101"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0_2",
                                  "nodeType": "YulTypedName",
                                  "src": "5252:14:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memberValue0_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "5320:14:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "5340:3:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5345:4:101",
                                        "type": "",
                                        "value": "0x80"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5336:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5336:14:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "5302:17:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5302:49:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5302:49:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5360:45:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "5392:5:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5399:4:101",
                                        "type": "",
                                        "value": "0xa0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5388:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5388:16:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "5382:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5382:23:101"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0_3",
                                  "nodeType": "YulTypedName",
                                  "src": "5364:14:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memberValue0_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "5432:14:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "5452:3:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5457:4:101",
                                        "type": "",
                                        "value": "0xa0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5448:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5448:14:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "5414:17:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5414:49:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5414:49:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5472:45:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "5504:5:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5511:4:101",
                                        "type": "",
                                        "value": "0xc0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5500:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5500:16:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "5494:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5494:23:101"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0_4",
                                  "nodeType": "YulTypedName",
                                  "src": "5476:14:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memberValue0_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "5545:14:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "5565:3:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5570:4:101",
                                        "type": "",
                                        "value": "0xc0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5561:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5561:14:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_uint104",
                                  "nodeType": "YulIdentifier",
                                  "src": "5526:18:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5526:50:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5526:50:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5585:45:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "5617:5:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5624:4:101",
                                        "type": "",
                                        "value": "0xe0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5613:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5613:16:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "5607:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5607:23:101"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0_5",
                                  "nodeType": "YulTypedName",
                                  "src": "5589:14:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memberValue0_5",
                                    "nodeType": "YulIdentifier",
                                    "src": "5663:14:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "5683:3:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5688:4:101",
                                        "type": "",
                                        "value": "0xe0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5679:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5679:14:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_array_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "5639:23:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5639:55:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5639:55:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "5714:3:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5719:6:101",
                                        "type": "",
                                        "value": "0x02e0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5710:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5710:16:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "5738:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "5745:6:101",
                                            "type": "",
                                            "value": "0x0100"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "5734:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "5734:18:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "mload",
                                      "nodeType": "YulIdentifier",
                                      "src": "5728:5:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5728:25:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5703:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5703:51:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5703:51:101"
                            }
                          ]
                        },
                        "name": "abi_encode_struct_PrizeDistribution",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "4890:5:101",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "4897:3:101",
                            "type": ""
                          }
                        ],
                        "src": "4845:915:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5809:69:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "5826:3:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "5835:5:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5842:28:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5831:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5831:40:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5819:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5819:53:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5819:53:101"
                            }
                          ]
                        },
                        "name": "abi_encode_uint104",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "5793:5:101",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "5800:3:101",
                            "type": ""
                          }
                        ],
                        "src": "5765:113:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5926:51:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "5943:3:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "5952:5:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5959:10:101",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "5948:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5948:22:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5936:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5936:35:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5936:35:101"
                            }
                          ]
                        },
                        "name": "abi_encode_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "5910:5:101",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "5917:3:101",
                            "type": ""
                          }
                        ],
                        "src": "5883:94:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6083:125:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "6093:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6105:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6116:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6101:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6101:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6093:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6135:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "6150:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6158:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6146:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6146:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6128:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6128:74:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6128:74:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6052:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6063:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6074:4:101",
                            "type": ""
                          }
                        ],
                        "src": "5982:226:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6308:92:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "6318:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6330:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6341:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6326:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6326:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6318:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6360:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "6385:6:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "6378:6:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "6378:14:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "6371:6:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6371:22:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6353:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6353:41:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6353:41:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6277:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6288:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6299:4:101",
                            "type": ""
                          }
                        ],
                        "src": "6213:187:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6527:125:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "6537:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6549:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6560:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6545:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6545:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6537:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6579:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "6594:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6602:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6590:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6590:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6572:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6572:74:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6572:74:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IDrawBuffer_$10930__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6496:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6507:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6518:4:101",
                            "type": ""
                          }
                        ],
                        "src": "6405:247:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6791:125:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "6801:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6813:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6824:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6809:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6809:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6801:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6843:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "6858:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6866:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6854:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6854:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6836:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6836:74:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6836:74:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IDrawCalculatorTimelock_$15999__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6760:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6771:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6782:4:101",
                            "type": ""
                          }
                        ],
                        "src": "6657:259:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7056:125:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "7066:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7078:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7089:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7074:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7074:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7066:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7108:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "7123:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7131:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "7119:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7119:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7101:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7101:74:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7101:74:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IPrizeDistributionBuffer_$11079__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7025:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7036:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7047:4:101",
                            "type": ""
                          }
                        ],
                        "src": "6921:260:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7360:225:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7377:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7388:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7370:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7370:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7370:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7411:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7422:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7407:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7407:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7427:2:101",
                                    "type": "",
                                    "value": "35"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7400:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7400:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7400:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7450:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7461:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7446:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7446:18:101"
                                  },
                                  {
                                    "hexValue": "4d616e61676561626c652f6578697374696e672d6d616e616765722d61646472",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7466:34:101",
                                    "type": "",
                                    "value": "Manageable/existing-manager-addr"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7439:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7439:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7439:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7521:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7532:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7517:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7517:18:101"
                                  },
                                  {
                                    "hexValue": "657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7537:5:101",
                                    "type": "",
                                    "value": "ess"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7510:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7510:33:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7510:33:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7552:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7564:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7575:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7560:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7560:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7552:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7337:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7351:4:101",
                            "type": ""
                          }
                        ],
                        "src": "7186:399:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7764:174:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7781:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7792:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7774:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7774:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7774:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7815:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7826:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7811:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7811:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7831:2:101",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7804:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7804:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7804:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7854:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7865:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7850:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7850:18:101"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "7870:26:101",
                                    "type": "",
                                    "value": "Ownable/caller-not-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7843:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7843:54:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7843:54:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7906:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7918:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7929:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7914:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7914:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "7906:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7741:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "7755:4:101",
                            "type": ""
                          }
                        ],
                        "src": "7590:348:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8117:181:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8134:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8145:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8127:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8127:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8127:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8168:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8179:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8164:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8164:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8184:2:101",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8157:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8157:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8157:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8207:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8218:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8203:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8203:18:101"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8223:33:101",
                                    "type": "",
                                    "value": "Ownable/caller-not-pendingOwner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8196:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8196:61:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8196:61:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8266:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8278:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8289:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8274:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8274:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8266:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8094:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8108:4:101",
                            "type": ""
                          }
                        ],
                        "src": "7943:355:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8477:228:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8494:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8505:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8487:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8487:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8487:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8528:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8539:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8524:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8524:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8544:2:101",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8517:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8517:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8517:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8567:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8578:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8563:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8563:18:101"
                                  },
                                  {
                                    "hexValue": "4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f72",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8583:34:101",
                                    "type": "",
                                    "value": "Manageable/caller-not-manager-or"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8556:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8556:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8556:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8638:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8649:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8634:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8634:18:101"
                                  },
                                  {
                                    "hexValue": "2d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8654:8:101",
                                    "type": "",
                                    "value": "-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8627:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8627:36:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8627:36:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8672:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8684:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8695:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8680:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8680:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8672:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8454:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8468:4:101",
                            "type": ""
                          }
                        ],
                        "src": "8303:402:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8884:227:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8901:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8912:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8894:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8894:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8894:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8935:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8946:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8931:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8931:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8951:2:101",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8924:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8924:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8924:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "8974:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8985:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8970:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8970:18:101"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d6164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "8990:34:101",
                                    "type": "",
                                    "value": "Ownable/pendingOwner-not-zero-ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8963:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8963:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8963:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9045:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9056:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9041:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9041:18:101"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "9061:7:101",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9034:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9034:35:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9034:35:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "9078:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9090:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9101:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9086:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9086:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9078:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8861:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8875:4:101",
                            "type": ""
                          }
                        ],
                        "src": "8710:401:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9263:93:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "9273:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9285:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9296:3:101",
                                    "type": "",
                                    "value": "160"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9281:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9281:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9273:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "9332:6:101"
                                  },
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9340:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_struct_Draw",
                                  "nodeType": "YulIdentifier",
                                  "src": "9309:22:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9309:41:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9309:41:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_struct$_Draw_$10697_memory_ptr__to_t_struct$_Draw_$10697_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9232:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "9243:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9254:4:101",
                            "type": ""
                          }
                        ],
                        "src": "9116:240:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9608:166:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "9618:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9630:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9641:3:101",
                                    "type": "",
                                    "value": "928"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9626:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9626:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9618:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "9677:6:101"
                                  },
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9685:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_struct_Draw",
                                  "nodeType": "YulIdentifier",
                                  "src": "9654:22:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9654:41:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9654:41:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "9740:6:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9752:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9763:3:101",
                                        "type": "",
                                        "value": "160"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9748:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9748:19:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_struct_PrizeDistribution",
                                  "nodeType": "YulIdentifier",
                                  "src": "9704:35:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9704:64:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9704:64:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_struct$_Draw_$10697_memory_ptr_t_struct$_PrizeDistribution_$11103_memory_ptr__to_t_struct$_Draw_$10697_memory_ptr_t_struct$_PrizeDistribution_$11103_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9569:9:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "9580:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "9588:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9599:4:101",
                            "type": ""
                          }
                        ],
                        "src": "9361:413:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9978:166:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "9988:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10000:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10011:3:101",
                                    "type": "",
                                    "value": "800"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9996:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9996:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9988:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10031:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "10046:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10054:10:101",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "10042:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10042:23:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10024:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10024:42:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10024:42:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "10111:6:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10123:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10134:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10119:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10119:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_struct_PrizeDistribution",
                                  "nodeType": "YulIdentifier",
                                  "src": "10075:35:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10075:63:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10075:63:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint32_t_struct$_PrizeDistribution_$11103_memory_ptr__to_t_uint32_t_struct$_PrizeDistribution_$11103_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "9939:9:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "9950:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "9958:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9969:4:101",
                            "type": ""
                          }
                        ],
                        "src": "9779:365:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10274:161:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "10284:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10296:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10307:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10292:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10292:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10284:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10326:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "10341:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10349:10:101",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "10337:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10337:23:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10319:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10319:42:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10319:42:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10381:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10392:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10377:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10377:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "10401:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10409:18:101",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "10397:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10397:31:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10370:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10370:59:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10370:59:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint32_t_uint64__to_t_uint32_t_uint64__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10235:9:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "10246:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "10254:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10265:4:101",
                            "type": ""
                          }
                        ],
                        "src": "10149:286:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10486:207:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "10496:19:101",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10512:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "10506:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10506:9:101"
                              },
                              "variableNames": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulIdentifier",
                                  "src": "10496:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "10524:35:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "10546:6:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10554:4:101",
                                    "type": "",
                                    "value": "0xa0"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10542:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10542:17:101"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "10528:10:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "10634:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "10636:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10636:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "10636:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "10577:10:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10589:18:101",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "10574:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10574:34:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "10613:10:101"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "10625:6:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "10610:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10610:22:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "10571:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10571:62:101"
                              },
                              "nodeType": "YulIf",
                              "src": "10568:2:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10672:2:101",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "10676:10:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10665:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10665:22:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10665:22:101"
                            }
                          ]
                        },
                        "name": "allocate_memory_1588",
                        "nodeType": "YulFunctionDefinition",
                        "returnVariables": [
                          {
                            "name": "memPtr",
                            "nodeType": "YulTypedName",
                            "src": "10475:6:101",
                            "type": ""
                          }
                        ],
                        "src": "10440:253:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10739:209:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "10749:19:101",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10765:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "10759:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10759:9:101"
                              },
                              "variableNames": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulIdentifier",
                                  "src": "10749:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "10777:37:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "10799:6:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10807:6:101",
                                    "type": "",
                                    "value": "0x0120"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10795:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10795:19:101"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "10781:10:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "10889:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "10891:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10891:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "10891:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "10832:10:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10844:18:101",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "10829:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10829:34:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "10868:10:101"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "10880:6:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "10865:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10865:22:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "10826:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10826:62:101"
                              },
                              "nodeType": "YulIf",
                              "src": "10823:2:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10927:2:101",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "10931:10:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10920:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10920:22:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10920:22:101"
                            }
                          ]
                        },
                        "name": "allocate_memory",
                        "nodeType": "YulFunctionDefinition",
                        "returnVariables": [
                          {
                            "name": "memPtr",
                            "nodeType": "YulTypedName",
                            "src": "10728:6:101",
                            "type": ""
                          }
                        ],
                        "src": "10698:250:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11000:343:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11010:28:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "11020:18:101",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "11014:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11047:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "11062:1:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "11065:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "11058:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11058:10:101"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "11051:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11077:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "11092:1:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "11095:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "11088:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11088:10:101"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "11081:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "11140:168:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11161:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11164:77:101",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "11154:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11154:88:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "11154:88:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11262:1:101",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11265:4:101",
                                          "type": "",
                                          "value": "0x11"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "11255:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11255:15:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "11255:15:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11290:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11293:4:101",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "11283:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11283:15:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "11283:15:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "11113:3:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "11122:2:101"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "11126:3:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "11118:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11118:12:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "11110:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11110:21:101"
                              },
                              "nodeType": "YulIf",
                              "src": "11107:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11317:20:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "11328:3:101"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "11333:3:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11324:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11324:13:101"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "11317:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "10983:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "10986:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "10992:3:101",
                            "type": ""
                          }
                        ],
                        "src": "10953:390:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11380:152:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11397:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11400:77:101",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11390:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11390:88:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11390:88:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11494:1:101",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11497:4:101",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11487:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11487:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11487:15:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11518:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "11521:4:101",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "11511:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11511:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11511:15:101"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "11348:184:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11581:77:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "11636:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11645:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11648:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "11638:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11638:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "11638:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "11604:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "11615:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "11622:10:101",
                                            "type": "",
                                            "value": "0xffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "11611:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "11611:22:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "11601:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11601:33:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "11594:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11594:41:101"
                              },
                              "nodeType": "YulIf",
                              "src": "11591:2:101"
                            }
                          ]
                        },
                        "name": "validator_revert_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "11570:5:101",
                            "type": ""
                          }
                        ],
                        "src": "11537:121:101"
                      }
                    ]
                  },
                  "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_$10697_memory_ptrt_struct$_PrizeDistribution_$11103_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_$10930__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_$15999__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_$11079__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_$10697_memory_ptr__to_t_struct$_Draw_$10697_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_$10697_memory_ptr_t_struct$_PrizeDistribution_$11103_memory_ptr__to_t_struct$_Draw_$10697_memory_ptr_t_struct$_PrizeDistribution_$11103_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_$11103_memory_ptr__to_t_uint32_t_struct$_PrizeDistribution_$11103_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": 101,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {
                "15688": [
                  {
                    "length": 32,
                    "start": 350
                  },
                  {
                    "length": 32,
                    "start": 1179
                  }
                ],
                "15692": [
                  {
                    "length": 32,
                    "start": 211
                  },
                  {
                    "length": 32,
                    "start": 1368
                  }
                ]
              },
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106100c95760003560e01c8063af32b60511610081578063d33219b41161005b578063d33219b4146101a3578063e30c3978146101b6578063f2fde38b146101c757600080fd5b8063af32b60514610146578063ce343bb614610159578063d0ebdbe71461018057600080fd5b80634e71e0c8116100b25780634e71e0c814610123578063715018a61461012d5780638da5cb5b1461013557600080fd5b80630840bbdd146100ce578063481c6a7514610112575b600080fd5b6100f57f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020015b60405180910390f35b6002546001600160a01b03166100f5565b61012b6101da565b005b61012b61026d565b6000546001600160a01b03166100f5565b61012b610154366004610a50565b6102e2565b6100f57f000000000000000000000000000000000000000000000000000000000000000081565b61019361018e3660046109fe565b610629565b6040519015158152602001610109565b6003546100f5906001600160a01b031681565b6001546001600160a01b03166100f5565b61012b6101d53660046109fe565b6106a5565b6001546001600160a01b031633146102395760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e65720060448201526064015b60405180910390fd5b60015461024e906001600160a01b03166107e1565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b336102806000546001600160a01b031690565b6001600160a01b0316146102d65760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610230565b6102e060006107e1565b565b336102f56002546001600160a01b031690565b6001600160a01b031614806103235750336103186000546001600160a01b031690565b6001600160a01b0316145b6103955760405162461bcd60e51b815260206004820152602660248201527f4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f7260448201527f2d6f776e657200000000000000000000000000000000000000000000000000006064820152608401610230565b6003546020830151608084015160408501516001600160a01b0390931692638871189b92916103cc9163ffffffff90911690610dd0565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815263ffffffff92909216600483015267ffffffffffffffff166024820152604401602060405180830381600087803b15801561043257600080fd5b505af1158015610446573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061046a9190610a2e565b506040517f089eb9250000000000000000000000000000000000000000000000000000000081526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063089eb925906104d0908590600401610ca8565b602060405180830381600087803b1580156104ea57600080fd5b505af11580156104fe573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105229190610ba5565b5060208201516040517f1124e1dc0000000000000000000000000000000000000000000000000000000081526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001691631124e1dc9161058e91908590600401610d68565b602060405180830381600087803b1580156105a857600080fd5b505af11580156105bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105e09190610a2e565b50816020015163ffffffff167f4b2c9bed31045ac093e453f0c6fcdde124408fae75b3e3b3f788c1c0a8775f95838360405161061d929190610d04565b60405180910390a25050565b60003361063e6000546001600160a01b031690565b6001600160a01b0316146106945760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610230565b61069d8261083e565b90505b919050565b336106b86000546001600160a01b031690565b6001600160a01b03161461070e5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610230565b6001600160a01b03811661078a5760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610230565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6002546000906001600160a01b039081169083168114156108c75760405162461bcd60e51b815260206004820152602360248201527f4d616e61676561626c652f6578697374696e672d6d616e616765722d6164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610230565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385811691821790925560405190918316907f9cb45c728de594dab506a1f1a8554e24c8eeaf983618d5ec5dd7bc6f3c49feee90600090a350600192915050565b600082601f83011261093b57600080fd5b60405161020080820182811067ffffffffffffffff8211171561096057610960610e23565b604052818482810187101561097457600080fd5b600092505b60108310156109a257803561098d81610e52565b82526001929092019160209182019101610979565b509195945050505050565b80356cffffffffffffffffffffffffff811681146106a057600080fd5b80356106a081610e52565b803567ffffffffffffffff811681146106a057600080fd5b803560ff811681146106a057600080fd5b600060208284031215610a1057600080fd5b81356001600160a01b0381168114610a2757600080fd5b9392505050565b600060208284031215610a4057600080fd5b81518015158114610a2757600080fd5b6000808284036103a0811215610a6557600080fd5b60a0811215610a7357600080fd5b610a7b610d83565b843581526020850135610a8d81610e52565b6020820152610a9e604086016109d5565b6040820152610aaf606086016109d5565b60608201526080850135610ac281610e52565b608082015292506103007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6082011215610afa57600080fd5b50610b03610dac565b610b0f60a085016109ed565b8152610b1d60c085016109ed565b6020820152610b2e60e085016109ca565b6040820152610100610b418186016109ca565b6060830152610b5361012086016109ca565b6080830152610b6561014086016109ca565b60a0830152610b7761016086016109ad565b60c0830152610b8a86610180870161092a565b60e08301526103808501358183015250809150509250929050565b600060208284031215610bb757600080fd5b8151610a2781610e52565b8060005b6010811015610beb57815163ffffffff16845260209384019390910190600101610bc6565b50505050565b60ff815116825260ff60208201511660208301526040810151610c1c604084018263ffffffff169052565b506060810151610c34606084018263ffffffff169052565b506080810151610c4c608084018263ffffffff169052565b5060a0810151610c6460a084018263ffffffff169052565b5060c0810151610c8560c08401826cffffffffffffffffffffffffff169052565b5060e0810151610c9860e0840182610bc2565b5061010001516102e09190910152565b60a08101610cfe828480518252602081015163ffffffff80821660208501526040830151915067ffffffffffffffff80831660408601528060608501511660608601525080608084015116608085015250505050565b92915050565b6103a08101610d5b828580518252602081015163ffffffff80821660208501526040830151915067ffffffffffffffff80831660408601528060608501511660608601525080608084015116608085015250505050565b610a2760a0830184610bf1565b63ffffffff831681526103208101610a276020830184610bf1565b60405160a0810167ffffffffffffffff81118282101715610da657610da6610e23565b60405290565b604051610120810167ffffffffffffffff81118282101715610da657610da6610e23565b600067ffffffffffffffff808316818516808303821115610e1a577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b01949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b63ffffffff81168114610e6457600080fd5b5056fea2646970667358221220c7e7b302a5f4c46703fa0ae91fd7fcee0344750e866d1f749b11b94250c7d77e64736f6c63430008060033",
              "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 0xC7 0xE7 0xB3 MUL 0xA5 DELEGATECALL 0xC4 PUSH8 0x3FA0AE91FD7FCEE SUB DIFFICULTY PUSH22 0xE866D1F749B11B94250C7D77E64736F6C6343000806 STOP CALLER ",
              "sourceMap": "951:2663:72:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1821:65;;;;;;;;-1:-1:-1;;;;;6146:55:101;;;6128:74;;6116:2;6101:18;1821:65:72;;;;;;;;1403:89:32;1477:8;;-1:-1:-1;;;;;1477:8:32;1403:89;;3147:129:33;;;:::i;:::-;;2508:94;;;:::i;1814:85::-;1860:7;1886:6;-1:-1:-1;;;;;1886:6:33;1814:85;;3147:465:72;;;;;;:::i;:::-;;:::i;1715:39::-;;;;;1744:123:32;;;;;;:::i;:::-;;:::i;:::-;;;6378:14:101;;6371:22;6353:41;;6341:2;6326:18;1744:123:32;6308:92:101;1936:39:72;;;;;-1:-1:-1;;;;;1936:39:72;;;2014:101:33;2095:13;;-1:-1:-1;;;;;2095:13:33;2014:101;;2751:234;;;;;;:::i;:::-;;:::i;3147:129::-;4050:13;;-1:-1:-1;;;;;4050:13:33;4036:10;:27;4028:71;;;;-1:-1:-1;;;4028:71:33;;8145:2:101;4028:71:33;;;8127:21:101;8184:2;8164:18;;;8157:30;8223:33;8203:18;;;8196:61;8274:18;;4028:71:33;;;;;;;;;3219:13:::1;::::0;3209:24:::1;::::0;-1:-1:-1;;;;;3219:13:33::1;3209:9;:24::i;:::-;3243:13;:26:::0;;-1:-1:-1;;3243:26:33::1;::::0;;3147:129::o;2508:94::-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:33;;3819:58;;;;-1:-1:-1;;;3819:58:33;;7792:2:101;3819:58:33;;;7774:21:101;7831:2;7811:18;;;7804:30;7870:26;7850:18;;;7843:54;7914:18;;3819:58:33;7764:174:101;3819:58:33;2574:21:::1;2592:1;2574:9;:21::i;:::-;2508:94::o:0;3147:465:72:-;2861:10:32;2848:9;1477:8;;-1:-1:-1;;;;;1477:8:32;;1403:89;2848:9;-1:-1:-1;;;;;2848:23:32;;:48;;;-1:-1:-1;2886:10:32;2875:7;1860::33;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;2875:7:32;-1:-1:-1;;;;;2875:21:32;;2848:48;2840:99;;;;-1:-1:-1;;;2840:99:32;;8505:2:101;2840:99:32;;;8487:21:101;8544:2;8524:18;;;8517:30;8583:34;8563:18;;;8556:62;8654:8;8634:18;;;8627:36;8680:19;;2840:99:32;8477:228:101;2840:99:32;3322:8:72::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:72;;::::1;::::0;:13:::1;::::0;3336:12;3350:43:::1;::::0;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;3322:72;::::0;;::::1;::::0;;;;;;::::1;10337:23:101::0;;;;3322:72:72::1;::::0;::::1;10319:42:101::0;10409:18;10397:31;10377:18;;;10370:59;10292:18;;3322:72:72::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;3404:26:72::1;::::0;;;;-1:-1:-1;;;;;3404:10:72::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:72::1;::::0;::::1;::::0;3440:79:::1;::::0;;;;-1:-1:-1;;;;;3440:23:72::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:32:-;1813:4;3838:10:33;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:33;;3819:58;;;;-1:-1:-1;;;3819:58:33;;7792:2:101;3819:58:33;;;7774:21:101;7831:2;7811:18;;;7804:30;7870:26;7850:18;;;7843:54;7914:18;;3819:58:33;7764:174:101;3819:58:33;1836:24:32::1;1848:11;1836;:24::i;:::-;1829:31;;3887:1:33;1744:123:32::0;;;:::o;2751:234:33:-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:33;;3819:58;;;;-1:-1:-1;;;3819:58:33;;7792:2:101;3819:58:33;;;7774:21:101;7831:2;7811:18;;;7804:30;7870:26;7850:18;;;7843:54;7914:18;;3819:58:33;7764:174:101;3819:58:33;-1:-1:-1;;;;;2834:23:33;::::1;2826:73;;;::::0;-1:-1:-1;;;2826:73:33;;8912:2:101;2826:73:33::1;::::0;::::1;8894:21:101::0;8951:2;8931:18;;;8924:30;8990:34;8970:18;;;8963:62;9061:7;9041:18;;;9034:35;9086:19;;2826:73:33::1;8884:227:101::0;2826:73:33::1;2910:13;:25:::0;;-1:-1:-1;;2910:25:33::1;-1:-1:-1::0;;;;;2910:25:33;::::1;::::0;;::::1;::::0;;;2951:27:::1;::::0;::::1;::::0;-1:-1:-1;;2951:27:33::1;2751:234:::0;:::o;3470:174::-;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:33;;;-1:-1:-1;;3562:18:33;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;2109:326:32:-;2211:8;;2168:4;;-1:-1:-1;;;;;2211:8:32;;;;2238:31;;;;;2230:79;;;;-1:-1:-1;;;2230:79:32;;7388:2:101;2230:79:32;;;7370:21:101;7427:2;7407:18;;;7400:30;7466:34;7446:18;;;7439:62;7537:5;7517:18;;;7510:33;7560:19;;2230:79:32;7360:225:101;2230:79:32;2320:8;:22;;-1:-1:-1;;2320:22:32;-1:-1:-1;;;;;2320:22:32;;;;;;;;;2358:49;;2320:22;;2358:49;;;;;-1:-1:-1;;2358:49:32;-1:-1:-1;2424:4:32;;2109:326;-1:-1:-1;;2109:326:32:o;14:777:101:-;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:101;;;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:101;;73:718;-1:-1:-1;;;;;73:718:101: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:101;1663:54;1656:5;1653:65;1643:2;;1732:1;1729;1722:12;1643:2;1755:5;1527:239;-1:-1:-1;;;1527:239:101: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:1680;2180:6;2188;2232:9;2223:7;2219:23;2262:3;2258:2;2254:12;2251:2;;;2279:1;2276;2269:12;2251:2;2303:4;2299:2;2295:13;2292:2;;;2321:1;2318;2311:12;2292:2;2347:22;;:::i;:::-;2405:9;2392:23;2385:5;2378:38;2468:2;2457:9;2453:18;2440:32;2481;2505:7;2481:32;:::i;:::-;2540:2;2529:14;;2522:31;2585:37;2618:2;2603:18;;2585:37;:::i;:::-;2580:2;2573:5;2569:14;2562:61;2655:37;2688:2;2677:9;2673:18;2655:37;:::i;:::-;2650:2;2643:5;2639:14;2632:61;2745:3;2734:9;2730:19;2717:33;2759:32;2783:7;2759:32;:::i;:::-;2818:3;2807:15;;2800:32;2811:5;-1:-1:-1;2949:6:101;2880:66;2872:75;;2868:88;2865:2;;;2969:1;2966;2959:12;2865:2;;2997:17;;:::i;:::-;3039:38;3071:4;3060:9;3056:20;3039:38;:::i;:::-;3030:7;3023:55;3112:37;3144:3;3133:9;3129:19;3112:37;:::i;:::-;3107:2;3098:7;3094:16;3087:63;3184:38;3217:3;3206:9;3202:19;3184:38;:::i;:::-;3179:2;3170:7;3166:16;3159:64;3242:3;3279:37;3312:2;3301:9;3297:18;3279:37;:::i;:::-;3274:2;3265:7;3261:16;3254:63;3352:41;3385:6;3374:9;3370:22;3352:41;:::i;:::-;3346:3;3337:7;3333:17;3326:68;3430:38;3463:3;3452:9;3448:19;3430:38;:::i;:::-;3423:4;3414:7;3410:18;3403:66;3504:39;3538:3;3527:9;3523:19;3504:39;:::i;:::-;3498:3;3489:7;3485:17;3478:66;3579:53;3624:7;3618:3;3607:9;3603:19;3579:53;:::i;:::-;3573:3;3564:7;3560:17;3553:80;3695:3;3684:9;3680:19;3667:33;3662:2;3653:7;3649:16;3642:59;;3720:7;3710:17;;;2199:1534;;;;;:::o;3738:249::-;3807:6;3860:2;3848:9;3839:7;3835:23;3831:32;3828:2;;;3876:1;3873;3866:12;3828:2;3908:9;3902:16;3927:30;3951:5;3927:30;:::i;3992:342::-;4084:5;4107:1;4117:211;4131:4;4128:1;4125:11;4117:211;;;4194:13;;4209:10;4190:30;4178:43;;4244:4;4268:12;;;;4303:15;;;;4151:1;4144:9;4117:211;;;4121:3;;4041:293;;:::o;4845:915::-;4946:4;4938:5;4932:12;4928:23;4923:3;4916:36;5013:4;5005;4998:5;4994:16;4988:23;4984:34;4977:4;4972:3;4968:14;4961:58;5065:4;5058:5;5054:16;5048:23;5080:47;5121:4;5116:3;5112:14;5098:12;5959:10;5948:22;5936:35;;5926:51;5080:47;;5175:4;5168:5;5164:16;5158:23;5190:49;5233:4;5228:3;5224:14;5208;5959:10;5948:22;5936:35;;5926:51;5190:49;;5287:4;5280:5;5276:16;5270:23;5302:49;5345:4;5340:3;5336:14;5320;5959:10;5948:22;5936:35;;5926:51;5302:49;;5399:4;5392:5;5388:16;5382:23;5414:49;5457:4;5452:3;5448:14;5432;5959:10;5948:22;5936:35;;5926:51;5414:49;;5511:4;5504:5;5500:16;5494:23;5526:50;5570:4;5565:3;5561:14;5545;5842:28;5831:40;5819:53;;5809:69;5526:50;;5624:4;5617:5;5613:16;5607:23;5639:55;5688:4;5683:3;5679:14;5663;5639:55;:::i;:::-;-1:-1:-1;5745:6:101;5734:18;5728:25;5719:6;5710:16;;;;5703:51;4906:854::o;9116:240::-;9296:3;9281:19;;9309:41;9285:9;9332:6;4415:5;4409:12;4404:3;4397:25;4468:4;4461:5;4457:16;4451:23;4493:10;4553:2;4539:12;4535:21;4528:4;4523:3;4519:14;4512:45;4605:4;4598:5;4594:16;4588:23;4566:45;;4630:18;4700:2;4684:14;4680:23;4673:4;4668:3;4664:14;4657:47;4765:2;4757:4;4750:5;4746:16;4740:23;4736:32;4729:4;4724:3;4720:14;4713:56;;4830:2;4822:4;4815:5;4811:16;4805:23;4801:32;4794:4;4789:3;4785:14;4778:56;;;4387:453;;;9309:41;9263:93;;;;:::o;9361:413::-;9641:3;9626:19;;9654:41;9630:9;9677:6;4415:5;4409:12;4404:3;4397:25;4468:4;4461:5;4457:16;4451:23;4493:10;4553:2;4539:12;4535:21;4528:4;4523:3;4519:14;4512:45;4605:4;4598:5;4594:16;4588:23;4566:45;;4630:18;4700:2;4684:14;4680:23;4673:4;4668:3;4664:14;4657:47;4765:2;4757:4;4750:5;4746:16;4740:23;4736:32;4729:4;4724:3;4720:14;4713:56;;4830:2;4822:4;4815:5;4811:16;4805:23;4801:32;4794:4;4789:3;4785:14;4778:56;;;4387:453;;;9654:41;9704:64;9763:3;9752:9;9748:19;9740:6;9704:64;:::i;9779:365::-;10054:10;10042:23;;10024:42;;10011:3;9996:19;;10075:63;10134:2;10119:18;;10111:6;10075:63;:::i;10440:253::-;10512:2;10506:9;10554:4;10542:17;;10589:18;10574:34;;10610:22;;;10571:62;10568:2;;;10636:18;;:::i;:::-;10672:2;10665:22;10486:207;:::o;10698:250::-;10765:2;10759:9;10807:6;10795:19;;10844:18;10829:34;;10865:22;;;10826:62;10823:2;;;10891:18;;:::i;10953:390::-;10992:3;11020:18;11065:2;11062:1;11058:10;11095:2;11092:1;11088:10;11126:3;11122:2;11118:12;11113:3;11110:21;11107:2;;;11164:77;11161:1;11154:88;11265:4;11262:1;11255:15;11293:4;11290:1;11283:15;11107:2;11324:13;;11000:343;-1:-1:-1;;;;11000:343:101:o;11348:184::-;11400:77;11397:1;11390:88;11497:4;11494:1;11487:15;11521:4;11518:1;11511:15;11537:121;11622:10;11615:5;11611:22;11604:5;11601:33;11591:2;;11648:1;11645;11638:12;11591:2;11581: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 IPrizeDistributionSource.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 IPrizeDistributionSource.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.8.6;\\n\\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..)\\n */\\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   */\\n  event RandomNumberRequested(uint32 indexed requestId, address indexed sender);\\n\\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   */\\n  event RandomNumberCompleted(uint32 indexed requestId, uint256 randomNumber);\\n\\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   */\\n  function getLastRequestId() external view returns (uint32 requestId);\\n\\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   */\\n  function getRequestFee() external view returns (address feeToken, uint256 requestFee);\\n\\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.\\n   * The calling contract should \\\"lock\\\" all activity until the result is available via the `requestId`\\n   */\\n  function requestRandomNumber() external returns (uint32 requestId, uint32 lockBlock);\\n\\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   */\\n  function isRequestComplete(uint32 requestId) external view returns (bool isCompleted);\\n\\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   */\\n  function randomNumber(uint32 requestId) external returns (uint256 randomNum);\\n}\\n\",\"keccak256\":\"0x24803ae776bba768a3a3f65d3b7e5fc100c7b5881a8e5e39d6c5df2735a3b5cb\",\"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 IPrizeDistributionSource\\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\":\"0xdfcc3dc33457e44d8917f33185925eff78ea21e5018250b3accf2db8a7aa0242\",\"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 prizeDistributionBuffer variable.\\n     * @return IPrizeDistributionBuffer\\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 drawIds 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\":\"0x51b3bacbdd715929d909063e66519096c2ef858b646e80f66691d155ccc8d520\",\"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\\nimport \\\"./IPrizeDistributionSource.sol\\\";\\n\\n/** @title  IPrizeDistributionBuffer\\n * @author PoolTogether Inc Team\\n * @notice The PrizeDistributionBuffer interface.\\n */\\ninterface IPrizeDistributionBuffer is IPrizeDistributionSource {\\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 (\\n            IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution,\\n            uint32 drawId\\n        );\\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 (\\n            IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution,\\n            uint32 drawId\\n        );\\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(\\n        uint32 drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata draw\\n    ) external returns (uint32);\\n}\\n\",\"keccak256\":\"0xa66b0d958502adda03e80924381bae30802f1c8d80823a9b787b8c66f6a7d835\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionSource.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/** @title IPrizeDistributionSource\\n * @author PoolTogether Inc Team\\n * @notice The PrizeDistributionSource interface.\\n */\\ninterface IPrizeDistributionSource {\\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 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 (PrizeDistribution[] memory);\\n}\\n\",\"keccak256\":\"0x05ec47edc2684790a869a866576e7338229cc4eeafe1171bfc8cd7fa1c0cc9a0\",\"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 valid 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\":\"0x9d90a364aafbb26a680259ad470222368aabe139cd6200eeb02ec0c6b93bc317\",\"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 buffer) 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 of 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 seven year minimum,\\n                of accurate historical lookups with current estimates of 1 new block\\n                every 15 seconds - assuming each block contains 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\":\"0x446d8221329601d40464981a50a0e31f3fd48da0ebf0fea646c5a089ccfbdff4\",\"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": 5205,
                "contract": "@pooltogether/v4-timelocks/contracts/L2TimelockTrigger.sol:L2TimelockTrigger",
                "label": "_owner",
                "offset": 0,
                "slot": "0",
                "type": "t_address"
              },
              {
                "astId": 5207,
                "contract": "@pooltogether/v4-timelocks/contracts/L2TimelockTrigger.sol:L2TimelockTrigger",
                "label": "_pendingOwner",
                "offset": 0,
                "slot": "1",
                "type": "t_address"
              },
              {
                "astId": 5103,
                "contract": "@pooltogether/v4-timelocks/contracts/L2TimelockTrigger.sol:L2TimelockTrigger",
                "label": "_manager",
                "offset": 0,
                "slot": "2",
                "type": "t_address"
              },
              {
                "astId": 15696,
                "contract": "@pooltogether/v4-timelocks/contracts/L2TimelockTrigger.sol:L2TimelockTrigger",
                "label": "timelock",
                "offset": 0,
                "slot": "3",
                "type": "t_contract(IDrawCalculatorTimelock)15999"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_contract(IDrawCalculatorTimelock)15999": {
                "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": {
                "@_15842": {
                  "entryPoint": null,
                  "id": 15842,
                  "parameterSlots": 4,
                  "returnSlots": 0
                },
                "@_5230": {
                  "entryPoint": null,
                  "id": 5230,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setOwner_5327": {
                  "entryPoint": 161,
                  "id": 5327,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "abi_decode_tuple_t_addresst_contract$_IDrawBuffer_$10930t_contract$_IPrizeDistributionFactory_$16009t_contract$_IDrawCalculatorTimelock_$15999_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:895:101",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:101",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "235:522:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "282:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "291:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "294:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "284:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "284:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "284:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "256:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "265:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "252:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "252:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "277:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "248:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "248:33:101"
                              },
                              "nodeType": "YulIf",
                              "src": "245:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "307:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "326:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "320:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "320:16:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "311:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "370:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "345:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "345:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "345:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "385:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "395:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "385:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "409:40:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "434:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "445:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "430:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "430:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "424:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "424:25:101"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "413:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "483:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "458:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "458:33:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "458:33:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "500:17:101",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "510:7:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "500:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "526:40:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "551:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "562:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "547:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "547:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "541:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "541:25:101"
                              },
                              "variables": [
                                {
                                  "name": "value_2",
                                  "nodeType": "YulTypedName",
                                  "src": "530:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "600:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "575:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "575:33:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "575:33:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "617:17:101",
                              "value": {
                                "name": "value_2",
                                "nodeType": "YulIdentifier",
                                "src": "627:7:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "617:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "643:40:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "668:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "679:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "664:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "664:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "658:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "658:25:101"
                              },
                              "variables": [
                                {
                                  "name": "value_3",
                                  "nodeType": "YulTypedName",
                                  "src": "647:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "717:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "692:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "692:33:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "692:33:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "734:17:101",
                              "value": {
                                "name": "value_3",
                                "nodeType": "YulIdentifier",
                                "src": "744:7:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "734:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_contract$_IDrawBuffer_$10930t_contract$_IPrizeDistributionFactory_$16009t_contract$_IDrawCalculatorTimelock_$15999_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "177:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "188:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "200:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "208:6:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "216:6:101",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "224:6:101",
                            "type": ""
                          }
                        ],
                        "src": "14:743:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "807:86:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "871:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "880:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "883:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "873:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "873:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "873:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "830:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "841:5:101"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "856:3:101",
                                                    "type": "",
                                                    "value": "160"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "861:1:101",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "852:3:101"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "852:11:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "865:1:101",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "848:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "848:19:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "837:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "837:31:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "827:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "827:42:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "820:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "820:50:101"
                              },
                              "nodeType": "YulIf",
                              "src": "817:2:101"
                            }
                          ]
                        },
                        "name": "validator_revert_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "796:5:101",
                            "type": ""
                          }
                        ],
                        "src": "762:131:101"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_tuple_t_addresst_contract$_IDrawBuffer_$10930t_contract$_IPrizeDistributionFactory_$16009t_contract$_IDrawCalculatorTimelock_$15999_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": 101,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "60e060405234801561001057600080fd5b50604051610da2380380610da283398101604081905261002f916100f1565b83610039816100a1565b506001600160601b0319606084811b821660805283811b821660a05282901b1660c0526040516001600160a01b0382811691848216918616907fc95935a66d15e0da5e412aca0ad27ae891d20b2fb91cf3994b6a3bf2b817808290600090a450505050610168565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000806000806080858703121561010757600080fd5b845161011281610150565b602086015190945061012381610150565b604086015190935061013481610150565b606086015190925061014581610150565b939692955090935050565b6001600160a01b038116811461016557600080fd5b50565b60805160601c60a05160601c60c05160601c610bed6101b5600039600081816101a401526103a701526000818161010f015261058b01526000818161015a01526104c20152610bed6000f3fe608060405234801561001057600080fd5b50600436106100c95760003560e01c8063a913c9da11610081578063d33219b41161005b578063d33219b41461019f578063e30c3978146101c6578063f2fde38b146101d757600080fd5b8063a913c9da14610142578063ce343bb614610155578063d0ebdbe71461017c57600080fd5b8063715018a6116100b2578063715018a61461010257806378e072a91461010a5780638da5cb5b1461013157600080fd5b8063481c6a75146100ce5780634e71e0c8146100f8575b600080fd5b6002546001600160a01b03165b6040516001600160a01b0390911681526020015b60405180910390f35b6101006101ea565b005b61010061027d565b6100db7f000000000000000000000000000000000000000000000000000000000000000081565b6000546001600160a01b03166100db565b6101006101503660046109ad565b6102f2565b6100db7f000000000000000000000000000000000000000000000000000000000000000081565b61018f61018a36600461095b565b610637565b60405190151581526020016100ef565b6100db7f000000000000000000000000000000000000000000000000000000000000000081565b6001546001600160a01b03166100db565b6101006101e536600461095b565b6106b3565b6001546001600160a01b031633146102495760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e65720060448201526064015b60405180910390fd5b60015461025e906001600160a01b03166107ef565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b336102906000546001600160a01b031690565b6001600160a01b0316146102e65760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610240565b6102f060006107ef565b565b336103056002546001600160a01b031690565b6001600160a01b031614806103335750336103286000546001600160a01b031690565b6001600160a01b0316145b6103a55760405162461bcd60e51b815260206004820152602660248201527f4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f7260448201527f2d6f776e657200000000000000000000000000000000000000000000000000006064820152608401610240565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316638871189b8360200151846080015163ffffffff1685604001516103f39190610b4f565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815263ffffffff92909216600483015267ffffffffffffffff166024820152604401602060405180830381600087803b15801561045957600080fd5b505af115801561046d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610491919061098b565b506040517f089eb9250000000000000000000000000000000000000000000000000000000081526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063089eb925906104f7908590600401610a90565b602060405180830381600087803b15801561051157600080fd5b505af1158015610525573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105499190610a73565b5060208201516040517f0348b07600000000000000000000000000000000000000000000000000000000815263ffffffff9091166004820152602481018290527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690630348b07690604401600060405180830381600087803b1580156105d757600080fd5b505af11580156105eb573d6000803e3d6000fd5b50505050816020015163ffffffff167f4f6e50730fff1d693de88b3bd047b65c8fb3f1223d553f8c6f528050e88f1ad6838360405161062b929190610aec565b60405180910390a25050565b60003361064c6000546001600160a01b031690565b6001600160a01b0316146106a25760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610240565b6106ab8261084c565b90505b919050565b336106c66000546001600160a01b031690565b6001600160a01b03161461071c5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610240565b6001600160a01b0381166107985760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610240565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6002546000906001600160a01b039081169083168114156108d55760405162461bcd60e51b815260206004820152602360248201527f4d616e61676561626c652f6578697374696e672d6d616e616765722d6164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610240565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385811691821790925560405190918316907f9cb45c728de594dab506a1f1a8554e24c8eeaf983618d5ec5dd7bc6f3c49feee90600090a350600192915050565b80356106ae81610ba2565b803567ffffffffffffffff811681146106ae57600080fd5b60006020828403121561096d57600080fd5b81356001600160a01b038116811461098457600080fd5b9392505050565b60006020828403121561099d57600080fd5b8151801515811461098457600080fd5b60008082840360c08112156109c157600080fd5b60a08112156109cf57600080fd5b5060405160a0810181811067ffffffffffffffff82111715610a1a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405283358152610a2d60208501610938565b6020820152610a3e60408501610943565b6040820152610a4f60608501610943565b6060820152610a6060808501610938565b60808201529460a0939093013593505050565b600060208284031215610a8557600080fd5b815161098481610ba2565b60a08101610ae6828480518252602081015163ffffffff80821660208501526040830151915067ffffffffffffffff80831660408601528060608501511660608601525080608084015116608085015250505050565b92915050565b60c08101610b42828580518252602081015163ffffffff80821660208501526040830151915067ffffffffffffffff80831660408601528060608501511660608601525080608084015116608085015250505050565b8260a08301529392505050565b600067ffffffffffffffff808316818516808303821115610b99577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b01949350505050565b63ffffffff81168114610bb457600080fd5b5056fea2646970667358221220215c08dd0d5d74a9f82cc4bf33256572b96b4ceda15b3d1576401ba12dfd854964736f6c63430008060033",
              "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 0x21 0x5C ADDMOD 0xDD 0xD 0x5D PUSH21 0xA9F82CC4BF33256572B96B4CEDA15B3D1576401BA1 0x2D REVERT DUP6 0x49 PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "878:1792:73:-:0;;;1690:402;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1877:6;1648:24:33;1877:6:73;1648:9:33;:24::i;:::-;-1:-1:-1;;;;;;;1895:24:73::1;::::0;;;;;::::1;::::0;1929:52;;;;;::::1;::::0;1991:20;;;;::::1;::::0;2026:59:::1;::::0;-1:-1:-1;;;;;1991:20:73;;::::1;::::0;1929:52;;::::1;::::0;1895:24;::::1;::::0;2026:59:::1;::::0;;;::::1;1690:402:::0;;;;878:1792;;3470:174:33;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:33;;;-1:-1:-1;;;;;;3562:18:33;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;14:743:101:-;200:6;208;216;224;277:3;265:9;256:7;252:23;248:33;245:2;;;294:1;291;284:12;245:2;326:9;320:16;345:31;370:5;345:31;:::i;:::-;445:2;430:18;;424:25;395:5;;-1:-1:-1;458:33:101;424:25;458:33;:::i;:::-;562:2;547:18;;541:25;510:7;;-1:-1:-1;575:33:101;541:25;575:33;:::i;:::-;679:2;664:18;;658:25;627:7;;-1:-1:-1;692:33:101;658:25;692:33;:::i;:::-;235:522;;;;-1:-1:-1;235:522:101;;-1:-1:-1;;235:522:101:o;762:131::-;-1:-1:-1;;;;;837:31:101;;827:42;;817:2;;883:1;880;873:12;817:2;807:86;:::o;:::-;878:1792:73;;;;;;;;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@_setManager_5165": {
                  "entryPoint": 2124,
                  "id": 5165,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_setOwner_5327": {
                  "entryPoint": 2031,
                  "id": 5327,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@claimOwnership_5307": {
                  "entryPoint": 490,
                  "id": 5307,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@drawBuffer_15797": {
                  "entryPoint": null,
                  "id": 15797,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@manager_5119": {
                  "entryPoint": null,
                  "id": 5119,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@owner_5239": {
                  "entryPoint": null,
                  "id": 5239,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@pendingOwner_5248": {
                  "entryPoint": null,
                  "id": 5248,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@prizeDistributionFactory_15801": {
                  "entryPoint": null,
                  "id": 15801,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@push_15888": {
                  "entryPoint": 754,
                  "id": 15888,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@renounceOwnership_5262": {
                  "entryPoint": 637,
                  "id": 5262,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@setManager_5134": {
                  "entryPoint": 1591,
                  "id": 5134,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@timelock_15805": {
                  "entryPoint": null,
                  "id": 15805,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@transferOwnership_5289": {
                  "entryPoint": 1715,
                  "id": 5289,
                  "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_$10697_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_$10930__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_IDrawCalculatorTimelock_$15999__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_IPrizeDistributionFactory_$16009__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_$10697_memory_ptr__to_t_struct$_Draw_$10697_memory_ptr__fromStack_reversed": {
                  "entryPoint": 2704,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_struct$_Draw_$10697_memory_ptr_t_uint256__to_t_struct$_Draw_$10697_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:7474:101",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:101",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "62:84:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "72:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "94:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "81:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "81:20:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "72:5:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "134:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "110:23:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "110:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "110:30:101"
                            }
                          ]
                        },
                        "name": "abi_decode_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "41:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "52:5:101",
                            "type": ""
                          }
                        ],
                        "src": "14:132:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "199:123:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "209:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "231:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "218:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "218:20:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value",
                                  "nodeType": "YulIdentifier",
                                  "src": "209:5:101"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "300:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "309:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "312:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "302:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "302:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "302:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "260:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "271:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "278:18:101",
                                            "type": "",
                                            "value": "0xffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "267:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "267:30:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "257:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "257:41:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "250:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "250:49:101"
                              },
                              "nodeType": "YulIf",
                              "src": "247:2:101"
                            }
                          ]
                        },
                        "name": "abi_decode_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "178:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "189:5:101",
                            "type": ""
                          }
                        ],
                        "src": "151:171:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "397:239:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "443:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "452:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "455:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "445:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "445:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "445:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "418:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "427:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "414:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "414:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "439:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "410:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "410:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "407:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "468:36:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "494:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "481:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "481:23:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "472:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "590:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "599:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "602:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "592:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "592:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "592:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "526:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "537:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "544:42:101",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "533:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "533:54:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "523:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "523:65:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "516:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "516:73:101"
                              },
                              "nodeType": "YulIf",
                              "src": "513:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "615:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "625:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "615:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "363:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "374:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "386:6:101",
                            "type": ""
                          }
                        ],
                        "src": "327:309:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "719:199:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "765:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "774:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "777:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "767:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "767:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "767:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "740:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "749:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "736:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "736:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "761:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "732:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "732:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "729:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "790:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "809:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "803:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "803:16:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "794:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "872:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "881:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "884:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "874:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "874:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "874:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "841:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "862:5:101"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "iszero",
                                              "nodeType": "YulIdentifier",
                                              "src": "855:6:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "855:13:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "848:6:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "848:21:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "838:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "838:32:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "831:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "831:40:101"
                              },
                              "nodeType": "YulIf",
                              "src": "828:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "897:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "907:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "897:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_bool_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "685:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "696:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "708:6:101",
                            "type": ""
                          }
                        ],
                        "src": "641:277:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1033:902:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1043:33:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1057:7:101"
                                  },
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1066:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "1053:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1053:23:101"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1047:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1101:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1110:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1113:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1103:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1103:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1103:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1092:2:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1096:3:101",
                                    "type": "",
                                    "value": "192"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1088:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1088:12:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1085:2:101"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1143:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1152:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1155:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1145:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1145:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1145:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1133:2:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1137:4:101",
                                    "type": "",
                                    "value": "0xa0"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1129:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1129:13:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1126:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1168:23:101",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1188:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1182:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1182:9:101"
                              },
                              "variables": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "1172:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1200:35:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "1222:6:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1230:4:101",
                                    "type": "",
                                    "value": "0xa0"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1218:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1218:17:101"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "1204:10:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1318:168:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1339:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1342:77:101",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1332:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1332:88:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1332:88:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1440:1:101",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1443:4:101",
                                          "type": "",
                                          "value": "0x41"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "1433:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1433:15:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1433:15:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1468:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1471:4:101",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1461:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1461:15:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1461:15:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1253:10:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1265:18:101",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1250:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1250:34:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1289:10:101"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1301:6:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "1286:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1286:22:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "1247:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1247:62:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1244:2:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1502:2:101",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "1506:10:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1495:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1495:22:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1495:22:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "1533:6:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1554:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "calldataload",
                                      "nodeType": "YulIdentifier",
                                      "src": "1541:12:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1541:23:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1526:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1526:39:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1526:39:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1585:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1593:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1581:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1581:15:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "1620:9:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1631:2:101",
                                            "type": "",
                                            "value": "32"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1616:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1616:18:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "1598:17:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1598:37:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1574:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1574:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1574:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1656:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1664:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1652:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1652:15:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "1691:9:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1702:2:101",
                                            "type": "",
                                            "value": "64"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1687:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1687:18:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint64",
                                      "nodeType": "YulIdentifier",
                                      "src": "1669:17:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1669:37:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1645:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1645:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1645:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1727:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1735:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1723:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1723:15:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "1762:9:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1773:2:101",
                                            "type": "",
                                            "value": "96"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1758:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1758:18:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint64",
                                      "nodeType": "YulIdentifier",
                                      "src": "1740:17:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1740:37:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1716:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1716:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1716:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1798:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1806:3:101",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1794:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1794:16:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "headStart",
                                            "nodeType": "YulIdentifier",
                                            "src": "1834:9:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1845:3:101",
                                            "type": "",
                                            "value": "128"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "1830:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1830:19:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "abi_decode_uint32",
                                      "nodeType": "YulIdentifier",
                                      "src": "1812:17:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1812:38:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1787:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1787:64:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1787:64:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1860:16:101",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "1870:6:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1860:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1885:44:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1912:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1923:4:101",
                                        "type": "",
                                        "value": "0xa0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1908:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1908:20:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1895:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1895:34:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1885:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_struct$_Draw_$10697_memory_ptrt_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "991:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1002:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1014:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1022:6:101",
                            "type": ""
                          }
                        ],
                        "src": "923:1012:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2020:169:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2066:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2075:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2078:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2068:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2068:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2068:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2041:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2050:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2037:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2037:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2062:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2033:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2033:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2030:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2091:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2110:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2104:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2104:16:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2095:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "2153:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint32",
                                  "nodeType": "YulIdentifier",
                                  "src": "2129:23:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2129:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2129:30:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2168:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2178:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2168:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint32_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1986:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1997:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2009:6:101",
                            "type": ""
                          }
                        ],
                        "src": "1940:249:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2242:453:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "2259:3:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2270:5:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "mload",
                                      "nodeType": "YulIdentifier",
                                      "src": "2264:5:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2264:12:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2252:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2252:25:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2252:25:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2286:43:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2316:5:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2323:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2312:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2312:16:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2306:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2306:23:101"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0",
                                  "nodeType": "YulTypedName",
                                  "src": "2290:12:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2338:20:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "2348:10:101",
                                "type": "",
                                "value": "0xffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2342:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "2378:3:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2383:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2374:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2374:14:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "memberValue0",
                                        "nodeType": "YulIdentifier",
                                        "src": "2394:12:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "2408:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2390:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2390:21:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2367:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2367:45:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2367:45:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2421:45:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "2453:5:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2460:4:101",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2449:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2449:16:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2443:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2443:23:101"
                              },
                              "variables": [
                                {
                                  "name": "memberValue0_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2425:14:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2475:28:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "2485:18:101",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "2479:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "2523:3:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2528:4:101",
                                        "type": "",
                                        "value": "0x40"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2519:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2519:14:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "memberValue0_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "2539:14:101"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "2555:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2535:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2535:23:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2512:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2512:47:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2512:47:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "2579:3:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2584:4:101",
                                        "type": "",
                                        "value": "0x60"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2575:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2575:14:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "2605:5:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "2612:4:101",
                                                "type": "",
                                                "value": "0x60"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "2601:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "2601:16:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "2595:5:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2595:23:101"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "2620:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2591:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2591:32:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2568:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2568:56:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2568:56:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "2644:3:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2649:4:101",
                                        "type": "",
                                        "value": "0x80"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2640:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2640:14:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "2670:5:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "2677:4:101",
                                                "type": "",
                                                "value": "0x80"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "2666:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "2666:16:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "2660:5:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2660:23:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "2685:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2656:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2656:32:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2633:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2633:56:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2633:56:101"
                            }
                          ]
                        },
                        "name": "abi_encode_struct_Draw",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "2226:5:101",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "2233:3:101",
                            "type": ""
                          }
                        ],
                        "src": "2194:501:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2801:125:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2811:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2823:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2834:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2819:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2819:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2811:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2853:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "2868:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2876:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2864:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2864:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2846:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2846:74:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2846:74:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2770:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2781:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2792:4:101",
                            "type": ""
                          }
                        ],
                        "src": "2700:226:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3026:92:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3036:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3048:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3059:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3044:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3044:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3036:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3078:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "3103:6:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "3096:6:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3096:14:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "3089:6:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3089:22:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3071:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3071:41:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3071:41:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2995:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3006:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3017:4:101",
                            "type": ""
                          }
                        ],
                        "src": "2931:187:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3245:125:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3255:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3267:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3278:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3263:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3263:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3255:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3297:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "3312:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3320:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3308:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3308:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3290:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3290:74:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3290:74:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IDrawBuffer_$10930__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3214:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3225:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3236:4:101",
                            "type": ""
                          }
                        ],
                        "src": "3123:247:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3509:125:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3519:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3531:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3542:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3527:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3527:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3519:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3561:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "3576:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3584:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3572:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3572:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3554:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3554:74:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3554:74:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IDrawCalculatorTimelock_$15999__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3478:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3489:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3500:4:101",
                            "type": ""
                          }
                        ],
                        "src": "3375:259:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3775:125:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3785:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3797:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3808:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3793:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3793:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3785:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3827:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "3842:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3850:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3838:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3838:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3820:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3820:74:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3820:74:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_IPrizeDistributionFactory_$16009__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3744:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3755:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3766:4:101",
                            "type": ""
                          }
                        ],
                        "src": "3639:261:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4079:225:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4096:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4107:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4089:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4089:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4089:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4130:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4141:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4126:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4126:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4146:2:101",
                                    "type": "",
                                    "value": "35"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4119:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4119:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4119:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4169:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4180:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4165:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4165:18:101"
                                  },
                                  {
                                    "hexValue": "4d616e61676561626c652f6578697374696e672d6d616e616765722d61646472",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4185:34:101",
                                    "type": "",
                                    "value": "Manageable/existing-manager-addr"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4158:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4158:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4158:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4240:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4251:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4236:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4236:18:101"
                                  },
                                  {
                                    "hexValue": "657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4256:5:101",
                                    "type": "",
                                    "value": "ess"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4229:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4229:33:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4229:33:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4271:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4283:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4294:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4279:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4279:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4271:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_3cbc03e3914a0081c93ea5c7776677a5b07ed7c2177d6e43080051665fbe3c32__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4056:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4070:4:101",
                            "type": ""
                          }
                        ],
                        "src": "3905:399:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4483:174:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4500:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4511:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4493:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4493:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4493:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4534:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4545:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4530:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4530:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4550:2:101",
                                    "type": "",
                                    "value": "24"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4523:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4523:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4523:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4573:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4584:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4569:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4569:18:101"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4589:26:101",
                                    "type": "",
                                    "value": "Ownable/caller-not-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4562:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4562:54:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4562:54:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4625:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4637:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4648:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4633:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4633:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4625:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_6259bae2cd4d4b7155825ca0e389cce7ae3b9d5755936ee9e9f0716cb4a53c14__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4460:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4474:4:101",
                            "type": ""
                          }
                        ],
                        "src": "4309:348:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4836:181:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4853:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4864:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4846:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4846:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4846:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4887:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4898:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4883:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4883:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4903:2:101",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4876:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4876:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4876:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4926:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4937:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4922:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4922:18:101"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "4942:33:101",
                                    "type": "",
                                    "value": "Ownable/caller-not-pendingOwner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4915:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4915:61:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4915:61:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4985:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4997:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5008:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4993:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4993:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "4985:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7e026d8e1ad74c31a9e00ff7205c7e2276dd18eb568da1e85362be847b291396__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "4813:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "4827:4:101",
                            "type": ""
                          }
                        ],
                        "src": "4662:355:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5196:228:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5213:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5224:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5206:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5206:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5206:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5247:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5258:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5243:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5243:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5263:2:101",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5236:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5236:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5236:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5286:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5297:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5282:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5282:18:101"
                                  },
                                  {
                                    "hexValue": "4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f72",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5302:34:101",
                                    "type": "",
                                    "value": "Manageable/caller-not-manager-or"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5275:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5275:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5275:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5357:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5368:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5353:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5353:18:101"
                                  },
                                  {
                                    "hexValue": "2d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5373:8:101",
                                    "type": "",
                                    "value": "-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5346:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5346:36:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5346:36:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5391:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5403:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5414:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5399:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5399:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5391:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c25f436e50ad2d737f10dab2fa2829031baa8fda09bb2aa4d73174ba3f43c308__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5173:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5187:4:101",
                            "type": ""
                          }
                        ],
                        "src": "5022:402:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5603:227:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5620:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5631:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5613:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5613:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5613:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5654:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5665:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5650:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5650:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5670:2:101",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5643:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5643:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5643:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5693:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5704:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5689:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5689:18:101"
                                  },
                                  {
                                    "hexValue": "4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d6164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5709:34:101",
                                    "type": "",
                                    "value": "Ownable/pendingOwner-not-zero-ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5682:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5682:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5682:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5764:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5775:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5760:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5760:18:101"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "5780:7:101",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5753:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5753:35:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5753:35:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5797:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5809:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5820:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5805:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5805:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5797:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_d11faa7d97b6f9e5ca77f636d34785e92a5368115c8dbac7f197028e6341c6a4__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5580:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5594:4:101",
                            "type": ""
                          }
                        ],
                        "src": "5429:401:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5982:93:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "5992:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6004:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6015:3:101",
                                    "type": "",
                                    "value": "160"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6000:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6000:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "5992:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "6051:6:101"
                                  },
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6059:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_struct_Draw",
                                  "nodeType": "YulIdentifier",
                                  "src": "6028:22:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6028:41:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6028:41:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_struct$_Draw_$10697_memory_ptr__to_t_struct$_Draw_$10697_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5951:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5962:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "5973:4:101",
                            "type": ""
                          }
                        ],
                        "src": "5835:240:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6255:137:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "6265:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6277:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6288:3:101",
                                    "type": "",
                                    "value": "192"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6273:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6273:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6265:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "6324:6:101"
                                  },
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6332:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_struct_Draw",
                                  "nodeType": "YulIdentifier",
                                  "src": "6301:22:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6301:41:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6301:41:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6362:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6373:3:101",
                                        "type": "",
                                        "value": "160"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6358:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6358:19:101"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6379:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6351:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6351:35:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6351:35:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_struct$_Draw_$10697_memory_ptr_t_uint256__to_t_struct$_Draw_$10697_memory_ptr_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6216:9:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "6227:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6235:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6246:4:101",
                            "type": ""
                          }
                        ],
                        "src": "6080:312:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6524:136:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "6534:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6546:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6557:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6542:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6542:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6534:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6576:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "6591:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6599:10:101",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6587:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6587:23:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6569:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6569:42:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6569:42:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6631:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6642:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6627:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6627:18:101"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6647:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6620:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6620:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6620:34:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint32_t_uint256__to_t_uint32_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6485:9:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "6496:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6504:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6515:4:101",
                            "type": ""
                          }
                        ],
                        "src": "6397:263:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6790:161:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "6800:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6812:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6823:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6808:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6808:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "6800:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6842:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "6857:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6865:10:101",
                                        "type": "",
                                        "value": "0xffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6853:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6853:23:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6835:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6835:42:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6835:42:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6897:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6908:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6893:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6893:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6917:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6925:18:101",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "6913:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6913:31:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6886:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6886:59:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6886:59:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint32_t_uint64__to_t_uint32_t_uint64__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6751:9:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "6762:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6770:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "6781:4:101",
                            "type": ""
                          }
                        ],
                        "src": "6665:286:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7003:343:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7013:28:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "7023:18:101",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7017:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7050:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "7065:1:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7068:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "7061:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7061:10:101"
                              },
                              "variables": [
                                {
                                  "name": "x_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7054:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7080:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "7095:1:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7098:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "7091:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7091:10:101"
                              },
                              "variables": [
                                {
                                  "name": "y_1",
                                  "nodeType": "YulTypedName",
                                  "src": "7084:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7143:168:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7164:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7167:77:101",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "7157:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7157:88:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7157:88:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7265:1:101",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7268:4:101",
                                          "type": "",
                                          "value": "0x11"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "7258:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7258:15:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7258:15:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7293:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7296:4:101",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "7286:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7286:15:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7286:15:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7116:3:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "7125:2:101"
                                      },
                                      {
                                        "name": "y_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "7129:3:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "7121:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7121:12:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "7113:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7113:21:101"
                              },
                              "nodeType": "YulIf",
                              "src": "7110:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7320:20:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7331:3:101"
                                  },
                                  {
                                    "name": "y_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "7336:3:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "7327:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7327:13:101"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "7320:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint64",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "6986:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "6989:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "6995:3:101",
                            "type": ""
                          }
                        ],
                        "src": "6956:390:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7395:77:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7450:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7459:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7462:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "7452:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7452:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7452:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "7418:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "7429:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "7436:10:101",
                                            "type": "",
                                            "value": "0xffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "7425:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "7425:22:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "7415:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7415:33:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "7408:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7408:41:101"
                              },
                              "nodeType": "YulIf",
                              "src": "7405:2:101"
                            }
                          ]
                        },
                        "name": "validator_revert_uint32",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "7384:5:101",
                            "type": ""
                          }
                        ],
                        "src": "7351:121:101"
                      }
                    ]
                  },
                  "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_$10697_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_$10930__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_$15999__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_$16009__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_$10697_memory_ptr__to_t_struct$_Draw_$10697_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_$10697_memory_ptr_t_uint256__to_t_struct$_Draw_$10697_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": 101,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {
                "15797": [
                  {
                    "length": 32,
                    "start": 346
                  },
                  {
                    "length": 32,
                    "start": 1218
                  }
                ],
                "15801": [
                  {
                    "length": 32,
                    "start": 271
                  },
                  {
                    "length": 32,
                    "start": 1419
                  }
                ],
                "15805": [
                  {
                    "length": 32,
                    "start": 420
                  },
                  {
                    "length": 32,
                    "start": 935
                  }
                ]
              },
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106100c95760003560e01c8063a913c9da11610081578063d33219b41161005b578063d33219b41461019f578063e30c3978146101c6578063f2fde38b146101d757600080fd5b8063a913c9da14610142578063ce343bb614610155578063d0ebdbe71461017c57600080fd5b8063715018a6116100b2578063715018a61461010257806378e072a91461010a5780638da5cb5b1461013157600080fd5b8063481c6a75146100ce5780634e71e0c8146100f8575b600080fd5b6002546001600160a01b03165b6040516001600160a01b0390911681526020015b60405180910390f35b6101006101ea565b005b61010061027d565b6100db7f000000000000000000000000000000000000000000000000000000000000000081565b6000546001600160a01b03166100db565b6101006101503660046109ad565b6102f2565b6100db7f000000000000000000000000000000000000000000000000000000000000000081565b61018f61018a36600461095b565b610637565b60405190151581526020016100ef565b6100db7f000000000000000000000000000000000000000000000000000000000000000081565b6001546001600160a01b03166100db565b6101006101e536600461095b565b6106b3565b6001546001600160a01b031633146102495760405162461bcd60e51b815260206004820152601f60248201527f4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e65720060448201526064015b60405180910390fd5b60015461025e906001600160a01b03166107ef565b6001805473ffffffffffffffffffffffffffffffffffffffff19169055565b336102906000546001600160a01b031690565b6001600160a01b0316146102e65760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610240565b6102f060006107ef565b565b336103056002546001600160a01b031690565b6001600160a01b031614806103335750336103286000546001600160a01b031690565b6001600160a01b0316145b6103a55760405162461bcd60e51b815260206004820152602660248201527f4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f7260448201527f2d6f776e657200000000000000000000000000000000000000000000000000006064820152608401610240565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316638871189b8360200151846080015163ffffffff1685604001516103f39190610b4f565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815263ffffffff92909216600483015267ffffffffffffffff166024820152604401602060405180830381600087803b15801561045957600080fd5b505af115801561046d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610491919061098b565b506040517f089eb9250000000000000000000000000000000000000000000000000000000081526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063089eb925906104f7908590600401610a90565b602060405180830381600087803b15801561051157600080fd5b505af1158015610525573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105499190610a73565b5060208201516040517f0348b07600000000000000000000000000000000000000000000000000000000815263ffffffff9091166004820152602481018290527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690630348b07690604401600060405180830381600087803b1580156105d757600080fd5b505af11580156105eb573d6000803e3d6000fd5b50505050816020015163ffffffff167f4f6e50730fff1d693de88b3bd047b65c8fb3f1223d553f8c6f528050e88f1ad6838360405161062b929190610aec565b60405180910390a25050565b60003361064c6000546001600160a01b031690565b6001600160a01b0316146106a25760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610240565b6106ab8261084c565b90505b919050565b336106c66000546001600160a01b031690565b6001600160a01b03161461071c5760405162461bcd60e51b815260206004820152601860248201527f4f776e61626c652f63616c6c65722d6e6f742d6f776e657200000000000000006044820152606401610240565b6001600160a01b0381166107985760405162461bcd60e51b815260206004820152602560248201527f4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610240565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040517f239a2ddded15777fa246aed5f7e1a9bc69a39d4eb4a397034d1d85766cca7d4c90600090a250565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6002546000906001600160a01b039081169083168114156108d55760405162461bcd60e51b815260206004820152602360248201527f4d616e61676561626c652f6578697374696e672d6d616e616765722d6164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610240565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385811691821790925560405190918316907f9cb45c728de594dab506a1f1a8554e24c8eeaf983618d5ec5dd7bc6f3c49feee90600090a350600192915050565b80356106ae81610ba2565b803567ffffffffffffffff811681146106ae57600080fd5b60006020828403121561096d57600080fd5b81356001600160a01b038116811461098457600080fd5b9392505050565b60006020828403121561099d57600080fd5b8151801515811461098457600080fd5b60008082840360c08112156109c157600080fd5b60a08112156109cf57600080fd5b5060405160a0810181811067ffffffffffffffff82111715610a1a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405283358152610a2d60208501610938565b6020820152610a3e60408501610943565b6040820152610a4f60608501610943565b6060820152610a6060808501610938565b60808201529460a0939093013593505050565b600060208284031215610a8557600080fd5b815161098481610ba2565b60a08101610ae6828480518252602081015163ffffffff80821660208501526040830151915067ffffffffffffffff80831660408601528060608501511660608601525080608084015116608085015250505050565b92915050565b60c08101610b42828580518252602081015163ffffffff80821660208501526040830151915067ffffffffffffffff80831660408601528060608501511660608601525080608084015116608085015250505050565b8260a08301529392505050565b600067ffffffffffffffff808316818516808303821115610b99577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b01949350505050565b63ffffffff81168114610bb457600080fd5b5056fea2646970667358221220215c08dd0d5d74a9f82cc4bf33256572b96b4ceda15b3d1576401ba12dfd854964736f6c63430008060033",
              "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 0x21 0x5C ADDMOD 0xDD 0xD 0x5D PUSH21 0xA9F82CC4BF33256572B96B4CEDA15B3D1576401BA1 0x2D REVERT DUP6 0x49 PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "878:1792:73:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1403:89:32;1477:8;;-1:-1:-1;;;;;1477:8:32;1403:89;;;-1:-1:-1;;;;;2864:55:101;;;2846:74;;2834:2;2819:18;1403:89:32;;;;;;;;3147:129:33;;;:::i;:::-;;2508:94;;;:::i;1167:67:73:-;;;;;1814:85:33;1860:7;1886:6;-1:-1:-1;;;;;1886:6:33;1814:85;;2143:525:73;;;;;;:::i;:::-;;:::i;1060:39::-;;;;;1744:123:32;;;;;;:::i;:::-;;:::i;:::-;;;3096:14:101;;3089:22;3071:41;;3059:2;3044:18;1744:123:32;3026:92:101;1284:49:73;;;;;2014:101:33;2095:13;;-1:-1:-1;;;;;2095:13:33;2014:101;;2751:234;;;;;;:::i;:::-;;:::i;3147:129::-;4050:13;;-1:-1:-1;;;;;4050:13:33;4036:10;:27;4028:71;;;;-1:-1:-1;;;4028:71:33;;4864:2:101;4028:71:33;;;4846:21:101;4903:2;4883:18;;;4876:30;4942:33;4922:18;;;4915:61;4993:18;;4028:71:33;;;;;;;;;3219:13:::1;::::0;3209:24:::1;::::0;-1:-1:-1;;;;;3219:13:33::1;3209:9;:24::i;:::-;3243:13;:26:::0;;-1:-1:-1;;3243:26:33::1;::::0;;3147:129::o;2508:94::-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:33;;3819:58;;;;-1:-1:-1;;;3819:58:33;;4511:2:101;3819:58:33;;;4493:21:101;4550:2;4530:18;;;4523:30;4589:26;4569:18;;;4562:54;4633:18;;3819:58:33;4483:174:101;3819:58:33;2574:21:::1;2592:1;2574:9;:21::i;:::-;2508:94::o:0;2143:525:73:-;2861:10:32;2848:9;1477:8;;-1:-1:-1;;;;;1477:8:32;;1403:89;2848:9;-1:-1:-1;;;;;2848:23:32;;:48;;;-1:-1:-1;2886:10:32;2875:7;1860::33;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;2875:7:32;-1:-1:-1;;;;;2875:21:32;;2848:48;2840:99;;;;-1:-1:-1;;;2840:99:32;;5224:2:101;2840:99:32;;;5206:21:101;5263:2;5243:18;;;5236:30;5302:34;5282:18;;;5275:62;5373:8;5353:18;;;5346:36;5399:19;;2840:99:32;5196:228:101;2840:99:32;2298:8:73::1;-1:-1:-1::0;;;;;2298:13:73::1;;2312:5;:12;;;2344:5;:25;;;2326:43;;:5;:15;;;:43;;;;:::i;:::-;2298:72;::::0;;::::1;::::0;;;;;;::::1;6853:23:101::0;;;;2298:72:73::1;::::0;::::1;6835:42:101::0;6925:18;6913:31;6893:18;;;6886:59;6808:18;;2298:72:73::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;2380:26:73::1;::::0;;;;-1:-1:-1;;;;;2380:10:73::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:73::1;::::0;::::1;::::0;2416:87:::1;::::0;;;;6599:10:101;6587:23;;;2416:87:73::1;::::0;::::1;6569:42:101::0;6627:18;;;6620:34;;;2416:24:73::1;-1:-1:-1::0;;;;;2416:46:73::1;::::0;::::1;::::0;6542:18:101;;2416:87:73::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;2581:5;:12;;;2518:143;;;2607:5;2626:25;2518:143;;;;;;;:::i;:::-;;;;;;;;2143:525:::0;;:::o;1744:123:32:-;1813:4;3838:10:33;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:33;;3819:58;;;;-1:-1:-1;;;3819:58:33;;4511:2:101;3819:58:33;;;4493:21:101;4550:2;4530:18;;;4523:30;4589:26;4569:18;;;4562:54;4633:18;;3819:58:33;4483:174:101;3819:58:33;1836:24:32::1;1848:11;1836;:24::i;:::-;1829:31;;3887:1:33;1744:123:32::0;;;:::o;2751:234:33:-;3838:10;3827:7;1860;1886:6;-1:-1:-1;;;;;1886:6:33;;1814:85;3827:7;-1:-1:-1;;;;;3827:21:33;;3819:58;;;;-1:-1:-1;;;3819:58:33;;4511:2:101;3819:58:33;;;4493:21:101;4550:2;4530:18;;;4523:30;4589:26;4569:18;;;4562:54;4633:18;;3819:58:33;4483:174:101;3819:58:33;-1:-1:-1;;;;;2834:23:33;::::1;2826:73;;;::::0;-1:-1:-1;;;2826:73:33;;5631:2:101;2826:73:33::1;::::0;::::1;5613:21:101::0;5670:2;5650:18;;;5643:30;5709:34;5689:18;;;5682:62;5780:7;5760:18;;;5753:35;5805:19;;2826:73:33::1;5603:227:101::0;2826:73:33::1;2910:13;:25:::0;;-1:-1:-1;;2910:25:33::1;-1:-1:-1::0;;;;;2910:25:33;::::1;::::0;;::::1;::::0;;;2951:27:::1;::::0;::::1;::::0;-1:-1:-1;;2951:27:33::1;2751:234:::0;:::o;3470:174::-;3526:17;3546:6;;-1:-1:-1;;;;;3562:18:33;;;-1:-1:-1;;3562:18:33;;;;;;3595:42;;3546:6;;;;;;;3595:42;;3526:17;3595:42;3516:128;3470:174;:::o;2109:326:32:-;2211:8;;2168:4;;-1:-1:-1;;;;;2211:8:32;;;;2238:31;;;;;2230:79;;;;-1:-1:-1;;;2230:79:32;;4107:2:101;2230:79:32;;;4089:21:101;4146:2;4126:18;;;4119:30;4185:34;4165:18;;;4158:62;4256:5;4236:18;;;4229:33;4279:19;;2230:79:32;4079:225:101;2230:79:32;2320:8;:22;;-1:-1:-1;;2320:22:32;-1:-1:-1;;;;;2320:22:32;;;;;;;;;2358:49;;2320:22;;2358:49;;;;;-1:-1:-1;;2358:49:32;-1:-1:-1;2424:4:32;;2109:326;-1:-1:-1;;2109:326:32:o;14:132:101:-;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:101;533:54;526:5;523:65;513:2;;602:1;599;592:12;513:2;625:5;397:239;-1:-1:-1;;;397:239:101: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:1012;1014:6;1022;1066:9;1057:7;1053:23;1096:3;1092:2;1088:12;1085:2;;;1113:1;1110;1103:12;1085:2;1137:4;1133:2;1129:13;1126:2;;;1155:1;1152;1145:12;1126:2;;1188;1182:9;1230:4;1222:6;1218:17;1301:6;1289:10;1286:22;1265:18;1253:10;1250:34;1247:62;1244:2;;;1342:77;1339:1;1332:88;1443:4;1440:1;1433:15;1471:4;1468:1;1461:15;1244:2;1502;1495:22;1541:23;;1526:39;;1598:37;1631:2;1616:18;;1598:37;:::i;:::-;1593:2;1585:6;1581:15;1574:62;1669:37;1702:2;1691:9;1687:18;1669:37;:::i;:::-;1664:2;1656:6;1652:15;1645:62;1740:37;1773:2;1762:9;1758:18;1740:37;:::i;:::-;1735:2;1727:6;1723:15;1716:62;1812:38;1845:3;1834:9;1830:19;1812:38;:::i;:::-;1806:3;1794:16;;1787:64;1798:6;1923:4;1908:20;;;;1895:34;;-1:-1:-1;;;1033:902:101:o;1940:249::-;2009:6;2062:2;2050:9;2041:7;2037:23;2033:32;2030:2;;;2078:1;2075;2068:12;2030:2;2110:9;2104:16;2129:30;2153:5;2129:30;:::i;5835:240::-;6015:3;6000:19;;6028:41;6004:9;6051:6;2270:5;2264:12;2259:3;2252:25;2323:4;2316:5;2312:16;2306:23;2348:10;2408:2;2394:12;2390:21;2383:4;2378:3;2374:14;2367:45;2460:4;2453:5;2449:16;2443:23;2421:45;;2485:18;2555:2;2539:14;2535:23;2528:4;2523:3;2519:14;2512:47;2620:2;2612:4;2605:5;2601:16;2595:23;2591:32;2584:4;2579:3;2575:14;2568:56;;2685:2;2677:4;2670:5;2666:16;2660:23;2656:32;2649:4;2644:3;2640:14;2633:56;;;2242:453;;;6028:41;5982:93;;;;:::o;6080:312::-;6288:3;6273:19;;6301:41;6277:9;6324:6;2270:5;2264:12;2259:3;2252:25;2323:4;2316:5;2312:16;2306:23;2348:10;2408:2;2394:12;2390:21;2383:4;2378:3;2374:14;2367:45;2460:4;2453:5;2449:16;2443:23;2421:45;;2485:18;2555:2;2539:14;2535:23;2528:4;2523:3;2519:14;2512:47;2620:2;2612:4;2605:5;2601:16;2595:23;2591:32;2584:4;2579:3;2575:14;2568:56;;2685:2;2677:4;2670:5;2666:16;2660:23;2656:32;2649:4;2644:3;2640:14;2633:56;;;2242:453;;;6301:41;6379:6;6373:3;6362:9;6358:19;6351:35;6255:137;;;;;:::o;6956:390::-;6995:3;7023:18;7068:2;7065:1;7061:10;7098:2;7095:1;7091:10;7129:3;7125:2;7121:12;7116:3;7113:21;7110:2;;;7167:77;7164:1;7157:88;7268:4;7265:1;7258:15;7296:4;7293:1;7286:15;7110:2;7327:13;;7003:343;-1:-1:-1;;;;7003:343:101:o;7351:121::-;7436:10;7429:5;7425:22;7418:5;7415:33;7405:2;;7462:1;7459;7452:12;7405:2;7395: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.8.6;\\n\\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..)\\n */\\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   */\\n  event RandomNumberRequested(uint32 indexed requestId, address indexed sender);\\n\\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   */\\n  event RandomNumberCompleted(uint32 indexed requestId, uint256 randomNumber);\\n\\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   */\\n  function getLastRequestId() external view returns (uint32 requestId);\\n\\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   */\\n  function getRequestFee() external view returns (address feeToken, uint256 requestFee);\\n\\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.\\n   * The calling contract should \\\"lock\\\" all activity until the result is available via the `requestId`\\n   */\\n  function requestRandomNumber() external returns (uint32 requestId, uint32 lockBlock);\\n\\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   */\\n  function isRequestComplete(uint32 requestId) external view returns (bool isCompleted);\\n\\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   */\\n  function randomNumber(uint32 requestId) external returns (uint256 randomNum);\\n}\\n\",\"keccak256\":\"0x24803ae776bba768a3a3f65d3b7e5fc100c7b5881a8e5e39d6c5df2735a3b5cb\",\"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 IPrizeDistributionSource\\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\":\"0xdfcc3dc33457e44d8917f33185925eff78ea21e5018250b3accf2db8a7aa0242\",\"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 prizeDistributionBuffer variable.\\n     * @return IPrizeDistributionBuffer\\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 drawIds 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\":\"0x51b3bacbdd715929d909063e66519096c2ef858b646e80f66691d155ccc8d520\",\"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\\nimport \\\"./IPrizeDistributionSource.sol\\\";\\n\\n/** @title  IPrizeDistributionBuffer\\n * @author PoolTogether Inc Team\\n * @notice The PrizeDistributionBuffer interface.\\n */\\ninterface IPrizeDistributionBuffer is IPrizeDistributionSource {\\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 (\\n            IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution,\\n            uint32 drawId\\n        );\\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 (\\n            IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution,\\n            uint32 drawId\\n        );\\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(\\n        uint32 drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata draw\\n    ) external returns (uint32);\\n}\\n\",\"keccak256\":\"0xa66b0d958502adda03e80924381bae30802f1c8d80823a9b787b8c66f6a7d835\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionSource.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/** @title IPrizeDistributionSource\\n * @author PoolTogether Inc Team\\n * @notice The PrizeDistributionSource interface.\\n */\\ninterface IPrizeDistributionSource {\\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 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 (PrizeDistribution[] memory);\\n}\\n\",\"keccak256\":\"0x05ec47edc2684790a869a866576e7338229cc4eeafe1171bfc8cd7fa1c0cc9a0\",\"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 valid 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\":\"0x9d90a364aafbb26a680259ad470222368aabe139cd6200eeb02ec0c6b93bc317\",\"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 buffer) 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 of 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 seven year minimum,\\n                of accurate historical lookups with current estimates of 1 new block\\n                every 15 seconds - assuming each block contains 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\":\"0x446d8221329601d40464981a50a0e31f3fd48da0ebf0fea646c5a089ccfbdff4\",\"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": 5205,
                "contract": "@pooltogether/v4-timelocks/contracts/ReceiverTimelockTrigger.sol:ReceiverTimelockTrigger",
                "label": "_owner",
                "offset": 0,
                "slot": "0",
                "type": "t_address"
              },
              {
                "astId": 5207,
                "contract": "@pooltogether/v4-timelocks/contracts/ReceiverTimelockTrigger.sol:ReceiverTimelockTrigger",
                "label": "_pendingOwner",
                "offset": 0,
                "slot": "1",
                "type": "t_address"
              },
              {
                "astId": 5103,
                "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.8.6;\\n\\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..)\\n */\\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   */\\n  event RandomNumberRequested(uint32 indexed requestId, address indexed sender);\\n\\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   */\\n  event RandomNumberCompleted(uint32 indexed requestId, uint256 randomNumber);\\n\\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   */\\n  function getLastRequestId() external view returns (uint32 requestId);\\n\\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   */\\n  function getRequestFee() external view returns (address feeToken, uint256 requestFee);\\n\\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.\\n   * The calling contract should \\\"lock\\\" all activity until the result is available via the `requestId`\\n   */\\n  function requestRandomNumber() external returns (uint32 requestId, uint32 lockBlock);\\n\\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   */\\n  function isRequestComplete(uint32 requestId) external view returns (bool isCompleted);\\n\\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   */\\n  function randomNumber(uint32 requestId) external returns (uint256 randomNum);\\n}\\n\",\"keccak256\":\"0x24803ae776bba768a3a3f65d3b7e5fc100c7b5881a8e5e39d6c5df2735a3b5cb\",\"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 IPrizeDistributionSource\\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\":\"0xdfcc3dc33457e44d8917f33185925eff78ea21e5018250b3accf2db8a7aa0242\",\"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 prizeDistributionBuffer variable.\\n     * @return IPrizeDistributionBuffer\\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 drawIds 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\":\"0x51b3bacbdd715929d909063e66519096c2ef858b646e80f66691d155ccc8d520\",\"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\\nimport \\\"./IPrizeDistributionSource.sol\\\";\\n\\n/** @title  IPrizeDistributionBuffer\\n * @author PoolTogether Inc Team\\n * @notice The PrizeDistributionBuffer interface.\\n */\\ninterface IPrizeDistributionBuffer is IPrizeDistributionSource {\\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 (\\n            IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution,\\n            uint32 drawId\\n        );\\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 (\\n            IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution,\\n            uint32 drawId\\n        );\\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(\\n        uint32 drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata draw\\n    ) external returns (uint32);\\n}\\n\",\"keccak256\":\"0xa66b0d958502adda03e80924381bae30802f1c8d80823a9b787b8c66f6a7d835\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionSource.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/** @title IPrizeDistributionSource\\n * @author PoolTogether Inc Team\\n * @notice The PrizeDistributionSource interface.\\n */\\ninterface IPrizeDistributionSource {\\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 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 (PrizeDistribution[] memory);\\n}\\n\",\"keccak256\":\"0x05ec47edc2684790a869a866576e7338229cc4eeafe1171bfc8cd7fa1c0cc9a0\",\"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 valid 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\":\"0x9d90a364aafbb26a680259ad470222368aabe139cd6200eeb02ec0c6b93bc317\",\"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 buffer) 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 of 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 seven year minimum,\\n                of accurate historical lookups with current estimates of 1 new block\\n                every 15 seconds - assuming each block contains 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\":\"0x446d8221329601d40464981a50a0e31f3fd48da0ebf0fea646c5a089ccfbdff4\",\"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.8.6;\\n\\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..)\\n */\\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   */\\n  event RandomNumberRequested(uint32 indexed requestId, address indexed sender);\\n\\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   */\\n  event RandomNumberCompleted(uint32 indexed requestId, uint256 randomNumber);\\n\\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   */\\n  function getLastRequestId() external view returns (uint32 requestId);\\n\\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   */\\n  function getRequestFee() external view returns (address feeToken, uint256 requestFee);\\n\\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.\\n   * The calling contract should \\\"lock\\\" all activity until the result is available via the `requestId`\\n   */\\n  function requestRandomNumber() external returns (uint32 requestId, uint32 lockBlock);\\n\\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   */\\n  function isRequestComplete(uint32 requestId) external view returns (bool isCompleted);\\n\\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   */\\n  function randomNumber(uint32 requestId) external returns (uint256 randomNum);\\n}\\n\",\"keccak256\":\"0x24803ae776bba768a3a3f65d3b7e5fc100c7b5881a8e5e39d6c5df2735a3b5cb\",\"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 IPrizeDistributionSource\\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\":\"0xdfcc3dc33457e44d8917f33185925eff78ea21e5018250b3accf2db8a7aa0242\",\"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 prizeDistributionBuffer variable.\\n     * @return IPrizeDistributionBuffer\\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 drawIds 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\":\"0x51b3bacbdd715929d909063e66519096c2ef858b646e80f66691d155ccc8d520\",\"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\\nimport \\\"./IPrizeDistributionSource.sol\\\";\\n\\n/** @title  IPrizeDistributionBuffer\\n * @author PoolTogether Inc Team\\n * @notice The PrizeDistributionBuffer interface.\\n */\\ninterface IPrizeDistributionBuffer is IPrizeDistributionSource {\\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 (\\n            IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution,\\n            uint32 drawId\\n        );\\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 (\\n            IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution,\\n            uint32 drawId\\n        );\\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(\\n        uint32 drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata draw\\n    ) external returns (uint32);\\n}\\n\",\"keccak256\":\"0xa66b0d958502adda03e80924381bae30802f1c8d80823a9b787b8c66f6a7d835\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionSource.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/** @title IPrizeDistributionSource\\n * @author PoolTogether Inc Team\\n * @notice The PrizeDistributionSource interface.\\n */\\ninterface IPrizeDistributionSource {\\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 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 (PrizeDistribution[] memory);\\n}\\n\",\"keccak256\":\"0x05ec47edc2684790a869a866576e7338229cc4eeafe1171bfc8cd7fa1c0cc9a0\",\"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 valid 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\":\"0x9d90a364aafbb26a680259ad470222368aabe139cd6200eeb02ec0c6b93bc317\",\"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 buffer) 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 of 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 seven year minimum,\\n                of accurate historical lookups with current estimates of 1 new block\\n                every 15 seconds - assuming each block contains 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\":\"0x446d8221329601d40464981a50a0e31f3fd48da0ebf0fea646c5a089ccfbdff4\",\"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.8.6;\\n\\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..)\\n */\\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   */\\n  event RandomNumberRequested(uint32 indexed requestId, address indexed sender);\\n\\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   */\\n  event RandomNumberCompleted(uint32 indexed requestId, uint256 randomNumber);\\n\\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   */\\n  function getLastRequestId() external view returns (uint32 requestId);\\n\\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   */\\n  function getRequestFee() external view returns (address feeToken, uint256 requestFee);\\n\\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.\\n   * The calling contract should \\\"lock\\\" all activity until the result is available via the `requestId`\\n   */\\n  function requestRandomNumber() external returns (uint32 requestId, uint32 lockBlock);\\n\\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   */\\n  function isRequestComplete(uint32 requestId) external view returns (bool isCompleted);\\n\\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   */\\n  function randomNumber(uint32 requestId) external returns (uint256 randomNum);\\n}\\n\",\"keccak256\":\"0x24803ae776bba768a3a3f65d3b7e5fc100c7b5881a8e5e39d6c5df2735a3b5cb\",\"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 IPrizeDistributionSource\\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\":\"0xdfcc3dc33457e44d8917f33185925eff78ea21e5018250b3accf2db8a7aa0242\",\"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 prizeDistributionBuffer variable.\\n     * @return IPrizeDistributionBuffer\\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 drawIds 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\":\"0x51b3bacbdd715929d909063e66519096c2ef858b646e80f66691d155ccc8d520\",\"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\\nimport \\\"./IPrizeDistributionSource.sol\\\";\\n\\n/** @title  IPrizeDistributionBuffer\\n * @author PoolTogether Inc Team\\n * @notice The PrizeDistributionBuffer interface.\\n */\\ninterface IPrizeDistributionBuffer is IPrizeDistributionSource {\\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 (\\n            IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution,\\n            uint32 drawId\\n        );\\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 (\\n            IPrizeDistributionBuffer.PrizeDistribution memory prizeDistribution,\\n            uint32 drawId\\n        );\\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(\\n        uint32 drawId,\\n        IPrizeDistributionBuffer.PrizeDistribution calldata draw\\n    ) external returns (uint32);\\n}\\n\",\"keccak256\":\"0xa66b0d958502adda03e80924381bae30802f1c8d80823a9b787b8c66f6a7d835\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionSource.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/** @title IPrizeDistributionSource\\n * @author PoolTogether Inc Team\\n * @notice The PrizeDistributionSource interface.\\n */\\ninterface IPrizeDistributionSource {\\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 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 (PrizeDistribution[] memory);\\n}\\n\",\"keccak256\":\"0x05ec47edc2684790a869a866576e7338229cc4eeafe1171bfc8cd7fa1c0cc9a0\",\"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 valid 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\":\"0x9d90a364aafbb26a680259ad470222368aabe139cd6200eeb02ec0c6b93bc317\",\"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 buffer) 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 of 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 seven year minimum,\\n                of accurate historical lookups with current estimates of 1 new block\\n                every 15 seconds - assuming each block contains 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\":\"0x446d8221329601d40464981a50a0e31f3fd48da0ebf0fea646c5a089ccfbdff4\",\"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/v4-twab-delegator/contracts/Delegation.sol": {
        "Delegation": {
          "abi": [
            {
              "inputs": [
                {
                  "components": [
                    {
                      "internalType": "address",
                      "name": "to",
                      "type": "address"
                    },
                    {
                      "internalType": "bytes",
                      "name": "data",
                      "type": "bytes"
                    }
                  ],
                  "internalType": "struct Delegation.Call[]",
                  "name": "calls",
                  "type": "tuple[]"
                }
              ],
              "name": "executeCalls",
              "outputs": [
                {
                  "internalType": "bytes[]",
                  "name": "",
                  "type": "bytes[]"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint96",
                  "name": "_lockUntil",
                  "type": "uint96"
                }
              ],
              "name": "initialize",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "lockUntil",
              "outputs": [
                {
                  "internalType": "uint96",
                  "name": "",
                  "type": "uint96"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint96",
                  "name": "_lockUntil",
                  "type": "uint96"
                }
              ],
              "name": "setLockUntil",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "details": "This contract is intended to be counterfactually instantiated via CREATE2 through the LowLevelDelegator contract.This contract will hold tickets that will be delegated to a chosen delegatee.",
            "kind": "dev",
            "methods": {
              "executeCalls((address,bytes)[])": {
                "params": {
                  "calls": "The array of calls to be executed"
                },
                "returns": {
                  "_0": "An array of the return values for each of the calls"
                }
              },
              "initialize(uint96)": {
                "params": {
                  "_lockUntil": "Timestamp until which the delegation is locked"
                }
              },
              "setLockUntil(uint96)": {
                "params": {
                  "_lockUntil": "The timestamp until which the delegation is locked"
                }
              }
            },
            "title": "Contract instantiated via CREATE2 to handle a Delegation by a delegator to a delegatee.",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b506107dc806100206000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80633c78929e14610051578063909f1cad146100a3578063ac2293af146100b8578063de9443bf146100cb575b600080fd5b600054610081907401000000000000000000000000000000000000000090046bffffffffffffffffffffffff1681565b6040516bffffffffffffffffffffffff90911681526020015b60405180910390f35b6100b66100b136600461049e565b6100eb565b005b6100b66100c636600461049e565b610182565b6100de6100d9366004610429565b610234565b60405161009a919061051b565b60005473ffffffffffffffffffffffffffffffffffffffff16156101565760405162461bcd60e51b815260206004820152601760248201527f44656c65676174696f6e2f616c72656164792d696e697400000000000000000060448201526064015b60405180910390fd5b6bffffffffffffffffffffffff1674010000000000000000000000000000000000000000023317600055565b60005473ffffffffffffffffffffffffffffffffffffffff1633146101e95760405162461bcd60e51b815260206004820152601560248201527f44656c65676174696f6e2f6f6e6c792d6f776e65720000000000000000000000604482015260640161014d565b600080546bffffffffffffffffffffffff909216740100000000000000000000000000000000000000000273ffffffffffffffffffffffffffffffffffffffff909216919091179055565b60005460609073ffffffffffffffffffffffffffffffffffffffff16331461029e5760405162461bcd60e51b815260206004820152601560248201527f44656c65676174696f6e2f6f6e6c792d6f776e65720000000000000000000000604482015260640161014d565b8160008167ffffffffffffffff8111156102ba576102ba610790565b6040519080825280602002602001820160405280156102ed57816020015b60608152602001906001900390816102d85790505b5060408051808201909152600081526060602082015290915060005b83811015610382578686828181106103235761032361077a565b905060200281019061033591906105ae565b61033e9061063c565b91506103528260000151836020015161038d565b8382815181106103645761036461077a565b6020026020010181905250808061037a90610733565b915050610309565b509095945050505050565b60606000808473ffffffffffffffffffffffffffffffffffffffff166000856040516103b991906104ff565b60006040518083038185875af1925050503d80600081146103f6576040519150601f19603f3d011682016040523d82523d6000602084013e6103fb565b606091505b50915091508181906104205760405162461bcd60e51b815260040161014d919061059b565b50949350505050565b6000806020838503121561043c57600080fd5b823567ffffffffffffffff8082111561045457600080fd5b818501915085601f83011261046857600080fd5b81358181111561047757600080fd5b8660208260051b850101111561048c57600080fd5b60209290920196919550909350505050565b6000602082840312156104b057600080fd5b81356bffffffffffffffffffffffff811681146104cc57600080fd5b9392505050565b600081518084526104eb816020860160208601610703565b601f01601f19169290920160200192915050565b60008251610511818460208701610703565b9190910192915050565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b8281101561058e577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc088860301845261057c8583516104d3565b94509285019290850190600101610542565b5092979650505050505050565b6020815260006104cc60208301846104d3565b600082357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc183360301811261051157600080fd5b6040805190810167ffffffffffffffff8111828210171561060557610605610790565b60405290565b604051601f8201601f1916810167ffffffffffffffff8111828210171561063457610634610790565b604052919050565b60006040823603121561064e57600080fd5b6106566105e2565b823573ffffffffffffffffffffffffffffffffffffffff8116811461067a57600080fd5b815260208381013567ffffffffffffffff8082111561069857600080fd5b9085019036601f8301126106ab57600080fd5b8135818111156106bd576106bd610790565b6106cf84601f19601f8401160161060b565b915080825236848285010111156106e557600080fd5b80848401858401376000908201840152918301919091525092915050565b60005b8381101561071e578181015183820152602001610706565b8381111561072d576000848401525b50505050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561077357634e487b7160e01b600052601160045260246000fd5b5060010190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fdfea2646970667358221220e12294174ea821f82c2a1f83c4f824acb92d2de0e672f2347c9eb5611a26a93564736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x7DC 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 0x4C JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x3C78929E EQ PUSH2 0x51 JUMPI DUP1 PUSH4 0x909F1CAD EQ PUSH2 0xA3 JUMPI DUP1 PUSH4 0xAC2293AF EQ PUSH2 0xB8 JUMPI DUP1 PUSH4 0xDE9443BF EQ PUSH2 0xCB JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SLOAD PUSH2 0x81 SWAP1 PUSH21 0x10000000000000000000000000000000000000000 SWAP1 DIV PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xB6 PUSH2 0xB1 CALLDATASIZE PUSH1 0x4 PUSH2 0x49E JUMP JUMPDEST PUSH2 0xEB JUMP JUMPDEST STOP JUMPDEST PUSH2 0xB6 PUSH2 0xC6 CALLDATASIZE PUSH1 0x4 PUSH2 0x49E JUMP JUMPDEST PUSH2 0x182 JUMP JUMPDEST PUSH2 0xDE PUSH2 0xD9 CALLDATASIZE PUSH1 0x4 PUSH2 0x429 JUMP JUMPDEST PUSH2 0x234 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x9A SWAP2 SWAP1 PUSH2 0x51B JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND ISZERO PUSH2 0x156 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 0x44656C65676174696F6E2F616C72656164792D696E6974000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH21 0x10000000000000000000000000000000000000000 MUL CALLER OR PUSH1 0x0 SSTORE JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER EQ PUSH2 0x1E9 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 0x44656C65676174696F6E2F6F6E6C792D6F776E65720000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x14D JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF SWAP1 SWAP3 AND PUSH21 0x10000000000000000000000000000000000000000 MUL PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x60 SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER EQ PUSH2 0x29E 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 0x44656C65676174696F6E2F6F6E6C792D6F776E65720000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x14D JUMP JUMPDEST DUP2 PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2BA JUMPI PUSH2 0x2BA PUSH2 0x790 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x2ED JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x2D8 JUMPI SWAP1 POP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP2 MSTORE PUSH1 0x60 PUSH1 0x20 DUP3 ADD MSTORE SWAP1 SWAP2 POP PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x382 JUMPI DUP7 DUP7 DUP3 DUP2 DUP2 LT PUSH2 0x323 JUMPI PUSH2 0x323 PUSH2 0x77A JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x335 SWAP2 SWAP1 PUSH2 0x5AE JUMP JUMPDEST PUSH2 0x33E SWAP1 PUSH2 0x63C JUMP JUMPDEST SWAP2 POP PUSH2 0x352 DUP3 PUSH1 0x0 ADD MLOAD DUP4 PUSH1 0x20 ADD MLOAD PUSH2 0x38D JUMP JUMPDEST DUP4 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x364 JUMPI PUSH2 0x364 PUSH2 0x77A JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP DUP1 DUP1 PUSH2 0x37A SWAP1 PUSH2 0x733 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x309 JUMP JUMPDEST POP SWAP1 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 DUP6 PUSH1 0x40 MLOAD PUSH2 0x3B9 SWAP2 SWAP1 PUSH2 0x4FF 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 0x3F6 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 0x3FB JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP DUP2 DUP2 SWAP1 PUSH2 0x420 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x14D SWAP2 SWAP1 PUSH2 0x59B JUMP JUMPDEST POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x43C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x454 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x468 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x477 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP7 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x48C 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 0x4B0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x4CC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH2 0x4EB DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH2 0x703 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 0x511 DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x703 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 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 0x58E JUMPI PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 DUP9 DUP7 SUB ADD DUP5 MSTORE PUSH2 0x57C DUP6 DUP4 MLOAD PUSH2 0x4D3 JUMP JUMPDEST SWAP5 POP SWAP3 DUP6 ADD SWAP3 SWAP1 DUP6 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x542 JUMP JUMPDEST POP SWAP3 SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0x4CC PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x4D3 JUMP JUMPDEST PUSH1 0x0 DUP3 CALLDATALOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1 DUP4 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x511 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP1 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x605 JUMPI PUSH2 0x605 PUSH2 0x790 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 0x634 JUMPI PUSH2 0x634 PUSH2 0x790 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 CALLDATASIZE SUB SLT ISZERO PUSH2 0x64E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x656 PUSH2 0x5E2 JUMP JUMPDEST DUP3 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x67A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MSTORE PUSH1 0x20 DUP4 DUP2 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x698 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 DUP6 ADD SWAP1 CALLDATASIZE PUSH1 0x1F DUP4 ADD SLT PUSH2 0x6AB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x6BD JUMPI PUSH2 0x6BD PUSH2 0x790 JUMP JUMPDEST PUSH2 0x6CF DUP5 PUSH1 0x1F NOT PUSH1 0x1F DUP5 ADD AND ADD PUSH2 0x60B JUMP JUMPDEST SWAP2 POP DUP1 DUP3 MSTORE CALLDATASIZE DUP5 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x6E5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 DUP5 DUP5 ADD DUP6 DUP5 ADD CALLDATACOPY PUSH1 0x0 SWAP1 DUP3 ADD DUP5 ADD MSTORE SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x71E JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x706 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x72D JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x773 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP 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 0xE1 0x22 SWAP5 OR 0x4E 0xA8 0x21 0xF8 0x2C 0x2A 0x1F DUP4 0xC4 0xF8 0x24 0xAC 0xB9 0x2D 0x2D 0xE0 0xE6 PUSH19 0xF2347C9EB5611A26A93564736F6C6343000806 STOP CALLER ",
              "sourceMap": "460:2044:78:-:0;;;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@_executeCall_16197": {
                  "entryPoint": 909,
                  "id": 16197,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@executeCalls_16152": {
                  "entryPoint": 564,
                  "id": 16152,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@initialize_16088": {
                  "entryPoint": 235,
                  "id": 16088,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@lockUntil_16062": {
                  "entryPoint": null,
                  "id": 16062,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@setLockUntil_16165": {
                  "entryPoint": 386,
                  "id": 16165,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "abi_decode_tuple_t_array$_t_struct$_Call_$16056_calldata_ptr_$dyn_calldata_ptr": {
                  "entryPoint": 1065,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_uint96": {
                  "entryPoint": 1182,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_bytes": {
                  "entryPoint": 1235,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed": {
                  "entryPoint": 1279,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr__to_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr__fromStack_reversed": {
                  "entryPoint": 1307,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": 1435,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_2d657cb79229bf20859ea9b667c19e92844868aff41d53fda835adff40078666__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_59bc4f6190e70950564ee99327b9a593c48dd2bda28cfe491f5a34a9ef85820e__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint96__to_t_uint96__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "access_calldata_tail_t_struct$_Call_$16056_calldata_ptr": {
                  "entryPoint": 1454,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "allocate_memory": {
                  "entryPoint": 1547,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "allocate_memory_1091": {
                  "entryPoint": 1506,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "convert_t_struct$_Call_$16056_calldata_ptr_to_t_struct$_Call_$16056_memory_ptr": {
                  "entryPoint": 1596,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "copy_memory_to_memory": {
                  "entryPoint": 1795,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "increment_t_uint256": {
                  "entryPoint": 1843,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "panic_error_0x32": {
                  "entryPoint": 1914,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x41": {
                  "entryPoint": 1936,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:6691:101",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:101",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "144:510:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "190:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "199:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "202:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "192:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "192:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "192:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "165:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "174:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "161:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "161:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "186:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "157:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "157:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "154:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "215:37:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "242:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "229:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "229:23:101"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "219:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "261:28:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "271:18:101",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "265:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "316:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "325:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "328:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "318:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "318:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "318:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "304:6:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "312:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "301:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "301:14:101"
                              },
                              "nodeType": "YulIf",
                              "src": "298:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "341:32:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "355:9:101"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "366:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "351:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "351:22:101"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "345:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "421:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "430:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "433:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "423:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "423:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "423:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "400:2:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "404:4:101",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "396:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "396:13:101"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "411:7:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "392:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "392:27:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "385:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "385:35:101"
                              },
                              "nodeType": "YulIf",
                              "src": "382:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "446:30:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "473:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "460:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "460:16:101"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "450:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "503:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "512:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "515:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "505:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "505:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "505:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "491:6:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "499:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "488:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "488:14:101"
                              },
                              "nodeType": "YulIf",
                              "src": "485:2:101"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "577:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "586:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "589:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "579:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "579:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "579:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "542:2:101"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "550:1:101",
                                                "type": "",
                                                "value": "5"
                                              },
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "553:6:101"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "546:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "546:14:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "538:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "538:23:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "563:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "534:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "534:32:101"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "568:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "531:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "531:45:101"
                              },
                              "nodeType": "YulIf",
                              "src": "528:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "602:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "616:2:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "620:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "612:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "612:11:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "602:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "632:16:101",
                              "value": {
                                "name": "length",
                                "nodeType": "YulIdentifier",
                                "src": "642:6:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "632:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_array$_t_struct$_Call_$16056_calldata_ptr_$dyn_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "102:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "113:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "125:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "133:6:101",
                            "type": ""
                          }
                        ],
                        "src": "14:640:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "728:223:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "774:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "783:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "786:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "776:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "776:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "776:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "749:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "758:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "745:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "745:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "770:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "741:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "741:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "738:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "799:36:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "825:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "812:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "812:23:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "803:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "905:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "914:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "917:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "907:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "907:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "907:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "857:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "868:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "875:26:101",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "864:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "864:38:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "854:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "854:49:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "847:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "847:57:101"
                              },
                              "nodeType": "YulIf",
                              "src": "844:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "930:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "940:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "930:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint96",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "694:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "705:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "717:6:101",
                            "type": ""
                          }
                        ],
                        "src": "659:292:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1005:267:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1015:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1035:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1029:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1029:12:101"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "1019:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "1057:3:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1062:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1050:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1050:19:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1050:19:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1104:5:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1111:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1100:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1100:16:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "1122:3:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1127:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1118:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1118:14:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1134:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1078:21:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1078:63:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1078:63:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1150:116:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "1165:3:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "1178:6:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1186:2:101",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "1174:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1174:15:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1191:66:101",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1170:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1170:88:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1161:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1161:98:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1261:4:101",
                                    "type": "",
                                    "value": "0x20"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1157:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1157:109:101"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "1150:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_bytes",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "982:5:101",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "989:3:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "997:3:101",
                            "type": ""
                          }
                        ],
                        "src": "956:316:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1414:137:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1424:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "1444:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1438:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1438:13:101"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "1428:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "1486:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1494:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1482:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1482:17:101"
                                  },
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "1501:3:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1506:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1460:21:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1460:53:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1460:53:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1522:23:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "1533:3:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1538:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1529:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1529:16:101"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "1522:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "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": "1390:3:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1395:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "1406:3:101",
                            "type": ""
                          }
                        ],
                        "src": "1277:274:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1725:690:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1735:12:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "1745:2:101",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1739:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1756:32:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1774:9:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1785:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1770:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1770:18:101"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1760:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1804:9:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1815:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1797:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1797:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1797:21:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1827:17:101",
                              "value": {
                                "name": "tail_1",
                                "nodeType": "YulIdentifier",
                                "src": "1838:6:101"
                              },
                              "variables": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulTypedName",
                                  "src": "1831:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1853:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "1873:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1867:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1867:13:101"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "1857:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1896:6:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "1904:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1889:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1889:22:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1889:22:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1920:25:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1931:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1942:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1927:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1927:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "1920:3:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1954:53:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1976:9:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "1991:1:101",
                                            "type": "",
                                            "value": "5"
                                          },
                                          {
                                            "name": "length",
                                            "nodeType": "YulIdentifier",
                                            "src": "1994:6:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "shl",
                                          "nodeType": "YulIdentifier",
                                          "src": "1987:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1987:14:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1972:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1972:30:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2004:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1968:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1968:39:101"
                              },
                              "variables": [
                                {
                                  "name": "tail_2",
                                  "nodeType": "YulTypedName",
                                  "src": "1958:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2016:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "2034:6:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2042:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2030:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2030:15:101"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "2020:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2054:10:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "2063:1:101",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "2058:1:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2122:264:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "2143:3:101"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "tail_2",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "2156:6:101"
                                                },
                                                {
                                                  "name": "headStart",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "2164:9:101"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "sub",
                                                "nodeType": "YulIdentifier",
                                                "src": "2152:3:101"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "2152:22:101"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "2176:66:101",
                                              "type": "",
                                              "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc0"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "2148:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "2148:95:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "2136:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2136:108:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2136:108:101"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "2257:49:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "srcPtr",
                                              "nodeType": "YulIdentifier",
                                              "src": "2290:6:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "2284:5:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "2284:13:101"
                                        },
                                        {
                                          "name": "tail_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "2299:6:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "abi_encode_bytes",
                                        "nodeType": "YulIdentifier",
                                        "src": "2267:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2267:39:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "tail_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "2257:6:101"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "2319:25:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "2333:6:101"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "2341:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "2329:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2329:15:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "2319:6:101"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "2357:19:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "2368:3:101"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "2373:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "2364:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2364:12:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "2357:3:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "2084:1:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "2087:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2081:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2081:13:101"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "2095:18:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "2097:14:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "2106:1:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2109:1:101",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "2102:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2102:9:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "2097:1:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "2077:3:101",
                                "statements": []
                              },
                              "src": "2073:313:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2395:14:101",
                              "value": {
                                "name": "tail_2",
                                "nodeType": "YulIdentifier",
                                "src": "2403:6:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2395:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr__to_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1694:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1705:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1716:4:101",
                            "type": ""
                          }
                        ],
                        "src": "1556:859:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2541:98:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2558:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2569:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2551:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2551:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2551:21:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2581:52:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "2606:6:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2618:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2629:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2614:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2614:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_bytes",
                                  "nodeType": "YulIdentifier",
                                  "src": "2589:16:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2589:44:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2581:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2510:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2521:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2532:4:101",
                            "type": ""
                          }
                        ],
                        "src": "2420:219:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2818:171:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2835:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2846:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2828:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2828:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2828:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2869:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2880:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2865:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2865:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2885:2:101",
                                    "type": "",
                                    "value": "21"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2858:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2858:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2858:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2908:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2919:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2904:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2904:18:101"
                                  },
                                  {
                                    "hexValue": "44656c65676174696f6e2f6f6e6c792d6f776e6572",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "2924:23:101",
                                    "type": "",
                                    "value": "Delegation/only-owner"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2897:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2897:51:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2897:51:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2957:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2969:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2980:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2965:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2965:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2957:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_2d657cb79229bf20859ea9b667c19e92844868aff41d53fda835adff40078666__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2795:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2809:4:101",
                            "type": ""
                          }
                        ],
                        "src": "2644:345:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3168:173:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3185:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3196:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3178:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3178:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3178:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3219:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3230:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3215:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3215:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3235:2:101",
                                    "type": "",
                                    "value": "23"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3208:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3208:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3208:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3258:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3269:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3254:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3254:18:101"
                                  },
                                  {
                                    "hexValue": "44656c65676174696f6e2f616c72656164792d696e6974",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "3274:25:101",
                                    "type": "",
                                    "value": "Delegation/already-init"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3247:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3247:53:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3247:53:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3309:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3321:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3332:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3317:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3317:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3309:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_59bc4f6190e70950564ee99327b9a593c48dd2bda28cfe491f5a34a9ef85820e__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3145:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3159:4:101",
                            "type": ""
                          }
                        ],
                        "src": "2994:347:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3445:109:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "3455:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3467:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3478:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3463:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3463:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "3455:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3497:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "3512:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3520:26:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "3508:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3508:39:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3490:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3490:58:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3490:58:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint96__to_t_uint96__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3414:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3425:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "3436:4:101",
                            "type": ""
                          }
                        ],
                        "src": "3346:208:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3659:281:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3669:51:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "ptr_to_tail",
                                    "nodeType": "YulIdentifier",
                                    "src": "3708:11:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3695:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3695:25:101"
                              },
                              "variables": [
                                {
                                  "name": "rel_offset_of_tail",
                                  "nodeType": "YulTypedName",
                                  "src": "3673:18:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3868:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3877:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3880:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3870:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3870:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3870:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "rel_offset_of_tail",
                                        "nodeType": "YulIdentifier",
                                        "src": "3743:18:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [],
                                                "functionName": {
                                                  "name": "calldatasize",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "3771:12:101"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "3771:14:101"
                                              },
                                              {
                                                "name": "base_ref",
                                                "nodeType": "YulIdentifier",
                                                "src": "3787:8:101"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "3767:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "3767:29:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "3798:66:101",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc1"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "3763:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3763:102:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "3739:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3739:127:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "3732:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3732:135:101"
                              },
                              "nodeType": "YulIf",
                              "src": "3729:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3893:41:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "base_ref",
                                    "nodeType": "YulIdentifier",
                                    "src": "3905:8:101"
                                  },
                                  {
                                    "name": "rel_offset_of_tail",
                                    "nodeType": "YulIdentifier",
                                    "src": "3915:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "3901:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3901:33:101"
                              },
                              "variableNames": [
                                {
                                  "name": "addr",
                                  "nodeType": "YulIdentifier",
                                  "src": "3893:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "access_calldata_tail_t_struct$_Call_$16056_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "base_ref",
                            "nodeType": "YulTypedName",
                            "src": "3624:8:101",
                            "type": ""
                          },
                          {
                            "name": "ptr_to_tail",
                            "nodeType": "YulTypedName",
                            "src": "3634:11:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "addr",
                            "nodeType": "YulTypedName",
                            "src": "3650:4:101",
                            "type": ""
                          }
                        ],
                        "src": "3559:381:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3991:211:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "4001:21:101",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4017:4:101",
                                    "type": "",
                                    "value": "0x40"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4011:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4011:11:101"
                              },
                              "variableNames": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulIdentifier",
                                  "src": "4001:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4031:35:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "4053:6:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4061:4:101",
                                    "type": "",
                                    "value": "0x40"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4049:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4049:17:101"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "4035:10:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4141:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "4143:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4143:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4143:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "4084:10:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4096:18:101",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "4081:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4081:34:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "4120:10:101"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "4132:6:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "4117:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4117:22:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "4078:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4078:62:101"
                              },
                              "nodeType": "YulIf",
                              "src": "4075:2:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4179:4:101",
                                    "type": "",
                                    "value": "0x40"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "4185:10:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4172:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4172:24:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4172:24:101"
                            }
                          ]
                        },
                        "name": "allocate_memory_1091",
                        "nodeType": "YulFunctionDefinition",
                        "returnVariables": [
                          {
                            "name": "memPtr",
                            "nodeType": "YulTypedName",
                            "src": "3980:6:101",
                            "type": ""
                          }
                        ],
                        "src": "3945:257:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4252:289:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "4262:19:101",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4278:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4272:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4272:9:101"
                              },
                              "variableNames": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulIdentifier",
                                  "src": "4262:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4290:117:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "4312:6:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "size",
                                            "nodeType": "YulIdentifier",
                                            "src": "4328:4:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "4334:2:101",
                                            "type": "",
                                            "value": "31"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "4324:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4324:13:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4339:66:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "4320:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4320:86:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4308:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4308:99:101"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "4294:10:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4482:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "4484:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4484:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4484:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "4425:10:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "4437:18:101",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "4422:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4422:34:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "4461:10:101"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "4473:6:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "4458:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4458:22:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "4419:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4419:62:101"
                              },
                              "nodeType": "YulIf",
                              "src": "4416:2:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4520:2:101",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "4524:10:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4513:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4513:22:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4513:22:101"
                            }
                          ]
                        },
                        "name": "allocate_memory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "size",
                            "nodeType": "YulTypedName",
                            "src": "4232:4:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "memPtr",
                            "nodeType": "YulTypedName",
                            "src": "4241:6:101",
                            "type": ""
                          }
                        ],
                        "src": "4207:334:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4658:1036:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4709:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4718:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4721:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4711:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4711:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4711:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [],
                                        "functionName": {
                                          "name": "calldatasize",
                                          "nodeType": "YulIdentifier",
                                          "src": "4679:12:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4679:14:101"
                                      },
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "4695:5:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "4675:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4675:26:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4703:4:101",
                                    "type": "",
                                    "value": "0x40"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4671:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4671:37:101"
                              },
                              "nodeType": "YulIf",
                              "src": "4668:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4734:37:101",
                              "value": {
                                "arguments": [],
                                "functionName": {
                                  "name": "allocate_memory_1091",
                                  "nodeType": "YulIdentifier",
                                  "src": "4749:20:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4749:22:101"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4738:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4780:34:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "4808:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4795:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4795:19:101"
                              },
                              "variables": [
                                {
                                  "name": "value_2",
                                  "nodeType": "YulTypedName",
                                  "src": "4784:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4904:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4913:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4916:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4906:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4906:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4906:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "4836:7:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value_2",
                                            "nodeType": "YulIdentifier",
                                            "src": "4849:7:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "4858:42:101",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "4845:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4845:56:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "4833:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4833:69:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "4826:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4826:77:101"
                              },
                              "nodeType": "YulIf",
                              "src": "4823:2:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4936:7:101"
                                  },
                                  {
                                    "name": "value_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "4945:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4929:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4929:24:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4929:24:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4962:12:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "4972:2:101",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4966:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4983:42:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "5014:5:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "5021:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5010:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5010:14:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4997:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4997:28:101"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "4987:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5034:28:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "5044:18:101",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "5038:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5089:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5098:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5101:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "5091:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5091:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5091:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "5077:6:101"
                                  },
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "5085:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "5074:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5074:14:101"
                              },
                              "nodeType": "YulIf",
                              "src": "5071:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5114:28:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "5128:5:101"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "5135:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5124:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5124:18:101"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "5118:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5197:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5206:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5209:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "5199:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5199:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5199:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_3",
                                            "nodeType": "YulIdentifier",
                                            "src": "5169:2:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "5173:4:101",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "5165:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "5165:13:101"
                                      },
                                      {
                                        "arguments": [],
                                        "functionName": {
                                          "name": "calldatasize",
                                          "nodeType": "YulIdentifier",
                                          "src": "5180:12:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "5180:14:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "5161:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5161:34:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "5154:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5154:42:101"
                              },
                              "nodeType": "YulIf",
                              "src": "5151:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5222:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "5245:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "5232:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5232:16:101"
                              },
                              "variables": [
                                {
                                  "name": "_4",
                                  "nodeType": "YulTypedName",
                                  "src": "5226:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5271:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "5273:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5273:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5273:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "5263:2:101"
                                  },
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "5267:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "5260:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5260:10:101"
                              },
                              "nodeType": "YulIf",
                              "src": "5257:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5302:125:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "_4",
                                                "nodeType": "YulIdentifier",
                                                "src": "5343:2:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "5347:4:101",
                                                "type": "",
                                                "value": "0x1f"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "5339:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "5339:13:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "5354:66:101",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "5335:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "5335:86:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "5423:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5331:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5331:95:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "allocate_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "5315:15:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5315:112:101"
                              },
                              "variables": [
                                {
                                  "name": "array",
                                  "nodeType": "YulTypedName",
                                  "src": "5306:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "array",
                                    "nodeType": "YulIdentifier",
                                    "src": "5443:5:101"
                                  },
                                  {
                                    "name": "_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "5450:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5436:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5436:17:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5436:17:101"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5506:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5515:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5518:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "5508:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5508:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5508:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_3",
                                            "nodeType": "YulIdentifier",
                                            "src": "5476:2:101"
                                          },
                                          {
                                            "name": "_4",
                                            "nodeType": "YulIdentifier",
                                            "src": "5480:2:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "5472:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "5472:11:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "5485:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5468:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5468:20:101"
                                  },
                                  {
                                    "arguments": [],
                                    "functionName": {
                                      "name": "calldatasize",
                                      "nodeType": "YulIdentifier",
                                      "src": "5490:12:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5490:14:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "5465:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5465:40:101"
                              },
                              "nodeType": "YulIf",
                              "src": "5462:2:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "array",
                                        "nodeType": "YulIdentifier",
                                        "src": "5548:5:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "5555:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5544:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5544:14:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "5564:2:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "5568:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5560:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5560:11:101"
                                  },
                                  {
                                    "name": "_4",
                                    "nodeType": "YulIdentifier",
                                    "src": "5573:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldatacopy",
                                  "nodeType": "YulIdentifier",
                                  "src": "5531:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5531:45:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5531:45:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "array",
                                            "nodeType": "YulIdentifier",
                                            "src": "5600:5:101"
                                          },
                                          {
                                            "name": "_4",
                                            "nodeType": "YulIdentifier",
                                            "src": "5607:2:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "5596:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "5596:14:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "5612:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5592:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5592:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5617:1:101",
                                    "type": "",
                                    "value": "0"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5585:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5585:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5585:34:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "5639:7:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "5648:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "5635:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5635:16:101"
                                  },
                                  {
                                    "name": "array",
                                    "nodeType": "YulIdentifier",
                                    "src": "5653:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "5628:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5628:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5628:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5668:20:101",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "5681:7:101"
                              },
                              "variableNames": [
                                {
                                  "name": "converted",
                                  "nodeType": "YulIdentifier",
                                  "src": "5668:9:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "convert_t_struct$_Call_$16056_calldata_ptr_to_t_struct$_Call_$16056_memory_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "4634:5:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "converted",
                            "nodeType": "YulTypedName",
                            "src": "4644:9:101",
                            "type": ""
                          }
                        ],
                        "src": "4546:1148:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5752:205:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5762:10:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "5771:1:101",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "5766:1:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5831:63:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "5856:3:101"
                                            },
                                            {
                                              "name": "i",
                                              "nodeType": "YulIdentifier",
                                              "src": "5861:1:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "5852:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "5852:11:101"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "5875:3:101"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "5880:1:101"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "5871:3:101"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "5871:11:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "5865:5:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "5865:18:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "5845:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5845:39:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5845:39:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "5792:1:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "5795:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "5789:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5789:13:101"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "5803:19:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "5805:15:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "5814:1:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5817:2:101",
                                          "type": "",
                                          "value": "32"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "5810:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5810:10:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "5805:1:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "5785:3:101",
                                "statements": []
                              },
                              "src": "5781:113:101"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5920:31:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "5933:3:101"
                                            },
                                            {
                                              "name": "length",
                                              "nodeType": "YulIdentifier",
                                              "src": "5938:6:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "5929:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "5929:16:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5947:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "5922:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5922:27:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5922:27:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "5909:1:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "5912:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "5906:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5906:13:101"
                              },
                              "nodeType": "YulIf",
                              "src": "5903:2:101"
                            }
                          ]
                        },
                        "name": "copy_memory_to_memory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "src",
                            "nodeType": "YulTypedName",
                            "src": "5730:3:101",
                            "type": ""
                          },
                          {
                            "name": "dst",
                            "nodeType": "YulTypedName",
                            "src": "5735:3:101",
                            "type": ""
                          },
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "5740:6:101",
                            "type": ""
                          }
                        ],
                        "src": "5699:258:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6009:302:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "6108:168:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6129:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6132:77:101",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "6122:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6122:88:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6122:88:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6230:1:101",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6233:4:101",
                                          "type": "",
                                          "value": "0x11"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "6223:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6223:15:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6223:15:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6258:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6261:4:101",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "6251:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6251:15:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6251:15:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "6025:5:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6032:66:101",
                                    "type": "",
                                    "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "6022:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6022:77:101"
                              },
                              "nodeType": "YulIf",
                              "src": "6019:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6285:20:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "6296:5:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6303:1:101",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6292:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6292:13:101"
                              },
                              "variableNames": [
                                {
                                  "name": "ret",
                                  "nodeType": "YulIdentifier",
                                  "src": "6285:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "increment_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "5991:5:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "ret",
                            "nodeType": "YulTypedName",
                            "src": "6001:3:101",
                            "type": ""
                          }
                        ],
                        "src": "5962:349:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6348:152:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6365:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6368:77:101",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6358:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6358:88:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6358:88:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6462:1:101",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6465:4:101",
                                    "type": "",
                                    "value": "0x32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6455:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6455:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6455:15:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6486:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6489:4:101",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "6479:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6479:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6479:15:101"
                            }
                          ]
                        },
                        "name": "panic_error_0x32",
                        "nodeType": "YulFunctionDefinition",
                        "src": "6316:184:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6537:152:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6554:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6557:77:101",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6547:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6547:88:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6547:88:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6651:1:101",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6654:4:101",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "6644:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6644:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6644:15:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6675:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6678:4:101",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "6668:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6668:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "6668:15:101"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "6505:184:101"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_tuple_t_array$_t_struct$_Call_$16056_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(5, length)), 32), dataEnd) { revert(0, 0) }\n        value0 := add(_2, 32)\n        value1 := length\n    }\n    function abi_decode_tuple_t_uint96(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, 0xffffffffffffffffffffffff))) { revert(0, 0) }\n        value0 := value\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_array$_t_bytes_memory_ptr_$dyn_memory_ptr__to_t_array$_t_bytes_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_bytes(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_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_2d657cb79229bf20859ea9b667c19e92844868aff41d53fda835adff40078666__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), \"Delegation/only-owner\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_59bc4f6190e70950564ee99327b9a593c48dd2bda28cfe491f5a34a9ef85820e__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), \"Delegation/already-init\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_uint96__to_t_uint96__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffff))\n    }\n    function access_calldata_tail_t_struct$_Call_$16056_calldata_ptr(base_ref, ptr_to_tail) -> addr\n    {\n        let rel_offset_of_tail := calldataload(ptr_to_tail)\n        if iszero(slt(rel_offset_of_tail, add(sub(calldatasize(), base_ref), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc1))) { revert(0, 0) }\n        addr := add(base_ref, rel_offset_of_tail)\n    }\n    function allocate_memory_1091() -> memPtr\n    {\n        memPtr := mload(0x40)\n        let newFreePtr := add(memPtr, 0x40)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(0x40, 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 convert_t_struct$_Call_$16056_calldata_ptr_to_t_struct$_Call_$16056_memory_ptr(value) -> converted\n    {\n        if slt(sub(calldatasize(), value), 0x40) { revert(0, 0) }\n        let value_1 := allocate_memory_1091()\n        let value_2 := calldataload(value)\n        if iszero(eq(value_2, and(value_2, 0xffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n        mstore(value_1, value_2)\n        let _1 := 32\n        let offset := calldataload(add(value, _1))\n        let _2 := 0xffffffffffffffff\n        if gt(offset, _2) { revert(0, 0) }\n        let _3 := add(value, offset)\n        if iszero(slt(add(_3, 0x1f), calldatasize())) { revert(0, 0) }\n        let _4 := calldataload(_3)\n        if gt(_4, _2) { panic_error_0x41() }\n        let array := allocate_memory(add(and(add(_4, 0x1f), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0), _1))\n        mstore(array, _4)\n        if gt(add(add(_3, _4), _1), calldatasize()) { revert(0, 0) }\n        calldatacopy(add(array, _1), add(_3, _1), _4)\n        mstore(add(add(array, _4), _1), 0)\n        mstore(add(value_1, _1), array)\n        converted := value_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)\n        {\n            mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n            mstore(4, 0x11)\n            revert(0, 0x24)\n        }\n        ret := add(value, 1)\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": 101,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b506004361061004c5760003560e01c80633c78929e14610051578063909f1cad146100a3578063ac2293af146100b8578063de9443bf146100cb575b600080fd5b600054610081907401000000000000000000000000000000000000000090046bffffffffffffffffffffffff1681565b6040516bffffffffffffffffffffffff90911681526020015b60405180910390f35b6100b66100b136600461049e565b6100eb565b005b6100b66100c636600461049e565b610182565b6100de6100d9366004610429565b610234565b60405161009a919061051b565b60005473ffffffffffffffffffffffffffffffffffffffff16156101565760405162461bcd60e51b815260206004820152601760248201527f44656c65676174696f6e2f616c72656164792d696e697400000000000000000060448201526064015b60405180910390fd5b6bffffffffffffffffffffffff1674010000000000000000000000000000000000000000023317600055565b60005473ffffffffffffffffffffffffffffffffffffffff1633146101e95760405162461bcd60e51b815260206004820152601560248201527f44656c65676174696f6e2f6f6e6c792d6f776e65720000000000000000000000604482015260640161014d565b600080546bffffffffffffffffffffffff909216740100000000000000000000000000000000000000000273ffffffffffffffffffffffffffffffffffffffff909216919091179055565b60005460609073ffffffffffffffffffffffffffffffffffffffff16331461029e5760405162461bcd60e51b815260206004820152601560248201527f44656c65676174696f6e2f6f6e6c792d6f776e65720000000000000000000000604482015260640161014d565b8160008167ffffffffffffffff8111156102ba576102ba610790565b6040519080825280602002602001820160405280156102ed57816020015b60608152602001906001900390816102d85790505b5060408051808201909152600081526060602082015290915060005b83811015610382578686828181106103235761032361077a565b905060200281019061033591906105ae565b61033e9061063c565b91506103528260000151836020015161038d565b8382815181106103645761036461077a565b6020026020010181905250808061037a90610733565b915050610309565b509095945050505050565b60606000808473ffffffffffffffffffffffffffffffffffffffff166000856040516103b991906104ff565b60006040518083038185875af1925050503d80600081146103f6576040519150601f19603f3d011682016040523d82523d6000602084013e6103fb565b606091505b50915091508181906104205760405162461bcd60e51b815260040161014d919061059b565b50949350505050565b6000806020838503121561043c57600080fd5b823567ffffffffffffffff8082111561045457600080fd5b818501915085601f83011261046857600080fd5b81358181111561047757600080fd5b8660208260051b850101111561048c57600080fd5b60209290920196919550909350505050565b6000602082840312156104b057600080fd5b81356bffffffffffffffffffffffff811681146104cc57600080fd5b9392505050565b600081518084526104eb816020860160208601610703565b601f01601f19169290920160200192915050565b60008251610511818460208701610703565b9190910192915050565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b8281101561058e577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc088860301845261057c8583516104d3565b94509285019290850190600101610542565b5092979650505050505050565b6020815260006104cc60208301846104d3565b600082357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc183360301811261051157600080fd5b6040805190810167ffffffffffffffff8111828210171561060557610605610790565b60405290565b604051601f8201601f1916810167ffffffffffffffff8111828210171561063457610634610790565b604052919050565b60006040823603121561064e57600080fd5b6106566105e2565b823573ffffffffffffffffffffffffffffffffffffffff8116811461067a57600080fd5b815260208381013567ffffffffffffffff8082111561069857600080fd5b9085019036601f8301126106ab57600080fd5b8135818111156106bd576106bd610790565b6106cf84601f19601f8401160161060b565b915080825236848285010111156106e557600080fd5b80848401858401376000908201840152918301919091525092915050565b60005b8381101561071e578181015183820152602001610706565b8381111561072d576000848401525b50505050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561077357634e487b7160e01b600052601160045260246000fd5b5060010190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fdfea2646970667358221220e12294174ea821f82c2a1f83c4f824acb92d2de0e672f2347c9eb5611a26a93564736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x4C JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x3C78929E EQ PUSH2 0x51 JUMPI DUP1 PUSH4 0x909F1CAD EQ PUSH2 0xA3 JUMPI DUP1 PUSH4 0xAC2293AF EQ PUSH2 0xB8 JUMPI DUP1 PUSH4 0xDE9443BF EQ PUSH2 0xCB JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SLOAD PUSH2 0x81 SWAP1 PUSH21 0x10000000000000000000000000000000000000000 SWAP1 DIV PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xB6 PUSH2 0xB1 CALLDATASIZE PUSH1 0x4 PUSH2 0x49E JUMP JUMPDEST PUSH2 0xEB JUMP JUMPDEST STOP JUMPDEST PUSH2 0xB6 PUSH2 0xC6 CALLDATASIZE PUSH1 0x4 PUSH2 0x49E JUMP JUMPDEST PUSH2 0x182 JUMP JUMPDEST PUSH2 0xDE PUSH2 0xD9 CALLDATASIZE PUSH1 0x4 PUSH2 0x429 JUMP JUMPDEST PUSH2 0x234 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x9A SWAP2 SWAP1 PUSH2 0x51B JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND ISZERO PUSH2 0x156 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 0x44656C65676174696F6E2F616C72656164792D696E6974000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH21 0x10000000000000000000000000000000000000000 MUL CALLER OR PUSH1 0x0 SSTORE JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER EQ PUSH2 0x1E9 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 0x44656C65676174696F6E2F6F6E6C792D6F776E65720000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x14D JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF SWAP1 SWAP3 AND PUSH21 0x10000000000000000000000000000000000000000 MUL PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x60 SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER EQ PUSH2 0x29E 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 0x44656C65676174696F6E2F6F6E6C792D6F776E65720000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x14D JUMP JUMPDEST DUP2 PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2BA JUMPI PUSH2 0x2BA PUSH2 0x790 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x2ED JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x2D8 JUMPI SWAP1 POP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP2 MSTORE PUSH1 0x60 PUSH1 0x20 DUP3 ADD MSTORE SWAP1 SWAP2 POP PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x382 JUMPI DUP7 DUP7 DUP3 DUP2 DUP2 LT PUSH2 0x323 JUMPI PUSH2 0x323 PUSH2 0x77A JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x335 SWAP2 SWAP1 PUSH2 0x5AE JUMP JUMPDEST PUSH2 0x33E SWAP1 PUSH2 0x63C JUMP JUMPDEST SWAP2 POP PUSH2 0x352 DUP3 PUSH1 0x0 ADD MLOAD DUP4 PUSH1 0x20 ADD MLOAD PUSH2 0x38D JUMP JUMPDEST DUP4 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x364 JUMPI PUSH2 0x364 PUSH2 0x77A JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP DUP1 DUP1 PUSH2 0x37A SWAP1 PUSH2 0x733 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x309 JUMP JUMPDEST POP SWAP1 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 DUP6 PUSH1 0x40 MLOAD PUSH2 0x3B9 SWAP2 SWAP1 PUSH2 0x4FF 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 0x3F6 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 0x3FB JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP DUP2 DUP2 SWAP1 PUSH2 0x420 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x14D SWAP2 SWAP1 PUSH2 0x59B JUMP JUMPDEST POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x43C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x454 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x468 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x477 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP7 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x48C 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 0x4B0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x4CC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH2 0x4EB DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH2 0x703 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 0x511 DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x703 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 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 0x58E JUMPI PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 DUP9 DUP7 SUB ADD DUP5 MSTORE PUSH2 0x57C DUP6 DUP4 MLOAD PUSH2 0x4D3 JUMP JUMPDEST SWAP5 POP SWAP3 DUP6 ADD SWAP3 SWAP1 DUP6 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x542 JUMP JUMPDEST POP SWAP3 SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0x4CC PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x4D3 JUMP JUMPDEST PUSH1 0x0 DUP3 CALLDATALOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1 DUP4 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x511 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP1 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x605 JUMPI PUSH2 0x605 PUSH2 0x790 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 0x634 JUMPI PUSH2 0x634 PUSH2 0x790 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 CALLDATASIZE SUB SLT ISZERO PUSH2 0x64E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x656 PUSH2 0x5E2 JUMP JUMPDEST DUP3 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x67A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MSTORE PUSH1 0x20 DUP4 DUP2 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x698 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 DUP6 ADD SWAP1 CALLDATASIZE PUSH1 0x1F DUP4 ADD SLT PUSH2 0x6AB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x6BD JUMPI PUSH2 0x6BD PUSH2 0x790 JUMP JUMPDEST PUSH2 0x6CF DUP5 PUSH1 0x1F NOT PUSH1 0x1F DUP5 ADD AND ADD PUSH2 0x60B JUMP JUMPDEST SWAP2 POP DUP1 DUP3 MSTORE CALLDATASIZE DUP5 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x6E5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 DUP5 DUP5 ADD DUP6 DUP5 ADD CALLDATACOPY PUSH1 0x0 SWAP1 DUP3 ADD DUP5 ADD MSTORE SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x71E JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x706 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x72D JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x773 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP 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 0xE1 0x22 SWAP5 OR 0x4E 0xA8 0x21 0xF8 0x2C 0x2A 0x1F DUP4 0xC4 0xF8 0x24 0xAC 0xB9 0x2D 0x2D 0xE0 0xE6 PUSH19 0xF2347C9EB5611A26A93564736F6C6343000806 STOP CALLER ",
              "sourceMap": "460:2044:78:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;795:23;;;;;;;;;;;;;;;3520:26:101;3508:39;;;3490:58;;3478:2;3463:18;795:23:78;;;;;;;;946:168;;;;;;:::i;:::-;;:::i;:::-;;1827:93;;;;;;:::i;:::-;;:::i;1303:365::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;946:168::-;1026:1;1008:6;:20;:6;:20;1000:56;;;;-1:-1:-1;;;1000:56:78;;3196:2:101;1000:56:78;;;3178:21:101;3235:2;3215:18;;;3208:30;3274:25;3254:18;;;3247:53;3317:18;;1000:56:78;;;;;;;;;1087:22;;;;1071:10;1087:22;1062:6;1087:22;946:168::o;1827:93::-;2458:6;;;;2444:10;:20;2436:54;;;;-1:-1:-1;;;2436:54:78;;2846:2:101;2436:54:78;;;2828:21:101;2885:2;2865:18;;;2858:30;2924:23;2904:18;;;2897:51;2965:18;;2436:54:78;2818:171:101;2436:54:78;1893:9:::1;:22:::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;1827:93::o;1303:365::-;2458:6;;1376:14;;2458:6;;2444:10;:20;2436:54;;;;-1:-1:-1;;;2436:54:78;;2846:2:101;2436:54:78;;;2828:21:101;2885:2;2865:18;;;2858:30;2924:23;2904:18;;;2897:51;2965:18;;2436:54:78;2818:171:101;2436:54:78;1421:5;1398:20:::1;1421:5:::0;1465:25:::1;::::0;::::1;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;;;;;;;;;;;;;;1439:51:78;;-1:-1:-1;1524:9:78::1;1519:123;1539:12;1535:1;:16;1519:123;;;1573:5;;1579:1;1573:8;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;1566:15;;;:::i;:::-;;;1603:32;1616:4;:7;;;1625:4;:9;;;1603:12;:32::i;:::-;1589:8;1598:1;1589:11;;;;;;;;:::i;:::-;;;;;;:46;;;;1553:3;;;;;:::i;:::-;;;;1519:123;;;-1:-1:-1::0;1655:8:78;;1303:365;-1:-1:-1;;;;;1303:365:78:o;2095:235::-;2166:12;2187:14;2203:24;2231:2;:7;;2247:1;2251:4;2231:25;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2186:70;;;;2270:9;2288:11;2262:39;;;;;-1:-1:-1;;;2262:39:78;;;;;;;;:::i;:::-;-1:-1:-1;2314:11:78;2095:235;-1:-1:-1;;;;2095:235:78:o;14:640:101:-;125:6;133;186:2;174:9;165:7;161:23;157:32;154:2;;;202:1;199;192:12;154:2;242:9;229:23;271:18;312:2;304:6;301:14;298:2;;;328:1;325;318:12;298:2;366:6;355:9;351:22;341:32;;411:7;404:4;400:2;396:13;392:27;382:2;;433:1;430;423:12;382:2;473;460:16;499:2;491:6;488:14;485:2;;;515:1;512;505:12;485:2;568:7;563:2;553:6;550:1;546:14;542:2;538:23;534:32;531:45;528:2;;;589:1;586;579:12;528:2;620;612:11;;;;;642:6;;-1:-1:-1;144:510:101;;-1:-1:-1;;;;144:510:101:o;659:292::-;717:6;770:2;758:9;749:7;745:23;741:32;738:2;;;786:1;783;776:12;738:2;825:9;812:23;875:26;868:5;864:38;857:5;854:49;844:2;;917:1;914;907:12;844:2;940:5;728:223;-1:-1:-1;;;728:223:101:o;956:316::-;997:3;1035:5;1029:12;1062:6;1057:3;1050:19;1078:63;1134:6;1127:4;1122:3;1118:14;1111:4;1104:5;1100:16;1078:63;:::i;:::-;1186:2;1174:15;-1:-1:-1;;1170:88:101;1161:98;;;;1261:4;1157:109;;1005:267;-1:-1:-1;;1005:267:101:o;1277:274::-;1406:3;1444:6;1438:13;1460:53;1506:6;1501:3;1494:4;1486:6;1482:17;1460:53;:::i;:::-;1529:16;;;;;1414:137;-1:-1:-1;;1414:137:101:o;1556:859::-;1716:4;1745:2;1785;1774:9;1770:18;1815:2;1804:9;1797:21;1838:6;1873;1867:13;1904:6;1896;1889:22;1942:2;1931:9;1927:18;1920:25;;2004:2;1994:6;1991:1;1987:14;1976:9;1972:30;1968:39;1954:53;;2042:2;2034:6;2030:15;2063:1;2073:313;2087:6;2084:1;2081:13;2073:313;;;2176:66;2164:9;2156:6;2152:22;2148:95;2143:3;2136:108;2267:39;2299:6;2290;2284:13;2267:39;:::i;:::-;2257:49;-1:-1:-1;2364:12:101;;;;2329:15;;;;2109:1;2102:9;2073:313;;;-1:-1:-1;2403:6:101;;1725:690;-1:-1:-1;;;;;;;1725:690:101:o;2420:219::-;2569:2;2558:9;2551:21;2532:4;2589:44;2629:2;2618:9;2614:18;2606:6;2589:44;:::i;3559:381::-;3650:4;3708:11;3695:25;3798:66;3787:8;3771:14;3767:29;3763:102;3743:18;3739:127;3729:2;;3880:1;3877;3870:12;3945:257;4017:4;4011:11;;;4049:17;;4096:18;4081:34;;4117:22;;;4078:62;4075:2;;;4143:18;;:::i;:::-;4179:4;4172:24;3991:211;:::o;4207:334::-;4278:2;4272:9;-1:-1:-1;4324:13:101;;-1:-1:-1;;4320:86:101;4308:99;;4437:18;4422:34;;4458:22;;;4419:62;4416:2;;;4484:18;;:::i;:::-;4520:2;4513:22;4252:289;;-1:-1:-1;4252:289:101:o;4546:1148::-;4644:9;4703:4;4695:5;4679:14;4675:26;4671:37;4668:2;;;4721:1;4718;4711:12;4668:2;4749:22;;:::i;:::-;4808:5;4795:19;4858:42;4849:7;4845:56;4836:7;4833:69;4823:2;;4916:1;4913;4906:12;4823:2;4929:24;;4972:2;5010:14;;;4997:28;5044:18;5074:14;;;5071:2;;;5101:1;5098;5091:12;5071:2;5124:18;;;;5180:14;5173:4;5165:13;;5161:34;5151:2;;5209:1;5206;5199:12;5151:2;5245;5232:16;5267:2;5263;5260:10;5257:2;;;5273:18;;:::i;:::-;5315:112;-1:-1:-1;;;5339:13:101;;5335:86;5331:95;;5315:112;:::i;:::-;5302:125;;5450:2;5443:5;5436:17;5490:14;5485:2;5480;5476;5472:11;5468:20;5465:40;5462:2;;;5518:1;5515;5508:12;5462:2;5573;5568;5564;5560:11;5555:2;5548:5;5544:14;5531:45;5617:1;5596:14;;;5592:23;;5585:34;5635:16;;;5628:31;;;;-1:-1:-1;5639:7:101;4658:1036;-1:-1:-1;;4658:1036:101:o;5699:258::-;5771:1;5781:113;5795:6;5792:1;5789:13;5781:113;;;5871:11;;;5865:18;5852:11;;;5845:39;5817:2;5810:10;5781:113;;;5912:6;5909:1;5906:13;5903:2;;;5947:1;5938:6;5933:3;5929:16;5922:27;5903:2;;5752:205;;;:::o;5962:349::-;6001:3;6032:66;6025:5;6022:77;6019:2;;;-1:-1:-1;;;6129:1:101;6122:88;6233:4;6230:1;6223:15;6261:4;6258:1;6251:15;6019:2;-1:-1:-1;6303:1:101;6292:13;;6009:302::o;6316:184::-;-1:-1:-1;;;6365:1:101;6358:88;6465:4;6462:1;6455:15;6489:4;6486:1;6479:15;6505:184;-1:-1:-1;;;6554:1:101;6547:88;6654:4;6651:1;6644:15;6678:4;6675:1;6668:15"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "402400",
                "executionCost": "436",
                "totalCost": "402836"
              },
              "external": {
                "executeCalls((address,bytes)[])": "infinite",
                "initialize(uint96)": "24503",
                "lockUntil()": "2291",
                "setLockUntil(uint96)": "26658"
              },
              "internal": {
                "_executeCall(address,bytes memory)": "infinite"
              }
            },
            "methodIdentifiers": {
              "executeCalls((address,bytes)[])": "de9443bf",
              "initialize(uint96)": "909f1cad",
              "lockUntil()": "3c78929e",
              "setLockUntil(uint96)": "ac2293af"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"internalType\":\"struct Delegation.Call[]\",\"name\":\"calls\",\"type\":\"tuple[]\"}],\"name\":\"executeCalls\",\"outputs\":[{\"internalType\":\"bytes[]\",\"name\":\"\",\"type\":\"bytes[]\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint96\",\"name\":\"_lockUntil\",\"type\":\"uint96\"}],\"name\":\"initialize\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"lockUntil\",\"outputs\":[{\"internalType\":\"uint96\",\"name\":\"\",\"type\":\"uint96\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint96\",\"name\":\"_lockUntil\",\"type\":\"uint96\"}],\"name\":\"setLockUntil\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"This contract is intended to be counterfactually instantiated via CREATE2 through the LowLevelDelegator contract.This contract will hold tickets that will be delegated to a chosen delegatee.\",\"kind\":\"dev\",\"methods\":{\"executeCalls((address,bytes)[])\":{\"params\":{\"calls\":\"The array of calls to be executed\"},\"returns\":{\"_0\":\"An array of the return values for each of the calls\"}},\"initialize(uint96)\":{\"params\":{\"_lockUntil\":\"Timestamp until which the delegation is locked\"}},\"setLockUntil(uint96)\":{\"params\":{\"_lockUntil\":\"The timestamp until which the delegation is locked\"}}},\"title\":\"Contract instantiated via CREATE2 to handle a Delegation by a delegator to a delegatee.\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"executeCalls((address,bytes)[])\":{\"notice\":\"Executes calls on behalf of this contract.\"},\"initialize(uint96)\":{\"notice\":\"Initializes the delegation.\"},\"lockUntil()\":{\"notice\":\"Timestamp until which the delegation is locked.\"},\"setLockUntil(uint96)\":{\"notice\":\"Set the timestamp until which the delegation is locked.\"}},\"notice\":\"A Delegation allows his owner to execute calls on behalf of the contract.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/v4-twab-delegator/contracts/Delegation.sol\":\"Delegation\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@pooltogether/v4-twab-delegator/contracts/Delegation.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @title Contract instantiated via CREATE2 to handle a Delegation by a delegator to a delegatee.\\n * @notice A Delegation allows his owner to execute calls on behalf of the contract.\\n * @dev This contract is intended to be counterfactually instantiated via CREATE2 through the LowLevelDelegator contract.\\n * @dev This contract will hold tickets that will be delegated to a chosen delegatee.\\n */\\ncontract Delegation {\\n  /**\\n   * @notice A structure to define arbitrary contract calls.\\n   * @param to The address to call\\n   * @param data The call data\\n   */\\n  struct Call {\\n    address to;\\n    bytes data;\\n  }\\n\\n  /// @notice Contract owner.\\n  address private _owner;\\n\\n  /// @notice Timestamp until which the delegation is locked.\\n  uint96 public lockUntil;\\n\\n  /**\\n   * @notice Initializes the delegation.\\n   * @param _lockUntil Timestamp until which the delegation is locked\\n   */\\n  function initialize(uint96 _lockUntil) external {\\n    require(_owner == address(0), \\\"Delegation/already-init\\\");\\n    _owner = msg.sender;\\n    lockUntil = _lockUntil;\\n  }\\n\\n  /**\\n   * @notice Executes calls on behalf of this contract.\\n   * @param calls The array of calls to be executed\\n   * @return An array of the return values for each of the calls\\n   */\\n  function executeCalls(Call[] calldata calls) external onlyOwner returns (bytes[] memory) {\\n    uint256 _callsLength = calls.length;\\n    bytes[] memory response = new bytes[](_callsLength);\\n    Call memory call;\\n\\n    for (uint256 i; i < _callsLength; i++) {\\n      call = calls[i];\\n      response[i] = _executeCall(call.to, call.data);\\n    }\\n\\n    return response;\\n  }\\n\\n  /**\\n   * @notice Set the timestamp until which the delegation is locked.\\n   * @param _lockUntil The timestamp until which the delegation is locked\\n   */\\n  function setLockUntil(uint96 _lockUntil) external onlyOwner {\\n    lockUntil = _lockUntil;\\n  }\\n\\n  /**\\n   * @notice Executes a call to another contract.\\n   * @param to The address to call\\n   * @param data The call data\\n   * @return The return data from the call\\n   */\\n  function _executeCall(address to, bytes memory data) internal returns (bytes memory) {\\n    (bool succeeded, bytes memory returnValue) = to.call{ value: 0 }(data);\\n    require(succeeded, string(returnValue));\\n    return returnValue;\\n  }\\n\\n  /// @notice Modifier to only allow the contract owner to call a function\\n  modifier onlyOwner() {\\n    require(msg.sender == _owner, \\\"Delegation/only-owner\\\");\\n    _;\\n  }\\n}\\n\",\"keccak256\":\"0xc2ea113565355fe530fc67b8fb6f8b8fbe3dfdca41e95dfe90599a45e315fff6\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 16059,
                "contract": "@pooltogether/v4-twab-delegator/contracts/Delegation.sol:Delegation",
                "label": "_owner",
                "offset": 0,
                "slot": "0",
                "type": "t_address"
              },
              {
                "astId": 16062,
                "contract": "@pooltogether/v4-twab-delegator/contracts/Delegation.sol:Delegation",
                "label": "lockUntil",
                "offset": 20,
                "slot": "0",
                "type": "t_uint96"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_uint96": {
                "encoding": "inplace",
                "label": "uint96",
                "numberOfBytes": "12"
              }
            }
          },
          "userdoc": {
            "kind": "user",
            "methods": {
              "executeCalls((address,bytes)[])": {
                "notice": "Executes calls on behalf of this contract."
              },
              "initialize(uint96)": {
                "notice": "Initializes the delegation."
              },
              "lockUntil()": {
                "notice": "Timestamp until which the delegation is locked."
              },
              "setLockUntil(uint96)": {
                "notice": "Set the timestamp until which the delegation is locked."
              }
            },
            "notice": "A Delegation allows his owner to execute calls on behalf of the contract.",
            "version": 1
          }
        }
      },
      "@pooltogether/v4-twab-delegator/contracts/LowLevelDelegator.sol": {
        "LowLevelDelegator": {
          "abi": [
            {
              "inputs": [],
              "stateMutability": "nonpayable",
              "type": "constructor"
            },
            {
              "inputs": [],
              "name": "delegationInstance",
              "outputs": [
                {
                  "internalType": "contract Delegation",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            }
          ],
          "devdoc": {
            "kind": "dev",
            "methods": {},
            "title": "The LowLevelDelegator allows users to create delegations very cheaply.",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_16244": {
                  "entryPoint": null,
                  "id": 16244,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "abi_encode_tuple_t_uint96__to_t_uint96__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:216:101",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:101",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "113:101:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "123:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "135:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "146:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "131:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "131:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "123:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "165:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "180:6:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "196:2:101",
                                                "type": "",
                                                "value": "96"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "200:1:101",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "192:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "192:10:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "204:1:101",
                                            "type": "",
                                            "value": "1"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "sub",
                                          "nodeType": "YulIdentifier",
                                          "src": "188:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "188:18:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "176:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "176:31:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "158:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "158:50:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "158:50:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint96__to_t_uint96__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "82:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "93:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "104:4:101",
                            "type": ""
                          }
                        ],
                        "src": "14:200:101"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_encode_tuple_t_uint96__to_t_uint96__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(96, 1), 1)))\n    }\n}",
                  "id": 101,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b5060405161001d906100ae565b604051809103906000f080158015610039573d6000803e3d6000fd5b50600080546001600160a01b0319166001600160a01b0392909216918217815560405163909f1cad60e01b8152600481019190915263909f1cad90602401600060405180830381600087803b15801561009157600080fd5b505af11580156100a5573d6000803e3d6000fd5b505050506100bb565b6107fc8061017483390190565b60ab806100c96000396000f3fe6080604052348015600f57600080fd5b506004361060285760003560e01c806363fc611f14602d575b600080fd5b600054604c9073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390f3fea26469706673582212207e578515f4eea8e3b993906ce19abc9228ae3cf7295cc58835eda10faa2cd65a64736f6c63430008060033608060405234801561001057600080fd5b506107dc806100206000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80633c78929e14610051578063909f1cad146100a3578063ac2293af146100b8578063de9443bf146100cb575b600080fd5b600054610081907401000000000000000000000000000000000000000090046bffffffffffffffffffffffff1681565b6040516bffffffffffffffffffffffff90911681526020015b60405180910390f35b6100b66100b136600461049e565b6100eb565b005b6100b66100c636600461049e565b610182565b6100de6100d9366004610429565b610234565b60405161009a919061051b565b60005473ffffffffffffffffffffffffffffffffffffffff16156101565760405162461bcd60e51b815260206004820152601760248201527f44656c65676174696f6e2f616c72656164792d696e697400000000000000000060448201526064015b60405180910390fd5b6bffffffffffffffffffffffff1674010000000000000000000000000000000000000000023317600055565b60005473ffffffffffffffffffffffffffffffffffffffff1633146101e95760405162461bcd60e51b815260206004820152601560248201527f44656c65676174696f6e2f6f6e6c792d6f776e65720000000000000000000000604482015260640161014d565b600080546bffffffffffffffffffffffff909216740100000000000000000000000000000000000000000273ffffffffffffffffffffffffffffffffffffffff909216919091179055565b60005460609073ffffffffffffffffffffffffffffffffffffffff16331461029e5760405162461bcd60e51b815260206004820152601560248201527f44656c65676174696f6e2f6f6e6c792d6f776e65720000000000000000000000604482015260640161014d565b8160008167ffffffffffffffff8111156102ba576102ba610790565b6040519080825280602002602001820160405280156102ed57816020015b60608152602001906001900390816102d85790505b5060408051808201909152600081526060602082015290915060005b83811015610382578686828181106103235761032361077a565b905060200281019061033591906105ae565b61033e9061063c565b91506103528260000151836020015161038d565b8382815181106103645761036461077a565b6020026020010181905250808061037a90610733565b915050610309565b509095945050505050565b60606000808473ffffffffffffffffffffffffffffffffffffffff166000856040516103b991906104ff565b60006040518083038185875af1925050503d80600081146103f6576040519150601f19603f3d011682016040523d82523d6000602084013e6103fb565b606091505b50915091508181906104205760405162461bcd60e51b815260040161014d919061059b565b50949350505050565b6000806020838503121561043c57600080fd5b823567ffffffffffffffff8082111561045457600080fd5b818501915085601f83011261046857600080fd5b81358181111561047757600080fd5b8660208260051b850101111561048c57600080fd5b60209290920196919550909350505050565b6000602082840312156104b057600080fd5b81356bffffffffffffffffffffffff811681146104cc57600080fd5b9392505050565b600081518084526104eb816020860160208601610703565b601f01601f19169290920160200192915050565b60008251610511818460208701610703565b9190910192915050565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b8281101561058e577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc088860301845261057c8583516104d3565b94509285019290850190600101610542565b5092979650505050505050565b6020815260006104cc60208301846104d3565b600082357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc183360301811261051157600080fd5b6040805190810167ffffffffffffffff8111828210171561060557610605610790565b60405290565b604051601f8201601f1916810167ffffffffffffffff8111828210171561063457610634610790565b604052919050565b60006040823603121561064e57600080fd5b6106566105e2565b823573ffffffffffffffffffffffffffffffffffffffff8116811461067a57600080fd5b815260208381013567ffffffffffffffff8082111561069857600080fd5b9085019036601f8301126106ab57600080fd5b8135818111156106bd576106bd610790565b6106cf84601f19601f8401160161060b565b915080825236848285010111156106e557600080fd5b80848401858401376000908201840152918301919091525092915050565b60005b8381101561071e578181015183820152602001610706565b8381111561072d576000848401525b50505050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561077357634e487b7160e01b600052601160045260246000fd5b5060010190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fdfea2646970667358221220e12294174ea821f82c2a1f83c4f824acb92d2de0e672f2347c9eb5611a26a93564736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH2 0x1D SWAP1 PUSH2 0xAE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 PUSH1 0x0 CREATE DUP1 ISZERO DUP1 ISZERO PUSH2 0x39 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP PUSH1 0x0 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 DUP3 OR DUP2 SSTORE PUSH1 0x40 MLOAD PUSH4 0x909F1CAD PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH4 0x909F1CAD SWAP1 PUSH1 0x24 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x91 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xA5 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH2 0xBB JUMP JUMPDEST PUSH2 0x7FC DUP1 PUSH2 0x174 DUP4 CODECOPY ADD SWAP1 JUMP JUMPDEST PUSH1 0xAB DUP1 PUSH2 0xC9 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH1 0xF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH1 0x28 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x63FC611F EQ PUSH1 0x2D JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x4C SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH31 0x578515F4EEA8E3B993906CE19ABC9228AE3CF7295CC58835EDA10FAA2CD65A PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x7DC 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 0x4C JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x3C78929E EQ PUSH2 0x51 JUMPI DUP1 PUSH4 0x909F1CAD EQ PUSH2 0xA3 JUMPI DUP1 PUSH4 0xAC2293AF EQ PUSH2 0xB8 JUMPI DUP1 PUSH4 0xDE9443BF EQ PUSH2 0xCB JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SLOAD PUSH2 0x81 SWAP1 PUSH21 0x10000000000000000000000000000000000000000 SWAP1 DIV PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xB6 PUSH2 0xB1 CALLDATASIZE PUSH1 0x4 PUSH2 0x49E JUMP JUMPDEST PUSH2 0xEB JUMP JUMPDEST STOP JUMPDEST PUSH2 0xB6 PUSH2 0xC6 CALLDATASIZE PUSH1 0x4 PUSH2 0x49E JUMP JUMPDEST PUSH2 0x182 JUMP JUMPDEST PUSH2 0xDE PUSH2 0xD9 CALLDATASIZE PUSH1 0x4 PUSH2 0x429 JUMP JUMPDEST PUSH2 0x234 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x9A SWAP2 SWAP1 PUSH2 0x51B JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND ISZERO PUSH2 0x156 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 0x44656C65676174696F6E2F616C72656164792D696E6974000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH21 0x10000000000000000000000000000000000000000 MUL CALLER OR PUSH1 0x0 SSTORE JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER EQ PUSH2 0x1E9 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 0x44656C65676174696F6E2F6F6E6C792D6F776E65720000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x14D JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF SWAP1 SWAP3 AND PUSH21 0x10000000000000000000000000000000000000000 MUL PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x60 SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER EQ PUSH2 0x29E 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 0x44656C65676174696F6E2F6F6E6C792D6F776E65720000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x14D JUMP JUMPDEST DUP2 PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2BA JUMPI PUSH2 0x2BA PUSH2 0x790 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x2ED JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x2D8 JUMPI SWAP1 POP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP2 MSTORE PUSH1 0x60 PUSH1 0x20 DUP3 ADD MSTORE SWAP1 SWAP2 POP PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x382 JUMPI DUP7 DUP7 DUP3 DUP2 DUP2 LT PUSH2 0x323 JUMPI PUSH2 0x323 PUSH2 0x77A JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x335 SWAP2 SWAP1 PUSH2 0x5AE JUMP JUMPDEST PUSH2 0x33E SWAP1 PUSH2 0x63C JUMP JUMPDEST SWAP2 POP PUSH2 0x352 DUP3 PUSH1 0x0 ADD MLOAD DUP4 PUSH1 0x20 ADD MLOAD PUSH2 0x38D JUMP JUMPDEST DUP4 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x364 JUMPI PUSH2 0x364 PUSH2 0x77A JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP DUP1 DUP1 PUSH2 0x37A SWAP1 PUSH2 0x733 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x309 JUMP JUMPDEST POP SWAP1 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 DUP6 PUSH1 0x40 MLOAD PUSH2 0x3B9 SWAP2 SWAP1 PUSH2 0x4FF 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 0x3F6 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 0x3FB JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP DUP2 DUP2 SWAP1 PUSH2 0x420 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x14D SWAP2 SWAP1 PUSH2 0x59B JUMP JUMPDEST POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x43C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x454 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x468 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x477 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP7 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x48C 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 0x4B0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x4CC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH2 0x4EB DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH2 0x703 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 0x511 DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x703 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 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 0x58E JUMPI PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 DUP9 DUP7 SUB ADD DUP5 MSTORE PUSH2 0x57C DUP6 DUP4 MLOAD PUSH2 0x4D3 JUMP JUMPDEST SWAP5 POP SWAP3 DUP6 ADD SWAP3 SWAP1 DUP6 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x542 JUMP JUMPDEST POP SWAP3 SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0x4CC PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x4D3 JUMP JUMPDEST PUSH1 0x0 DUP3 CALLDATALOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1 DUP4 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x511 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP1 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x605 JUMPI PUSH2 0x605 PUSH2 0x790 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 0x634 JUMPI PUSH2 0x634 PUSH2 0x790 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 CALLDATASIZE SUB SLT ISZERO PUSH2 0x64E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x656 PUSH2 0x5E2 JUMP JUMPDEST DUP3 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x67A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MSTORE PUSH1 0x20 DUP4 DUP2 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x698 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 DUP6 ADD SWAP1 CALLDATASIZE PUSH1 0x1F DUP4 ADD SLT PUSH2 0x6AB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x6BD JUMPI PUSH2 0x6BD PUSH2 0x790 JUMP JUMPDEST PUSH2 0x6CF DUP5 PUSH1 0x1F NOT PUSH1 0x1F DUP5 ADD AND ADD PUSH2 0x60B JUMP JUMPDEST SWAP2 POP DUP1 DUP3 MSTORE CALLDATASIZE DUP5 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x6E5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 DUP5 DUP5 ADD DUP6 DUP5 ADD CALLDATACOPY PUSH1 0x0 SWAP1 DUP3 ADD DUP5 ADD MSTORE SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x71E JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x706 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x72D JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x773 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP 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 0xE1 0x22 SWAP5 OR 0x4E 0xA8 0x21 0xF8 0x2C 0x2A 0x1F DUP4 0xC4 0xF8 0x24 0xAC 0xB9 0x2D 0x2D 0xE0 0xE6 PUSH19 0xF2347C9EB5611A26A93564736F6C6343000806 STOP CALLER ",
              "sourceMap": "223:1585:79:-:0;;;420:108;;;;;;;;;;461:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;440:18:79;:37;;-1:-1:-1;;;;;;440:37:79;-1:-1:-1;;;;;440:37:79;;;;;;;;;483:40;;-1:-1:-1;;;483:40:79;;;;;158:50:101;;;;483:29:79;;131:18:101;;483:40:79;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;223:1585;;;;;;;;;;:::o;113:101:101:-;223:1585:79;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@delegationInstance_16223": {
                  "entryPoint": null,
                  "id": 16223,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "abi_encode_tuple_t_contract$_Delegation_$16211__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:262:101",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:101",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "135:125:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "145:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "157:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "168:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "153:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "153:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "145:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "187:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "202:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "210:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "198:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "198:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "180:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "180:74:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "180:74:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_Delegation_$16211__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "104:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "115:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "126:4:101",
                            "type": ""
                          }
                        ],
                        "src": "14:246:101"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_encode_tuple_t_contract$_Delegation_$16211__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n}",
                  "id": 101,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "6080604052348015600f57600080fd5b506004361060285760003560e01c806363fc611f14602d575b600080fd5b600054604c9073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390f3fea26469706673582212207e578515f4eea8e3b993906ce19abc9228ae3cf7295cc58835eda10faa2cd65a64736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH1 0xF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH1 0x28 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x63FC611F EQ PUSH1 0x2D JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x4C SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH31 0x578515F4EEA8E3B993906CE19ABC9228AE3CF7295CC58835EDA10FAA2CD65A PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "223:1585:79:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;343:36;;;;;;;;;;;;210:42:101;198:55;;;180:74;;168:2;153:18;343:36:79;;;;;;"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "34200",
                "executionCost": "infinite",
                "totalCost": "infinite"
              },
              "external": {
                "delegationInstance()": "2279"
              },
              "internal": {
                "_computeAddress(bytes32)": "infinite",
                "_computeSalt(address,bytes32)": "infinite",
                "_createDelegation(bytes32,uint96)": "infinite"
              }
            },
            "methodIdentifiers": {
              "delegationInstance()": "63fc611f"
            }
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[],\"name\":\"delegationInstance\",\"outputs\":[{\"internalType\":\"contract Delegation\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"title\":\"The LowLevelDelegator allows users to create delegations very cheaply.\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"constructor\":{\"notice\":\"Contract constructor.\"},\"delegationInstance()\":{\"notice\":\"The instance to which all proxies will point.\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/v4-twab-delegator/contracts/LowLevelDelegator.sol\":\"LowLevelDelegator\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/proxy/Clones.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (proxy/Clones.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev https://eips.ethereum.org/EIPS/eip-1167[EIP 1167] is a standard for\\n * deploying minimal proxy contracts, also known as \\\"clones\\\".\\n *\\n * > To simply and cheaply clone contract functionality in an immutable way, this standard specifies\\n * > a minimal bytecode implementation that delegates all calls to a known, fixed address.\\n *\\n * The library includes functions to deploy a proxy using either `create` (traditional deployment) or `create2`\\n * (salted deterministic deployment). It also includes functions to predict the addresses of clones deployed using the\\n * deterministic method.\\n *\\n * _Available since v3.4._\\n */\\nlibrary Clones {\\n    /**\\n     * @dev Deploys and returns the address of a clone that mimics the behaviour of `implementation`.\\n     *\\n     * This function uses the create opcode, which should never revert.\\n     */\\n    function clone(address implementation) internal returns (address instance) {\\n        assembly {\\n            let ptr := mload(0x40)\\n            mstore(ptr, 0x3d602d80600a3d3981f3363d3d373d3d3d363d73000000000000000000000000)\\n            mstore(add(ptr, 0x14), shl(0x60, implementation))\\n            mstore(add(ptr, 0x28), 0x5af43d82803e903d91602b57fd5bf30000000000000000000000000000000000)\\n            instance := create(0, ptr, 0x37)\\n        }\\n        require(instance != address(0), \\\"ERC1167: create failed\\\");\\n    }\\n\\n    /**\\n     * @dev Deploys and returns the address of a clone that mimics the behaviour of `implementation`.\\n     *\\n     * This function uses the create2 opcode and a `salt` to deterministically deploy\\n     * the clone. Using the same `implementation` and `salt` multiple time will revert, since\\n     * the clones cannot be deployed twice at the same address.\\n     */\\n    function cloneDeterministic(address implementation, bytes32 salt) internal returns (address instance) {\\n        assembly {\\n            let ptr := mload(0x40)\\n            mstore(ptr, 0x3d602d80600a3d3981f3363d3d373d3d3d363d73000000000000000000000000)\\n            mstore(add(ptr, 0x14), shl(0x60, implementation))\\n            mstore(add(ptr, 0x28), 0x5af43d82803e903d91602b57fd5bf30000000000000000000000000000000000)\\n            instance := create2(0, ptr, 0x37, salt)\\n        }\\n        require(instance != address(0), \\\"ERC1167: create2 failed\\\");\\n    }\\n\\n    /**\\n     * @dev Computes the address of a clone deployed using {Clones-cloneDeterministic}.\\n     */\\n    function predictDeterministicAddress(\\n        address implementation,\\n        bytes32 salt,\\n        address deployer\\n    ) internal pure returns (address predicted) {\\n        assembly {\\n            let ptr := mload(0x40)\\n            mstore(ptr, 0x3d602d80600a3d3981f3363d3d373d3d3d363d73000000000000000000000000)\\n            mstore(add(ptr, 0x14), shl(0x60, implementation))\\n            mstore(add(ptr, 0x28), 0x5af43d82803e903d91602b57fd5bf3ff00000000000000000000000000000000)\\n            mstore(add(ptr, 0x38), shl(0x60, deployer))\\n            mstore(add(ptr, 0x4c), salt)\\n            mstore(add(ptr, 0x6c), keccak256(ptr, 0x37))\\n            predicted := keccak256(add(ptr, 0x37), 0x55)\\n        }\\n    }\\n\\n    /**\\n     * @dev Computes the address of a clone deployed using {Clones-cloneDeterministic}.\\n     */\\n    function predictDeterministicAddress(address implementation, bytes32 salt)\\n        internal\\n        view\\n        returns (address predicted)\\n    {\\n        return predictDeterministicAddress(implementation, salt, address(this));\\n    }\\n}\\n\",\"keccak256\":\"0x1cc0efb01cbf008b768fd7b334786a6e358809198bb7e67f1c530af4957c6a21\",\"license\":\"MIT\"},\"@pooltogether/v4-twab-delegator/contracts/Delegation.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @title Contract instantiated via CREATE2 to handle a Delegation by a delegator to a delegatee.\\n * @notice A Delegation allows his owner to execute calls on behalf of the contract.\\n * @dev This contract is intended to be counterfactually instantiated via CREATE2 through the LowLevelDelegator contract.\\n * @dev This contract will hold tickets that will be delegated to a chosen delegatee.\\n */\\ncontract Delegation {\\n  /**\\n   * @notice A structure to define arbitrary contract calls.\\n   * @param to The address to call\\n   * @param data The call data\\n   */\\n  struct Call {\\n    address to;\\n    bytes data;\\n  }\\n\\n  /// @notice Contract owner.\\n  address private _owner;\\n\\n  /// @notice Timestamp until which the delegation is locked.\\n  uint96 public lockUntil;\\n\\n  /**\\n   * @notice Initializes the delegation.\\n   * @param _lockUntil Timestamp until which the delegation is locked\\n   */\\n  function initialize(uint96 _lockUntil) external {\\n    require(_owner == address(0), \\\"Delegation/already-init\\\");\\n    _owner = msg.sender;\\n    lockUntil = _lockUntil;\\n  }\\n\\n  /**\\n   * @notice Executes calls on behalf of this contract.\\n   * @param calls The array of calls to be executed\\n   * @return An array of the return values for each of the calls\\n   */\\n  function executeCalls(Call[] calldata calls) external onlyOwner returns (bytes[] memory) {\\n    uint256 _callsLength = calls.length;\\n    bytes[] memory response = new bytes[](_callsLength);\\n    Call memory call;\\n\\n    for (uint256 i; i < _callsLength; i++) {\\n      call = calls[i];\\n      response[i] = _executeCall(call.to, call.data);\\n    }\\n\\n    return response;\\n  }\\n\\n  /**\\n   * @notice Set the timestamp until which the delegation is locked.\\n   * @param _lockUntil The timestamp until which the delegation is locked\\n   */\\n  function setLockUntil(uint96 _lockUntil) external onlyOwner {\\n    lockUntil = _lockUntil;\\n  }\\n\\n  /**\\n   * @notice Executes a call to another contract.\\n   * @param to The address to call\\n   * @param data The call data\\n   * @return The return data from the call\\n   */\\n  function _executeCall(address to, bytes memory data) internal returns (bytes memory) {\\n    (bool succeeded, bytes memory returnValue) = to.call{ value: 0 }(data);\\n    require(succeeded, string(returnValue));\\n    return returnValue;\\n  }\\n\\n  /// @notice Modifier to only allow the contract owner to call a function\\n  modifier onlyOwner() {\\n    require(msg.sender == _owner, \\\"Delegation/only-owner\\\");\\n    _;\\n  }\\n}\\n\",\"keccak256\":\"0xc2ea113565355fe530fc67b8fb6f8b8fbe3dfdca41e95dfe90599a45e315fff6\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-twab-delegator/contracts/LowLevelDelegator.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/proxy/Clones.sol\\\";\\n\\nimport \\\"./Delegation.sol\\\";\\n\\n/// @title The LowLevelDelegator allows users to create delegations very cheaply.\\ncontract LowLevelDelegator {\\n  using Clones for address;\\n\\n  /// @notice The instance to which all proxies will point.\\n  Delegation public delegationInstance;\\n\\n  /// @notice Contract constructor.\\n  constructor() {\\n    delegationInstance = new Delegation();\\n    delegationInstance.initialize(uint96(0));\\n  }\\n\\n  /**\\n   * @notice Creates a clone of the delegation.\\n   * @param _salt Random number used to deterministically deploy the clone\\n   * @param _lockUntil Timestamp until which the delegation is locked\\n   * @return The newly created delegation\\n   */\\n  function _createDelegation(bytes32 _salt, uint96 _lockUntil) internal returns (Delegation) {\\n    Delegation _delegation = Delegation(address(delegationInstance).cloneDeterministic(_salt));\\n    _delegation.initialize(_lockUntil);\\n    return _delegation;\\n  }\\n\\n  /**\\n   * @notice Computes the address of a clone, also known as minimal proxy contract.\\n   * @param _salt Random number used to compute the address\\n   * @return Address at which the clone will be deployed\\n   */\\n  function _computeAddress(bytes32 _salt) internal view returns (address) {\\n    return address(delegationInstance).predictDeterministicAddress(_salt, address(this));\\n  }\\n\\n  /**\\n   * @notice Computes salt used to deterministically deploy a clone.\\n   * @param _delegator Address of the delegator\\n   * @param _slot Slot of the delegation\\n   * @return Salt used to deterministically deploy a clone.\\n   */\\n  function _computeSalt(address _delegator, bytes32 _slot) internal pure returns (bytes32) {\\n    return keccak256(abi.encodePacked(_delegator, _slot));\\n  }\\n}\\n\",\"keccak256\":\"0x9b16bf6411ae2a363bac7dcd8afede08114420920677388969ec68e455c5427f\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 16223,
                "contract": "@pooltogether/v4-twab-delegator/contracts/LowLevelDelegator.sol:LowLevelDelegator",
                "label": "delegationInstance",
                "offset": 0,
                "slot": "0",
                "type": "t_contract(Delegation)16211"
              }
            ],
            "types": {
              "t_contract(Delegation)16211": {
                "encoding": "inplace",
                "label": "contract Delegation",
                "numberOfBytes": "20"
              }
            }
          },
          "userdoc": {
            "kind": "user",
            "methods": {
              "constructor": {
                "notice": "Contract constructor."
              },
              "delegationInstance()": {
                "notice": "The instance to which all proxies will point."
              }
            },
            "version": 1
          }
        }
      },
      "@pooltogether/v4-twab-delegator/contracts/PermitAndMulticall.sol": {
        "PermitAndMulticall": {
          "abi": [],
          "devdoc": {
            "kind": "dev",
            "methods": {},
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "linkReferences": {},
              "object": "6080604052348015600f57600080fd5b50603f80601d6000396000f3fe6080604052600080fdfea264697066735822122019ee23320aaad8ba75ad6c14a3345298bfe87f23c5fd10fd4bb78ee20b54b04564736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH1 0xF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x3F DUP1 PUSH1 0x1D PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 NOT 0xEE 0x23 ORIGIN EXP 0xAA 0xD8 0xBA PUSH22 0xAD6C14A3345298BFE87F23C5FD10FD4BB78EE20B54B0 GASLIMIT PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "297:1700:80:-:0;;;;;;;;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {},
              "generatedSources": [],
              "immutableReferences": {},
              "linkReferences": {},
              "object": "6080604052600080fdfea264697066735822122019ee23320aaad8ba75ad6c14a3345298bfe87f23c5fd10fd4bb78ee20b54b04564736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 NOT 0xEE 0x23 ORIGIN EXP 0xAA 0xD8 0xBA PUSH22 0xAD6C14A3345298BFE87F23C5FD10FD4BB78EE20B54B0 GASLIMIT PUSH5 0x736F6C6343 STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "297:1700:80:-:0;;;;;"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "12600",
                "executionCost": "66",
                "totalCost": "12666"
              },
              "internal": {
                "_multicall(bytes calldata[] calldata)": "infinite",
                "_permitAndMulticall(contract IERC20Permit,uint256,struct PermitAndMulticall.Signature calldata,bytes calldata[] calldata)": "infinite"
              }
            },
            "methodIdentifiers": {}
          },
          "metadata": "{\"compiler\":{\"version\":\"0.8.6+commit.11564f7e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"notice\":\"Allows a user to permit token spend and then call multiple functions on a contract.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/v4-twab-delegator/contracts/PermitAndMulticall.sol\":\"PermitAndMulticall\"},\"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\"},\"@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\"},\"@pooltogether/v4-twab-delegator/contracts/PermitAndMulticall.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol\\\";\\nimport \\\"@openzeppelin/contracts/utils/Address.sol\\\";\\n\\n/**\\n * @notice Allows a user to permit token spend and then call multiple functions on a contract.\\n */\\ncontract PermitAndMulticall {\\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   */\\n  struct Signature {\\n    uint256 deadline;\\n    uint8 v;\\n    bytes32 r;\\n    bytes32 s;\\n  }\\n\\n  /**\\n   * @notice Allows a user to call multiple functions on the same contract.  Useful for EOA who want to batch transactions.\\n   * @param _data An array of encoded function calls.  The calls must be abi-encoded calls to this contract.\\n   * @return The results from each function call\\n   */\\n  function _multicall(bytes[] calldata _data) internal virtual returns (bytes[] memory) {\\n    uint256 _dataLength = _data.length;\\n    bytes[] memory results = new bytes[](_dataLength);\\n\\n    for (uint256 i; i < _dataLength; i++) {\\n      results[i] = Address.functionDelegateCall(address(this), _data[i]);\\n    }\\n\\n    return results;\\n  }\\n\\n  /**\\n   * @notice Allow a user to approve an ERC20 token and run various calls in one transaction.\\n   * @param _permitToken Address of the ERC20 token\\n   * @param _amount Amount of tickets to approve\\n   * @param _permitSignature Permit signature\\n   * @param _data Datas to call with `functionDelegateCall`\\n   */\\n  function _permitAndMulticall(\\n    IERC20Permit _permitToken,\\n    uint256 _amount,\\n    Signature calldata _permitSignature,\\n    bytes[] calldata _data\\n  ) internal {\\n    _permitToken.permit(\\n      msg.sender,\\n      address(this),\\n      _amount,\\n      _permitSignature.deadline,\\n      _permitSignature.v,\\n      _permitSignature.r,\\n      _permitSignature.s\\n    );\\n\\n    _multicall(_data);\\n  }\\n}\\n\",\"keccak256\":\"0x2137f42bfa852716a1df09c2a452d62043236b1a783023f1ee1b05d1f958f4c5\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [],
            "types": null
          },
          "userdoc": {
            "kind": "user",
            "methods": {},
            "notice": "Allows a user to permit token spend and then call multiple functions on a contract.",
            "version": 1
          }
        }
      },
      "@pooltogether/v4-twab-delegator/contracts/TWABDelegator.sol": {
        "TWABDelegator": {
          "abi": [
            {
              "inputs": [
                {
                  "internalType": "string",
                  "name": "name_",
                  "type": "string"
                },
                {
                  "internalType": "string",
                  "name": "symbol_",
                  "type": "string"
                },
                {
                  "internalType": "contract ITicket",
                  "name": "_ticket",
                  "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": "uint256",
                  "name": "slot",
                  "type": "uint256"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "delegatee",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint96",
                  "name": "lockUntil",
                  "type": "uint96"
                },
                {
                  "indexed": false,
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                }
              ],
              "name": "DelegateeUpdated",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "delegator",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "uint256",
                  "name": "slot",
                  "type": "uint256"
                },
                {
                  "indexed": false,
                  "internalType": "uint96",
                  "name": "lockUntil",
                  "type": "uint96"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "delegatee",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "contract Delegation",
                  "name": "delegation",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                }
              ],
              "name": "DelegationCreated",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "delegator",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "uint256",
                  "name": "slot",
                  "type": "uint256"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                }
              ],
              "name": "DelegationFunded",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "delegator",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "uint256",
                  "name": "slot",
                  "type": "uint256"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                }
              ],
              "name": "DelegationFundedFromStake",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "delegator",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "representative",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "bool",
                  "name": "set",
                  "type": "bool"
                }
              ],
              "name": "RepresentativeSet",
              "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": "delegator",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "TicketsStaked",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "delegator",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "recipient",
                  "type": "address"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                }
              ],
              "name": "TicketsUnstaked",
              "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"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "delegator",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "uint256",
                  "name": "slot",
                  "type": "uint256"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "to",
                  "type": "address"
                }
              ],
              "name": "TransferredDelegation",
              "type": "event"
            },
            {
              "anonymous": false,
              "inputs": [
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "delegator",
                  "type": "address"
                },
                {
                  "indexed": true,
                  "internalType": "uint256",
                  "name": "slot",
                  "type": "uint256"
                },
                {
                  "indexed": false,
                  "internalType": "uint256",
                  "name": "amount",
                  "type": "uint256"
                },
                {
                  "indexed": true,
                  "internalType": "address",
                  "name": "user",
                  "type": "address"
                }
              ],
              "name": "WithdrewDelegationToStake",
              "type": "event"
            },
            {
              "inputs": [],
              "name": "MAX_LOCK",
              "outputs": [
                {
                  "internalType": "uint256",
                  "name": "",
                  "type": "uint256"
                }
              ],
              "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": [
                {
                  "internalType": "address",
                  "name": "_delegator",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_slot",
                  "type": "uint256"
                }
              ],
              "name": "computeDelegationAddress",
              "outputs": [
                {
                  "internalType": "address",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_delegator",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_slot",
                  "type": "uint256"
                },
                {
                  "internalType": "address",
                  "name": "_delegatee",
                  "type": "address"
                },
                {
                  "internalType": "uint96",
                  "name": "_lockDuration",
                  "type": "uint96"
                }
              ],
              "name": "createDelegation",
              "outputs": [
                {
                  "internalType": "contract Delegation",
                  "name": "",
                  "type": "address"
                }
              ],
              "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": [],
              "name": "delegationInstance",
              "outputs": [
                {
                  "internalType": "contract Delegation",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_delegator",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_slot",
                  "type": "uint256"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "fundDelegation",
              "outputs": [
                {
                  "internalType": "contract Delegation",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_delegator",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_slot",
                  "type": "uint256"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "fundDelegationFromStake",
              "outputs": [
                {
                  "internalType": "contract Delegation",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_delegator",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_slot",
                  "type": "uint256"
                }
              ],
              "name": "getDelegation",
              "outputs": [
                {
                  "internalType": "contract Delegation",
                  "name": "delegation",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "delegatee",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "balance",
                  "type": "uint256"
                },
                {
                  "internalType": "uint256",
                  "name": "lockUntil",
                  "type": "uint256"
                },
                {
                  "internalType": "bool",
                  "name": "wasCreated",
                  "type": "bool"
                }
              ],
              "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": [
                {
                  "internalType": "address",
                  "name": "_delegator",
                  "type": "address"
                },
                {
                  "internalType": "address",
                  "name": "_representative",
                  "type": "address"
                }
              ],
              "name": "isRepresentativeOf",
              "outputs": [
                {
                  "internalType": "bool",
                  "name": "",
                  "type": "bool"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "bytes[]",
                  "name": "_data",
                  "type": "bytes[]"
                }
              ],
              "name": "multicall",
              "outputs": [
                {
                  "internalType": "bytes[]",
                  "name": "",
                  "type": "bytes[]"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "name",
              "outputs": [
                {
                  "internalType": "string",
                  "name": "",
                  "type": "string"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                },
                {
                  "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 PermitAndMulticall.Signature",
                  "name": "_permitSignature",
                  "type": "tuple"
                },
                {
                  "internalType": "bytes[]",
                  "name": "_data",
                  "type": "bytes[]"
                }
              ],
              "name": "permitAndMulticall",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_representative",
                  "type": "address"
                },
                {
                  "internalType": "bool",
                  "name": "_set",
                  "type": "bool"
                }
              ],
              "name": "setRepresentative",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "stake",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "symbol",
              "outputs": [
                {
                  "internalType": "string",
                  "name": "",
                  "type": "string"
                }
              ],
              "stateMutability": "view",
              "type": "function"
            },
            {
              "inputs": [],
              "name": "ticket",
              "outputs": [
                {
                  "internalType": "contract ITicket",
                  "name": "",
                  "type": "address"
                }
              ],
              "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": "uint256",
                  "name": "_slot",
                  "type": "uint256"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                },
                {
                  "internalType": "address",
                  "name": "_to",
                  "type": "address"
                }
              ],
              "name": "transferDelegationTo",
              "outputs": [
                {
                  "internalType": "contract Delegation",
                  "name": "",
                  "type": "address"
                }
              ],
              "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": "address",
                  "name": "_to",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "unstake",
              "outputs": [],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_delegator",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_slot",
                  "type": "uint256"
                },
                {
                  "internalType": "address",
                  "name": "_delegatee",
                  "type": "address"
                },
                {
                  "internalType": "uint96",
                  "name": "_lockDuration",
                  "type": "uint96"
                }
              ],
              "name": "updateDelegatee",
              "outputs": [
                {
                  "internalType": "contract Delegation",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            },
            {
              "inputs": [
                {
                  "internalType": "address",
                  "name": "_delegator",
                  "type": "address"
                },
                {
                  "internalType": "uint256",
                  "name": "_slot",
                  "type": "uint256"
                },
                {
                  "internalType": "uint256",
                  "name": "_amount",
                  "type": "uint256"
                }
              ],
              "name": "withdrawDelegationToStake",
              "outputs": [
                {
                  "internalType": "contract Delegation",
                  "name": "",
                  "type": "address"
                }
              ],
              "stateMutability": "nonpayable",
              "type": "function"
            }
          ],
          "devdoc": {
            "events": {
              "DelegateeUpdated(address,uint256,address,uint96,address)": {
                "params": {
                  "delegatee": "Address of the delegatee",
                  "delegator": "Address of the delegator",
                  "lockUntil": "Timestamp until which the delegation is locked",
                  "slot": "Slot of the delegation",
                  "user": "Address of the user who updated the delegatee"
                }
              },
              "DelegationCreated(address,uint256,uint96,address,address,address)": {
                "params": {
                  "delegatee": "Address of the delegatee",
                  "delegation": "Address of the delegation that was created",
                  "delegator": "Delegator of the delegation",
                  "lockUntil": "Timestamp until which the delegation is locked",
                  "slot": "Slot of the delegation",
                  "user": "Address of the user who created the delegation"
                }
              },
              "DelegationFunded(address,uint256,uint256,address)": {
                "params": {
                  "amount": "Amount of tickets that were sent to the delegation",
                  "delegator": "Address of the delegator",
                  "slot": "Slot of the delegation",
                  "user": "Address of the user who funded the delegation"
                }
              },
              "DelegationFundedFromStake(address,uint256,uint256,address)": {
                "params": {
                  "amount": "Amount of tickets that were sent to the delegation",
                  "delegator": "Address of the delegator",
                  "slot": "Slot of the delegation",
                  "user": "Address of the user who pulled funds from the delegator stake to the delegation"
                }
              },
              "RepresentativeSet(address,address,bool)": {
                "params": {
                  "delegator": "Address of the delegator",
                  "representative": "Address of the representative",
                  "set": "Boolean indicating if the representative was set or unset"
                }
              },
              "TicketSet(address)": {
                "params": {
                  "ticket": "Address of the ticket"
                }
              },
              "TicketsStaked(address,uint256)": {
                "params": {
                  "amount": "Amount of tickets staked",
                  "delegator": "Address of the delegator"
                }
              },
              "TicketsUnstaked(address,address,uint256)": {
                "params": {
                  "amount": "Amount of tickets unstaked",
                  "delegator": "Address of the delegator",
                  "recipient": "Address of the recipient that will receive the tickets"
                }
              },
              "TransferredDelegation(address,uint256,uint256,address)": {
                "params": {
                  "amount": "Amount of tickets withdrawn",
                  "delegator": "Address of the delegator",
                  "slot": "Slot of the delegation",
                  "to": "Recipient address of withdrawn tickets"
                }
              },
              "WithdrewDelegationToStake(address,uint256,uint256,address)": {
                "params": {
                  "amount": "Amount of tickets withdrawn",
                  "delegator": "Address of the delegator",
                  "slot": "Slot of the delegation",
                  "user": "Address of the user who withdrew the tickets"
                }
              }
            },
            "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}."
              },
              "computeDelegationAddress(address,uint256)": {
                "params": {
                  "_delegator": "The user who is delegating tickets",
                  "_slot": "The delegation slot"
                },
                "returns": {
                  "_0": "The address of the delegation.  This is the address that holds the balance of tickets."
                }
              },
              "constructor": {
                "params": {
                  "_ticket": "Address of the ticket contract",
                  "name_": "The name for the staked ticket token",
                  "symbol_": "The symbol for the staked ticket token"
                }
              },
              "createDelegation(address,uint256,address,uint96)": {
                "details": "The `_delegator` and `_slot` params are used to compute the salt of the delegation",
                "params": {
                  "_delegatee": "Address of the delegatee",
                  "_delegator": "Address of the delegator that will be able to handle the delegation",
                  "_lockDuration": "Duration of time for which the delegation is locked. Must be less than the max duration.",
                  "_slot": "Slot of the delegation"
                },
                "returns": {
                  "_0": "Returns the address of the Delegation contract that will hold the tickets"
                }
              },
              "decimals()": {
                "details": "This value is equal to the decimals of the ticket being delegated.",
                "returns": {
                  "_0": "ERC20 token 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`."
              },
              "fundDelegation(address,uint256,uint256)": {
                "details": "Callable by anyone.Will revert if delegation does not exist.",
                "params": {
                  "_amount": "Amount of tickets to transfer",
                  "_delegator": "Address of the delegator",
                  "_slot": "Slot of the delegation"
                },
                "returns": {
                  "_0": "The address of the Delegation"
                }
              },
              "fundDelegationFromStake(address,uint256,uint256)": {
                "details": "Callable only by the `_delegator` or a representative.Will revert if delegation does not exist.Will revert if `_amount` is greater than the staked amount.",
                "params": {
                  "_amount": "Amount of tickets to send to the delegation from the staked amount",
                  "_delegator": "Address of the delegator",
                  "_slot": "Slot of the delegation"
                },
                "returns": {
                  "_0": "The address of the Delegation"
                }
              },
              "getDelegation(address,uint256)": {
                "params": {
                  "_delegator": "The delegator address",
                  "_slot": "The delegation slot they are using"
                },
                "returns": {
                  "balance": "The balance of tickets in the delegation",
                  "delegatee": "The address that tickets are being delegated to",
                  "delegation": "The address that holds tickets for the delegation",
                  "lockUntil": "The timestamp at which the delegation unlocks",
                  "wasCreated": "Whether or not the delegation has been created"
                }
              },
              "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."
              },
              "isRepresentativeOf(address,address)": {
                "params": {
                  "_delegator": "The delegator",
                  "_representative": "The representative to check for"
                },
                "returns": {
                  "_0": "True if the rep is a rep, false otherwise"
                }
              },
              "multicall(bytes[])": {
                "params": {
                  "_data": "An array of encoded function calls.  The calls must be abi-encoded calls to this contract."
                },
                "returns": {
                  "_0": "The results from each function call"
                }
              },
              "name()": {
                "details": "Returns the name of the token."
              },
              "permitAndMulticall(uint256,(uint256,uint8,bytes32,bytes32),bytes[])": {
                "params": {
                  "_amount": "Amount of tickets to approve",
                  "_data": "Datas to call with `functionDelegateCall`",
                  "_permitSignature": "Permit signature"
                }
              },
              "setRepresentative(address,bool)": {
                "details": "If `_set` is `true`, `_representative` will be set as representative of `msg.sender`.If `_set` is `false`, `_representative` will be unset as representative of `msg.sender`.",
                "params": {
                  "_representative": "Address of the representative",
                  "_set": "Set or unset the representative"
                }
              },
              "stake(address,uint256)": {
                "details": "Tickets can be staked on behalf of a `_to` user.",
                "params": {
                  "_amount": "Amount of tickets to stake",
                  "_to": "Address to which the stake will be attributed"
                }
              },
              "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`."
              },
              "transferDelegationTo(uint256,uint256,address)": {
                "details": "Tickets are sent directly to the passed `_to` address.Will revert if delegation is still locked.",
                "params": {
                  "_amount": "Amount to withdraw",
                  "_slot": "Slot of the delegation",
                  "_to": "Account to transfer the withdrawn tickets to"
                },
                "returns": {
                  "_0": "The address of the Delegation"
                }
              },
              "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`."
              },
              "unstake(address,uint256)": {
                "details": "If delegator has delegated his whole stake, he will first have to withdraw from a delegation to be able to unstake.",
                "params": {
                  "_amount": "Amount of tickets to unstake",
                  "_to": "Address of the recipient that will receive the tickets"
                }
              },
              "updateDelegatee(address,uint256,address,uint96)": {
                "details": "Only callable by the `_delegator` or their representative.Will revert if delegation is still locked.",
                "params": {
                  "_delegatee": "Address of the delegatee",
                  "_delegator": "Address of the delegator",
                  "_lockDuration": "Duration of time during which the delegatee cannot be changed nor withdrawn",
                  "_slot": "Slot of the delegation"
                },
                "returns": {
                  "_0": "The address of the Delegation"
                }
              },
              "withdrawDelegationToStake(address,uint256,uint256)": {
                "details": "Only callable by the `_delegator` or a representative.Will send the tickets to this contract and increase the `_delegator` staked amount.Will revert if delegation is still locked.",
                "params": {
                  "_amount": "Amount of tickets to withdraw",
                  "_delegator": "Address of the delegator",
                  "_slot": "Slot of the delegation"
                },
                "returns": {
                  "_0": "The address of the Delegation"
                }
              }
            },
            "stateVariables": {
              "representatives": {
                "details": "Representative can only handle delegation and cannot withdraw tickets to their wallet.delegator => representative => bool allowing representative to represent the delegator"
              }
            },
            "title": "Delegate chances to win to multiple accounts.",
            "version": 1
          },
          "evm": {
            "bytecode": {
              "functionDebugData": {
                "@_16244": {
                  "entryPoint": null,
                  "id": 16244,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@_16613": {
                  "entryPoint": null,
                  "id": 16613,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_311": {
                  "entryPoint": null,
                  "id": 311,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "abi_decode_string_fromMemory": {
                  "entryPoint": 608,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_contract$_ITicket_$11825_fromMemory": {
                  "entryPoint": 791,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_encode_tuple_t_stringliteral_14248b6711d89932767a5427e7cd94fe90decff5abea78a2107ca02ac8677a5c__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint96__to_t_uint96__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "extract_byte_array_length": {
                  "entryPoint": 932,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "panic_error_0x41": {
                  "entryPoint": 993,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:2735:101",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:101",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "78:821:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "127:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "136:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "139:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "129:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "129:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "129:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "106:6:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "114:4:101",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "102:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "102:17:101"
                                      },
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "121:3:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "98:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "98:27:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "91:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "91:35:101"
                              },
                              "nodeType": "YulIf",
                              "src": "88:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "152:23:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "168:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "162:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "162:13:101"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "156:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "184:28:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "202:2:101",
                                        "type": "",
                                        "value": "64"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "206:1:101",
                                        "type": "",
                                        "value": "1"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "198:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "198:10:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "210:1:101",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "194:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "194:18:101"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "188:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "235:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "237:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "237:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "237:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "227:2:101"
                                  },
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "231:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "224:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "224:10:101"
                              },
                              "nodeType": "YulIf",
                              "src": "221:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "266:17:101",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "280:2:101",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "not",
                                  "nodeType": "YulIdentifier",
                                  "src": "276:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "276:7:101"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "270:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "292:23:101",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "312:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "306:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "306:9:101"
                              },
                              "variables": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "296:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "324:71:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "346:6:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "name": "_1",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "370:2:101"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "374:4:101",
                                                    "type": "",
                                                    "value": "0x1f"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "add",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "366:3:101"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "366:13:101"
                                              },
                                              {
                                                "name": "_3",
                                                "nodeType": "YulIdentifier",
                                                "src": "381:2:101"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "and",
                                              "nodeType": "YulIdentifier",
                                              "src": "362:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "362:22:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "386:2:101",
                                            "type": "",
                                            "value": "63"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "358:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "358:31:101"
                                      },
                                      {
                                        "name": "_3",
                                        "nodeType": "YulIdentifier",
                                        "src": "391:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "354:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "354:40:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "342:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "342:53:101"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "328:10:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "454:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "456:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "456:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "456:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "413:10:101"
                                      },
                                      {
                                        "name": "_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "425:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "410:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "410:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "433:10:101"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "445:6:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "430:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "430:22:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "407:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "407:46:101"
                              },
                              "nodeType": "YulIf",
                              "src": "404:2:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "492:2:101",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "496:10:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "485:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "485:22:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "485:22:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "523:6:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "531:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "516:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "516:18:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "516:18:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "543:14:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "553:4:101",
                                "type": "",
                                "value": "0x20"
                              },
                              "variables": [
                                {
                                  "name": "_4",
                                  "nodeType": "YulTypedName",
                                  "src": "547:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "603:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "612:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "615:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "605:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "605:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "605:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "580:6:101"
                                          },
                                          {
                                            "name": "_1",
                                            "nodeType": "YulIdentifier",
                                            "src": "588:2:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "576:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "576:15:101"
                                      },
                                      {
                                        "name": "_4",
                                        "nodeType": "YulIdentifier",
                                        "src": "593:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "572:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "572:24:101"
                                  },
                                  {
                                    "name": "end",
                                    "nodeType": "YulIdentifier",
                                    "src": "598:3:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "569:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "569:33:101"
                              },
                              "nodeType": "YulIf",
                              "src": "566:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "628:10:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "637:1:101",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "632:1:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "693:87:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "memPtr",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "722:6:101"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "730:1:101"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "718:3:101"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "718:14:101"
                                            },
                                            {
                                              "name": "_4",
                                              "nodeType": "YulIdentifier",
                                              "src": "734:2:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "714:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "714:23:101"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "arguments": [
                                                    {
                                                      "name": "offset",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "753:6:101"
                                                    },
                                                    {
                                                      "name": "i",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "761:1:101"
                                                    }
                                                  ],
                                                  "functionName": {
                                                    "name": "add",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "749:3:101"
                                                  },
                                                  "nodeType": "YulFunctionCall",
                                                  "src": "749:14:101"
                                                },
                                                {
                                                  "name": "_4",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "765:2:101"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "745:3:101"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "745:23:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "739:5:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "739:30:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "707:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "707:63:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "707:63:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "658:1:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "661:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "655:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "655:9:101"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "665:19:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "667:15:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "676:1:101"
                                        },
                                        {
                                          "name": "_4",
                                          "nodeType": "YulIdentifier",
                                          "src": "679:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "672:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "672:10:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "667:1:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "651:3:101",
                                "statements": []
                              },
                              "src": "647:133:101"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "810:59:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "memPtr",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "839:6:101"
                                                },
                                                {
                                                  "name": "_1",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "847:2:101"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "835:3:101"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "835:15:101"
                                            },
                                            {
                                              "name": "_4",
                                              "nodeType": "YulIdentifier",
                                              "src": "852:2:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "831:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "831:24:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "857:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "824:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "824:35:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "824:35:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "795:1:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "798:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "792:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "792:9:101"
                              },
                              "nodeType": "YulIf",
                              "src": "789:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "878:15:101",
                              "value": {
                                "name": "memPtr",
                                "nodeType": "YulIdentifier",
                                "src": "887:6:101"
                              },
                              "variableNames": [
                                {
                                  "name": "array",
                                  "nodeType": "YulIdentifier",
                                  "src": "878:5:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_string_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "52:6:101",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "60:3:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "array",
                            "nodeType": "YulTypedName",
                            "src": "68:5:101",
                            "type": ""
                          }
                        ],
                        "src": "14:885:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1056:594:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1102:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1111:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1114:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1104:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1104:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1104:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1077:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1086:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1073:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1073:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1098:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1069:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1069:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1066:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1127:30:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1147:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1141:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1141:16:101"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "1131:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1166:28:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1184:2:101",
                                        "type": "",
                                        "value": "64"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1188:1:101",
                                        "type": "",
                                        "value": "1"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "1180:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1180:10:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1192:1:101",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "1176:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1176:18:101"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1170:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1221:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1230:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1233:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1223:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1223:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1223:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "1209:6:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1217:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1206:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1206:14:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1203:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1246:71:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1289:9:101"
                                      },
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "1300:6:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1285:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1285:22:101"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1309:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_string_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1256:28:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1256:61:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1246:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1326:41:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1352:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1363:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1348:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1348:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1342:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1342:25:101"
                              },
                              "variables": [
                                {
                                  "name": "offset_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1330:8:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1396:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1405:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1408:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1398:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1398:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1398:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1382:8:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1392:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1379:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1379:16:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1376:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1421:73:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1464:9:101"
                                      },
                                      {
                                        "name": "offset_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "1475:8:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1460:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1460:24:101"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "1486:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_string_fromMemory",
                                  "nodeType": "YulIdentifier",
                                  "src": "1431:28:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1431:63:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1421:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1503:38:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1526:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1537:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1522:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1522:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1516:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1516:25:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1507:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1604:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1613:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1616:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1606:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1606:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1606:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "1563:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "1574:5:101"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "1589:3:101",
                                                    "type": "",
                                                    "value": "160"
                                                  },
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "1594:1:101",
                                                    "type": "",
                                                    "value": "1"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "shl",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "1585:3:101"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "1585:11:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "1598:1:101",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "1581:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "1581:19:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "1570:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "1570:31:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "1560:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1560:42:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "1553:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1553:50:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1550:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1629:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1639:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "1629:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_contract$_ITicket_$11825_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1006:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1017:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1029:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1037:6:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "1045:6:101",
                            "type": ""
                          }
                        ],
                        "src": "904:746:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1829:182:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1846:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1857:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1839:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1839:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1839:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1880:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1891:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1876:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1876:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1896:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1869:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1869:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1869:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1919:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1930:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1915:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1915:18:101"
                                  },
                                  {
                                    "hexValue": "5457414244656c656761746f722f7469636b2d6e6f742d7a65726f2d61646472",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "1935:34:101",
                                    "type": "",
                                    "value": "TWABDelegator/tick-not-zero-addr"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1908:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1908:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1908:62:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1979:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1991:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2002:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "1987:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1987:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "1979:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_14248b6711d89932767a5427e7cd94fe90decff5abea78a2107ca02ac8677a5c__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1806:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "1820:4:101",
                            "type": ""
                          }
                        ],
                        "src": "1655:356:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2115:101:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2125:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2137:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2148:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "2133:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2133:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "2125:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2167:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "2182:6:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "2198:2:101",
                                                "type": "",
                                                "value": "96"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "2202:1:101",
                                                "type": "",
                                                "value": "1"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "2194:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "2194:10:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "2206:1:101",
                                            "type": "",
                                            "value": "1"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "sub",
                                          "nodeType": "YulIdentifier",
                                          "src": "2190:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "2190:18:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "2178:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2178:31:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2160:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2160:50:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2160:50:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint96__to_t_uint96__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2084:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2095:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "2106:4:101",
                            "type": ""
                          }
                        ],
                        "src": "2016:200:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2276:325:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "2286:22:101",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2300:1:101",
                                    "type": "",
                                    "value": "1"
                                  },
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "2303:4:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "shr",
                                  "nodeType": "YulIdentifier",
                                  "src": "2296:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2296:12:101"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "2286:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2317:38:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "2347:4:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2353:1:101",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "2343:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2343:12:101"
                              },
                              "variables": [
                                {
                                  "name": "outOfPlaceEncoding",
                                  "nodeType": "YulTypedName",
                                  "src": "2321:18:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2394:31:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "2396:27:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "length",
                                          "nodeType": "YulIdentifier",
                                          "src": "2410:6:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2418:4:101",
                                          "type": "",
                                          "value": "0x7f"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "and",
                                        "nodeType": "YulIdentifier",
                                        "src": "2406:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2406:17:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "2396:6:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "2374:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "2367:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2367:26:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2364:2:101"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2484:111:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2505:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "2512:3:101",
                                              "type": "",
                                              "value": "224"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "2517:10:101",
                                              "type": "",
                                              "value": "0x4e487b71"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "shl",
                                            "nodeType": "YulIdentifier",
                                            "src": "2508:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "2508:20:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "2498:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2498:31:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2498:31:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2549:1:101",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2552:4:101",
                                          "type": "",
                                          "value": "0x22"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "2542:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2542:15:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2542:15:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2577:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2580:4:101",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2570:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2570:15:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2570:15:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "2440:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "2463:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2471:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "2460:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2460:14:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "2437:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2437:38:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2434:2:101"
                            }
                          ]
                        },
                        "name": "extract_byte_array_length",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "data",
                            "nodeType": "YulTypedName",
                            "src": "2256:4:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "2265:6:101",
                            "type": ""
                          }
                        ],
                        "src": "2221:380:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2638:95:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2655:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2662:3:101",
                                        "type": "",
                                        "value": "224"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2667:10:101",
                                        "type": "",
                                        "value": "0x4e487b71"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "2658:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2658:20:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2648:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2648:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2648:31:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2695:1:101",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2698:4:101",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2688:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2688:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2688:15:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2719:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2722:4:101",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "2712:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2712:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2712:15:101"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "2606:127:101"
                      }
                    ]
                  },
                  "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_contract$_ITicket_$11825_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, sub(shl(160, 1), 1)))) { revert(0, 0) }\n        value2 := value\n    }\n    function abi_encode_tuple_t_stringliteral_14248b6711d89932767a5427e7cd94fe90decff5abea78a2107ca02ac8677a5c__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), \"TWABDelegator/tick-not-zero-addr\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_uint96__to_t_uint96__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(96, 1), 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, 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": 101,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "linkReferences": {},
              "object": "60a06040523480156200001157600080fd5b50604051620038a2380380620038a2833981016040819052620000349162000317565b8251839083906200004d906003906020850190620001ac565b50805162000063906004906020840190620001ac565b50505060405162000074906200023b565b604051809103906000f08015801562000091573d6000803e3d6000fd5b50600580546001600160a01b0319166001600160a01b0392909216918217905560405163909f1cad60e01b81526000600482015263909f1cad90602401600060405180830381600087803b158015620000e957600080fd5b505af1158015620000fe573d6000803e3d6000fd5b505050506001600160a01b0381166200015d5760405162461bcd60e51b815260206004820181905260248201527f5457414244656c656761746f722f7469636b2d6e6f742d7a65726f2d61646472604482015260640160405180910390fd5b6001600160601b0319606082901b166080526040516001600160a01b038216907f9f9d59c87dbdc6ca82d9e5924782004b9aebc366c505c0ccab12f61e2a9f332190600090a2505050620003f7565b828054620001ba90620003a4565b90600052602060002090601f016020900481019282620001de576000855562000229565b82601f10620001f957805160ff191683800117855562000229565b8280016001018555821562000229579182015b82811115620002295782518255916020019190600101906200020c565b506200023792915062000249565b5090565b6107fc80620030a683390190565b5b808211156200023757600081556001016200024a565b600082601f8301126200027257600080fd5b81516001600160401b03808211156200028f576200028f620003e1565b604051601f8301601f19908116603f01168101908282118183101715620002ba57620002ba620003e1565b81604052838152602092508683858801011115620002d757600080fd5b600091505b83821015620002fb5785820183015181830184015290820190620002dc565b838211156200030d5760008385830101525b9695505050505050565b6000806000606084860312156200032d57600080fd5b83516001600160401b03808211156200034557600080fd5b620003538783880162000260565b945060208601519150808211156200036a57600080fd5b50620003798682870162000260565b604086015190935090506001600160a01b03811681146200039957600080fd5b809150509250925092565b600181811c90821680620003b957607f821691505b60208210811415620003db57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160601c612c5162000455600039600081816102e4015281816104c4015281816106650152818161083501528181610d1e01528181610dc001528181610e8001528181610f3701528181611080015261201e0152612c516000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c8063889de805116100f9578063ac9650d811610097578063ca40edf111610071578063ca40edf114610418578063dd62ed3e14610460578063e18fa6eb14610499578063e7880ae1146104ac57600080fd5b8063ac9650d8146103d2578063adc9772e146103f2578063c2a672e01461040557600080fd5b806395d89b41116100d357806395d89b4114610391578063982b1f2f14610399578063a457c2d7146103ac578063a9059cbb146103bf57600080fd5b8063889de8051461032f5780638b4b4ec91461034257806390ab08851461035557600080fd5b80635f66501111610166578063666f7af611610140578063666f7af6146102b95780636c59f295146102cc5780636cc25db7146102df57806370a082311461030657600080fd5b80635f6650111461027157806363fc611f1461029c57806365a5d5f0146102af57600080fd5b806318160ddd116101a257806318160ddd1461021f57806323b872dd14610231578063313ce56714610244578063395093511461025e57600080fd5b806306452792146101c957806306fdde03146101de578063095ea7b3146101fc575b600080fd5b6101dc6101d73660046127d1565b6104bf565b005b6101e66104f2565b6040516101f391906129ee565b60405180910390f35b61020f61020a36600461258c565b610584565b60405190151581526020016101f3565b6002545b6040519081526020016101f3565b61020f61023f36600461251d565b61059b565b61024c610661565b60405160ff90911681526020016101f3565b61020f61026c36600461258c565b6106f9565b61028461027f36600461260b565b610735565b6040516001600160a01b0390911681526020016101f3565b600554610284906001600160a01b031681565b61022362ed4e0081565b6102846102c736600461260b565b6107b9565b6102846102da3660046125b8565b6108a3565b6102847f000000000000000000000000000000000000000000000000000000000000000081565b6102236103143660046124aa565b6001600160a01b031660009081526020819052604090205490565b61028461033d3660046125b8565b6109e9565b610284610350366004612837565b610ae4565b61020f6103633660046124e4565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6101e6610b4e565b6101dc6103a736600461255e565b610b5d565b61020f6103ba36600461258c565b610c3e565b61020f6103cd36600461258c565b610cef565b6103e56103e0366004612640565b610cfc565b6040516101f3919061290f565b6101dc61040036600461258c565b610d08565b6101dc61041336600461258c565b610d97565b61042b61042636600461258c565b610e24565b604080516001600160a01b0396871681529590941660208601529284019190915260608301521515608082015260a0016101f3565b61022361046e3660046124e4565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6102846104a736600461260b565b611047565b6102846104ba36600461258c565b6110ed565b6104ec7f0000000000000000000000000000000000000000000000000000000000000000858585856110f9565b50505050565b60606003805461050190612af2565b80601f016020809104026020016040519081016040528092919081815260200182805461052d90612af2565b801561057a5780601f1061054f5761010080835404028352916020019161057a565b820191906000526020600020905b81548152906001019060200180831161055d57829003601f168201915b5050505050905090565b60006105913384846111d1565b5060015b92915050565b60006105a8848484611329565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156106475760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61065485338584036111d1565b60019150505b9392505050565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663313ce5676040518163ffffffff1660e01b815260040160206040518083038186803b1580156106bc57600080fd5b505afa1580156106d0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106f4919061288d565b905090565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610591918590610730908690612a97565b6111d1565b600061074084611540565b600061074c85856115c9565b905061075981308561161f565b6107638584611641565b336001600160a01b031684866001600160a01b03167f6862a473baa6176f1c866c69aa93da8508d7afc71b52dddc9d5e8b0bb7aab6f4866040516107a991815260200190565b60405180910390a4949350505050565b60006001600160a01b0384166108115760405162461bcd60e51b815260206004820181905260248201527f5457414244656c656761746f722f646c6774722d6e6f742d7a65726f2d616472604482015260640161063e565b61081a82611719565b600061082685856115c9565b905061085d6001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016338386611769565b336001600160a01b031684866001600160a01b03167f383183291bd9a7fb8bd9c7c86c5013a89d1490c9f4e486da279804b83729a1dc866040516107a991815260200190565b60006108ae85611540565b6108b78361181a565b6108ce826bffffffffffffffffffffffff16611870565b60006108da86866115c9565b90506108e5816118c3565b4283016bffffffffffffffffffffffff84161561097d576040517fac2293af0000000000000000000000000000000000000000000000000000000081526bffffffffffffffffffffffff821660048201526001600160a01b0383169063ac2293af90602401600060405180830381600087803b15801561096457600080fd5b505af1158015610978573d6000803e3d6000fd5b505050505b6109878286611991565b604080516bffffffffffffffffffffffff831681523360208201526001600160a01b03808816928992918b16917ffd96a87f22afea1e17a7117a4923f1499a1c1eb2bd7c492caf07f3a3c38ade6f910160405180910390a45095945050505050565b60006109f485611540565b6109fd8361181a565b610a14826bffffffffffffffffffffffff16611870565b4282016000610a6e610a6888886040516bffffffffffffffffffffffff19606084901b1660208201526034810182905260009060540160405160208183030381529060405280519060200120905092915050565b83611a17565b9050610a7a8186611991565b604080516bffffffffffffffffffffffff841681526001600160a01b03838116602083015233828401529151878316928992908b16917f5533acb96061e404278604d3df68397263be1d4b9df394136a2968802633d8a59181900360600190a49695505050505050565b6000610aef82611abd565b6000610afb33866115c9565b9050610b0881848661161f565b826001600160a01b031685336001600160a01b03167f622b7da8a20026f1176ccc7ec0a635a4544a67e99b0125018e3d89b888ce8ebe876040516107a991815260200190565b60606004805461050190612af2565b6001600160a01b038216610bb35760405162461bcd60e51b815260206004820152601f60248201527f5457414244656c656761746f722f7265702d6e6f742d7a65726f2d6164647200604482015260640161063e565b3360008181526006602090815260408083206001600160a01b0387168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f50062a33e55b9f3dfcf05fbf1356b7c92313796cfb8526cdee5a497fcbb8cc3391015b60405180910390a35050565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610cd85760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f000000000000000000000000000000000000000000000000000000606482015260840161063e565b610ce533858584036111d1565b5060019392505050565b6000610591338484611329565b606061065a8383611b13565b610d1181611719565b610d466001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016333084611769565b610d508282611641565b816001600160a01b03167f15c2c6e5db9e25d828754c9c5cee6c5c3df074e6ac26e7491c0f8ce7bbd447d682604051610d8b91815260200190565b60405180910390a25050565b610da082611abd565b610da981611719565b610db33382611c0d565b610de76001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168383611d92565b6040518181526001600160a01b0383169033907ff7128607975b3ff61bc02d19a1c8267e526f7a5b7144dc4efcdac634663fd36990602001610c32565b6000806000806000610e3687876115c9565b94506001600160a01b0385163b15156040517f8d22ea2a0000000000000000000000000000000000000000000000000000000081526001600160a01b0387811660048301529192507f000000000000000000000000000000000000000000000000000000000000000090911690638d22ea2a9060240160206040518083038186803b158015610ec457600080fd5b505afa158015610ed8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610efc91906124c7565b6040517f70a082310000000000000000000000000000000000000000000000000000000081526001600160a01b0387811660048301529195507f0000000000000000000000000000000000000000000000000000000000000000909116906370a082319060240160206040518083038186803b158015610f7b57600080fd5b505afa158015610f8f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fb391906127b8565b9250801561103d57846001600160a01b0316633c78929e6040518163ffffffff1660e01b815260040160206040518083038186803b158015610ff457600080fd5b505afa158015611008573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061102c91906128aa565b6bffffffffffffffffffffffff1691505b9295509295909350565b600061105284611540565b61105b82611719565b600061106785856115c9565b90506110738584611c0d565b6110a76001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168285611d92565b336001600160a01b031684866001600160a01b03167fb1968721eeb35d2206c8aa91805bc908019965ff4cff13c158f89956fb8e9248866040516107a991815260200190565b600061065a83836115c9565b6001600160a01b03851663d505accf333087873561111d60408a0160208b01612870565b604080517fffffffff0000000000000000000000000000000000000000000000000000000060e089901b1681526001600160a01b0396871660048201529590941660248601526044850192909252606484015260ff16608483015286013560a4820152606086013560c482015260e401600060405180830381600087803b1580156111a757600080fd5b505af11580156111bb573d6000803e3d6000fd5b505050506111c98282611b13565b505050505050565b6001600160a01b03831661124c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161063e565b6001600160a01b0382166112c85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161063e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166113a55760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161063e565b6001600160a01b0382166114215760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161063e565b6001600160a01b038316600090815260208190526040902054818110156114b05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e63650000000000000000000000000000000000000000000000000000606482015260840161063e565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906114e7908490612a97565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161153391815260200190565b60405180910390a36104ec565b6001600160a01b03811633148061157a57506001600160a01b038116600090815260066020908152604080832033845290915290205460ff165b6115c65760405162461bcd60e51b815260206004820152601e60248201527f5457414244656c656761746f722f6e6f742d646c6774722d6f722d7265700000604482015260640161063e565b50565b600061065a61161a84846040516bffffffffffffffffffffffff19606084901b1660208201526034810182905260009060540160405160208183030381529060405280519060200120905092915050565b611ddb565b61162881611719565b611631836118c3565b61163c838383611e64565b505050565b6001600160a01b0382166116975760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161063e565b80600260008282546116a99190612a97565b90915550506001600160a01b038216600090815260208190526040812080548392906116d6908490612a97565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610c32565b600081116115c65760405162461bcd60e51b815260206004820152601c60248201527f5457414244656c656761746f722f616d6f756e742d67742d7a65726f00000000604482015260640161063e565b6040516001600160a01b03808516602483015283166044820152606481018290526104ec9085907f23b872dd00000000000000000000000000000000000000000000000000000000906084015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217909152611ee7565b6001600160a01b0381166115c65760405162461bcd60e51b815260206004820181905260248201527f5457414244656c656761746f722f646c67742d6e6f742d7a65726f2d61646472604482015260640161063e565b62ed4e008111156115c65760405162461bcd60e51b815260206004820152601b60248201527f5457414244656c656761746f722f6c6f636b2d746f6f2d6c6f6e670000000000604482015260640161063e565b806001600160a01b0316633c78929e6040518163ffffffff1660e01b815260040160206040518083038186803b1580156118fc57600080fd5b505afa158015611910573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061193491906128aa565b6bffffffffffffffffffffffff164210156115c65760405162461bcd60e51b815260206004820152601f60248201527f5457414244656c656761746f722f64656c65676174696f6e2d6c6f636b656400604482015260640161063e565b604080516001600160a01b0383166024808301919091528251808303909101815260449091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f5c19a95c0000000000000000000000000000000000000000000000000000000090811790915290611a108482611fcc565b5050505050565b6005546000908190611a32906001600160a01b031685612110565b6040517f909f1cad0000000000000000000000000000000000000000000000000000000081526bffffffffffffffffffffffff851660048201529091506001600160a01b0382169063909f1cad90602401600060405180830381600087803b158015611a9d57600080fd5b505af1158015611ab1573d6000803e3d6000fd5b50929695505050505050565b6001600160a01b0381166115c65760405162461bcd60e51b815260206004820152601e60248201527f5457414244656c656761746f722f746f2d6e6f742d7a65726f2d616464720000604482015260640161063e565b60608160008167ffffffffffffffff811115611b3157611b31612b92565b604051908082528060200260200182016040528015611b6457816020015b6060815260200190600190039081611b4f5790505b50905060005b82811015611c0457611bd430878784818110611b8857611b88612b7c565b9050602002810190611b9a9190612a01565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506121c792505050565b828281518110611be657611be6612b7c565b60200260200101819052508080611bfc90612b2d565b915050611b6a565b50949350505050565b6001600160a01b038216611c895760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161063e565b6001600160a01b03821660009081526020819052604090205481811015611d185760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f6365000000000000000000000000000000000000000000000000000000000000606482015260840161063e565b6001600160a01b0383166000908152602081905260408120838303905560028054849290611d47908490612aaf565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b6040516001600160a01b03831660248201526044810182905261163c9084907fa9059cbb00000000000000000000000000000000000000000000000000000000906064016117b6565b600554600090610595906001600160a01b031683306040517f3d602d80600a3d3981f3363d3d373d3d3d363d730000000000000000000000008152606093841b60148201527f5af43d82803e903d91602b57fd5bf3ff000000000000000000000000000000006028820152921b6038830152604c8201526037808220606c830152605591012090565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000908117909152906111c98582611fcc565b6000611f3c826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166121ec9092919063ffffffff16565b80519091501561163c5780806020019051810190611f5a919061279b565b61163c5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f74207375636365656400000000000000000000000000000000000000000000606482015260840161063e565b60408051600180825281830190925260609160009190816020015b604080518082019091526000815260606020820152815260200190600190039081611fe757905050905060405180604001604052807f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602001848152508160008151811061206257612062612b7c565b60209081029190910101526040517fde9443bf0000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063de9443bf906120b2908490600401612971565b600060405180830381600087803b1580156120cc57600080fd5b505af11580156120e0573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526121089190810190612682565b949350505050565b60006040517f3d602d80600a3d3981f3363d3d373d3d3d363d7300000000000000000000000081528360601b60148201527f5af43d82803e903d91602b57fd5bf300000000000000000000000000000000006028820152826037826000f59150506001600160a01b0381166105955760405162461bcd60e51b815260206004820152601760248201527f455243313136373a2063726561746532206661696c6564000000000000000000604482015260640161063e565b606061065a8383604051806060016040528060278152602001612bf5602791396121fb565b606061210884846000856122e6565b6060833b6122715760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f60448201527f6e74726163740000000000000000000000000000000000000000000000000000606482015260840161063e565b600080856001600160a01b03168560405161228c91906128f3565b600060405180830381855af49150503d80600081146122c7576040519150601f19603f3d011682016040523d82523d6000602084013e6122cc565b606091505b50915091506122dc828286612425565b9695505050505050565b60608247101561235e5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c0000000000000000000000000000000000000000000000000000606482015260840161063e565b843b6123ac5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161063e565b600080866001600160a01b031685876040516123c891906128f3565b60006040518083038185875af1925050503d8060008114612405576040519150601f19603f3d011682016040523d82523d6000602084013e61240a565b606091505b509150915061241a828286612425565b979650505050505050565b6060831561243457508161065a565b8251156124445782518084602001fd5b8160405162461bcd60e51b815260040161063e91906129ee565b60008083601f84011261247057600080fd5b50813567ffffffffffffffff81111561248857600080fd5b6020830191508360208260051b85010111156124a357600080fd5b9250929050565b6000602082840312156124bc57600080fd5b813561065a81612ba8565b6000602082840312156124d957600080fd5b815161065a81612ba8565b600080604083850312156124f757600080fd5b823561250281612ba8565b9150602083013561251281612ba8565b809150509250929050565b60008060006060848603121561253257600080fd5b833561253d81612ba8565b9250602084013561254d81612ba8565b929592945050506040919091013590565b6000806040838503121561257157600080fd5b823561257c81612ba8565b9150602083013561251281612bbd565b6000806040838503121561259f57600080fd5b82356125aa81612ba8565b946020939093013593505050565b600080600080608085870312156125ce57600080fd5b84356125d981612ba8565b93506020850135925060408501356125f081612ba8565b9150606085013561260081612bda565b939692955090935050565b60008060006060848603121561262057600080fd5b833561262b81612ba8565b95602085013595506040909401359392505050565b6000806020838503121561265357600080fd5b823567ffffffffffffffff81111561266a57600080fd5b6126768582860161245e565b90969095509350505050565b6000602080838503121561269557600080fd5b825167ffffffffffffffff808211156126ad57600080fd5b8185019150601f86818401126126c257600080fd5b8251828111156126d4576126d4612b92565b8060051b6126e3868201612a66565b8281528681019086880183880189018c10156126fe57600080fd5b600093505b8484101561278c5780518781111561271a57600080fd5b8801603f81018d1361272b57600080fd5b8981015160408982111561274157612741612b92565b6127528c601f198b85011601612a66565b8281528f8284860101111561276657600080fd5b612775838e8301848701612ac6565b865250505060019390930192918801918801612703565b509a9950505050505050505050565b6000602082840312156127ad57600080fd5b815161065a81612bbd565b6000602082840312156127ca57600080fd5b5051919050565b60008060008084860360c08112156127e857600080fd5b853594506080601f19820112156127fe57600080fd5b5060208501925060a085013567ffffffffffffffff81111561281f57600080fd5b61282b8782880161245e565b95989497509550505050565b60008060006060848603121561284c57600080fd5b8335925060208401359150604084013561286581612ba8565b809150509250925092565b60006020828403121561288257600080fd5b813561065a81612bcb565b60006020828403121561289f57600080fd5b815161065a81612bcb565b6000602082840312156128bc57600080fd5b815161065a81612bda565b600081518084526128df816020860160208601612ac6565b601f01601f19169290920160200192915050565b60008251612905818460208701612ac6565b9190910192915050565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b8281101561296457603f198886030184526129528583516128c7565b94509285019290850190600101612936565b5092979650505050505050565b60006020808301818452808551808352604092508286019150828160051b87010184880160005b838110156129e057888303603f19018552815180516001600160a01b031684528701518784018790526129cd878501826128c7565b9588019593505090860190600101612998565b509098975050505050505050565b60208152600061065a60208301846128c7565b60008083357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe1843603018112612a3657600080fd5b83018035915067ffffffffffffffff821115612a5157600080fd5b6020019150368190038213156124a357600080fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612a8f57612a8f612b92565b604052919050565b60008219821115612aaa57612aaa612b66565b500190565b600082821015612ac157612ac1612b66565b500390565b60005b83811015612ae1578181015183820152602001612ac9565b838111156104ec5750506000910152565b600181811c90821680612b0657607f821691505b60208210811415612b2757634e487b7160e01b600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612b5f57612b5f612b66565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146115c657600080fd5b80151581146115c657600080fd5b60ff811681146115c657600080fd5b6bffffffffffffffffffffffff811681146115c657600080fdfe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a26469706673582212201bdd74077fa202347308b16100a632a56937c0ea5893fd7242e465b863321ef864736f6c63430008060033608060405234801561001057600080fd5b506107dc806100206000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80633c78929e14610051578063909f1cad146100a3578063ac2293af146100b8578063de9443bf146100cb575b600080fd5b600054610081907401000000000000000000000000000000000000000090046bffffffffffffffffffffffff1681565b6040516bffffffffffffffffffffffff90911681526020015b60405180910390f35b6100b66100b136600461049e565b6100eb565b005b6100b66100c636600461049e565b610182565b6100de6100d9366004610429565b610234565b60405161009a919061051b565b60005473ffffffffffffffffffffffffffffffffffffffff16156101565760405162461bcd60e51b815260206004820152601760248201527f44656c65676174696f6e2f616c72656164792d696e697400000000000000000060448201526064015b60405180910390fd5b6bffffffffffffffffffffffff1674010000000000000000000000000000000000000000023317600055565b60005473ffffffffffffffffffffffffffffffffffffffff1633146101e95760405162461bcd60e51b815260206004820152601560248201527f44656c65676174696f6e2f6f6e6c792d6f776e65720000000000000000000000604482015260640161014d565b600080546bffffffffffffffffffffffff909216740100000000000000000000000000000000000000000273ffffffffffffffffffffffffffffffffffffffff909216919091179055565b60005460609073ffffffffffffffffffffffffffffffffffffffff16331461029e5760405162461bcd60e51b815260206004820152601560248201527f44656c65676174696f6e2f6f6e6c792d6f776e65720000000000000000000000604482015260640161014d565b8160008167ffffffffffffffff8111156102ba576102ba610790565b6040519080825280602002602001820160405280156102ed57816020015b60608152602001906001900390816102d85790505b5060408051808201909152600081526060602082015290915060005b83811015610382578686828181106103235761032361077a565b905060200281019061033591906105ae565b61033e9061063c565b91506103528260000151836020015161038d565b8382815181106103645761036461077a565b6020026020010181905250808061037a90610733565b915050610309565b509095945050505050565b60606000808473ffffffffffffffffffffffffffffffffffffffff166000856040516103b991906104ff565b60006040518083038185875af1925050503d80600081146103f6576040519150601f19603f3d011682016040523d82523d6000602084013e6103fb565b606091505b50915091508181906104205760405162461bcd60e51b815260040161014d919061059b565b50949350505050565b6000806020838503121561043c57600080fd5b823567ffffffffffffffff8082111561045457600080fd5b818501915085601f83011261046857600080fd5b81358181111561047757600080fd5b8660208260051b850101111561048c57600080fd5b60209290920196919550909350505050565b6000602082840312156104b057600080fd5b81356bffffffffffffffffffffffff811681146104cc57600080fd5b9392505050565b600081518084526104eb816020860160208601610703565b601f01601f19169290920160200192915050565b60008251610511818460208701610703565b9190910192915050565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b8281101561058e577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc088860301845261057c8583516104d3565b94509285019290850190600101610542565b5092979650505050505050565b6020815260006104cc60208301846104d3565b600082357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc183360301811261051157600080fd5b6040805190810167ffffffffffffffff8111828210171561060557610605610790565b60405290565b604051601f8201601f1916810167ffffffffffffffff8111828210171561063457610634610790565b604052919050565b60006040823603121561064e57600080fd5b6106566105e2565b823573ffffffffffffffffffffffffffffffffffffffff8116811461067a57600080fd5b815260208381013567ffffffffffffffff8082111561069857600080fd5b9085019036601f8301126106ab57600080fd5b8135818111156106bd576106bd610790565b6106cf84601f19601f8401160161060b565b915080825236848285010111156106e557600080fd5b80848401858401376000908201840152918301919091525092915050565b60005b8381101561071e578181015183820152602001610706565b8381111561072d576000848401525b50505050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561077357634e487b7160e01b600052601160045260246000fd5b5060010190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fdfea2646970667358221220e12294174ea821f82c2a1f83c4f824acb92d2de0e672f2347c9eb5611a26a93564736f6c63430008060033",
              "opcodes": "PUSH1 0xA0 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x38A2 CODESIZE SUB DUP1 PUSH3 0x38A2 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x34 SWAP2 PUSH3 0x317 JUMP JUMPDEST DUP3 MLOAD DUP4 SWAP1 DUP4 SWAP1 PUSH3 0x4D SWAP1 PUSH1 0x3 SWAP1 PUSH1 0x20 DUP6 ADD SWAP1 PUSH3 0x1AC JUMP JUMPDEST POP DUP1 MLOAD PUSH3 0x63 SWAP1 PUSH1 0x4 SWAP1 PUSH1 0x20 DUP5 ADD SWAP1 PUSH3 0x1AC JUMP JUMPDEST POP POP POP PUSH1 0x40 MLOAD PUSH3 0x74 SWAP1 PUSH3 0x23B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 PUSH1 0x0 CREATE DUP1 ISZERO DUP1 ISZERO PUSH3 0x91 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP 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 DUP3 OR SWAP1 SSTORE PUSH1 0x40 MLOAD PUSH4 0x909F1CAD PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH4 0x909F1CAD SWAP1 PUSH1 0x24 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH3 0xE9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH3 0xFE JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH3 0x15D 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 0x5457414244656C656761746F722F7469636B2D6E6F742D7A65726F2D61646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST 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 0x9F9D59C87DBDC6CA82D9E5924782004B9AEBC366C505C0CCAB12F61E2A9F3321 SWAP1 PUSH1 0x0 SWAP1 LOG2 POP POP POP PUSH3 0x3F7 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x1BA SWAP1 PUSH3 0x3A4 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x1DE JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x229 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0x1F9 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x229 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x229 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x229 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0x20C JUMP JUMPDEST POP PUSH3 0x237 SWAP3 SWAP2 POP PUSH3 0x249 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH2 0x7FC DUP1 PUSH3 0x30A6 DUP4 CODECOPY ADD SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x237 JUMPI PUSH1 0x0 DUP2 SSTORE PUSH1 0x1 ADD PUSH3 0x24A JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x272 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x28F JUMPI PUSH3 0x28F PUSH3 0x3E1 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 0x2BA JUMPI PUSH3 0x2BA PUSH3 0x3E1 JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP4 DUP2 MSTORE PUSH1 0x20 SWAP3 POP DUP7 DUP4 DUP6 DUP9 ADD ADD GT ISZERO PUSH3 0x2D7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP2 POP JUMPDEST DUP4 DUP3 LT ISZERO PUSH3 0x2FB JUMPI DUP6 DUP3 ADD DUP4 ADD MLOAD DUP2 DUP4 ADD DUP5 ADD MSTORE SWAP1 DUP3 ADD SWAP1 PUSH3 0x2DC JUMP JUMPDEST DUP4 DUP3 GT ISZERO PUSH3 0x30D 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 0x32D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x345 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x353 DUP8 DUP4 DUP9 ADD PUSH3 0x260 JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD MLOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH3 0x36A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH3 0x379 DUP7 DUP3 DUP8 ADD PUSH3 0x260 JUMP JUMPDEST PUSH1 0x40 DUP7 ADD MLOAD SWAP1 SWAP4 POP SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH3 0x399 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 0x3B9 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x3DB 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 0x60 SHR PUSH2 0x2C51 PUSH3 0x455 PUSH1 0x0 CODECOPY PUSH1 0x0 DUP2 DUP2 PUSH2 0x2E4 ADD MSTORE DUP2 DUP2 PUSH2 0x4C4 ADD MSTORE DUP2 DUP2 PUSH2 0x665 ADD MSTORE DUP2 DUP2 PUSH2 0x835 ADD MSTORE DUP2 DUP2 PUSH2 0xD1E ADD MSTORE DUP2 DUP2 PUSH2 0xDC0 ADD MSTORE DUP2 DUP2 PUSH2 0xE80 ADD MSTORE DUP2 DUP2 PUSH2 0xF37 ADD MSTORE DUP2 DUP2 PUSH2 0x1080 ADD MSTORE PUSH2 0x201E ADD MSTORE PUSH2 0x2C51 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 0x1C4 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x889DE805 GT PUSH2 0xF9 JUMPI DUP1 PUSH4 0xAC9650D8 GT PUSH2 0x97 JUMPI DUP1 PUSH4 0xCA40EDF1 GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xCA40EDF1 EQ PUSH2 0x418 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x460 JUMPI DUP1 PUSH4 0xE18FA6EB EQ PUSH2 0x499 JUMPI DUP1 PUSH4 0xE7880AE1 EQ PUSH2 0x4AC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xAC9650D8 EQ PUSH2 0x3D2 JUMPI DUP1 PUSH4 0xADC9772E EQ PUSH2 0x3F2 JUMPI DUP1 PUSH4 0xC2A672E0 EQ PUSH2 0x405 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x95D89B41 GT PUSH2 0xD3 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x391 JUMPI DUP1 PUSH4 0x982B1F2F EQ PUSH2 0x399 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x3AC JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x3BF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x889DE805 EQ PUSH2 0x32F JUMPI DUP1 PUSH4 0x8B4B4EC9 EQ PUSH2 0x342 JUMPI DUP1 PUSH4 0x90AB0885 EQ PUSH2 0x355 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x5F665011 GT PUSH2 0x166 JUMPI DUP1 PUSH4 0x666F7AF6 GT PUSH2 0x140 JUMPI DUP1 PUSH4 0x666F7AF6 EQ PUSH2 0x2B9 JUMPI DUP1 PUSH4 0x6C59F295 EQ PUSH2 0x2CC JUMPI DUP1 PUSH4 0x6CC25DB7 EQ PUSH2 0x2DF JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x306 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x5F665011 EQ PUSH2 0x271 JUMPI DUP1 PUSH4 0x63FC611F EQ PUSH2 0x29C JUMPI DUP1 PUSH4 0x65A5D5F0 EQ PUSH2 0x2AF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x18160DDD GT PUSH2 0x1A2 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x21F JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x231 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x244 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x25E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6452792 EQ PUSH2 0x1C9 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x1DE JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x1FC JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1DC PUSH2 0x1D7 CALLDATASIZE PUSH1 0x4 PUSH2 0x27D1 JUMP JUMPDEST PUSH2 0x4BF JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1E6 PUSH2 0x4F2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1F3 SWAP2 SWAP1 PUSH2 0x29EE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x20F PUSH2 0x20A CALLDATASIZE PUSH1 0x4 PUSH2 0x258C JUMP JUMPDEST PUSH2 0x584 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1F3 JUMP JUMPDEST PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1F3 JUMP JUMPDEST PUSH2 0x20F PUSH2 0x23F CALLDATASIZE PUSH1 0x4 PUSH2 0x251D JUMP JUMPDEST PUSH2 0x59B JUMP JUMPDEST PUSH2 0x24C PUSH2 0x661 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1F3 JUMP JUMPDEST PUSH2 0x20F PUSH2 0x26C CALLDATASIZE PUSH1 0x4 PUSH2 0x258C JUMP JUMPDEST PUSH2 0x6F9 JUMP JUMPDEST PUSH2 0x284 PUSH2 0x27F CALLDATASIZE PUSH1 0x4 PUSH2 0x260B JUMP JUMPDEST PUSH2 0x735 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1F3 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH2 0x284 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 JUMP JUMPDEST PUSH2 0x223 PUSH3 0xED4E00 DUP2 JUMP JUMPDEST PUSH2 0x284 PUSH2 0x2C7 CALLDATASIZE PUSH1 0x4 PUSH2 0x260B JUMP JUMPDEST PUSH2 0x7B9 JUMP JUMPDEST PUSH2 0x284 PUSH2 0x2DA CALLDATASIZE PUSH1 0x4 PUSH2 0x25B8 JUMP JUMPDEST PUSH2 0x8A3 JUMP JUMPDEST PUSH2 0x284 PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x223 PUSH2 0x314 CALLDATASIZE PUSH1 0x4 PUSH2 0x24AA 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 0x284 PUSH2 0x33D CALLDATASIZE PUSH1 0x4 PUSH2 0x25B8 JUMP JUMPDEST PUSH2 0x9E9 JUMP JUMPDEST PUSH2 0x284 PUSH2 0x350 CALLDATASIZE PUSH1 0x4 PUSH2 0x2837 JUMP JUMPDEST PUSH2 0xAE4 JUMP JUMPDEST PUSH2 0x20F PUSH2 0x363 CALLDATASIZE PUSH1 0x4 PUSH2 0x24E4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH2 0x1E6 PUSH2 0xB4E JUMP JUMPDEST PUSH2 0x1DC PUSH2 0x3A7 CALLDATASIZE PUSH1 0x4 PUSH2 0x255E JUMP JUMPDEST PUSH2 0xB5D JUMP JUMPDEST PUSH2 0x20F PUSH2 0x3BA CALLDATASIZE PUSH1 0x4 PUSH2 0x258C JUMP JUMPDEST PUSH2 0xC3E JUMP JUMPDEST PUSH2 0x20F PUSH2 0x3CD CALLDATASIZE PUSH1 0x4 PUSH2 0x258C JUMP JUMPDEST PUSH2 0xCEF JUMP JUMPDEST PUSH2 0x3E5 PUSH2 0x3E0 CALLDATASIZE PUSH1 0x4 PUSH2 0x2640 JUMP JUMPDEST PUSH2 0xCFC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1F3 SWAP2 SWAP1 PUSH2 0x290F JUMP JUMPDEST PUSH2 0x1DC PUSH2 0x400 CALLDATASIZE PUSH1 0x4 PUSH2 0x258C JUMP JUMPDEST PUSH2 0xD08 JUMP JUMPDEST PUSH2 0x1DC PUSH2 0x413 CALLDATASIZE PUSH1 0x4 PUSH2 0x258C JUMP JUMPDEST PUSH2 0xD97 JUMP JUMPDEST PUSH2 0x42B PUSH2 0x426 CALLDATASIZE PUSH1 0x4 PUSH2 0x258C JUMP JUMPDEST PUSH2 0xE24 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP7 DUP8 AND DUP2 MSTORE SWAP6 SWAP1 SWAP5 AND PUSH1 0x20 DUP7 ADD MSTORE SWAP3 DUP5 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x60 DUP4 ADD MSTORE ISZERO ISZERO PUSH1 0x80 DUP3 ADD MSTORE PUSH1 0xA0 ADD PUSH2 0x1F3 JUMP JUMPDEST PUSH2 0x223 PUSH2 0x46E CALLDATASIZE PUSH1 0x4 PUSH2 0x24E4 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 0x284 PUSH2 0x4A7 CALLDATASIZE PUSH1 0x4 PUSH2 0x260B JUMP JUMPDEST PUSH2 0x1047 JUMP JUMPDEST PUSH2 0x284 PUSH2 0x4BA CALLDATASIZE PUSH1 0x4 PUSH2 0x258C JUMP JUMPDEST PUSH2 0x10ED JUMP JUMPDEST PUSH2 0x4EC PUSH32 0x0 DUP6 DUP6 DUP6 DUP6 PUSH2 0x10F9 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x501 SWAP1 PUSH2 0x2AF2 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 0x52D SWAP1 PUSH2 0x2AF2 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x57A JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x54F JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x57A 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 0x55D JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x591 CALLER DUP5 DUP5 PUSH2 0x11D1 JUMP JUMPDEST POP PUSH1 0x1 JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x5A8 DUP5 DUP5 DUP5 PUSH2 0x1329 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 0x647 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 0x654 DUP6 CALLER DUP6 DUP5 SUB PUSH2 0x11D1 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x313CE567 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 0x6BC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x6D0 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 0x6F4 SWAP2 SWAP1 PUSH2 0x288D 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 0x591 SWAP2 DUP6 SWAP1 PUSH2 0x730 SWAP1 DUP7 SWAP1 PUSH2 0x2A97 JUMP JUMPDEST PUSH2 0x11D1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x740 DUP5 PUSH2 0x1540 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x74C DUP6 DUP6 PUSH2 0x15C9 JUMP JUMPDEST SWAP1 POP PUSH2 0x759 DUP2 ADDRESS DUP6 PUSH2 0x161F JUMP JUMPDEST PUSH2 0x763 DUP6 DUP5 PUSH2 0x1641 JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x6862A473BAA6176F1C866C69AA93DA8508D7AFC71B52DDDC9D5E8B0BB7AAB6F4 DUP7 PUSH1 0x40 MLOAD PUSH2 0x7A9 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0x811 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 0x5457414244656C656761746F722F646C6774722D6E6F742D7A65726F2D616472 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x63E JUMP JUMPDEST PUSH2 0x81A DUP3 PUSH2 0x1719 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x826 DUP6 DUP6 PUSH2 0x15C9 JUMP JUMPDEST SWAP1 POP PUSH2 0x85D PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND CALLER DUP4 DUP7 PUSH2 0x1769 JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x383183291BD9A7FB8BD9C7C86C5013A89D1490C9F4E486DA279804B83729A1DC DUP7 PUSH1 0x40 MLOAD PUSH2 0x7A9 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x8AE DUP6 PUSH2 0x1540 JUMP JUMPDEST PUSH2 0x8B7 DUP4 PUSH2 0x181A JUMP JUMPDEST PUSH2 0x8CE DUP3 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1870 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x8DA DUP7 DUP7 PUSH2 0x15C9 JUMP JUMPDEST SWAP1 POP PUSH2 0x8E5 DUP2 PUSH2 0x18C3 JUMP JUMPDEST TIMESTAMP DUP4 ADD PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF DUP5 AND ISZERO PUSH2 0x97D JUMPI PUSH1 0x40 MLOAD PUSH32 0xAC2293AF00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH4 0xAC2293AF SWAP1 PUSH1 0x24 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x964 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x978 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP JUMPDEST PUSH2 0x987 DUP3 DUP7 PUSH2 0x1991 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF DUP4 AND DUP2 MSTORE CALLER PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP9 AND SWAP3 DUP10 SWAP3 SWAP2 DUP12 AND SWAP2 PUSH32 0xFD96A87F22AFEA1E17A7117A4923F1499A1C1EB2BD7C492CAF07F3A3C38ADE6F SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x9F4 DUP6 PUSH2 0x1540 JUMP JUMPDEST PUSH2 0x9FD DUP4 PUSH2 0x181A JUMP JUMPDEST PUSH2 0xA14 DUP3 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1870 JUMP JUMPDEST TIMESTAMP DUP3 ADD PUSH1 0x0 PUSH2 0xA6E PUSH2 0xA68 DUP9 DUP9 PUSH1 0x40 MLOAD PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT PUSH1 0x60 DUP5 SWAP1 SHL AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x34 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x54 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 DUP4 PUSH2 0x1A17 JUMP JUMPDEST SWAP1 POP PUSH2 0xA7A DUP2 DUP7 PUSH2 0x1991 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF DUP5 AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x20 DUP4 ADD MSTORE CALLER DUP3 DUP5 ADD MSTORE SWAP2 MLOAD DUP8 DUP4 AND SWAP3 DUP10 SWAP3 SWAP1 DUP12 AND SWAP2 PUSH32 0x5533ACB96061E404278604D3DF68397263BE1D4B9DF394136A2968802633D8A5 SWAP2 DUP2 SWAP1 SUB PUSH1 0x60 ADD SWAP1 LOG4 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xAEF DUP3 PUSH2 0x1ABD JUMP JUMPDEST PUSH1 0x0 PUSH2 0xAFB CALLER DUP7 PUSH2 0x15C9 JUMP JUMPDEST SWAP1 POP PUSH2 0xB08 DUP2 DUP5 DUP7 PUSH2 0x161F JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x622B7DA8A20026F1176CCC7EC0A635A4544A67E99B0125018E3D89B888CE8EBE DUP8 PUSH1 0x40 MLOAD PUSH2 0x7A9 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x501 SWAP1 PUSH2 0x2AF2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xBB3 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 0x5457414244656C656761746F722F7265702D6E6F742D7A65726F2D6164647200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x63E JUMP JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP1 DUP6 MSTORE SWAP1 DUP4 MSTORE SWAP3 DUP2 SWAP1 KECCAK256 DUP1 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00 AND DUP7 ISZERO ISZERO SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE SWAP1 MLOAD SWAP1 DUP2 MSTORE SWAP2 SWAP3 SWAP2 PUSH32 0x50062A33E55B9F3DFCF05FBF1356B7C92313796CFB8526CDEE5A497FCBB8CC33 SWAP2 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP 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 0xCD8 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 0x63E JUMP JUMPDEST PUSH2 0xCE5 CALLER DUP6 DUP6 DUP5 SUB PUSH2 0x11D1 JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x591 CALLER DUP5 DUP5 PUSH2 0x1329 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x65A DUP4 DUP4 PUSH2 0x1B13 JUMP JUMPDEST PUSH2 0xD11 DUP2 PUSH2 0x1719 JUMP JUMPDEST PUSH2 0xD46 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND CALLER ADDRESS DUP5 PUSH2 0x1769 JUMP JUMPDEST PUSH2 0xD50 DUP3 DUP3 PUSH2 0x1641 JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x15C2C6E5DB9E25D828754C9C5CEE6C5C3DF074E6AC26E7491C0F8CE7BBD447D6 DUP3 PUSH1 0x40 MLOAD PUSH2 0xD8B SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH2 0xDA0 DUP3 PUSH2 0x1ABD JUMP JUMPDEST PUSH2 0xDA9 DUP2 PUSH2 0x1719 JUMP JUMPDEST PUSH2 0xDB3 CALLER DUP3 PUSH2 0x1C0D JUMP JUMPDEST PUSH2 0xDE7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP4 DUP4 PUSH2 0x1D92 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 CALLER SWAP1 PUSH32 0xF7128607975B3FF61BC02D19A1C8267E526F7A5B7144DC4EFCDAC634663FD369 SWAP1 PUSH1 0x20 ADD PUSH2 0xC32 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0xE36 DUP8 DUP8 PUSH2 0x15C9 JUMP JUMPDEST SWAP5 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND EXTCODESIZE ISZERO ISZERO PUSH1 0x40 MLOAD PUSH32 0x8D22EA2A00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE SWAP2 SWAP3 POP PUSH32 0x0 SWAP1 SWAP2 AND SWAP1 PUSH4 0x8D22EA2A SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xEC4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xED8 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 0xEFC SWAP2 SWAP1 PUSH2 0x24C7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x70A0823100000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE SWAP2 SWAP6 POP PUSH32 0x0 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 0xF7B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xF8F 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 0xFB3 SWAP2 SWAP1 PUSH2 0x27B8 JUMP JUMPDEST SWAP3 POP DUP1 ISZERO PUSH2 0x103D JUMPI DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x3C78929E 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 0xFF4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1008 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 0x102C SWAP2 SWAP1 PUSH2 0x28AA JUMP JUMPDEST PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP2 POP JUMPDEST SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1052 DUP5 PUSH2 0x1540 JUMP JUMPDEST PUSH2 0x105B DUP3 PUSH2 0x1719 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1067 DUP6 DUP6 PUSH2 0x15C9 JUMP JUMPDEST SWAP1 POP PUSH2 0x1073 DUP6 DUP5 PUSH2 0x1C0D JUMP JUMPDEST PUSH2 0x10A7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP3 DUP6 PUSH2 0x1D92 JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xB1968721EEB35D2206C8AA91805BC908019965FF4CFF13C158F89956FB8E9248 DUP7 PUSH1 0x40 MLOAD PUSH2 0x7A9 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x65A DUP4 DUP4 PUSH2 0x15C9 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH4 0xD505ACCF CALLER ADDRESS DUP8 DUP8 CALLDATALOAD PUSH2 0x111D PUSH1 0x40 DUP11 ADD PUSH1 0x20 DUP12 ADD PUSH2 0x2870 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 DUP7 ADD CALLDATALOAD PUSH1 0xA4 DUP3 ADD MSTORE PUSH1 0x60 DUP7 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 0x11A7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x11BB JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH2 0x11C9 DUP3 DUP3 PUSH2 0x1B13 JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x124C 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 0x63E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x12C8 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 0x63E 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 0x13A5 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 0x63E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1421 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 0x63E 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 0x14B0 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 0x63E 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 0x14E7 SWAP1 DUP5 SWAP1 PUSH2 0x2A97 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 0x1533 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0x4EC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND CALLER EQ DUP1 PUSH2 0x157A JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND JUMPDEST PUSH2 0x15C6 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 0x5457414244656C656761746F722F6E6F742D646C6774722D6F722D7265700000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x63E JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x65A PUSH2 0x161A DUP5 DUP5 PUSH1 0x40 MLOAD PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT PUSH1 0x60 DUP5 SWAP1 SHL AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x34 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x54 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 PUSH2 0x1DDB JUMP JUMPDEST PUSH2 0x1628 DUP2 PUSH2 0x1719 JUMP JUMPDEST PUSH2 0x1631 DUP4 PUSH2 0x18C3 JUMP JUMPDEST PUSH2 0x163C DUP4 DUP4 DUP4 PUSH2 0x1E64 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1697 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 0x63E JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x16A9 SWAP2 SWAP1 PUSH2 0x2A97 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 0x16D6 SWAP1 DUP5 SWAP1 PUSH2 0x2A97 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 PUSH2 0xC32 JUMP JUMPDEST PUSH1 0x0 DUP2 GT PUSH2 0x15C6 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 0x5457414244656C656761746F722F616D6F756E742D67742D7A65726F00000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x63E 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 0x4EC 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 0x1EE7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x15C6 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 0x5457414244656C656761746F722F646C67742D6E6F742D7A65726F2D61646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x63E JUMP JUMPDEST PUSH3 0xED4E00 DUP2 GT ISZERO PUSH2 0x15C6 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 0x5457414244656C656761746F722F6C6F636B2D746F6F2D6C6F6E670000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x63E JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x3C78929E 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 0x18FC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1910 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 0x1934 SWAP2 SWAP1 PUSH2 0x28AA JUMP JUMPDEST PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND TIMESTAMP LT ISZERO PUSH2 0x15C6 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 0x5457414244656C656761746F722F64656C65676174696F6E2D6C6F636B656400 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x63E JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x24 DUP1 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP3 MLOAD DUP1 DUP4 SUB SWAP1 SWAP2 ADD DUP2 MSTORE PUSH1 0x44 SWAP1 SWAP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x20 DUP2 ADD DUP1 MLOAD PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x5C19A95C00000000000000000000000000000000000000000000000000000000 SWAP1 DUP2 OR SWAP1 SWAP2 MSTORE SWAP1 PUSH2 0x1A10 DUP5 DUP3 PUSH2 0x1FCC JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x0 SWAP1 DUP2 SWAP1 PUSH2 0x1A32 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH2 0x2110 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x909F1CAD00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND SWAP1 PUSH4 0x909F1CAD SWAP1 PUSH1 0x24 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1A9D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1AB1 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP SWAP3 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x15C6 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 0x5457414244656C656761746F722F746F2D6E6F742D7A65726F2D616464720000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x63E JUMP JUMPDEST PUSH1 0x60 DUP2 PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1B31 JUMPI PUSH2 0x1B31 PUSH2 0x2B92 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x1B64 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x1B4F JUMPI SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x1C04 JUMPI PUSH2 0x1BD4 ADDRESS DUP8 DUP8 DUP5 DUP2 DUP2 LT PUSH2 0x1B88 JUMPI PUSH2 0x1B88 PUSH2 0x2B7C JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x1B9A SWAP2 SWAP1 PUSH2 0x2A01 JUMP JUMPDEST DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH1 0x0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP PUSH2 0x21C7 SWAP3 POP POP POP JUMP JUMPDEST DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x1BE6 JUMPI PUSH2 0x1BE6 PUSH2 0x2B7C JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP DUP1 DUP1 PUSH2 0x1BFC SWAP1 PUSH2 0x2B2D JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1B6A JUMP JUMPDEST POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1C89 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 0x63E 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 0x1D18 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 0x63E 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 0x1D47 SWAP1 DUP5 SWAP1 PUSH2 0x2AAF 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 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 0x163C SWAP1 DUP5 SWAP1 PUSH32 0xA9059CBB00000000000000000000000000000000000000000000000000000000 SWAP1 PUSH1 0x64 ADD PUSH2 0x17B6 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x0 SWAP1 PUSH2 0x595 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 ADDRESS PUSH1 0x40 MLOAD PUSH32 0x3D602D80600A3D3981F3363D3D373D3D3D363D73000000000000000000000000 DUP2 MSTORE PUSH1 0x60 SWAP4 DUP5 SHL PUSH1 0x14 DUP3 ADD MSTORE PUSH32 0x5AF43D82803E903D91602B57FD5BF3FF00000000000000000000000000000000 PUSH1 0x28 DUP3 ADD MSTORE SWAP3 SHL PUSH1 0x38 DUP4 ADD MSTORE PUSH1 0x4C DUP3 ADD MSTORE PUSH1 0x37 DUP1 DUP3 KECCAK256 PUSH1 0x6C DUP4 ADD MSTORE PUSH1 0x55 SWAP2 ADD KECCAK256 SWAP1 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 SWAP1 DUP2 OR SWAP1 SWAP2 MSTORE SWAP1 PUSH2 0x11C9 DUP6 DUP3 PUSH2 0x1FCC JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1F3C 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 0x21EC SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP ISZERO PUSH2 0x163C JUMPI DUP1 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0x1F5A SWAP2 SWAP1 PUSH2 0x279B JUMP JUMPDEST PUSH2 0x163C 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 0x63E JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 DUP1 DUP3 MSTORE DUP2 DUP4 ADD SWAP1 SWAP3 MSTORE PUSH1 0x60 SWAP2 PUSH1 0x0 SWAP2 SWAP1 DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP2 MSTORE PUSH1 0x60 PUSH1 0x20 DUP3 ADD MSTORE DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x1FE7 JUMPI SWAP1 POP POP SWAP1 POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE POP DUP2 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x2062 JUMPI PUSH2 0x2062 PUSH2 0x2B7C JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE PUSH1 0x40 MLOAD PUSH32 0xDE9443BF00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH4 0xDE9443BF SWAP1 PUSH2 0x20B2 SWAP1 DUP5 SWAP1 PUSH1 0x4 ADD PUSH2 0x2971 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x20CC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x20E0 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 0x2108 SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x2682 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD PUSH32 0x3D602D80600A3D3981F3363D3D373D3D3D363D73000000000000000000000000 DUP2 MSTORE DUP4 PUSH1 0x60 SHL PUSH1 0x14 DUP3 ADD MSTORE PUSH32 0x5AF43D82803E903D91602B57FD5BF30000000000000000000000000000000000 PUSH1 0x28 DUP3 ADD MSTORE DUP3 PUSH1 0x37 DUP3 PUSH1 0x0 CREATE2 SWAP2 POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x595 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 0x455243313136373A2063726561746532206661696C6564000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x63E JUMP JUMPDEST PUSH1 0x60 PUSH2 0x65A DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x27 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x2BF5 PUSH1 0x27 SWAP2 CODECOPY PUSH2 0x21FB JUMP JUMPDEST PUSH1 0x60 PUSH2 0x2108 DUP5 DUP5 PUSH1 0x0 DUP6 PUSH2 0x22E6 JUMP JUMPDEST PUSH1 0x60 DUP4 EXTCODESIZE PUSH2 0x2271 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 0x416464726573733A2064656C65676174652063616C6C20746F206E6F6E2D636F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6E74726163740000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x63E JUMP JUMPDEST PUSH1 0x0 DUP1 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x40 MLOAD PUSH2 0x228C SWAP2 SWAP1 PUSH2 0x28F3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 GAS DELEGATECALL SWAP2 POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x22C7 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 0x22CC JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x22DC DUP3 DUP3 DUP7 PUSH2 0x2425 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP3 SELFBALANCE LT ISZERO PUSH2 0x235E 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 0x63E JUMP JUMPDEST DUP5 EXTCODESIZE PUSH2 0x23AC 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 0x63E JUMP JUMPDEST PUSH1 0x0 DUP1 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 DUP8 PUSH1 0x40 MLOAD PUSH2 0x23C8 SWAP2 SWAP1 PUSH2 0x28F3 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 0x2405 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 0x240A JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x241A DUP3 DUP3 DUP7 PUSH2 0x2425 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 ISZERO PUSH2 0x2434 JUMPI POP DUP2 PUSH2 0x65A JUMP JUMPDEST DUP3 MLOAD ISZERO PUSH2 0x2444 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 0x63E SWAP2 SWAP1 PUSH2 0x29EE JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x2470 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2488 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 0x24A3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x24BC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x65A DUP2 PUSH2 0x2BA8 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x24D9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x65A DUP2 PUSH2 0x2BA8 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x24F7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2502 DUP2 PUSH2 0x2BA8 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x2512 DUP2 PUSH2 0x2BA8 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2532 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x253D DUP2 PUSH2 0x2BA8 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x254D DUP2 PUSH2 0x2BA8 JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2571 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x257C DUP2 PUSH2 0x2BA8 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x2512 DUP2 PUSH2 0x2BBD JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x259F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x25AA DUP2 PUSH2 0x2BA8 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 0x25CE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x25D9 DUP2 PUSH2 0x2BA8 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH2 0x25F0 DUP2 PUSH2 0x2BA8 JUMP JUMPDEST SWAP2 POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH2 0x2600 DUP2 PUSH2 0x2BDA JUMP JUMPDEST SWAP4 SWAP7 SWAP3 SWAP6 POP SWAP1 SWAP4 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2620 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x262B DUP2 PUSH2 0x2BA8 JUMP JUMPDEST SWAP6 PUSH1 0x20 DUP6 ADD CALLDATALOAD SWAP6 POP PUSH1 0x40 SWAP1 SWAP5 ADD CALLDATALOAD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2653 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x266A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2676 DUP6 DUP3 DUP7 ADD PUSH2 0x245E JUMP JUMPDEST SWAP1 SWAP7 SWAP1 SWAP6 POP SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2695 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x26AD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP PUSH1 0x1F DUP7 DUP2 DUP5 ADD SLT PUSH2 0x26C2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD DUP3 DUP2 GT ISZERO PUSH2 0x26D4 JUMPI PUSH2 0x26D4 PUSH2 0x2B92 JUMP JUMPDEST DUP1 PUSH1 0x5 SHL PUSH2 0x26E3 DUP7 DUP3 ADD PUSH2 0x2A66 JUMP JUMPDEST DUP3 DUP2 MSTORE DUP7 DUP2 ADD SWAP1 DUP7 DUP9 ADD DUP4 DUP9 ADD DUP10 ADD DUP13 LT ISZERO PUSH2 0x26FE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP4 POP JUMPDEST DUP5 DUP5 LT ISZERO PUSH2 0x278C JUMPI DUP1 MLOAD DUP8 DUP2 GT ISZERO PUSH2 0x271A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP9 ADD PUSH1 0x3F DUP2 ADD DUP14 SGT PUSH2 0x272B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP10 DUP2 ADD MLOAD PUSH1 0x40 DUP10 DUP3 GT ISZERO PUSH2 0x2741 JUMPI PUSH2 0x2741 PUSH2 0x2B92 JUMP JUMPDEST PUSH2 0x2752 DUP13 PUSH1 0x1F NOT DUP12 DUP6 ADD AND ADD PUSH2 0x2A66 JUMP JUMPDEST DUP3 DUP2 MSTORE DUP16 DUP3 DUP5 DUP7 ADD ADD GT ISZERO PUSH2 0x2766 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2775 DUP4 DUP15 DUP4 ADD DUP5 DUP8 ADD PUSH2 0x2AC6 JUMP JUMPDEST DUP7 MSTORE POP POP POP PUSH1 0x1 SWAP4 SWAP1 SWAP4 ADD SWAP3 SWAP2 DUP9 ADD SWAP2 DUP9 ADD PUSH2 0x2703 JUMP JUMPDEST POP SWAP11 SWAP10 POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x27AD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x65A DUP2 PUSH2 0x2BBD JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x27CA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 DUP5 DUP7 SUB PUSH1 0xC0 DUP2 SLT ISZERO PUSH2 0x27E8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP6 CALLDATALOAD SWAP5 POP PUSH1 0x80 PUSH1 0x1F NOT DUP3 ADD SLT ISZERO PUSH2 0x27FE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x20 DUP6 ADD SWAP3 POP PUSH1 0xA0 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x281F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x282B DUP8 DUP3 DUP9 ADD PUSH2 0x245E JUMP JUMPDEST SWAP6 SWAP9 SWAP5 SWAP8 POP SWAP6 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x284C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x2865 DUP2 PUSH2 0x2BA8 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2882 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x65A DUP2 PUSH2 0x2BCB JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x289F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x65A DUP2 PUSH2 0x2BCB JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x28BC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x65A DUP2 PUSH2 0x2BDA JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH2 0x28DF DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH2 0x2AC6 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 0x2905 DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x2AC6 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 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 0x2964 JUMPI PUSH1 0x3F NOT DUP9 DUP7 SUB ADD DUP5 MSTORE PUSH2 0x2952 DUP6 DUP4 MLOAD PUSH2 0x28C7 JUMP JUMPDEST SWAP5 POP SWAP3 DUP6 ADD SWAP3 SWAP1 DUP6 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x2936 JUMP JUMPDEST POP SWAP3 SWAP8 SWAP7 POP 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 SWAP3 POP DUP3 DUP7 ADD SWAP2 POP DUP3 DUP2 PUSH1 0x5 SHL DUP8 ADD ADD DUP5 DUP9 ADD PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x29E0 JUMPI DUP9 DUP4 SUB PUSH1 0x3F NOT ADD DUP6 MSTORE DUP2 MLOAD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 MSTORE DUP8 ADD MLOAD DUP8 DUP5 ADD DUP8 SWAP1 MSTORE PUSH2 0x29CD DUP8 DUP6 ADD DUP3 PUSH2 0x28C7 JUMP JUMPDEST SWAP6 DUP9 ADD SWAP6 SWAP4 POP POP SWAP1 DUP7 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x2998 JUMP JUMPDEST POP SWAP1 SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0x65A PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x28C7 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 CALLDATALOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1 DUP5 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x2A36 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 ADD DUP1 CALLDATALOAD SWAP2 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x2A51 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 ADD SWAP2 POP CALLDATASIZE DUP2 SWAP1 SUB DUP3 SGT ISZERO PUSH2 0x24A3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x2A8F JUMPI PUSH2 0x2A8F PUSH2 0x2B92 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x2AAA JUMPI PUSH2 0x2AAA PUSH2 0x2B66 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x2AC1 JUMPI PUSH2 0x2AC1 PUSH2 0x2B66 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x2AE1 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x2AC9 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x4EC JUMPI POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x2B06 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x2B27 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 PUSH1 0x0 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x2B5F JUMPI PUSH2 0x2B5F PUSH2 0x2B66 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 0x15C6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x15C6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x15C6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x15C6 JUMPI PUSH1 0x0 DUP1 REVERT INVALID COINBASE PUSH5 0x6472657373 GASPRICE KECCAK256 PUSH13 0x6F772D6C6576656C2064656C65 PUSH8 0x6174652063616C6C KECCAK256 PUSH7 0x61696C6564A264 PUSH10 0x706673582212201BDD74 SMOD PUSH32 0xA202347308B16100A632A56937C0EA5893FD7242E465B863321EF864736F6C63 NUMBER STOP ADDMOD MOD STOP CALLER PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x7DC 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 0x4C JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x3C78929E EQ PUSH2 0x51 JUMPI DUP1 PUSH4 0x909F1CAD EQ PUSH2 0xA3 JUMPI DUP1 PUSH4 0xAC2293AF EQ PUSH2 0xB8 JUMPI DUP1 PUSH4 0xDE9443BF EQ PUSH2 0xCB JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SLOAD PUSH2 0x81 SWAP1 PUSH21 0x10000000000000000000000000000000000000000 SWAP1 DIV PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xB6 PUSH2 0xB1 CALLDATASIZE PUSH1 0x4 PUSH2 0x49E JUMP JUMPDEST PUSH2 0xEB JUMP JUMPDEST STOP JUMPDEST PUSH2 0xB6 PUSH2 0xC6 CALLDATASIZE PUSH1 0x4 PUSH2 0x49E JUMP JUMPDEST PUSH2 0x182 JUMP JUMPDEST PUSH2 0xDE PUSH2 0xD9 CALLDATASIZE PUSH1 0x4 PUSH2 0x429 JUMP JUMPDEST PUSH2 0x234 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x9A SWAP2 SWAP1 PUSH2 0x51B JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND ISZERO PUSH2 0x156 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 0x44656C65676174696F6E2F616C72656164792D696E6974000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH21 0x10000000000000000000000000000000000000000 MUL CALLER OR PUSH1 0x0 SSTORE JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER EQ PUSH2 0x1E9 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 0x44656C65676174696F6E2F6F6E6C792D6F776E65720000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x14D JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF SWAP1 SWAP3 AND PUSH21 0x10000000000000000000000000000000000000000 MUL PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x60 SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER EQ PUSH2 0x29E 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 0x44656C65676174696F6E2F6F6E6C792D6F776E65720000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x14D JUMP JUMPDEST DUP2 PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2BA JUMPI PUSH2 0x2BA PUSH2 0x790 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x2ED JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x2D8 JUMPI SWAP1 POP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP2 MSTORE PUSH1 0x60 PUSH1 0x20 DUP3 ADD MSTORE SWAP1 SWAP2 POP PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x382 JUMPI DUP7 DUP7 DUP3 DUP2 DUP2 LT PUSH2 0x323 JUMPI PUSH2 0x323 PUSH2 0x77A JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x335 SWAP2 SWAP1 PUSH2 0x5AE JUMP JUMPDEST PUSH2 0x33E SWAP1 PUSH2 0x63C JUMP JUMPDEST SWAP2 POP PUSH2 0x352 DUP3 PUSH1 0x0 ADD MLOAD DUP4 PUSH1 0x20 ADD MLOAD PUSH2 0x38D JUMP JUMPDEST DUP4 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x364 JUMPI PUSH2 0x364 PUSH2 0x77A JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP DUP1 DUP1 PUSH2 0x37A SWAP1 PUSH2 0x733 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x309 JUMP JUMPDEST POP SWAP1 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 DUP6 PUSH1 0x40 MLOAD PUSH2 0x3B9 SWAP2 SWAP1 PUSH2 0x4FF 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 0x3F6 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 0x3FB JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP DUP2 DUP2 SWAP1 PUSH2 0x420 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x14D SWAP2 SWAP1 PUSH2 0x59B JUMP JUMPDEST POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x43C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x454 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x468 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x477 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP7 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x48C 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 0x4B0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x4CC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH2 0x4EB DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH2 0x703 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 0x511 DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x703 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 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 0x58E JUMPI PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 DUP9 DUP7 SUB ADD DUP5 MSTORE PUSH2 0x57C DUP6 DUP4 MLOAD PUSH2 0x4D3 JUMP JUMPDEST SWAP5 POP SWAP3 DUP6 ADD SWAP3 SWAP1 DUP6 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x542 JUMP JUMPDEST POP SWAP3 SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0x4CC PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x4D3 JUMP JUMPDEST PUSH1 0x0 DUP3 CALLDATALOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1 DUP4 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x511 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP1 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x605 JUMPI PUSH2 0x605 PUSH2 0x790 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 0x634 JUMPI PUSH2 0x634 PUSH2 0x790 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 CALLDATASIZE SUB SLT ISZERO PUSH2 0x64E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x656 PUSH2 0x5E2 JUMP JUMPDEST DUP3 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x67A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MSTORE PUSH1 0x20 DUP4 DUP2 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x698 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 DUP6 ADD SWAP1 CALLDATASIZE PUSH1 0x1F DUP4 ADD SLT PUSH2 0x6AB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x6BD JUMPI PUSH2 0x6BD PUSH2 0x790 JUMP JUMPDEST PUSH2 0x6CF DUP5 PUSH1 0x1F NOT PUSH1 0x1F DUP5 ADD AND ADD PUSH2 0x60B JUMP JUMPDEST SWAP2 POP DUP1 DUP3 MSTORE CALLDATASIZE DUP5 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x6E5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 DUP5 DUP5 ADD DUP6 DUP5 ADD CALLDATACOPY PUSH1 0x0 SWAP1 DUP3 ADD DUP5 ADD MSTORE SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x71E JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x706 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x72D JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x773 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP 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 0xE1 0x22 SWAP5 OR 0x4E 0xA8 0x21 0xF8 0x2C 0x2A 0x1F DUP4 0xC4 0xF8 0x24 0xAC 0xB9 0x2D 0x2D 0xE0 0xE6 PUSH19 0xF2347C9EB5611A26A93564736F6C6343000806 STOP CALLER ",
              "sourceMap": "840:21451:81:-:0;;;5980:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2029:13:4;;6095:5:81;;6102:7;;2029:13:4;;:5;;:13;;;;;:::i;:::-;-1:-1:-1;2052:17:4;;;;:7;;:17;;;;;:::i;:::-;;1963:113;;461:16:79;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;440:18:79;:37;;-1:-1:-1;;;;;;440:37:79;-1:-1:-1;;;;;440:37:79;;;;;;;;;483:40;;-1:-1:-1;;;483:40:79;;-1:-1:-1;483:40:79;;;2160:50:101;483:29:79;;2133:18:101;;483:40:79;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;6125:30:81;::::2;6117:75;;;::::0;-1:-1:-1;;;6117:75:81;;1857:2:101;6117:75:81::2;::::0;::::2;1839:21:101::0;;;1876:18;;;1869:30;1935:34;1915:18;;;1908:62;1987:18;;6117:75:81::2;;;;;;;;-1:-1:-1::0;;;;;;6198:16:81::2;::::0;;;;::::2;::::0;6226:18:::2;::::0;-1:-1:-1;;;;;6198:16:81;::::2;::::0;6226:18:::2;::::0;;;::::2;5980:269:::0;;;840:21451;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;840:21451:81;;;-1:-1:-1;840:21451:81;:::i;:::-;;;:::o;:::-;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;14:885:101;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:101;;;221:2;;;237:18;;:::i;:::-;312:2;306:9;280:2;366:13;;-1:-1:-1;;362:22:101;;;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:101:o;904:746::-;1029:6;1037;1045;1098:2;1086:9;1077:7;1073:23;1069:32;1066:2;;;1114:1;1111;1104:12;1066:2;1141:16;;-1:-1:-1;;;;;1206:14:101;;;1203:2;;;1233:1;1230;1223:12;1203:2;1256:61;1309:7;1300:6;1289:9;1285:22;1256:61;:::i;:::-;1246:71;;1363:2;1352:9;1348:18;1342:25;1326:41;;1392:2;1382:8;1379:16;1376:2;;;1408:1;1405;1398:12;1376:2;;1431:63;1486:7;1475:8;1464:9;1460:24;1431:63;:::i;:::-;1537:2;1522:18;;1516:25;1421:73;;-1:-1:-1;1516:25:101;-1:-1:-1;;;;;;1570:31:101;;1560:42;;1550:2;;1616:1;1613;1606:12;1550:2;1639:5;1629:15;;;1056:594;;;;;:::o;2221:380::-;2300:1;2296:12;;;;2343;;;2364:2;;2418:4;2410:6;2406:17;2396:27;;2364:2;2471;2463:6;2460:14;2440:18;2437:38;2434:2;;;2517:10;2512:3;2508:20;2505:1;2498:31;2552:4;2549:1;2542:15;2580:4;2577:1;2570:15;2434:2;;2276:325;;;:::o;2606:127::-;2667:10;2662:3;2658:20;2655:1;2648:31;2698:4;2695:1;2688:15;2722:4;2719:1;2712:15;2638:95;840:21451:81;;;;;;;;;;;;"
            },
            "deployedBytecode": {
              "functionDebugData": {
                "@MAX_LOCK_16567": {
                  "entryPoint": null,
                  "id": 16567,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@_afterTokenTransfer_811": {
                  "entryPoint": null,
                  "id": 811,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_approve_789": {
                  "entryPoint": 4561,
                  "id": 789,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_beforeTokenTransfer_800": {
                  "entryPoint": null,
                  "id": 800,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_burn_744": {
                  "entryPoint": 7181,
                  "id": 744,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_callOptionalReturn_1343": {
                  "entryPoint": 7911,
                  "id": 1343,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_computeAddress_16298": {
                  "entryPoint": 7643,
                  "id": 16298,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_computeAddress_17256": {
                  "entryPoint": 5577,
                  "id": 17256,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@_computeLockUntil_17274": {
                  "entryPoint": null,
                  "id": 17274,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@_computeSalt_16317": {
                  "entryPoint": null,
                  "id": 16317,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@_createDelegation_16277": {
                  "entryPoint": 6679,
                  "id": 16277,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@_executeCall_17379": {
                  "entryPoint": 8140,
                  "id": 17379,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@_mint_672": {
                  "entryPoint": 5697,
                  "id": 672,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_msgSender_1787": {
                  "entryPoint": null,
                  "id": 1787,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@_multicall_16387": {
                  "entryPoint": 6931,
                  "id": 16387,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@_permitAndMulticall_16427": {
                  "entryPoint": 4345,
                  "id": 16427,
                  "parameterSlots": 5,
                  "returnSlots": 0
                },
                "@_requireAmountGtZero_17458": {
                  "entryPoint": 5913,
                  "id": 17458,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_requireDelegateeNotZeroAddress_17444": {
                  "entryPoint": 6170,
                  "id": 17444,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_requireDelegationUnlocked_17493": {
                  "entryPoint": 6339,
                  "id": 17493,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_requireDelegatorOrRepresentative_17427": {
                  "entryPoint": 5440,
                  "id": 17427,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_requireLockDuration_17507": {
                  "entryPoint": 6256,
                  "id": 17507,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_requireRecipientNotZeroAddress_17475": {
                  "entryPoint": 6845,
                  "id": 17475,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "@_setDelegateeCall_17303": {
                  "entryPoint": 6545,
                  "id": 17303,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@_transferCall_17335": {
                  "entryPoint": 7780,
                  "id": 17335,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_transfer_17405": {
                  "entryPoint": 5663,
                  "id": 17405,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@_transfer_616": {
                  "entryPoint": 4905,
                  "id": 616,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@allowance_404": {
                  "entryPoint": null,
                  "id": 404,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@approve_425": {
                  "entryPoint": 1412,
                  "id": 425,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@balanceOf_365": {
                  "entryPoint": null,
                  "id": 365,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@cloneDeterministic_191": {
                  "entryPoint": 8464,
                  "id": 191,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@computeDelegationAddress_17218": {
                  "entryPoint": 4333,
                  "id": 17218,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@createDelegation_16752": {
                  "entryPoint": 2537,
                  "id": 16752,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "@decimals_17235": {
                  "entryPoint": 1633,
                  "id": 17235,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@decreaseAllowance_539": {
                  "entryPoint": 3134,
                  "id": 539,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@delegationInstance_16223": {
                  "entryPoint": null,
                  "id": 16223,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@functionCallWithValue_1639": {
                  "entryPoint": 8934,
                  "id": 1639,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "@functionCall_1569": {
                  "entryPoint": 8684,
                  "id": 1569,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@functionDelegateCall_1708": {
                  "entryPoint": 8647,
                  "id": 1708,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@functionDelegateCall_1743": {
                  "entryPoint": 8699,
                  "id": 1743,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@fundDelegationFromStake_16946": {
                  "entryPoint": 4167,
                  "id": 16946,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@fundDelegation_16888": {
                  "entryPoint": 1977,
                  "id": 16888,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@getDelegation_17202": {
                  "entryPoint": 3620,
                  "id": 17202,
                  "parameterSlots": 2,
                  "returnSlots": 5
                },
                "@increaseAllowance_500": {
                  "entryPoint": 1785,
                  "id": 500,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@isContract_1498": {
                  "entryPoint": null,
                  "id": 1498,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "@isRepresentativeOf_17095": {
                  "entryPoint": null,
                  "id": 17095,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@multicall_17110": {
                  "entryPoint": 3324,
                  "id": 17110,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@name_321": {
                  "entryPoint": 1266,
                  "id": 321,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@permitAndMulticall_17135": {
                  "entryPoint": 1215,
                  "id": 17135,
                  "parameterSlots": 4,
                  "returnSlots": 0
                },
                "@predictDeterministicAddress_205": {
                  "entryPoint": null,
                  "id": 205,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@safeTransferFrom_1177": {
                  "entryPoint": 5993,
                  "id": 1177,
                  "parameterSlots": 4,
                  "returnSlots": 0
                },
                "@safeTransfer_1151": {
                  "entryPoint": 7570,
                  "id": 1151,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "@setRepresentative_17078": {
                  "entryPoint": 2909,
                  "id": 17078,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@stake_16649": {
                  "entryPoint": 3336,
                  "id": 16649,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@symbol_331": {
                  "entryPoint": 2894,
                  "id": 331,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@ticket_16563": {
                  "entryPoint": null,
                  "id": 16563,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "@totalSupply_351": {
                  "entryPoint": null,
                  "id": 351,
                  "parameterSlots": 0,
                  "returnSlots": 1
                },
                "@transferDelegationTo_17043": {
                  "entryPoint": 2788,
                  "id": 17043,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@transferFrom_473": {
                  "entryPoint": 1435,
                  "id": 473,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@transfer_386": {
                  "entryPoint": 3311,
                  "id": 386,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "@unstake_16687": {
                  "entryPoint": 3479,
                  "id": 16687,
                  "parameterSlots": 2,
                  "returnSlots": 0
                },
                "@updateDelegatee_16827": {
                  "entryPoint": 2211,
                  "id": 16827,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "@verifyCallResult_1774": {
                  "entryPoint": 9253,
                  "id": 1774,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "@withdrawDelegationToStake_16998": {
                  "entryPoint": 1845,
                  "id": 16998,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_decode_array_bytes_calldata_dyn_calldata": {
                  "entryPoint": 9310,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_address": {
                  "entryPoint": 9386,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_address_fromMemory": {
                  "entryPoint": 9415,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_addresst_address": {
                  "entryPoint": 9444,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_addresst_addresst_uint256": {
                  "entryPoint": 9501,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_decode_tuple_t_addresst_bool": {
                  "entryPoint": 9566,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_addresst_uint256": {
                  "entryPoint": 9612,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_addresst_uint256t_addresst_uint96": {
                  "entryPoint": 9656,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 4
                },
                "abi_decode_tuple_t_addresst_uint256t_uint256": {
                  "entryPoint": 9739,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_decode_tuple_t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr": {
                  "entryPoint": 9792,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "abi_decode_tuple_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_fromMemory": {
                  "entryPoint": 9858,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_bool_fromMemory": {
                  "entryPoint": 10139,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint256_fromMemory": {
                  "entryPoint": 10168,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint256t_struct$_Signature_$16332_calldata_ptrt_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr": {
                  "entryPoint": 10193,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 4
                },
                "abi_decode_tuple_t_uint256t_uint256t_address": {
                  "entryPoint": 10295,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 3
                },
                "abi_decode_tuple_t_uint8": {
                  "entryPoint": 10352,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint8_fromMemory": {
                  "entryPoint": 10381,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_decode_tuple_t_uint96_fromMemory": {
                  "entryPoint": 10410,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_bytes": {
                  "entryPoint": 10439,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_packed_t_address_t_bytes32__to_t_address_t_bytes32__nonPadded_inplace_fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed": {
                  "entryPoint": 10483,
                  "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_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_uint256__to_t_address_t_uint256__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr__to_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr__fromStack_reversed": {
                  "entryPoint": 10511,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_array$_t_struct$_Call_$16056_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_Call_$16056_memory_ptr_$dyn_memory_ptr__fromStack_reversed": {
                  "entryPoint": 10609,
                  "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$_Delegation_$16211__to_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_Delegation_$16211_t_address_t_uint256_t_uint256_t_bool__to_t_address_t_address_t_uint256_t_uint256_t_bool__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 6,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_contract$_ITicket_$11825__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": 10734,
                  "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_07573097221cd546d4e24cc9a4671c1dbda3cd30c002cc700828bee691a10a9a__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_4ec050e530ce66e7658278ab7a4e4a2f19225159c48fc52eb249bd268e755d73__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_7725f8f64c49a89f472e8061de639e3c42149e4fe0ed809c0166675ba81b5fc5__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_7b1e4d9c68be54f93266d18bd63dee22dcdce3db6a6e54d0608da75da236be7a__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_8a1220b5b5ba748b49dab03f5d91f8037092348f6b0858a02dd6d6b662ff8a28__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_a366586648dca8242a9181d59d8242052347a96da254271ac1597aaf99605cd9__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_b9475c0db4e43a5ce94c192da7d69b2f5549305fd1edeeab17cf1a4c5f30175e__to_t_string_memory_ptr__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_stringliteral_b94ded0918034cf8f896e19fa3cfdef1188cd569c577264a3622e49152f88520__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_bbd9f52add0df87fe0a1181387627334f86175a8345db35a3f3f0173bf642327__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_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
                },
                "abi_encode_tuple_t_stringliteral_edcbe2d8057a5c49dd38e11752299617c45e19376faabbb0740b28e1175f3300__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
                },
                "abi_encode_tuple_t_uint96__to_t_uint96__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint96_t_address__to_t_uint96_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 1
                },
                "abi_encode_tuple_t_uint96_t_contract$_Delegation_$16211_t_address__to_t_uint96_t_address_t_address__fromStack_reversed": {
                  "entryPoint": null,
                  "id": null,
                  "parameterSlots": 4,
                  "returnSlots": 1
                },
                "access_calldata_tail_t_bytes_calldata_ptr": {
                  "entryPoint": 10753,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 2
                },
                "allocate_memory": {
                  "entryPoint": 10854,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "checked_add_t_uint256": {
                  "entryPoint": 10903,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "checked_sub_t_uint256": {
                  "entryPoint": 10927,
                  "id": null,
                  "parameterSlots": 2,
                  "returnSlots": 1
                },
                "copy_memory_to_memory": {
                  "entryPoint": 10950,
                  "id": null,
                  "parameterSlots": 3,
                  "returnSlots": 0
                },
                "extract_byte_array_length": {
                  "entryPoint": 10994,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "increment_t_uint256": {
                  "entryPoint": 11053,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 1
                },
                "panic_error_0x11": {
                  "entryPoint": 11110,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x32": {
                  "entryPoint": 11132,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "panic_error_0x41": {
                  "entryPoint": 11154,
                  "id": null,
                  "parameterSlots": 0,
                  "returnSlots": 0
                },
                "validator_revert_address": {
                  "entryPoint": 11176,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "validator_revert_bool": {
                  "entryPoint": 11197,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "validator_revert_uint8": {
                  "entryPoint": 11211,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                },
                "validator_revert_uint96": {
                  "entryPoint": 11226,
                  "id": null,
                  "parameterSlots": 1,
                  "returnSlots": 0
                }
              },
              "generatedSources": [
                {
                  "ast": {
                    "nodeType": "YulBlock",
                    "src": "0:27277:101",
                    "statements": [
                      {
                        "nodeType": "YulBlock",
                        "src": "6:3:101",
                        "statements": []
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "105:283:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "154:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "163:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "166:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "156:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "156:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "156:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "133:6:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "141:4:101",
                                            "type": "",
                                            "value": "0x1f"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "129:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "129:17:101"
                                      },
                                      {
                                        "name": "end",
                                        "nodeType": "YulIdentifier",
                                        "src": "148:3:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "125:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "125:27:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "118:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "118:35:101"
                              },
                              "nodeType": "YulIf",
                              "src": "115:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "179:30:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "202:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "189:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "189:20:101"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "179:6:101"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "252:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "261:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "264:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "254:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "254:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "254:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "224:6:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "232:18:101",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "221:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "221:30:101"
                              },
                              "nodeType": "YulIf",
                              "src": "218:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "277:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "293:6:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "301:4:101",
                                    "type": "",
                                    "value": "0x20"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "289:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "289:17:101"
                              },
                              "variableNames": [
                                {
                                  "name": "arrayPos",
                                  "nodeType": "YulIdentifier",
                                  "src": "277:8:101"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "366:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "375:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "378:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "368:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "368:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "368:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "offset",
                                            "nodeType": "YulIdentifier",
                                            "src": "329:6:101"
                                          },
                                          {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "341:1:101",
                                                "type": "",
                                                "value": "5"
                                              },
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "344:6:101"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "shl",
                                              "nodeType": "YulIdentifier",
                                              "src": "337:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "337:14:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "325:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "325:27:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "354:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "321:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "321:38:101"
                                  },
                                  {
                                    "name": "end",
                                    "nodeType": "YulIdentifier",
                                    "src": "361:3:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "318:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "318:47:101"
                              },
                              "nodeType": "YulIf",
                              "src": "315:2:101"
                            }
                          ]
                        },
                        "name": "abi_decode_array_bytes_calldata_dyn_calldata",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "offset",
                            "nodeType": "YulTypedName",
                            "src": "68:6:101",
                            "type": ""
                          },
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "76:3:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "arrayPos",
                            "nodeType": "YulTypedName",
                            "src": "84:8:101",
                            "type": ""
                          },
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "94:6:101",
                            "type": ""
                          }
                        ],
                        "src": "14:374:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "463:177:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "509:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "518:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "521:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "511:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "511:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "511:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "484:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "493:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "480:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "480:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "505:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "476:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "476:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "473:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "534:36:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "560:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "547:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "547:23:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "538:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "604:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "579:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "579:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "579:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "619:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "629:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "619:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "429:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "440:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "452:6:101",
                            "type": ""
                          }
                        ],
                        "src": "393:247:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "726:170:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "772:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "781:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "784:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "774:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "774:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "774:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "747:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "756:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "743:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "743:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "768:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "739:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "739:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "736:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "797:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "816:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "810:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "810:16:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "801:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "860:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "835:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "835:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "835:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "875:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "885:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "875:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_address_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "692:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "703:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "715:6:101",
                            "type": ""
                          }
                        ],
                        "src": "645:251:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "988:301:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1034:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1043:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1046:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1036:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1036:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1036:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1009:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1018:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1005:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1005:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1030:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1001:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1001:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "998:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1059:36:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1085:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1072:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1072:23:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1063:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1129:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1104:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1104:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1104:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1144:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1154:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1144:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1168:47:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1200:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1211:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1196:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1196:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1183:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1183:32:101"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1172:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1249:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1224:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1224:33:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1224:33:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1266:17:101",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "1276:7:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1266:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "946:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "957:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "969:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "977:6:101",
                            "type": ""
                          }
                        ],
                        "src": "901:388:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1398:352:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1444:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1453:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1456:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1446:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1446:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1446:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1419:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1428:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1415:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1415:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1440:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1411:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1411:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1408:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1469:36:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1495:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1482:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1482:23:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1473:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1539:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1514:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1514:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1514:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1554:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "1564:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1554:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1578:47:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1610:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1621:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1606:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1606:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1593:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1593:32:101"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "1582:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "1659:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1634:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1634:33:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1634:33:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1676:17:101",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "1686:7:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "1676:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1702:42:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1729:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1740:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1725:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1725:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1712:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1712:32:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "1702:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1348:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1359:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1371:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1379:6:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "1387:6:101",
                            "type": ""
                          }
                        ],
                        "src": "1294:456:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "1839:298:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "1885:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1894:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "1897:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "1887:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "1887:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "1887:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "1860:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "1869:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "1856:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1856:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1881:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "1852:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1852:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "1849:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1910:36:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "1936:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1923:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1923:23:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "1914:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "1980:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "1955:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1955:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1955:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1995:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2005:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "1995:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2019:47:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2051:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2062:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2047:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2047:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2034:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2034:32:101"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2023:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2097:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_bool",
                                  "nodeType": "YulIdentifier",
                                  "src": "2075:21:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2075:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2075:30:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2114:17:101",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "2124:7:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2114:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_bool",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "1797:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "1808:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "1820:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "1828:6:101",
                            "type": ""
                          }
                        ],
                        "src": "1755:382:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2229:228:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2275:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2284:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2287:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2277:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2277:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2277:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2250:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2259:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2246:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2246:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2271:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2242:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2242:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2239:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2300:36:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2326:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2313:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2313:23:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2304:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "2370:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "2345:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2345:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2345:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2385:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2395:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2385:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2409:42:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2436:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2447:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2432:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2432:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2419:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2419:32:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2409:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2187:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2198:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2210:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2218:6:101",
                            "type": ""
                          }
                        ],
                        "src": "2142:315:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "2582:476:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "2629:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2638:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2641:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "2631:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2631:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "2631:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "2603:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2612:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "2599:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2599:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2624:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "2595:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2595:33:101"
                              },
                              "nodeType": "YulIf",
                              "src": "2592:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2654:36:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "2680:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2667:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2667:23:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "2658:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "2724:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "2699:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2699:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2699:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2739:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "2749:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "2739:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2763:42:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2790:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2801:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2786:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2786:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2773:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2773:32:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "2763:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2814:47:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2846:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2857:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2842:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2842:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2829:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2829:32:101"
                              },
                              "variables": [
                                {
                                  "name": "value_1",
                                  "nodeType": "YulTypedName",
                                  "src": "2818:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "2895:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "2870:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2870:33:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2870:33:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2912:17:101",
                              "value": {
                                "name": "value_1",
                                "nodeType": "YulIdentifier",
                                "src": "2922:7:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "2912:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2938:47:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "2970:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2981:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2966:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2966:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2953:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2953:32:101"
                              },
                              "variables": [
                                {
                                  "name": "value_2",
                                  "nodeType": "YulTypedName",
                                  "src": "2942:7:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "3018:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint96",
                                  "nodeType": "YulIdentifier",
                                  "src": "2994:23:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2994:32:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2994:32:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3035:17:101",
                              "value": {
                                "name": "value_2",
                                "nodeType": "YulIdentifier",
                                "src": "3045:7:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "3035:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint256t_addresst_uint96",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "2524:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "2535:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "2547:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "2555:6:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "2563:6:101",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "2571:6:101",
                            "type": ""
                          }
                        ],
                        "src": "2462:596:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3167:279:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3213:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3222:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3225:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3215:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3215:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3215:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3188:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3197:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3184:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3184:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3209:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3180:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3180:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "3177:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3238:36:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3264:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3251:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3251:23:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "3242:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "3308:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "3283:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3283:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3283:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3323:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "3333:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3323:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3347:42:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3374:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3385:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3370:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3370:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3357:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3357:32:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "3347:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3398:42:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3425:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3436:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3421:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3421:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3408:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3408:32:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "3398:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_addresst_uint256t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3117:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "3128:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3140:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "3148:6:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "3156:6:101",
                            "type": ""
                          }
                        ],
                        "src": "3063:383:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "3567:339:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3613:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3622:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3625:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3615:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3615:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3615:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "3588:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3597:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "3584:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3584:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3609:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3580:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3580:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "3577:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3638:37:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "3665:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "3652:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3652:23:101"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "3642:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "3718:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3727:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "3730:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "3720:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "3720:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "3720:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "3690:6:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3698:18:101",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "3687:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3687:30:101"
                              },
                              "nodeType": "YulIf",
                              "src": "3684:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "3743:103:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "3818:9:101"
                                      },
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "3829:6:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3814:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3814:22:101"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "3838:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_array_bytes_calldata_dyn_calldata",
                                  "nodeType": "YulIdentifier",
                                  "src": "3769:44:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3769:77:101"
                              },
                              "variables": [
                                {
                                  "name": "value0_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3747:8:101",
                                  "type": ""
                                },
                                {
                                  "name": "value1_1",
                                  "nodeType": "YulTypedName",
                                  "src": "3757:8:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3855:18:101",
                              "value": {
                                "name": "value0_1",
                                "nodeType": "YulIdentifier",
                                "src": "3865:8:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "3855:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3882:18:101",
                              "value": {
                                "name": "value1_1",
                                "nodeType": "YulIdentifier",
                                "src": "3892:8:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "3882:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3525:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "3536:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "3548:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "3556:6:101",
                            "type": ""
                          }
                        ],
                        "src": "3451:455:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "4026:1474:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4036:12:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "4046:2:101",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4040:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4093:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4102:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4105:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4095:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4095:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4095:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "4068:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "4077:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "4064:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4064:23:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4089:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4060:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4060:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "4057:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4118:30:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4138:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4132:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4132:16:101"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "4122:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4157:28:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "4167:18:101",
                                "type": "",
                                "value": "0xffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "4161:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4212:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4221:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4224:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4214:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4214:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4214:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "4200:6:101"
                                  },
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "4208:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4197:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4197:14:101"
                              },
                              "nodeType": "YulIf",
                              "src": "4194:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4237:32:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "4251:9:101"
                                  },
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "4262:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4247:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4247:22:101"
                              },
                              "variables": [
                                {
                                  "name": "_3",
                                  "nodeType": "YulTypedName",
                                  "src": "4241:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4278:14:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "4288:4:101",
                                "type": "",
                                "value": "0x1f"
                              },
                              "variables": [
                                {
                                  "name": "_4",
                                  "nodeType": "YulTypedName",
                                  "src": "4282:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4338:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4347:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4350:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4340:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4340:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4340:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_3",
                                            "nodeType": "YulIdentifier",
                                            "src": "4319:2:101"
                                          },
                                          {
                                            "name": "_4",
                                            "nodeType": "YulIdentifier",
                                            "src": "4323:2:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "4315:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4315:11:101"
                                      },
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "4328:7:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "4311:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4311:25:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "4304:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4304:33:101"
                              },
                              "nodeType": "YulIf",
                              "src": "4301:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4363:19:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "4379:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "4373:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4373:9:101"
                              },
                              "variables": [
                                {
                                  "name": "_5",
                                  "nodeType": "YulTypedName",
                                  "src": "4367:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4405:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "4407:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4407:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4407:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_5",
                                    "nodeType": "YulIdentifier",
                                    "src": "4397:2:101"
                                  },
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "4401:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4394:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4394:10:101"
                              },
                              "nodeType": "YulIf",
                              "src": "4391:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4436:20:101",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4450:1:101",
                                    "type": "",
                                    "value": "5"
                                  },
                                  {
                                    "name": "_5",
                                    "nodeType": "YulIdentifier",
                                    "src": "4453:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "shl",
                                  "nodeType": "YulIdentifier",
                                  "src": "4446:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4446:10:101"
                              },
                              "variables": [
                                {
                                  "name": "_6",
                                  "nodeType": "YulTypedName",
                                  "src": "4440:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4465:39:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "_6",
                                        "nodeType": "YulIdentifier",
                                        "src": "4496:2:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "4500:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4492:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4492:11:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "allocate_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "4476:15:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4476:28:101"
                              },
                              "variables": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulTypedName",
                                  "src": "4469:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4513:16:101",
                              "value": {
                                "name": "dst",
                                "nodeType": "YulIdentifier",
                                "src": "4526:3:101"
                              },
                              "variables": [
                                {
                                  "name": "dst_1",
                                  "nodeType": "YulTypedName",
                                  "src": "4517:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "4545:3:101"
                                  },
                                  {
                                    "name": "_5",
                                    "nodeType": "YulIdentifier",
                                    "src": "4550:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "4538:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4538:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "4538:15:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "4562:19:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "dst",
                                    "nodeType": "YulIdentifier",
                                    "src": "4573:3:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4578:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4569:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4569:12:101"
                              },
                              "variableNames": [
                                {
                                  "name": "dst",
                                  "nodeType": "YulIdentifier",
                                  "src": "4562:3:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4590:22:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "_3",
                                    "nodeType": "YulIdentifier",
                                    "src": "4605:2:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "4609:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "4601:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4601:11:101"
                              },
                              "variables": [
                                {
                                  "name": "src",
                                  "nodeType": "YulTypedName",
                                  "src": "4594:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4658:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4667:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4670:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "4660:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4660:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "4660:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "_3",
                                            "nodeType": "YulIdentifier",
                                            "src": "4635:2:101"
                                          },
                                          {
                                            "name": "_6",
                                            "nodeType": "YulIdentifier",
                                            "src": "4639:2:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "4631:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "4631:11:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "4644:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "4627:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "4627:20:101"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "4649:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4624:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4624:33:101"
                              },
                              "nodeType": "YulIf",
                              "src": "4621:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "4683:10:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "4692:1:101",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "4687:1:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "4747:723:101",
                                "statements": [
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "4761:29:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "4786:3:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mload",
                                        "nodeType": "YulIdentifier",
                                        "src": "4780:5:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4780:10:101"
                                    },
                                    "variables": [
                                      {
                                        "name": "innerOffset",
                                        "nodeType": "YulTypedName",
                                        "src": "4765:11:101",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "body": {
                                      "nodeType": "YulBlock",
                                      "src": "4826:16:101",
                                      "statements": [
                                        {
                                          "expression": {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "4835:1:101",
                                                "type": "",
                                                "value": "0"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "4838:1:101",
                                                "type": "",
                                                "value": "0"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "revert",
                                              "nodeType": "YulIdentifier",
                                              "src": "4828:6:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4828:12:101"
                                          },
                                          "nodeType": "YulExpressionStatement",
                                          "src": "4828:12:101"
                                        }
                                      ]
                                    },
                                    "condition": {
                                      "arguments": [
                                        {
                                          "name": "innerOffset",
                                          "nodeType": "YulIdentifier",
                                          "src": "4809:11:101"
                                        },
                                        {
                                          "name": "_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "4822:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "gt",
                                        "nodeType": "YulIdentifier",
                                        "src": "4806:2:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4806:19:101"
                                    },
                                    "nodeType": "YulIf",
                                    "src": "4803:2:101"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "4855:30:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "_3",
                                          "nodeType": "YulIdentifier",
                                          "src": "4869:2:101"
                                        },
                                        {
                                          "name": "innerOffset",
                                          "nodeType": "YulIdentifier",
                                          "src": "4873:11:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "4865:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4865:20:101"
                                    },
                                    "variables": [
                                      {
                                        "name": "_7",
                                        "nodeType": "YulTypedName",
                                        "src": "4859:2:101",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "body": {
                                      "nodeType": "YulBlock",
                                      "src": "4935:16:101",
                                      "statements": [
                                        {
                                          "expression": {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "4944:1:101",
                                                "type": "",
                                                "value": "0"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "4947:1:101",
                                                "type": "",
                                                "value": "0"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "revert",
                                              "nodeType": "YulIdentifier",
                                              "src": "4937:6:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "4937:12:101"
                                          },
                                          "nodeType": "YulExpressionStatement",
                                          "src": "4937:12:101"
                                        }
                                      ]
                                    },
                                    "condition": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "_7",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "4916:2:101"
                                                },
                                                {
                                                  "kind": "number",
                                                  "nodeType": "YulLiteral",
                                                  "src": "4920:2:101",
                                                  "type": "",
                                                  "value": "63"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "4912:3:101"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "4912:11:101"
                                            },
                                            {
                                              "name": "dataEnd",
                                              "nodeType": "YulIdentifier",
                                              "src": "4925:7:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "slt",
                                            "nodeType": "YulIdentifier",
                                            "src": "4908:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "4908:25:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "iszero",
                                        "nodeType": "YulIdentifier",
                                        "src": "4901:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4901:33:101"
                                    },
                                    "nodeType": "YulIf",
                                    "src": "4898:2:101"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "4964:28:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "_7",
                                              "nodeType": "YulIdentifier",
                                              "src": "4984:2:101"
                                            },
                                            {
                                              "name": "_1",
                                              "nodeType": "YulIdentifier",
                                              "src": "4988:2:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "4980:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "4980:11:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mload",
                                        "nodeType": "YulIdentifier",
                                        "src": "4974:5:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4974:18:101"
                                    },
                                    "variables": [
                                      {
                                        "name": "_8",
                                        "nodeType": "YulTypedName",
                                        "src": "4968:2:101",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "5005:12:101",
                                    "value": {
                                      "kind": "number",
                                      "nodeType": "YulLiteral",
                                      "src": "5015:2:101",
                                      "type": "",
                                      "value": "64"
                                    },
                                    "variables": [
                                      {
                                        "name": "_9",
                                        "nodeType": "YulTypedName",
                                        "src": "5009:2:101",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "body": {
                                      "nodeType": "YulBlock",
                                      "src": "5044:22:101",
                                      "statements": [
                                        {
                                          "expression": {
                                            "arguments": [],
                                            "functionName": {
                                              "name": "panic_error_0x41",
                                              "nodeType": "YulIdentifier",
                                              "src": "5046:16:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "5046:18:101"
                                          },
                                          "nodeType": "YulExpressionStatement",
                                          "src": "5046:18:101"
                                        }
                                      ]
                                    },
                                    "condition": {
                                      "arguments": [
                                        {
                                          "name": "_8",
                                          "nodeType": "YulIdentifier",
                                          "src": "5036:2:101"
                                        },
                                        {
                                          "name": "_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "5040:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "gt",
                                        "nodeType": "YulIdentifier",
                                        "src": "5033:2:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5033:10:101"
                                    },
                                    "nodeType": "YulIf",
                                    "src": "5030:2:101"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "5079:123:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "arguments": [
                                                    {
                                                      "name": "_8",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "5120:2:101"
                                                    },
                                                    {
                                                      "name": "_4",
                                                      "nodeType": "YulIdentifier",
                                                      "src": "5124:2:101"
                                                    }
                                                  ],
                                                  "functionName": {
                                                    "name": "add",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "5116:3:101"
                                                  },
                                                  "nodeType": "YulFunctionCall",
                                                  "src": "5116:11:101"
                                                },
                                                {
                                                  "kind": "number",
                                                  "nodeType": "YulLiteral",
                                                  "src": "5129:66:101",
                                                  "type": "",
                                                  "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "and",
                                                "nodeType": "YulIdentifier",
                                                "src": "5112:3:101"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "5112:84:101"
                                            },
                                            {
                                              "name": "_1",
                                              "nodeType": "YulIdentifier",
                                              "src": "5198:2:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "5108:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "5108:93:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "allocate_memory",
                                        "nodeType": "YulIdentifier",
                                        "src": "5092:15:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5092:110:101"
                                    },
                                    "variables": [
                                      {
                                        "name": "array",
                                        "nodeType": "YulTypedName",
                                        "src": "5083:5:101",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "array",
                                          "nodeType": "YulIdentifier",
                                          "src": "5222:5:101"
                                        },
                                        {
                                          "name": "_8",
                                          "nodeType": "YulIdentifier",
                                          "src": "5229:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "5215:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5215:17:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5215:17:101"
                                  },
                                  {
                                    "body": {
                                      "nodeType": "YulBlock",
                                      "src": "5282:16:101",
                                      "statements": [
                                        {
                                          "expression": {
                                            "arguments": [
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "5291:1:101",
                                                "type": "",
                                                "value": "0"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "5294:1:101",
                                                "type": "",
                                                "value": "0"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "revert",
                                              "nodeType": "YulIdentifier",
                                              "src": "5284:6:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "5284:12:101"
                                          },
                                          "nodeType": "YulExpressionStatement",
                                          "src": "5284:12:101"
                                        }
                                      ]
                                    },
                                    "condition": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "_7",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "5259:2:101"
                                                },
                                                {
                                                  "name": "_8",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "5263:2:101"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "5255:3:101"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "5255:11:101"
                                            },
                                            {
                                              "name": "_9",
                                              "nodeType": "YulIdentifier",
                                              "src": "5268:2:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "5251:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "5251:20:101"
                                        },
                                        {
                                          "name": "dataEnd",
                                          "nodeType": "YulIdentifier",
                                          "src": "5273:7:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "gt",
                                        "nodeType": "YulIdentifier",
                                        "src": "5248:2:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5248:33:101"
                                    },
                                    "nodeType": "YulIf",
                                    "src": "5245:2:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "_7",
                                              "nodeType": "YulIdentifier",
                                              "src": "5337:2:101"
                                            },
                                            {
                                              "name": "_9",
                                              "nodeType": "YulIdentifier",
                                              "src": "5341:2:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "5333:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "5333:11:101"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "array",
                                              "nodeType": "YulIdentifier",
                                              "src": "5350:5:101"
                                            },
                                            {
                                              "name": "_1",
                                              "nodeType": "YulIdentifier",
                                              "src": "5357:2:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "5346:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "5346:14:101"
                                        },
                                        {
                                          "name": "_8",
                                          "nodeType": "YulIdentifier",
                                          "src": "5362:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "copy_memory_to_memory",
                                        "nodeType": "YulIdentifier",
                                        "src": "5311:21:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5311:54:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5311:54:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "5385:3:101"
                                        },
                                        {
                                          "name": "array",
                                          "nodeType": "YulIdentifier",
                                          "src": "5390:5:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "5378:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5378:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5378:18:101"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "5409:19:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "dst",
                                          "nodeType": "YulIdentifier",
                                          "src": "5420:3:101"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "5425:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "5416:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5416:12:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "dst",
                                        "nodeType": "YulIdentifier",
                                        "src": "5409:3:101"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "5441:19:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "src",
                                          "nodeType": "YulIdentifier",
                                          "src": "5452:3:101"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "5457:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "5448:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5448:12:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "src",
                                        "nodeType": "YulIdentifier",
                                        "src": "5441:3:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "4713:1:101"
                                  },
                                  {
                                    "name": "_5",
                                    "nodeType": "YulIdentifier",
                                    "src": "4716:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "4710:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4710:9:101"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "4720:18:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "4722:14:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "4731:1:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "4734:1:101",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "4727:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "4727:9:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "4722:1:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "4706:3:101",
                                "statements": []
                              },
                              "src": "4702:768:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5479:15:101",
                              "value": {
                                "name": "dst_1",
                                "nodeType": "YulIdentifier",
                                "src": "5489:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "5479:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "3992:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "4003:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "4015:6:101",
                            "type": ""
                          }
                        ],
                        "src": "3911:1589:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5583:167:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5629:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5638:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5641:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "5631:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5631:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5631:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "5604:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5613:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "5600:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5600:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5625:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "5596:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5596:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "5593:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "5654:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5673:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "5667:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5667:16:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "5658:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "5714:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_bool",
                                  "nodeType": "YulIdentifier",
                                  "src": "5692:21:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5692:28:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "5692:28:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5729:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "5739:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "5729:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_bool_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5549:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "5560:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5572:6:101",
                            "type": ""
                          }
                        ],
                        "src": "5505:245:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "5836:103:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "5882:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5891:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "5894:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "5884:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "5884:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "5884:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "5857:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "5866:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "5853:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5853:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5878:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "5849:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5849:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "5846:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5907:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "5923:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "5917:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5917:16:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "5907:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "5802:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "5813:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "5825:6:101",
                            "type": ""
                          }
                        ],
                        "src": "5755:184:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6124:564:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6134:33:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "6148:7:101"
                                  },
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6157:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "6144:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6144:23:101"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6138:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "6192:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6201:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6204:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "6194:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6194:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6194:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "6183:2:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6187:3:101",
                                    "type": "",
                                    "value": "192"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "6179:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6179:12:101"
                              },
                              "nodeType": "YulIf",
                              "src": "6176:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6217:33:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6240:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "6227:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6227:23:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "6217:6:101"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "6348:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6357:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6360:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "6350:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6350:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6350:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "6270:2:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6274:66:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6266:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6266:75:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6343:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "6262:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6262:85:101"
                              },
                              "nodeType": "YulIf",
                              "src": "6259:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6373:28:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6387:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6398:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "6383:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6383:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "6373:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6410:47:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6441:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6452:3:101",
                                        "type": "",
                                        "value": "160"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6437:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6437:19:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "6424:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6424:33:101"
                              },
                              "variables": [
                                {
                                  "name": "offset",
                                  "nodeType": "YulTypedName",
                                  "src": "6414:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "6500:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6509:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6512:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "6502:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6502:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6502:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "offset",
                                    "nodeType": "YulIdentifier",
                                    "src": "6472:6:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6480:18:101",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "6469:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6469:30:101"
                              },
                              "nodeType": "YulIf",
                              "src": "6466:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6525:103:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6600:9:101"
                                      },
                                      {
                                        "name": "offset",
                                        "nodeType": "YulIdentifier",
                                        "src": "6611:6:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6596:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6596:22:101"
                                  },
                                  {
                                    "name": "dataEnd",
                                    "nodeType": "YulIdentifier",
                                    "src": "6620:7:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_decode_array_bytes_calldata_dyn_calldata",
                                  "nodeType": "YulIdentifier",
                                  "src": "6551:44:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6551:77:101"
                              },
                              "variables": [
                                {
                                  "name": "value2_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6529:8:101",
                                  "type": ""
                                },
                                {
                                  "name": "value3_1",
                                  "nodeType": "YulTypedName",
                                  "src": "6539:8:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6637:18:101",
                              "value": {
                                "name": "value2_1",
                                "nodeType": "YulIdentifier",
                                "src": "6647:8:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "6637:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6664:18:101",
                              "value": {
                                "name": "value3_1",
                                "nodeType": "YulIdentifier",
                                "src": "6674:8:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value3",
                                  "nodeType": "YulIdentifier",
                                  "src": "6664:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256t_struct$_Signature_$16332_calldata_ptrt_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6066:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "6077:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6089:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "6097:6:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "6105:6:101",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "6113:6:101",
                            "type": ""
                          }
                        ],
                        "src": "5944:744:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "6797:279:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "6843:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6852:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "6855:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "6845:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "6845:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "6845:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "6818:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6827:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "6814:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6814:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "6839:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "6810:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6810:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "6807:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6868:33:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "6891:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "6878:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6878:23:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "6868:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "6910:42:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6937:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "6948:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6933:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6933:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "6920:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6920:32:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value1",
                                  "nodeType": "YulIdentifier",
                                  "src": "6910:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "6961:45:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "6991:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7002:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "6987:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "6987:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "6974:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "6974:32:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "6965:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "7040:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_address",
                                  "nodeType": "YulIdentifier",
                                  "src": "7015:24:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7015:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7015:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7055:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "7065:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value2",
                                  "nodeType": "YulIdentifier",
                                  "src": "7055:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint256t_uint256t_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "6747:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "6758:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "6770:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "6778:6:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "6786:6:101",
                            "type": ""
                          }
                        ],
                        "src": "6693:383:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7149:175:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7195:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7204:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7207:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "7197:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7197:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7197:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "7170:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7179:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "7166:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7166:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7191:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "7162:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7162:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "7159:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7220:36:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7246:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "7233:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7233:23:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "7224:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "7288:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint8",
                                  "nodeType": "YulIdentifier",
                                  "src": "7265:22:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7265:29:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7265:29:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7303:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "7313:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "7303:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7115:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "7126:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7138:6:101",
                            "type": ""
                          }
                        ],
                        "src": "7081:243:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7408:168:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7454:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7463:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7466:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "7456:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7456:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7456:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "7429:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7438:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "7425:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7425:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7450:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "7421:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7421:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "7418:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7479:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7498:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "7492:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7492:16:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "7483:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "7540:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint8",
                                  "nodeType": "YulIdentifier",
                                  "src": "7517:22:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7517:29:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7517:29:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7555:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "7565:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "7555:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint8_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7374:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "7385:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7397:6:101",
                            "type": ""
                          }
                        ],
                        "src": "7329:247:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7661:169:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "7707:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7716:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "7719:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "7709:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "7709:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "7709:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "dataEnd",
                                        "nodeType": "YulIdentifier",
                                        "src": "7682:7:101"
                                      },
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "7691:9:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "7678:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7678:23:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "7703:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "slt",
                                  "nodeType": "YulIdentifier",
                                  "src": "7674:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7674:32:101"
                              },
                              "nodeType": "YulIf",
                              "src": "7671:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7732:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "7751:9:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "7745:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7745:16:101"
                              },
                              "variables": [
                                {
                                  "name": "value",
                                  "nodeType": "YulTypedName",
                                  "src": "7736:5:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "7794:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "validator_revert_uint96",
                                  "nodeType": "YulIdentifier",
                                  "src": "7770:23:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7770:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7770:30:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "7809:15:101",
                              "value": {
                                "name": "value",
                                "nodeType": "YulIdentifier",
                                "src": "7819:5:101"
                              },
                              "variableNames": [
                                {
                                  "name": "value0",
                                  "nodeType": "YulIdentifier",
                                  "src": "7809:6:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_decode_tuple_t_uint96_fromMemory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "7627:9:101",
                            "type": ""
                          },
                          {
                            "name": "dataEnd",
                            "nodeType": "YulTypedName",
                            "src": "7638:7:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "7650:6:101",
                            "type": ""
                          }
                        ],
                        "src": "7581:249:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "7884:267:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "7894:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "7914:5:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "7908:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7908:12:101"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "7898:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "7936:3:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "7941:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "7929:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7929:19:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7929:19:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "7983:5:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "7990:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7979:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7979:16:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "8001:3:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8006:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "7997:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "7997:14:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "8013:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "7957:21:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "7957:63:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "7957:63:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8029:116:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "8044:3:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "length",
                                                "nodeType": "YulIdentifier",
                                                "src": "8057:6:101"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "8065:2:101",
                                                "type": "",
                                                "value": "31"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "8053:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "8053:15:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "8070:66:101",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "8049:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "8049:88:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8040:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8040:98:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8140:4:101",
                                    "type": "",
                                    "value": "0x20"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8036:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8036:109:101"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "8029:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_bytes",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "7861:5:101",
                            "type": ""
                          },
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "7868:3:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "7876:3:101",
                            "type": ""
                          }
                        ],
                        "src": "7835:316:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8303:182:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "8320:3:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "8333:2:101",
                                            "type": "",
                                            "value": "96"
                                          },
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "8337:6:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "shl",
                                          "nodeType": "YulIdentifier",
                                          "src": "8329:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "8329:15:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8346:66:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "8325:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8325:88:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8313:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8313:101:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8313:101:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "8434:3:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8439:2:101",
                                        "type": "",
                                        "value": "20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8430:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8430:12:101"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "8444:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8423:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8423:28:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8423:28:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8460:19:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "8471:3:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8476:2:101",
                                    "type": "",
                                    "value": "52"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8467:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8467:12:101"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "8460:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_packed_t_address_t_bytes32__to_t_address_t_bytes32__nonPadded_inplace_fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "pos",
                            "nodeType": "YulTypedName",
                            "src": "8271:3:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "8276:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8284:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "8295:3:101",
                            "type": ""
                          }
                        ],
                        "src": "8156:329:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8627:137:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "8637:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "8657:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "8651:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8651:13:101"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "8641:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "8699:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8707:4:101",
                                        "type": "",
                                        "value": "0x20"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "8695:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8695:17:101"
                                  },
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "8714:3:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "8719:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "copy_memory_to_memory",
                                  "nodeType": "YulIdentifier",
                                  "src": "8673:21:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8673:53:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8673:53:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "8735:23:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "pos",
                                    "nodeType": "YulIdentifier",
                                    "src": "8746:3:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "8751:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8742:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8742:16:101"
                              },
                              "variableNames": [
                                {
                                  "name": "end",
                                  "nodeType": "YulIdentifier",
                                  "src": "8735:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "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": "8603:3:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8608:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "end",
                            "nodeType": "YulTypedName",
                            "src": "8619:3:101",
                            "type": ""
                          }
                        ],
                        "src": "8490:274:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "8870:125:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "8880:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8892:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "8903:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "8888:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8888:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "8880:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "8922:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "8937:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "8945:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "8933:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "8933:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "8915:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "8915:74:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "8915:74:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "8839:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "8850:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "8861:4:101",
                            "type": ""
                          }
                        ],
                        "src": "8769:226:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9157:241:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "9167:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9179:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9190:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9175:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9175:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9167:4:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9202:52:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "9212:42:101",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "9206:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9270:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "9285:6:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "9293:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "9281:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9281:15:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9263:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9263:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9263:34:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9317:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9328:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9313:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9313:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "9337:6:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "9345:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "9333:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9333:15:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9306:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9306:43:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9306:43:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9369:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9380:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9365:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9365:18:101"
                                  },
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "9385:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9358:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9358:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9358:34:101"
                            }
                          ]
                        },
                        "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": "9110:9:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "9121:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "9129:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "9137:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9148:4:101",
                            "type": ""
                          }
                        ],
                        "src": "9000:398:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "9668:428:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "9678:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9690:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "9701:3:101",
                                    "type": "",
                                    "value": "224"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "9686:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9686:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "9678:4:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "9714:52:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "9724:42:101",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "9718:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "9782:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "9797:6:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "9805:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "9793:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9793:15:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9775:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9775:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9775:34:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9829:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9840:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9825:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9825:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "9849:6:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "9857:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "9845:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9845:15:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9818:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9818:43:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9818:43:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9881:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9892:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9877:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9877:18:101"
                                  },
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "9897:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9870:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9870:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9870:34:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9924:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9935:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9920:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9920:18:101"
                                  },
                                  {
                                    "name": "value3",
                                    "nodeType": "YulIdentifier",
                                    "src": "9940:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9913:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9913:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9913:34:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "9967:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9978:3:101",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "9963:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9963:19:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value4",
                                        "nodeType": "YulIdentifier",
                                        "src": "9988:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "9996:4:101",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "9984:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "9984:17:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "9956:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "9956:46:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "9956:46:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10022:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10033:3:101",
                                        "type": "",
                                        "value": "160"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10018:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10018:19:101"
                                  },
                                  {
                                    "name": "value5",
                                    "nodeType": "YulIdentifier",
                                    "src": "10039:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10011:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10011:35:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10011:35:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10066:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10077:3:101",
                                        "type": "",
                                        "value": "192"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10062:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10062:19:101"
                                  },
                                  {
                                    "name": "value6",
                                    "nodeType": "YulIdentifier",
                                    "src": "10083:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10055:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10055:35:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10055:35:101"
                            }
                          ]
                        },
                        "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": "9589:9:101",
                            "type": ""
                          },
                          {
                            "name": "value6",
                            "nodeType": "YulTypedName",
                            "src": "9600:6:101",
                            "type": ""
                          },
                          {
                            "name": "value5",
                            "nodeType": "YulTypedName",
                            "src": "9608:6:101",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "9616:6:101",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "9624:6:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "9632:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "9640:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "9648:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "9659:4:101",
                            "type": ""
                          }
                        ],
                        "src": "9403:693:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10230:168:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "10240:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10252:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10263:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10248:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10248:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "10240:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10282:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "10297:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10305:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "10293:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10293:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10275:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10275:74:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10275:74:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10369:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "10380:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10365:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10365:18:101"
                                  },
                                  {
                                    "name": "value1",
                                    "nodeType": "YulIdentifier",
                                    "src": "10385:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10358:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10358:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10358:34:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10191:9:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "10202:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "10210:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10221:4:101",
                            "type": ""
                          }
                        ],
                        "src": "10101:297:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "10572:690:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "10582:12:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "10592:2:101",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "10586:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "10603:32:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10621:9:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "10632:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10617:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10617:18:101"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "10607:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10651:9:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "10662:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10644:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10644:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10644:21:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "10674:17:101",
                              "value": {
                                "name": "tail_1",
                                "nodeType": "YulIdentifier",
                                "src": "10685:6:101"
                              },
                              "variables": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulTypedName",
                                  "src": "10678:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "10700:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "10720:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "10714:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10714:13:101"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "10704:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "10743:6:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "10751:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "10736:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10736:22:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "10736:22:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "10767:25:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "10778:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10789:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10774:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10774:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "10767:3:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "10801:53:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "10823:9:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "10838:1:101",
                                            "type": "",
                                            "value": "5"
                                          },
                                          {
                                            "name": "length",
                                            "nodeType": "YulIdentifier",
                                            "src": "10841:6:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "shl",
                                          "nodeType": "YulIdentifier",
                                          "src": "10834:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "10834:14:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "10819:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "10819:30:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "10851:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10815:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10815:39:101"
                              },
                              "variables": [
                                {
                                  "name": "tail_2",
                                  "nodeType": "YulTypedName",
                                  "src": "10805:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "10863:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "10881:6:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "10889:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "10877:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10877:15:101"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "10867:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "10901:10:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "10910:1:101",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "10905:1:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "10969:264:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "10990:3:101"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "tail_2",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "11003:6:101"
                                                },
                                                {
                                                  "name": "headStart",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "11011:9:101"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "sub",
                                                "nodeType": "YulIdentifier",
                                                "src": "10999:3:101"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "10999:22:101"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "11023:66:101",
                                              "type": "",
                                              "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc0"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "10995:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "10995:95:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "10983:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10983:108:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "10983:108:101"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "11104:49:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "srcPtr",
                                              "nodeType": "YulIdentifier",
                                              "src": "11137:6:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "11131:5:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "11131:13:101"
                                        },
                                        {
                                          "name": "tail_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "11146:6:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "abi_encode_bytes",
                                        "nodeType": "YulIdentifier",
                                        "src": "11114:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11114:39:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "tail_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "11104:6:101"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "11166:25:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "11180:6:101"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "11188:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "11176:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11176:15:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "11166:6:101"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "11204:19:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "11215:3:101"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "11220:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "11211:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11211:12:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "11204:3:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "10931:1:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "10934:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "10928:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "10928:13:101"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "10942:18:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "10944:14:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "10953:1:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "10956:1:101",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "10949:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "10949:9:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "10944:1:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "10924:3:101",
                                "statements": []
                              },
                              "src": "10920:313:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11242:14:101",
                              "value": {
                                "name": "tail_2",
                                "nodeType": "YulIdentifier",
                                "src": "11250:6:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "11242:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr__to_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "10541:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "10552:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "10563:4:101",
                            "type": ""
                          }
                        ],
                        "src": "10403:859:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "11464:933:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11474:12:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "11484:2:101",
                                "type": "",
                                "value": "32"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "11478:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11495:32:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11513:9:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "11524:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11509:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11509:18:101"
                              },
                              "variables": [
                                {
                                  "name": "tail_1",
                                  "nodeType": "YulTypedName",
                                  "src": "11499:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11543:9:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "11554:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11536:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11536:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11536:21:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11566:17:101",
                              "value": {
                                "name": "tail_1",
                                "nodeType": "YulIdentifier",
                                "src": "11577:6:101"
                              },
                              "variables": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulTypedName",
                                  "src": "11570:3:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11592:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "11612:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "11606:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11606:13:101"
                              },
                              "variables": [
                                {
                                  "name": "length",
                                  "nodeType": "YulTypedName",
                                  "src": "11596:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "tail_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "11635:6:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "11643:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "11628:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11628:22:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "11628:22:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11659:12:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "11669:2:101",
                                "type": "",
                                "value": "64"
                              },
                              "variables": [
                                {
                                  "name": "_2",
                                  "nodeType": "YulTypedName",
                                  "src": "11663:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "11680:25:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "11691:9:101"
                                  },
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "11702:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11687:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11687:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "pos",
                                  "nodeType": "YulIdentifier",
                                  "src": "11680:3:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11714:53:101",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "11736:9:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "11751:1:101",
                                            "type": "",
                                            "value": "5"
                                          },
                                          {
                                            "name": "length",
                                            "nodeType": "YulIdentifier",
                                            "src": "11754:6:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "shl",
                                          "nodeType": "YulIdentifier",
                                          "src": "11747:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "11747:14:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "11732:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "11732:30:101"
                                  },
                                  {
                                    "name": "_2",
                                    "nodeType": "YulIdentifier",
                                    "src": "11764:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11728:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11728:39:101"
                              },
                              "variables": [
                                {
                                  "name": "tail_2",
                                  "nodeType": "YulTypedName",
                                  "src": "11718:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11776:29:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "11794:6:101"
                                  },
                                  {
                                    "name": "_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "11802:2:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "11790:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11790:15:101"
                              },
                              "variables": [
                                {
                                  "name": "srcPtr",
                                  "nodeType": "YulTypedName",
                                  "src": "11780:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "11814:10:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "11823:1:101",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "11818:1:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "11882:486:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "11903:3:101"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "tail_2",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "11916:6:101"
                                                },
                                                {
                                                  "name": "headStart",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "11924:9:101"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "sub",
                                                "nodeType": "YulIdentifier",
                                                "src": "11912:3:101"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "11912:22:101"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "11936:66:101",
                                              "type": "",
                                              "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc0"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "11908:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "11908:95:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "11896:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11896:108:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "11896:108:101"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "12017:23:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "12033:6:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mload",
                                        "nodeType": "YulIdentifier",
                                        "src": "12027:5:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12027:13:101"
                                    },
                                    "variables": [
                                      {
                                        "name": "_3",
                                        "nodeType": "YulTypedName",
                                        "src": "12021:2:101",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "name": "tail_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "12060:6:101"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "_3",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "12078:2:101"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "mload",
                                                "nodeType": "YulIdentifier",
                                                "src": "12072:5:101"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "12072:9:101"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "12083:42:101",
                                              "type": "",
                                              "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "and",
                                            "nodeType": "YulIdentifier",
                                            "src": "12068:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "12068:58:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "12053:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12053:74:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "12053:74:101"
                                  },
                                  {
                                    "nodeType": "YulVariableDeclaration",
                                    "src": "12140:38:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "_3",
                                              "nodeType": "YulIdentifier",
                                              "src": "12170:2:101"
                                            },
                                            {
                                              "name": "_1",
                                              "nodeType": "YulIdentifier",
                                              "src": "12174:2:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "12166:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "12166:11:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mload",
                                        "nodeType": "YulIdentifier",
                                        "src": "12160:5:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12160:18:101"
                                    },
                                    "variables": [
                                      {
                                        "name": "memberValue0",
                                        "nodeType": "YulTypedName",
                                        "src": "12144:12:101",
                                        "type": ""
                                      }
                                    ]
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "tail_2",
                                              "nodeType": "YulIdentifier",
                                              "src": "12202:6:101"
                                            },
                                            {
                                              "name": "_1",
                                              "nodeType": "YulIdentifier",
                                              "src": "12210:2:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "12198:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "12198:15:101"
                                        },
                                        {
                                          "name": "_2",
                                          "nodeType": "YulIdentifier",
                                          "src": "12215:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "12191:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12191:27:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "12191:27:101"
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "12231:57:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "memberValue0",
                                          "nodeType": "YulIdentifier",
                                          "src": "12258:12:101"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "name": "tail_2",
                                              "nodeType": "YulIdentifier",
                                              "src": "12276:6:101"
                                            },
                                            {
                                              "name": "_2",
                                              "nodeType": "YulIdentifier",
                                              "src": "12284:2:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "12272:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "12272:15:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "abi_encode_bytes",
                                        "nodeType": "YulIdentifier",
                                        "src": "12241:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12241:47:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "tail_2",
                                        "nodeType": "YulIdentifier",
                                        "src": "12231:6:101"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "12301:25:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "srcPtr",
                                          "nodeType": "YulIdentifier",
                                          "src": "12315:6:101"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "12323:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "12311:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12311:15:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "srcPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "12301:6:101"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "12339:19:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "pos",
                                          "nodeType": "YulIdentifier",
                                          "src": "12350:3:101"
                                        },
                                        {
                                          "name": "_1",
                                          "nodeType": "YulIdentifier",
                                          "src": "12355:2:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "12346:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "12346:12:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "pos",
                                        "nodeType": "YulIdentifier",
                                        "src": "12339:3:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "11844:1:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "11847:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "11841:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "11841:13:101"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "11855:18:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "11857:14:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "11866:1:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "11869:1:101",
                                          "type": "",
                                          "value": "1"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "11862:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "11862:9:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "11857:1:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "11837:3:101",
                                "statements": []
                              },
                              "src": "11833:535:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "12377:14:101",
                              "value": {
                                "name": "tail_2",
                                "nodeType": "YulIdentifier",
                                "src": "12385:6:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12377:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_array$_t_struct$_Call_$16056_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_Call_$16056_memory_ptr_$dyn_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "11433:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "11444:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "11455:4:101",
                            "type": ""
                          }
                        ],
                        "src": "11267:1130:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12497:92:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "12507:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12519:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12530:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12515:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12515:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12507:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12549:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value0",
                                            "nodeType": "YulIdentifier",
                                            "src": "12574:6:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "12567:6:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "12567:14:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "12560:6:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12560:22:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12542:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12542:41:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12542:41:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12466:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "12477:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12488:4:101",
                            "type": ""
                          }
                        ],
                        "src": "12402:187:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "12715:125:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "12725:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12737:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "12748:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "12733:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12733:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "12725:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "12767:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "12782:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "12790:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "12778:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "12778:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "12760:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "12760:74:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "12760:74:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_Delegation_$16211__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "12684:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "12695:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "12706:4:101",
                            "type": ""
                          }
                        ],
                        "src": "12594:246:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13072:345:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "13082:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13094:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13105:3:101",
                                    "type": "",
                                    "value": "160"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13090:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13090:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "13082:4:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "13118:52:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "13128:42:101",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "13122:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13186:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "13201:6:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "13209:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "13197:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13197:15:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13179:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13179:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13179:34:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13233:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13244:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13229:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13229:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "13253:6:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "13261:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "13249:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13249:15:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13222:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13222:43:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13222:43:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13285:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13296:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13281:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13281:18:101"
                                  },
                                  {
                                    "name": "value2",
                                    "nodeType": "YulIdentifier",
                                    "src": "13301:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13274:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13274:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13274:34:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13328:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13339:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13324:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13324:18:101"
                                  },
                                  {
                                    "name": "value3",
                                    "nodeType": "YulIdentifier",
                                    "src": "13344:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13317:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13317:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13317:34:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13371:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13382:3:101",
                                        "type": "",
                                        "value": "128"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13367:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13367:19:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "value4",
                                            "nodeType": "YulIdentifier",
                                            "src": "13402:6:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "13395:6:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "13395:14:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "iszero",
                                      "nodeType": "YulIdentifier",
                                      "src": "13388:6:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13388:22:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13360:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13360:51:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13360:51:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_Delegation_$16211_t_address_t_uint256_t_uint256_t_bool__to_t_address_t_address_t_uint256_t_uint256_t_bool__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "13009:9:101",
                            "type": ""
                          },
                          {
                            "name": "value4",
                            "nodeType": "YulTypedName",
                            "src": "13020:6:101",
                            "type": ""
                          },
                          {
                            "name": "value3",
                            "nodeType": "YulTypedName",
                            "src": "13028:6:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "13036:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "13044:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "13052:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "13063:4:101",
                            "type": ""
                          }
                        ],
                        "src": "12845:572:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13540:125:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "13550:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13562:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13573:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "13558:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13558:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "13550:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13592:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "13607:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13615:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "13603:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13603:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13585:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13585:74:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13585:74:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_contract$_ITicket_$11825__to_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "13509:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "13520:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "13531:4:101",
                            "type": ""
                          }
                        ],
                        "src": "13422:243:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "13791:98:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "13808:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "13819:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "13801:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13801:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "13801:21:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "13831:52:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "13856:6:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "13868:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "13879:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "13864:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "13864:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "abi_encode_bytes",
                                  "nodeType": "YulIdentifier",
                                  "src": "13839:16:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "13839:44:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "13831:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "13760:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "13771:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "13782:4:101",
                            "type": ""
                          }
                        ],
                        "src": "13670:219:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14068:225:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14085:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14096:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14078:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14078:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14078:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14119:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14130:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14115:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14115:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14135:2:101",
                                    "type": "",
                                    "value": "35"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14108:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14108:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14108:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14158:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14169:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14154:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14154:18:101"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220746f20746865207a65726f2061646472",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "14174:34:101",
                                    "type": "",
                                    "value": "ERC20: transfer to the zero addr"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14147:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14147:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14147:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14229:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14240:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14225:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14225:18:101"
                                  },
                                  {
                                    "hexValue": "657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "14245:5:101",
                                    "type": "",
                                    "value": "ess"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14218:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14218:33:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14218:33:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "14260:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14272:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14283:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "14268:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14268:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "14260:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "14045:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "14059:4:101",
                            "type": ""
                          }
                        ],
                        "src": "13894:399:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14472:177:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14489:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14500:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14482:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14482:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14482:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14523:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14534:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14519:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14519:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14539:2:101",
                                    "type": "",
                                    "value": "27"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14512:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14512:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14512:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14562:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14573:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14558:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14558:18:101"
                                  },
                                  {
                                    "hexValue": "5457414244656c656761746f722f6c6f636b2d746f6f2d6c6f6e67",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "14578:29:101",
                                    "type": "",
                                    "value": "TWABDelegator/lock-too-long"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14551:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14551:57:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14551:57:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "14617:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14629:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14640:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "14625:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14625:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "14617:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_07573097221cd546d4e24cc9a4671c1dbda3cd30c002cc700828bee691a10a9a__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "14449:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "14463:4:101",
                            "type": ""
                          }
                        ],
                        "src": "14298:351:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "14828:224:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "14845:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14856:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14838:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14838:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14838:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14879:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14890:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14875:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14875:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "14895:2:101",
                                    "type": "",
                                    "value": "34"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14868:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14868:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14868:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14918:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "14929:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14914:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14914:18:101"
                                  },
                                  {
                                    "hexValue": "45524332303a206275726e20616d6f756e7420657863656564732062616c616e",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "14934:34:101",
                                    "type": "",
                                    "value": "ERC20: burn amount exceeds balan"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14907:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14907:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14907:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "14989:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15000:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "14985:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "14985:18:101"
                                  },
                                  {
                                    "hexValue": "6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "15005:4:101",
                                    "type": "",
                                    "value": "ce"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "14978:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "14978:32:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "14978:32:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "15019:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15031:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15042:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "15027:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15027:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "15019:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "14805:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "14819:4:101",
                            "type": ""
                          }
                        ],
                        "src": "14654:398:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15231:224:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15248:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15259:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15241:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15241:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15241:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15282:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15293:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15278:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15278:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15298:2:101",
                                    "type": "",
                                    "value": "34"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15271:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15271:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15271:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15321:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15332:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15317:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15317:18:101"
                                  },
                                  {
                                    "hexValue": "45524332303a20617070726f766520746f20746865207a65726f206164647265",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "15337:34:101",
                                    "type": "",
                                    "value": "ERC20: approve to the zero addre"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15310:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15310:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15310:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15392:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15403:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15388:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15388:18:101"
                                  },
                                  {
                                    "hexValue": "7373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "15408:4:101",
                                    "type": "",
                                    "value": "ss"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15381:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15381:32:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15381:32:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "15422:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15434:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15445:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "15430:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15430:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "15422:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "15208:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "15222:4:101",
                            "type": ""
                          }
                        ],
                        "src": "15057:398:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "15634:228:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15651:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15662:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15644:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15644:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15644:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15685:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15696:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15681:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15681:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15701:2:101",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15674:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15674:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15674:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15724:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15735:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15720:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15720:18:101"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732062",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "15740:34:101",
                                    "type": "",
                                    "value": "ERC20: transfer amount exceeds b"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15713:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15713:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15713:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "15795:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "15806:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "15791:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "15791:18:101"
                                  },
                                  {
                                    "hexValue": "616c616e6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "15811:8:101",
                                    "type": "",
                                    "value": "alance"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "15784:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15784:36:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "15784:36:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "15829:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "15841:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "15852:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "15837:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "15837:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "15829:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "15611:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "15625:4:101",
                            "type": ""
                          }
                        ],
                        "src": "15460:402:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "16041:173:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16058:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16069:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16051:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16051:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16051:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16092:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16103:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16088:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16088:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16108:2:101",
                                    "type": "",
                                    "value": "23"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16081:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16081:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16081:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16131:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16142:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16127:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16127:18:101"
                                  },
                                  {
                                    "hexValue": "455243313136373a2063726561746532206661696c6564",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "16147:25:101",
                                    "type": "",
                                    "value": "ERC1167: create2 failed"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16120:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16120:53:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16120:53:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "16182:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16194:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16205:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "16190:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16190:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "16182:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_4ec050e530ce66e7658278ab7a4e4a2f19225159c48fc52eb249bd268e755d73__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "16018:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "16032:4:101",
                            "type": ""
                          }
                        ],
                        "src": "15867:347:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "16393:228:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16410:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16421:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16403:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16403:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16403:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16444:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16455:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16440:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16440:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16460:2:101",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16433:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16433:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16433:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16483:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16494:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16479:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16479:18:101"
                                  },
                                  {
                                    "hexValue": "416464726573733a20696e73756666696369656e742062616c616e636520666f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "16499:34:101",
                                    "type": "",
                                    "value": "Address: insufficient balance fo"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16472:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16472:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16472:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16554:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16565:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16550:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16550:18:101"
                                  },
                                  {
                                    "hexValue": "722063616c6c",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "16570:8:101",
                                    "type": "",
                                    "value": "r call"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16543:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16543:36:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16543:36:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "16588:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16600:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16611:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "16596:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16596:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "16588:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "16370:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "16384:4:101",
                            "type": ""
                          }
                        ],
                        "src": "16219:402:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "16800:178:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16817:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16828:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16810:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16810:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16810:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16851:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16862:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16847:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16847:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16867:2:101",
                                    "type": "",
                                    "value": "28"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16840:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16840:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16840:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "16890:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "16901:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "16886:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "16886:18:101"
                                  },
                                  {
                                    "hexValue": "5457414244656c656761746f722f616d6f756e742d67742d7a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "16906:30:101",
                                    "type": "",
                                    "value": "TWABDelegator/amount-gt-zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "16879:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16879:58:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "16879:58:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "16946:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "16958:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "16969:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "16954:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "16954:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "16946:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7725f8f64c49a89f472e8061de639e3c42149e4fe0ed809c0166675ba81b5fc5__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "16777:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "16791:4:101",
                            "type": ""
                          }
                        ],
                        "src": "16626:352:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "17157:182:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "17174:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17185:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17167:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17167:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17167:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17208:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17219:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17204:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17204:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17224:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17197:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17197:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17197:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17247:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17258:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17243:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17243:18:101"
                                  },
                                  {
                                    "hexValue": "5457414244656c656761746f722f646c6774722d6e6f742d7a65726f2d616472",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "17263:34:101",
                                    "type": "",
                                    "value": "TWABDelegator/dlgtr-not-zero-adr"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17236:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17236:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17236:62:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "17307:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "17319:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17330:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "17315:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17315:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "17307:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_7b1e4d9c68be54f93266d18bd63dee22dcdce3db6a6e54d0608da75da236be7a__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "17134:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "17148:4:101",
                            "type": ""
                          }
                        ],
                        "src": "16983:356:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "17518:181:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "17535:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17546:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17528:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17528:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17528:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17569:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17580:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17565:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17565:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17585:2:101",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17558:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17558:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17558:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17608:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17619:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17604:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17604:18:101"
                                  },
                                  {
                                    "hexValue": "5457414244656c656761746f722f64656c65676174696f6e2d6c6f636b6564",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "17624:33:101",
                                    "type": "",
                                    "value": "TWABDelegator/delegation-locked"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17597:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17597:61:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17597:61:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "17667:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "17679:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17690:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "17675:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17675:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "17667:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_8a1220b5b5ba748b49dab03f5d91f8037092348f6b0858a02dd6d6b662ff8a28__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "17495:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "17509:4:101",
                            "type": ""
                          }
                        ],
                        "src": "17344:355:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "17878:230:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "17895:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17906:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17888:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17888:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17888:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17929:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17940:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17925:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17925:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "17945:2:101",
                                    "type": "",
                                    "value": "40"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17918:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17918:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17918:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "17968:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "17979:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "17964:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "17964:18:101"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732061",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "17984:34:101",
                                    "type": "",
                                    "value": "ERC20: transfer amount exceeds a"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "17957:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "17957:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "17957:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "18039:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18050:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "18035:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18035:18:101"
                                  },
                                  {
                                    "hexValue": "6c6c6f77616e6365",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "18055:10:101",
                                    "type": "",
                                    "value": "llowance"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18028:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18028:38:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18028:38:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "18075:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "18087:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18098:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "18083:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18083:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "18075:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "17855:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "17869:4:101",
                            "type": ""
                          }
                        ],
                        "src": "17704:404:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "18287:180:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "18304:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18315:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18297:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18297:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18297:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "18338:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18349:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "18334:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18334:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18354:2:101",
                                    "type": "",
                                    "value": "30"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18327:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18327:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18327:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "18377:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18388:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "18373:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18373:18:101"
                                  },
                                  {
                                    "hexValue": "5457414244656c656761746f722f746f2d6e6f742d7a65726f2d61646472",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "18393:32:101",
                                    "type": "",
                                    "value": "TWABDelegator/to-not-zero-addr"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18366:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18366:60:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18366:60:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "18435:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "18447:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18458:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "18443:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18443:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "18435:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_a366586648dca8242a9181d59d8242052347a96da254271ac1597aaf99605cd9__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "18264:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "18278:4:101",
                            "type": ""
                          }
                        ],
                        "src": "18113:354:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "18646:223:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "18663:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18674:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18656:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18656:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18656:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "18697:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18708:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "18693:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18693:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18713:2:101",
                                    "type": "",
                                    "value": "33"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18686:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18686:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18686:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "18736:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18747:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "18732:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18732:18:101"
                                  },
                                  {
                                    "hexValue": "45524332303a206275726e2066726f6d20746865207a65726f20616464726573",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "18752:34:101",
                                    "type": "",
                                    "value": "ERC20: burn from the zero addres"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18725:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18725:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18725:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "18807:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "18818:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "18803:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "18803:18:101"
                                  },
                                  {
                                    "hexValue": "73",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "18823:3:101",
                                    "type": "",
                                    "value": "s"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "18796:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18796:31:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "18796:31:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "18836:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "18848:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "18859:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "18844:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "18844:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "18836:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "18623:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "18637:4:101",
                            "type": ""
                          }
                        ],
                        "src": "18472:397:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "19048:180:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "19065:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19076:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19058:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19058:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19058:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "19099:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "19110:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "19095:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19095:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19115:2:101",
                                    "type": "",
                                    "value": "30"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19088:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19088:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19088:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "19138:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "19149:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "19134:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19134:18:101"
                                  },
                                  {
                                    "hexValue": "5457414244656c656761746f722f6e6f742d646c6774722d6f722d726570",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "19154:32:101",
                                    "type": "",
                                    "value": "TWABDelegator/not-dlgtr-or-rep"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19127:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19127:60:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19127:60:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "19196:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "19208:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19219:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "19204:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19204:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "19196:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_b9475c0db4e43a5ce94c192da7d69b2f5549305fd1edeeab17cf1a4c5f30175e__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "19025:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "19039:4:101",
                            "type": ""
                          }
                        ],
                        "src": "18874:354:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "19407:228:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "19424:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19435:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19417:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19417:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19417:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "19458:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "19469:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "19454:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19454:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19474:2:101",
                                    "type": "",
                                    "value": "38"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19447:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19447:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19447:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "19497:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "19508:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "19493:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19493:18:101"
                                  },
                                  {
                                    "hexValue": "416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "19513:34:101",
                                    "type": "",
                                    "value": "Address: delegate call to non-co"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19486:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19486:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19486:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "19568:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "19579:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "19564:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19564:18:101"
                                  },
                                  {
                                    "hexValue": "6e7472616374",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "19584:8:101",
                                    "type": "",
                                    "value": "ntract"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19557:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19557:36:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19557:36:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "19602:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "19614:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19625:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "19610:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19610:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "19602:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_b94ded0918034cf8f896e19fa3cfdef1188cd569c577264a3622e49152f88520__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "19384:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "19398:4:101",
                            "type": ""
                          }
                        ],
                        "src": "19233:402:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "19814:227:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "19831:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19842:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19824:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19824:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19824:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "19865:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "19876:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "19861:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19861:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "19881:2:101",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19854:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19854:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19854:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "19904:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "19915:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "19900:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19900:18:101"
                                  },
                                  {
                                    "hexValue": "45524332303a207472616e736665722066726f6d20746865207a65726f206164",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "19920:34:101",
                                    "type": "",
                                    "value": "ERC20: transfer from the zero ad"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19893:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19893:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19893:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "19975:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "19986:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "19971:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "19971:18:101"
                                  },
                                  {
                                    "hexValue": "6472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "19991:7:101",
                                    "type": "",
                                    "value": "dress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "19964:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "19964:35:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "19964:35:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "20008:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "20020:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "20031:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "20016:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20016:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "20008:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "19791:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "19805:4:101",
                            "type": ""
                          }
                        ],
                        "src": "19640:401:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "20220:181:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "20237:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "20248:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "20230:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20230:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "20230:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "20271:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "20282:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "20267:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "20267:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "20287:2:101",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "20260:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20260:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "20260:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "20310:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "20321:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "20306:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "20306:18:101"
                                  },
                                  {
                                    "hexValue": "5457414244656c656761746f722f7265702d6e6f742d7a65726f2d61646472",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "20326:33:101",
                                    "type": "",
                                    "value": "TWABDelegator/rep-not-zero-addr"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "20299:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20299:61:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "20299:61:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "20369:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "20381:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "20392:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "20377:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20377:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "20369:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_bbd9f52add0df87fe0a1181387627334f86175a8345db35a3f3f0173bf642327__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "20197:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "20211:4:101",
                            "type": ""
                          }
                        ],
                        "src": "20046:355:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "20580:226:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "20597:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "20608:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "20590:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20590:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "20590:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "20631:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "20642:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "20627:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "20627:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "20647:2:101",
                                    "type": "",
                                    "value": "36"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "20620:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20620:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "20620:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "20670:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "20681:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "20666:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "20666:18:101"
                                  },
                                  {
                                    "hexValue": "45524332303a20617070726f76652066726f6d20746865207a65726f20616464",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "20686:34:101",
                                    "type": "",
                                    "value": "ERC20: approve from the zero add"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "20659:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20659:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "20659:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "20741:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "20752:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "20737:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "20737:18:101"
                                  },
                                  {
                                    "hexValue": "72657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "20757:6:101",
                                    "type": "",
                                    "value": "ress"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "20730:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20730:34:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "20730:34:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "20773:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "20785:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "20796:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "20781:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20781:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "20773:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "20557:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "20571:4:101",
                            "type": ""
                          }
                        ],
                        "src": "20406:400:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "20985:179:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "21002:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "21013:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "20995:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "20995:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "20995:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "21036:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "21047:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "21032:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "21032:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "21052:2:101",
                                    "type": "",
                                    "value": "29"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "21025:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21025:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "21025:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "21075:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "21086:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "21071:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "21071:18:101"
                                  },
                                  {
                                    "hexValue": "416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "21091:31:101",
                                    "type": "",
                                    "value": "Address: call to non-contract"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "21064:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21064:59:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "21064:59:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "21132:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "21144:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "21155:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "21140:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21140:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "21132:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "20962:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "20976:4:101",
                            "type": ""
                          }
                        ],
                        "src": "20811:353:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "21343:232:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "21360:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "21371:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "21353:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21353:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "21353:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "21394:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "21405:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "21390:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "21390:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "21410:2:101",
                                    "type": "",
                                    "value": "42"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "21383:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21383:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "21383:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "21433:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "21444:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "21429:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "21429:18:101"
                                  },
                                  {
                                    "hexValue": "5361666545524332303a204552433230206f7065726174696f6e20646964206e",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "21449:34:101",
                                    "type": "",
                                    "value": "SafeERC20: ERC20 operation did n"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "21422:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21422:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "21422:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "21504:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "21515:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "21500:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "21500:18:101"
                                  },
                                  {
                                    "hexValue": "6f742073756363656564",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "21520:12:101",
                                    "type": "",
                                    "value": "ot succeed"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "21493:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21493:40:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "21493:40:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "21542:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "21554:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "21565:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "21550:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21550:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "21542:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_e11ad79d1e4a7f2e5f376964cb99e8e8f7904e3fc16a109f7a7ecb9aa7956dcd__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "21320:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "21334:4:101",
                            "type": ""
                          }
                        ],
                        "src": "21169:406:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "21754:182:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "21771:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "21782:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "21764:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21764:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "21764:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "21805:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "21816:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "21801:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "21801:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "21821:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "21794:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21794:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "21794:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "21844:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "21855:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "21840:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "21840:18:101"
                                  },
                                  {
                                    "hexValue": "5457414244656c656761746f722f646c67742d6e6f742d7a65726f2d61646472",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "21860:34:101",
                                    "type": "",
                                    "value": "TWABDelegator/dlgt-not-zero-addr"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "21833:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21833:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "21833:62:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "21904:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "21916:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "21927:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "21912:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "21912:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "21904:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_edcbe2d8057a5c49dd38e11752299617c45e19376faabbb0740b28e1175f3300__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "21731:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "21745:4:101",
                            "type": ""
                          }
                        ],
                        "src": "21580:356:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "22115:227:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "22132:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22143:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "22125:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22125:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "22125:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "22166:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "22177:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "22162:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "22162:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22182:2:101",
                                    "type": "",
                                    "value": "37"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "22155:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22155:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "22155:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "22205:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "22216:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "22201:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "22201:18:101"
                                  },
                                  {
                                    "hexValue": "45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "22221:34:101",
                                    "type": "",
                                    "value": "ERC20: decreased allowance below"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "22194:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22194:62:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "22194:62:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "22276:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "22287:2:101",
                                        "type": "",
                                        "value": "96"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "22272:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "22272:18:101"
                                  },
                                  {
                                    "hexValue": "207a65726f",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "22292:7:101",
                                    "type": "",
                                    "value": " zero"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "22265:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22265:35:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "22265:35:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "22309:27:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "22321:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22332:3:101",
                                    "type": "",
                                    "value": "128"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "22317:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22317:19:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "22309:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "22092:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "22106:4:101",
                            "type": ""
                          }
                        ],
                        "src": "21941:401:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "22521:181:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "22538:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22549:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "22531:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22531:21:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "22531:21:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "22572:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "22583:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "22568:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "22568:18:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22588:2:101",
                                    "type": "",
                                    "value": "31"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "22561:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22561:30:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "22561:30:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "22611:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "22622:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "22607:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "22607:18:101"
                                  },
                                  {
                                    "hexValue": "45524332303a206d696e7420746f20746865207a65726f2061646472657373",
                                    "kind": "string",
                                    "nodeType": "YulLiteral",
                                    "src": "22627:33:101",
                                    "type": "",
                                    "value": "ERC20: mint to the zero address"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "22600:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22600:61:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "22600:61:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "22670:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "22682:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22693:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "22678:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22678:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "22670:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "22498:9:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "22512:4:101",
                            "type": ""
                          }
                        ],
                        "src": "22347:355:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "22808:76:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "22818:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "22830:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "22841:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "22826:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22826:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "22818:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "22860:9:101"
                                  },
                                  {
                                    "name": "value0",
                                    "nodeType": "YulIdentifier",
                                    "src": "22871:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "22853:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "22853:25:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "22853:25:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "22777:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "22788:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "22799:4:101",
                            "type": ""
                          }
                        ],
                        "src": "22707:177:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "22986:87:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "22996:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "23008:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "23019:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "23004:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23004:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "22996:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "23038:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "23053:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "23061:4:101",
                                        "type": "",
                                        "value": "0xff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "23049:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "23049:17:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "23031:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23031:36:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "23031:36:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "22955:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "22966:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "22977:4:101",
                            "type": ""
                          }
                        ],
                        "src": "22889:184:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "23177:109:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "23187:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "23199:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "23210:2:101",
                                    "type": "",
                                    "value": "32"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "23195:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23195:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "23187:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "23229:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "23244:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "23252:26:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "23240:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "23240:39:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "23222:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23222:58:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "23222:58:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint96__to_t_uint96__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "23146:9:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "23157:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "23168:4:101",
                            "type": ""
                          }
                        ],
                        "src": "23078:208:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "23418:201:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "23428:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "23440:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "23451:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "23436:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23436:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "23428:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "23470:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "23485:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "23493:26:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "23481:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "23481:39:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "23463:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23463:58:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "23463:58:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "23541:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "23552:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "23537:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "23537:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "23561:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "23569:42:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "23557:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "23557:55:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "23530:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23530:83:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "23530:83:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint96_t_address__to_t_uint96_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "23379:9:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "23390:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "23398:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "23409:4:101",
                            "type": ""
                          }
                        ],
                        "src": "23291:328:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "23799:274:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "23809:26:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "23821:9:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "23832:2:101",
                                    "type": "",
                                    "value": "96"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "23817:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23817:18:101"
                              },
                              "variableNames": [
                                {
                                  "name": "tail",
                                  "nodeType": "YulIdentifier",
                                  "src": "23809:4:101"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "headStart",
                                    "nodeType": "YulIdentifier",
                                    "src": "23851:9:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value0",
                                        "nodeType": "YulIdentifier",
                                        "src": "23866:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "23874:26:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "23862:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "23862:39:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "23844:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23844:58:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "23844:58:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "23911:52:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "23921:42:101",
                                "type": "",
                                "value": "0xffffffffffffffffffffffffffffffffffffffff"
                              },
                              "variables": [
                                {
                                  "name": "_1",
                                  "nodeType": "YulTypedName",
                                  "src": "23915:2:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "23983:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "23994:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "23979:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "23979:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value1",
                                        "nodeType": "YulIdentifier",
                                        "src": "24003:6:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "24011:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "23999:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "23999:15:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "23972:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "23972:43:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "23972:43:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "headStart",
                                        "nodeType": "YulIdentifier",
                                        "src": "24035:9:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "24046:2:101",
                                        "type": "",
                                        "value": "64"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "24031:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "24031:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "value2",
                                        "nodeType": "YulIdentifier",
                                        "src": "24055:6:101"
                                      },
                                      {
                                        "name": "_1",
                                        "nodeType": "YulIdentifier",
                                        "src": "24063:2:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "24051:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "24051:15:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "24024:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24024:43:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "24024:43:101"
                            }
                          ]
                        },
                        "name": "abi_encode_tuple_t_uint96_t_contract$_Delegation_$16211_t_address__to_t_uint96_t_address_t_address__fromStack_reversed",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "headStart",
                            "nodeType": "YulTypedName",
                            "src": "23752:9:101",
                            "type": ""
                          },
                          {
                            "name": "value2",
                            "nodeType": "YulTypedName",
                            "src": "23763:6:101",
                            "type": ""
                          },
                          {
                            "name": "value1",
                            "nodeType": "YulTypedName",
                            "src": "23771:6:101",
                            "type": ""
                          },
                          {
                            "name": "value0",
                            "nodeType": "YulTypedName",
                            "src": "23779:6:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "tail",
                            "nodeType": "YulTypedName",
                            "src": "23790:4:101",
                            "type": ""
                          }
                        ],
                        "src": "23624:449:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "24172:486:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "24182:51:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "ptr_to_tail",
                                    "nodeType": "YulIdentifier",
                                    "src": "24221:11:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "24208:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24208:25:101"
                              },
                              "variables": [
                                {
                                  "name": "rel_offset_of_tail",
                                  "nodeType": "YulTypedName",
                                  "src": "24186:18:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "24381:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "24390:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "24393:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "24383:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "24383:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "24383:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "rel_offset_of_tail",
                                        "nodeType": "YulIdentifier",
                                        "src": "24256:18:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "arguments": [],
                                                "functionName": {
                                                  "name": "calldatasize",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "24284:12:101"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "24284:14:101"
                                              },
                                              {
                                                "name": "base_ref",
                                                "nodeType": "YulIdentifier",
                                                "src": "24300:8:101"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "sub",
                                              "nodeType": "YulIdentifier",
                                              "src": "24280:3:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "24280:29:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "24311:66:101",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe1"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "24276:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "24276:102:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "slt",
                                      "nodeType": "YulIdentifier",
                                      "src": "24252:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "24252:127:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "24245:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24245:135:101"
                              },
                              "nodeType": "YulIf",
                              "src": "24242:2:101"
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "24406:47:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "base_ref",
                                    "nodeType": "YulIdentifier",
                                    "src": "24424:8:101"
                                  },
                                  {
                                    "name": "rel_offset_of_tail",
                                    "nodeType": "YulIdentifier",
                                    "src": "24434:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "24420:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24420:33:101"
                              },
                              "variables": [
                                {
                                  "name": "addr_1",
                                  "nodeType": "YulTypedName",
                                  "src": "24410:6:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "24462:30:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "addr_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "24485:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "calldataload",
                                  "nodeType": "YulIdentifier",
                                  "src": "24472:12:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24472:20:101"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "24462:6:101"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "24535:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "24544:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "24547:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "24537:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "24537:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "24537:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "24507:6:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24515:18:101",
                                    "type": "",
                                    "value": "0xffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "24504:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24504:30:101"
                              },
                              "nodeType": "YulIf",
                              "src": "24501:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "24560:25:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "addr_1",
                                    "nodeType": "YulIdentifier",
                                    "src": "24572:6:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24580:4:101",
                                    "type": "",
                                    "value": "0x20"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "24568:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24568:17:101"
                              },
                              "variableNames": [
                                {
                                  "name": "addr",
                                  "nodeType": "YulIdentifier",
                                  "src": "24560:4:101"
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "24636:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "24645:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "24648:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "24638:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "24638:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "24638:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "addr",
                                    "nodeType": "YulIdentifier",
                                    "src": "24601:4:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [],
                                        "functionName": {
                                          "name": "calldatasize",
                                          "nodeType": "YulIdentifier",
                                          "src": "24611:12:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "24611:14:101"
                                      },
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "24627:6:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "sub",
                                      "nodeType": "YulIdentifier",
                                      "src": "24607:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "24607:27:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "sgt",
                                  "nodeType": "YulIdentifier",
                                  "src": "24597:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24597:38:101"
                              },
                              "nodeType": "YulIf",
                              "src": "24594:2:101"
                            }
                          ]
                        },
                        "name": "access_calldata_tail_t_bytes_calldata_ptr",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "base_ref",
                            "nodeType": "YulTypedName",
                            "src": "24129:8:101",
                            "type": ""
                          },
                          {
                            "name": "ptr_to_tail",
                            "nodeType": "YulTypedName",
                            "src": "24139:11:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "addr",
                            "nodeType": "YulTypedName",
                            "src": "24155:4:101",
                            "type": ""
                          },
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "24161:6:101",
                            "type": ""
                          }
                        ],
                        "src": "24078:580:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "24708:289:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "24718:19:101",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24734:2:101",
                                    "type": "",
                                    "value": "64"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "24728:5:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24728:9:101"
                              },
                              "variableNames": [
                                {
                                  "name": "memPtr",
                                  "nodeType": "YulIdentifier",
                                  "src": "24718:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "24746:117:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "memPtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "24768:6:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "name": "size",
                                            "nodeType": "YulIdentifier",
                                            "src": "24784:4:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "24790:2:101",
                                            "type": "",
                                            "value": "31"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "add",
                                          "nodeType": "YulIdentifier",
                                          "src": "24780:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "24780:13:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "24795:66:101",
                                        "type": "",
                                        "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "and",
                                      "nodeType": "YulIdentifier",
                                      "src": "24776:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "24776:86:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "24764:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24764:99:101"
                              },
                              "variables": [
                                {
                                  "name": "newFreePtr",
                                  "nodeType": "YulTypedName",
                                  "src": "24750:10:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "24938:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x41",
                                        "nodeType": "YulIdentifier",
                                        "src": "24940:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "24940:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "24940:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "24881:10:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "24893:18:101",
                                        "type": "",
                                        "value": "0xffffffffffffffff"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "gt",
                                      "nodeType": "YulIdentifier",
                                      "src": "24878:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "24878:34:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "newFreePtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "24917:10:101"
                                      },
                                      {
                                        "name": "memPtr",
                                        "nodeType": "YulIdentifier",
                                        "src": "24929:6:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "24914:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "24914:22:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "or",
                                  "nodeType": "YulIdentifier",
                                  "src": "24875:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24875:62:101"
                              },
                              "nodeType": "YulIf",
                              "src": "24872:2:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "24976:2:101",
                                    "type": "",
                                    "value": "64"
                                  },
                                  {
                                    "name": "newFreePtr",
                                    "nodeType": "YulIdentifier",
                                    "src": "24980:10:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "24969:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "24969:22:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "24969:22:101"
                            }
                          ]
                        },
                        "name": "allocate_memory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "size",
                            "nodeType": "YulTypedName",
                            "src": "24688:4:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "memPtr",
                            "nodeType": "YulTypedName",
                            "src": "24697:6:101",
                            "type": ""
                          }
                        ],
                        "src": "24663:334:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "25050:80:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "25077:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "25079:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "25079:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "25079:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "25066:1:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "y",
                                        "nodeType": "YulIdentifier",
                                        "src": "25073:1:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "not",
                                      "nodeType": "YulIdentifier",
                                      "src": "25069:3:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "25069:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "25063:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "25063:13:101"
                              },
                              "nodeType": "YulIf",
                              "src": "25060:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "25108:16:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "25119:1:101"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "25122:1:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "25115:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "25115:9:101"
                              },
                              "variableNames": [
                                {
                                  "name": "sum",
                                  "nodeType": "YulIdentifier",
                                  "src": "25108:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_add_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "25033:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "25036:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "sum",
                            "nodeType": "YulTypedName",
                            "src": "25042:3:101",
                            "type": ""
                          }
                        ],
                        "src": "25002:128:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "25184:76:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "25206:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "25208:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "25208:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "25208:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "25200:1:101"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "25203:1:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "25197:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "25197:8:101"
                              },
                              "nodeType": "YulIf",
                              "src": "25194:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "25237:17:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "x",
                                    "nodeType": "YulIdentifier",
                                    "src": "25249:1:101"
                                  },
                                  {
                                    "name": "y",
                                    "nodeType": "YulIdentifier",
                                    "src": "25252:1:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "sub",
                                  "nodeType": "YulIdentifier",
                                  "src": "25245:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "25245:9:101"
                              },
                              "variableNames": [
                                {
                                  "name": "diff",
                                  "nodeType": "YulIdentifier",
                                  "src": "25237:4:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "checked_sub_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "x",
                            "nodeType": "YulTypedName",
                            "src": "25166:1:101",
                            "type": ""
                          },
                          {
                            "name": "y",
                            "nodeType": "YulTypedName",
                            "src": "25169:1:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "diff",
                            "nodeType": "YulTypedName",
                            "src": "25175:4:101",
                            "type": ""
                          }
                        ],
                        "src": "25135:125:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "25318:205:101",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "25328:10:101",
                              "value": {
                                "kind": "number",
                                "nodeType": "YulLiteral",
                                "src": "25337:1:101",
                                "type": "",
                                "value": "0"
                              },
                              "variables": [
                                {
                                  "name": "i",
                                  "nodeType": "YulTypedName",
                                  "src": "25332:1:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "25397:63:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "25422:3:101"
                                            },
                                            {
                                              "name": "i",
                                              "nodeType": "YulIdentifier",
                                              "src": "25427:1:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "25418:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "25418:11:101"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "src",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "25441:3:101"
                                                },
                                                {
                                                  "name": "i",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "25446:1:101"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "25437:3:101"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "25437:11:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "25431:5:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "25431:18:101"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "25411:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "25411:39:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "25411:39:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "25358:1:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "25361:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "lt",
                                  "nodeType": "YulIdentifier",
                                  "src": "25355:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "25355:13:101"
                              },
                              "nodeType": "YulForLoop",
                              "post": {
                                "nodeType": "YulBlock",
                                "src": "25369:19:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "25371:15:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "i",
                                          "nodeType": "YulIdentifier",
                                          "src": "25380:1:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "25383:2:101",
                                          "type": "",
                                          "value": "32"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "add",
                                        "nodeType": "YulIdentifier",
                                        "src": "25376:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "25376:10:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "i",
                                        "nodeType": "YulIdentifier",
                                        "src": "25371:1:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "pre": {
                                "nodeType": "YulBlock",
                                "src": "25351:3:101",
                                "statements": []
                              },
                              "src": "25347:113:101"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "25486:31:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "dst",
                                              "nodeType": "YulIdentifier",
                                              "src": "25499:3:101"
                                            },
                                            {
                                              "name": "length",
                                              "nodeType": "YulIdentifier",
                                              "src": "25504:6:101"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "25495:3:101"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "25495:16:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "25513:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "25488:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "25488:27:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "25488:27:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "i",
                                    "nodeType": "YulIdentifier",
                                    "src": "25475:1:101"
                                  },
                                  {
                                    "name": "length",
                                    "nodeType": "YulIdentifier",
                                    "src": "25478:6:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "gt",
                                  "nodeType": "YulIdentifier",
                                  "src": "25472:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "25472:13:101"
                              },
                              "nodeType": "YulIf",
                              "src": "25469:2:101"
                            }
                          ]
                        },
                        "name": "copy_memory_to_memory",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "src",
                            "nodeType": "YulTypedName",
                            "src": "25296:3:101",
                            "type": ""
                          },
                          {
                            "name": "dst",
                            "nodeType": "YulTypedName",
                            "src": "25301:3:101",
                            "type": ""
                          },
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "25306:6:101",
                            "type": ""
                          }
                        ],
                        "src": "25265:258:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "25583:382:101",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "25593:22:101",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "25607:1:101",
                                    "type": "",
                                    "value": "1"
                                  },
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "25610:4:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "shr",
                                  "nodeType": "YulIdentifier",
                                  "src": "25603:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "25603:12:101"
                              },
                              "variableNames": [
                                {
                                  "name": "length",
                                  "nodeType": "YulIdentifier",
                                  "src": "25593:6:101"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "25624:38:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "data",
                                    "nodeType": "YulIdentifier",
                                    "src": "25654:4:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "25660:1:101",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "25650:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "25650:12:101"
                              },
                              "variables": [
                                {
                                  "name": "outOfPlaceEncoding",
                                  "nodeType": "YulTypedName",
                                  "src": "25628:18:101",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "25701:31:101",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "25703:27:101",
                                    "value": {
                                      "arguments": [
                                        {
                                          "name": "length",
                                          "nodeType": "YulIdentifier",
                                          "src": "25717:6:101"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "25725:4:101",
                                          "type": "",
                                          "value": "0x7f"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "and",
                                        "nodeType": "YulIdentifier",
                                        "src": "25713:3:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "25713:17:101"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "25703:6:101"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "25681:18:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "25674:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "25674:26:101"
                              },
                              "nodeType": "YulIf",
                              "src": "25671:2:101"
                            },
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "25791:168:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "25812:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "25815:77:101",
                                          "type": "",
                                          "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "25805:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "25805:88:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "25805:88:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "25913:1:101",
                                          "type": "",
                                          "value": "4"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "25916:4:101",
                                          "type": "",
                                          "value": "0x22"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mstore",
                                        "nodeType": "YulIdentifier",
                                        "src": "25906:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "25906:15:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "25906:15:101"
                                  },
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "25941:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "25944:4:101",
                                          "type": "",
                                          "value": "0x24"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "25934:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "25934:15:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "25934:15:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "outOfPlaceEncoding",
                                    "nodeType": "YulIdentifier",
                                    "src": "25747:18:101"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "length",
                                        "nodeType": "YulIdentifier",
                                        "src": "25770:6:101"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "25778:2:101",
                                        "type": "",
                                        "value": "32"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "lt",
                                      "nodeType": "YulIdentifier",
                                      "src": "25767:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "25767:14:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "25744:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "25744:38:101"
                              },
                              "nodeType": "YulIf",
                              "src": "25741:2:101"
                            }
                          ]
                        },
                        "name": "extract_byte_array_length",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "data",
                            "nodeType": "YulTypedName",
                            "src": "25563:4:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "length",
                            "nodeType": "YulTypedName",
                            "src": "25572:6:101",
                            "type": ""
                          }
                        ],
                        "src": "25528:437:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "26017:148:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "26108:22:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [],
                                      "functionName": {
                                        "name": "panic_error_0x11",
                                        "nodeType": "YulIdentifier",
                                        "src": "26110:16:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "26110:18:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "26110:18:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "26033:5:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "26040:66:101",
                                    "type": "",
                                    "value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "eq",
                                  "nodeType": "YulIdentifier",
                                  "src": "26030:2:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "26030:77:101"
                              },
                              "nodeType": "YulIf",
                              "src": "26027:2:101"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "26139:20:101",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "value",
                                    "nodeType": "YulIdentifier",
                                    "src": "26150:5:101"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "26157:1:101",
                                    "type": "",
                                    "value": "1"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "26146:3:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "26146:13:101"
                              },
                              "variableNames": [
                                {
                                  "name": "ret",
                                  "nodeType": "YulIdentifier",
                                  "src": "26139:3:101"
                                }
                              ]
                            }
                          ]
                        },
                        "name": "increment_t_uint256",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "25999:5:101",
                            "type": ""
                          }
                        ],
                        "returnVariables": [
                          {
                            "name": "ret",
                            "nodeType": "YulTypedName",
                            "src": "26009:3:101",
                            "type": ""
                          }
                        ],
                        "src": "25970:195:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "26202:152:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "26219:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "26222:77:101",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "26212:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "26212:88:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "26212:88:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "26316:1:101",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "26319:4:101",
                                    "type": "",
                                    "value": "0x11"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "26309:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "26309:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "26309:15:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "26340:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "26343:4:101",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "26333:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "26333:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "26333:15:101"
                            }
                          ]
                        },
                        "name": "panic_error_0x11",
                        "nodeType": "YulFunctionDefinition",
                        "src": "26170:184:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "26391:152:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "26408:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "26411:77:101",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "26401:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "26401:88:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "26401:88:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "26505:1:101",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "26508:4:101",
                                    "type": "",
                                    "value": "0x32"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "26498:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "26498:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "26498:15:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "26529:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "26532:4:101",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "26522:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "26522:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "26522:15:101"
                            }
                          ]
                        },
                        "name": "panic_error_0x32",
                        "nodeType": "YulFunctionDefinition",
                        "src": "26359:184:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "26580:152:101",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "26597:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "26600:77:101",
                                    "type": "",
                                    "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "26590:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "26590:88:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "26590:88:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "26694:1:101",
                                    "type": "",
                                    "value": "4"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "26697:4:101",
                                    "type": "",
                                    "value": "0x41"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "26687:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "26687:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "26687:15:101"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "26718:1:101",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "26721:4:101",
                                    "type": "",
                                    "value": "0x24"
                                  }
                                ],
                                "functionName": {
                                  "name": "revert",
                                  "nodeType": "YulIdentifier",
                                  "src": "26711:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "26711:15:101"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "26711:15:101"
                            }
                          ]
                        },
                        "name": "panic_error_0x41",
                        "nodeType": "YulFunctionDefinition",
                        "src": "26548:184:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "26782:109:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "26869:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "26878:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "26881:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "26871:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "26871:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "26871:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "26805:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "26816:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "26823:42:101",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "26812:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "26812:54:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "26802:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "26802:65:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "26795:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "26795:73:101"
                              },
                              "nodeType": "YulIf",
                              "src": "26792:2:101"
                            }
                          ]
                        },
                        "name": "validator_revert_address",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "26771:5:101",
                            "type": ""
                          }
                        ],
                        "src": "26737:154:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "26938:76:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "26992:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "27001:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "27004:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "26994:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "26994:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "26994:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "26961:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "value",
                                                "nodeType": "YulIdentifier",
                                                "src": "26982:5:101"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "iszero",
                                              "nodeType": "YulIdentifier",
                                              "src": "26975:6:101"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "26975:13:101"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "iszero",
                                          "nodeType": "YulIdentifier",
                                          "src": "26968:6:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "26968:21:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "26958:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "26958:32:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "26951:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "26951:40:101"
                              },
                              "nodeType": "YulIf",
                              "src": "26948:2:101"
                            }
                          ]
                        },
                        "name": "validator_revert_bool",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "26927:5:101",
                            "type": ""
                          }
                        ],
                        "src": "26896:118:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "27062:71:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "27111:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "27120:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "27123:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "27113:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "27113:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "27113:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "27085:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "27096:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "27103:4:101",
                                            "type": "",
                                            "value": "0xff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "27092:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "27092:16:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "27082:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "27082:27:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "27075:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "27075:35:101"
                              },
                              "nodeType": "YulIf",
                              "src": "27072:2:101"
                            }
                          ]
                        },
                        "name": "validator_revert_uint8",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "27051:5:101",
                            "type": ""
                          }
                        ],
                        "src": "27019:114:101"
                      },
                      {
                        "body": {
                          "nodeType": "YulBlock",
                          "src": "27182:93:101",
                          "statements": [
                            {
                              "body": {
                                "nodeType": "YulBlock",
                                "src": "27253:16:101",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "27262:1:101",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "27265:1:101",
                                          "type": "",
                                          "value": "0"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "revert",
                                        "nodeType": "YulIdentifier",
                                        "src": "27255:6:101"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "27255:12:101"
                                    },
                                    "nodeType": "YulExpressionStatement",
                                    "src": "27255:12:101"
                                  }
                                ]
                              },
                              "condition": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "value",
                                        "nodeType": "YulIdentifier",
                                        "src": "27205:5:101"
                                      },
                                      {
                                        "arguments": [
                                          {
                                            "name": "value",
                                            "nodeType": "YulIdentifier",
                                            "src": "27216:5:101"
                                          },
                                          {
                                            "kind": "number",
                                            "nodeType": "YulLiteral",
                                            "src": "27223:26:101",
                                            "type": "",
                                            "value": "0xffffffffffffffffffffffff"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "and",
                                          "nodeType": "YulIdentifier",
                                          "src": "27212:3:101"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "27212:38:101"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "eq",
                                      "nodeType": "YulIdentifier",
                                      "src": "27202:2:101"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "27202:49:101"
                                  }
                                ],
                                "functionName": {
                                  "name": "iszero",
                                  "nodeType": "YulIdentifier",
                                  "src": "27195:6:101"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "27195:57:101"
                              },
                              "nodeType": "YulIf",
                              "src": "27192:2:101"
                            }
                          ]
                        },
                        "name": "validator_revert_uint96",
                        "nodeType": "YulFunctionDefinition",
                        "parameters": [
                          {
                            "name": "value",
                            "nodeType": "YulTypedName",
                            "src": "27171:5:101",
                            "type": ""
                          }
                        ],
                        "src": "27138:137:101"
                      }
                    ]
                  },
                  "contents": "{\n    { }\n    function abi_decode_array_bytes_calldata_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_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_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_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_bool(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_bool(value_1)\n        value1 := value_1\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_addresst_uint96(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_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        let value_2 := calldataload(add(headStart, 96))\n        validator_revert_uint96(value_2)\n        value3 := value_2\n    }\n    function abi_decode_tuple_t_addresst_uint256t_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        value1 := calldataload(add(headStart, 32))\n        value2 := calldataload(add(headStart, 64))\n    }\n    function abi_decode_tuple_t_array$_t_bytes_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        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let value0_1, value1_1 := abi_decode_array_bytes_calldata_dyn_calldata(add(headStart, offset), dataEnd)\n        value0 := value0_1\n        value1 := value1_1\n    }\n    function abi_decode_tuple_t_array$_t_bytes_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        let _2 := 0xffffffffffffffff\n        if gt(offset, _2) { revert(0, 0) }\n        let _3 := add(headStart, offset)\n        let _4 := 0x1f\n        if iszero(slt(add(_3, _4), dataEnd)) { revert(0, 0) }\n        let _5 := mload(_3)\n        if gt(_5, _2) { panic_error_0x41() }\n        let _6 := shl(5, _5)\n        let dst := allocate_memory(add(_6, _1))\n        let dst_1 := dst\n        mstore(dst, _5)\n        dst := add(dst, _1)\n        let src := add(_3, _1)\n        if gt(add(add(_3, _6), _1), dataEnd) { revert(0, 0) }\n        let i := 0\n        for { } lt(i, _5) { i := add(i, 1) }\n        {\n            let innerOffset := mload(src)\n            if gt(innerOffset, _2) { revert(0, 0) }\n            let _7 := add(_3, innerOffset)\n            if iszero(slt(add(_7, 63), dataEnd)) { revert(0, 0) }\n            let _8 := mload(add(_7, _1))\n            let _9 := 64\n            if gt(_8, _2) { panic_error_0x41() }\n            let array := allocate_memory(add(and(add(_8, _4), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0), _1))\n            mstore(array, _8)\n            if gt(add(add(_7, _8), _9), dataEnd) { revert(0, 0) }\n            copy_memory_to_memory(add(_7, _9), add(array, _1), _8)\n            mstore(dst, array)\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        validator_revert_bool(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_uint256t_struct$_Signature_$16332_calldata_ptrt_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        let _1 := sub(dataEnd, headStart)\n        if slt(_1, 192) { revert(0, 0) }\n        value0 := calldataload(headStart)\n        if slt(add(_1, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0), 128) { revert(0, 0) }\n        value1 := add(headStart, 32)\n        let offset := calldataload(add(headStart, 160))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let value2_1, value3_1 := abi_decode_array_bytes_calldata_dyn_calldata(add(headStart, offset), dataEnd)\n        value2 := value2_1\n        value3 := value3_1\n    }\n    function abi_decode_tuple_t_uint256t_uint256t_address(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        value0 := calldataload(headStart)\n        value1 := calldataload(add(headStart, 32))\n        let value := calldataload(add(headStart, 64))\n        validator_revert_address(value)\n        value2 := value\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_decode_tuple_t_uint8_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_uint8(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_uint96_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_uint96(value)\n        value0 := value\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_address_t_bytes32__to_t_address_t_bytes32__nonPadded_inplace_fromStack_reversed(pos, value1, value0) -> end\n    {\n        mstore(pos, and(shl(96, value0), 0xffffffffffffffffffffffffffffffffffffffff000000000000000000000000))\n        mstore(add(pos, 20), value1)\n        end := add(pos, 52)\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_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_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_bytes_memory_ptr_$dyn_memory_ptr__to_t_array$_t_bytes_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_bytes(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_struct$_Call_$16056_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_Call_$16056_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 tail_2 := add(add(headStart, shl(5, length)), _2)\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            let _3 := mload(srcPtr)\n            mstore(tail_2, and(mload(_3), 0xffffffffffffffffffffffffffffffffffffffff))\n            let memberValue0 := mload(add(_3, _1))\n            mstore(add(tail_2, _1), _2)\n            tail_2 := abi_encode_bytes(memberValue0, add(tail_2, _2))\n            srcPtr := add(srcPtr, _1)\n            pos := add(pos, _1)\n        }\n        tail := tail_2\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$_Delegation_$16211__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$_Delegation_$16211_t_address_t_uint256_t_uint256_t_bool__to_t_address_t_address_t_uint256_t_uint256_t_bool__fromStack_reversed(headStart, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 160)\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), iszero(iszero(value4)))\n    }\n    function abi_encode_tuple_t_contract$_ITicket_$11825__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_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_07573097221cd546d4e24cc9a4671c1dbda3cd30c002cc700828bee691a10a9a__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), \"TWABDelegator/lock-too-long\")\n        tail := add(headStart, 96)\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_4ec050e530ce66e7658278ab7a4e4a2f19225159c48fc52eb249bd268e755d73__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), \"ERC1167: create2 failed\")\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_7725f8f64c49a89f472e8061de639e3c42149e4fe0ed809c0166675ba81b5fc5__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), \"TWABDelegator/amount-gt-zero\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_7b1e4d9c68be54f93266d18bd63dee22dcdce3db6a6e54d0608da75da236be7a__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), \"TWABDelegator/dlgtr-not-zero-adr\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_8a1220b5b5ba748b49dab03f5d91f8037092348f6b0858a02dd6d6b662ff8a28__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), \"TWABDelegator/delegation-locked\")\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_a366586648dca8242a9181d59d8242052347a96da254271ac1597aaf99605cd9__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), \"TWABDelegator/to-not-zero-addr\")\n        tail := add(headStart, 96)\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_b9475c0db4e43a5ce94c192da7d69b2f5549305fd1edeeab17cf1a4c5f30175e__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), \"TWABDelegator/not-dlgtr-or-rep\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_b94ded0918034cf8f896e19fa3cfdef1188cd569c577264a3622e49152f88520__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: delegate call to non-co\")\n        mstore(add(headStart, 96), \"ntract\")\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_bbd9f52add0df87fe0a1181387627334f86175a8345db35a3f3f0173bf642327__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), \"TWABDelegator/rep-not-zero-addr\")\n        tail := add(headStart, 96)\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_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 abi_encode_tuple_t_stringliteral_edcbe2d8057a5c49dd38e11752299617c45e19376faabbb0740b28e1175f3300__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), \"TWABDelegator/dlgt-not-zero-addr\")\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 abi_encode_tuple_t_uint96__to_t_uint96__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_uint96_t_address__to_t_uint96_t_address__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffff))\n        mstore(add(headStart, 32), and(value1, 0xffffffffffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_uint96_t_contract$_Delegation_$16211_t_address__to_t_uint96_t_address_t_address__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffff))\n        let _1 := 0xffffffffffffffffffffffffffffffffffffffff\n        mstore(add(headStart, 32), and(value1, _1))\n        mstore(add(headStart, 64), and(value2, _1))\n    }\n    function access_calldata_tail_t_bytes_calldata_ptr(base_ref, ptr_to_tail) -> addr, length\n    {\n        let rel_offset_of_tail := calldataload(ptr_to_tail)\n        if iszero(slt(rel_offset_of_tail, add(sub(calldatasize(), base_ref), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe1))) { revert(0, 0) }\n        let addr_1 := add(base_ref, rel_offset_of_tail)\n        length := calldataload(addr_1)\n        if gt(length, 0xffffffffffffffff) { revert(0, 0) }\n        addr := add(addr_1, 0x20)\n        if sgt(addr, sub(calldatasize(), length)) { revert(0, 0) }\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 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 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 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    function validator_revert_bool(value)\n    {\n        if iszero(eq(value, iszero(iszero(value)))) { revert(0, 0) }\n    }\n    function validator_revert_uint8(value)\n    {\n        if iszero(eq(value, and(value, 0xff))) { revert(0, 0) }\n    }\n    function validator_revert_uint96(value)\n    {\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n}",
                  "id": 101,
                  "language": "Yul",
                  "name": "#utility.yul"
                }
              ],
              "immutableReferences": {
                "16563": [
                  {
                    "length": 32,
                    "start": 740
                  },
                  {
                    "length": 32,
                    "start": 1220
                  },
                  {
                    "length": 32,
                    "start": 1637
                  },
                  {
                    "length": 32,
                    "start": 2101
                  },
                  {
                    "length": 32,
                    "start": 3358
                  },
                  {
                    "length": 32,
                    "start": 3520
                  },
                  {
                    "length": 32,
                    "start": 3712
                  },
                  {
                    "length": 32,
                    "start": 3895
                  },
                  {
                    "length": 32,
                    "start": 4224
                  },
                  {
                    "length": 32,
                    "start": 8222
                  }
                ]
              },
              "linkReferences": {},
              "object": "608060405234801561001057600080fd5b50600436106101c45760003560e01c8063889de805116100f9578063ac9650d811610097578063ca40edf111610071578063ca40edf114610418578063dd62ed3e14610460578063e18fa6eb14610499578063e7880ae1146104ac57600080fd5b8063ac9650d8146103d2578063adc9772e146103f2578063c2a672e01461040557600080fd5b806395d89b41116100d357806395d89b4114610391578063982b1f2f14610399578063a457c2d7146103ac578063a9059cbb146103bf57600080fd5b8063889de8051461032f5780638b4b4ec91461034257806390ab08851461035557600080fd5b80635f66501111610166578063666f7af611610140578063666f7af6146102b95780636c59f295146102cc5780636cc25db7146102df57806370a082311461030657600080fd5b80635f6650111461027157806363fc611f1461029c57806365a5d5f0146102af57600080fd5b806318160ddd116101a257806318160ddd1461021f57806323b872dd14610231578063313ce56714610244578063395093511461025e57600080fd5b806306452792146101c957806306fdde03146101de578063095ea7b3146101fc575b600080fd5b6101dc6101d73660046127d1565b6104bf565b005b6101e66104f2565b6040516101f391906129ee565b60405180910390f35b61020f61020a36600461258c565b610584565b60405190151581526020016101f3565b6002545b6040519081526020016101f3565b61020f61023f36600461251d565b61059b565b61024c610661565b60405160ff90911681526020016101f3565b61020f61026c36600461258c565b6106f9565b61028461027f36600461260b565b610735565b6040516001600160a01b0390911681526020016101f3565b600554610284906001600160a01b031681565b61022362ed4e0081565b6102846102c736600461260b565b6107b9565b6102846102da3660046125b8565b6108a3565b6102847f000000000000000000000000000000000000000000000000000000000000000081565b6102236103143660046124aa565b6001600160a01b031660009081526020819052604090205490565b61028461033d3660046125b8565b6109e9565b610284610350366004612837565b610ae4565b61020f6103633660046124e4565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6101e6610b4e565b6101dc6103a736600461255e565b610b5d565b61020f6103ba36600461258c565b610c3e565b61020f6103cd36600461258c565b610cef565b6103e56103e0366004612640565b610cfc565b6040516101f3919061290f565b6101dc61040036600461258c565b610d08565b6101dc61041336600461258c565b610d97565b61042b61042636600461258c565b610e24565b604080516001600160a01b0396871681529590941660208601529284019190915260608301521515608082015260a0016101f3565b61022361046e3660046124e4565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6102846104a736600461260b565b611047565b6102846104ba36600461258c565b6110ed565b6104ec7f0000000000000000000000000000000000000000000000000000000000000000858585856110f9565b50505050565b60606003805461050190612af2565b80601f016020809104026020016040519081016040528092919081815260200182805461052d90612af2565b801561057a5780601f1061054f5761010080835404028352916020019161057a565b820191906000526020600020905b81548152906001019060200180831161055d57829003601f168201915b5050505050905090565b60006105913384846111d1565b5060015b92915050565b60006105a8848484611329565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156106475760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61065485338584036111d1565b60019150505b9392505050565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663313ce5676040518163ffffffff1660e01b815260040160206040518083038186803b1580156106bc57600080fd5b505afa1580156106d0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106f4919061288d565b905090565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610591918590610730908690612a97565b6111d1565b600061074084611540565b600061074c85856115c9565b905061075981308561161f565b6107638584611641565b336001600160a01b031684866001600160a01b03167f6862a473baa6176f1c866c69aa93da8508d7afc71b52dddc9d5e8b0bb7aab6f4866040516107a991815260200190565b60405180910390a4949350505050565b60006001600160a01b0384166108115760405162461bcd60e51b815260206004820181905260248201527f5457414244656c656761746f722f646c6774722d6e6f742d7a65726f2d616472604482015260640161063e565b61081a82611719565b600061082685856115c9565b905061085d6001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016338386611769565b336001600160a01b031684866001600160a01b03167f383183291bd9a7fb8bd9c7c86c5013a89d1490c9f4e486da279804b83729a1dc866040516107a991815260200190565b60006108ae85611540565b6108b78361181a565b6108ce826bffffffffffffffffffffffff16611870565b60006108da86866115c9565b90506108e5816118c3565b4283016bffffffffffffffffffffffff84161561097d576040517fac2293af0000000000000000000000000000000000000000000000000000000081526bffffffffffffffffffffffff821660048201526001600160a01b0383169063ac2293af90602401600060405180830381600087803b15801561096457600080fd5b505af1158015610978573d6000803e3d6000fd5b505050505b6109878286611991565b604080516bffffffffffffffffffffffff831681523360208201526001600160a01b03808816928992918b16917ffd96a87f22afea1e17a7117a4923f1499a1c1eb2bd7c492caf07f3a3c38ade6f910160405180910390a45095945050505050565b60006109f485611540565b6109fd8361181a565b610a14826bffffffffffffffffffffffff16611870565b4282016000610a6e610a6888886040516bffffffffffffffffffffffff19606084901b1660208201526034810182905260009060540160405160208183030381529060405280519060200120905092915050565b83611a17565b9050610a7a8186611991565b604080516bffffffffffffffffffffffff841681526001600160a01b03838116602083015233828401529151878316928992908b16917f5533acb96061e404278604d3df68397263be1d4b9df394136a2968802633d8a59181900360600190a49695505050505050565b6000610aef82611abd565b6000610afb33866115c9565b9050610b0881848661161f565b826001600160a01b031685336001600160a01b03167f622b7da8a20026f1176ccc7ec0a635a4544a67e99b0125018e3d89b888ce8ebe876040516107a991815260200190565b60606004805461050190612af2565b6001600160a01b038216610bb35760405162461bcd60e51b815260206004820152601f60248201527f5457414244656c656761746f722f7265702d6e6f742d7a65726f2d6164647200604482015260640161063e565b3360008181526006602090815260408083206001600160a01b0387168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f50062a33e55b9f3dfcf05fbf1356b7c92313796cfb8526cdee5a497fcbb8cc3391015b60405180910390a35050565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610cd85760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f000000000000000000000000000000000000000000000000000000606482015260840161063e565b610ce533858584036111d1565b5060019392505050565b6000610591338484611329565b606061065a8383611b13565b610d1181611719565b610d466001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016333084611769565b610d508282611641565b816001600160a01b03167f15c2c6e5db9e25d828754c9c5cee6c5c3df074e6ac26e7491c0f8ce7bbd447d682604051610d8b91815260200190565b60405180910390a25050565b610da082611abd565b610da981611719565b610db33382611c0d565b610de76001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168383611d92565b6040518181526001600160a01b0383169033907ff7128607975b3ff61bc02d19a1c8267e526f7a5b7144dc4efcdac634663fd36990602001610c32565b6000806000806000610e3687876115c9565b94506001600160a01b0385163b15156040517f8d22ea2a0000000000000000000000000000000000000000000000000000000081526001600160a01b0387811660048301529192507f000000000000000000000000000000000000000000000000000000000000000090911690638d22ea2a9060240160206040518083038186803b158015610ec457600080fd5b505afa158015610ed8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610efc91906124c7565b6040517f70a082310000000000000000000000000000000000000000000000000000000081526001600160a01b0387811660048301529195507f0000000000000000000000000000000000000000000000000000000000000000909116906370a082319060240160206040518083038186803b158015610f7b57600080fd5b505afa158015610f8f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fb391906127b8565b9250801561103d57846001600160a01b0316633c78929e6040518163ffffffff1660e01b815260040160206040518083038186803b158015610ff457600080fd5b505afa158015611008573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061102c91906128aa565b6bffffffffffffffffffffffff1691505b9295509295909350565b600061105284611540565b61105b82611719565b600061106785856115c9565b90506110738584611c0d565b6110a76001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168285611d92565b336001600160a01b031684866001600160a01b03167fb1968721eeb35d2206c8aa91805bc908019965ff4cff13c158f89956fb8e9248866040516107a991815260200190565b600061065a83836115c9565b6001600160a01b03851663d505accf333087873561111d60408a0160208b01612870565b604080517fffffffff0000000000000000000000000000000000000000000000000000000060e089901b1681526001600160a01b0396871660048201529590941660248601526044850192909252606484015260ff16608483015286013560a4820152606086013560c482015260e401600060405180830381600087803b1580156111a757600080fd5b505af11580156111bb573d6000803e3d6000fd5b505050506111c98282611b13565b505050505050565b6001600160a01b03831661124c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161063e565b6001600160a01b0382166112c85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161063e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166113a55760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161063e565b6001600160a01b0382166114215760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161063e565b6001600160a01b038316600090815260208190526040902054818110156114b05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e63650000000000000000000000000000000000000000000000000000606482015260840161063e565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906114e7908490612a97565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161153391815260200190565b60405180910390a36104ec565b6001600160a01b03811633148061157a57506001600160a01b038116600090815260066020908152604080832033845290915290205460ff165b6115c65760405162461bcd60e51b815260206004820152601e60248201527f5457414244656c656761746f722f6e6f742d646c6774722d6f722d7265700000604482015260640161063e565b50565b600061065a61161a84846040516bffffffffffffffffffffffff19606084901b1660208201526034810182905260009060540160405160208183030381529060405280519060200120905092915050565b611ddb565b61162881611719565b611631836118c3565b61163c838383611e64565b505050565b6001600160a01b0382166116975760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161063e565b80600260008282546116a99190612a97565b90915550506001600160a01b038216600090815260208190526040812080548392906116d6908490612a97565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610c32565b600081116115c65760405162461bcd60e51b815260206004820152601c60248201527f5457414244656c656761746f722f616d6f756e742d67742d7a65726f00000000604482015260640161063e565b6040516001600160a01b03808516602483015283166044820152606481018290526104ec9085907f23b872dd00000000000000000000000000000000000000000000000000000000906084015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217909152611ee7565b6001600160a01b0381166115c65760405162461bcd60e51b815260206004820181905260248201527f5457414244656c656761746f722f646c67742d6e6f742d7a65726f2d61646472604482015260640161063e565b62ed4e008111156115c65760405162461bcd60e51b815260206004820152601b60248201527f5457414244656c656761746f722f6c6f636b2d746f6f2d6c6f6e670000000000604482015260640161063e565b806001600160a01b0316633c78929e6040518163ffffffff1660e01b815260040160206040518083038186803b1580156118fc57600080fd5b505afa158015611910573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061193491906128aa565b6bffffffffffffffffffffffff164210156115c65760405162461bcd60e51b815260206004820152601f60248201527f5457414244656c656761746f722f64656c65676174696f6e2d6c6f636b656400604482015260640161063e565b604080516001600160a01b0383166024808301919091528251808303909101815260449091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f5c19a95c0000000000000000000000000000000000000000000000000000000090811790915290611a108482611fcc565b5050505050565b6005546000908190611a32906001600160a01b031685612110565b6040517f909f1cad0000000000000000000000000000000000000000000000000000000081526bffffffffffffffffffffffff851660048201529091506001600160a01b0382169063909f1cad90602401600060405180830381600087803b158015611a9d57600080fd5b505af1158015611ab1573d6000803e3d6000fd5b50929695505050505050565b6001600160a01b0381166115c65760405162461bcd60e51b815260206004820152601e60248201527f5457414244656c656761746f722f746f2d6e6f742d7a65726f2d616464720000604482015260640161063e565b60608160008167ffffffffffffffff811115611b3157611b31612b92565b604051908082528060200260200182016040528015611b6457816020015b6060815260200190600190039081611b4f5790505b50905060005b82811015611c0457611bd430878784818110611b8857611b88612b7c565b9050602002810190611b9a9190612a01565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506121c792505050565b828281518110611be657611be6612b7c565b60200260200101819052508080611bfc90612b2d565b915050611b6a565b50949350505050565b6001600160a01b038216611c895760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161063e565b6001600160a01b03821660009081526020819052604090205481811015611d185760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f6365000000000000000000000000000000000000000000000000000000000000606482015260840161063e565b6001600160a01b0383166000908152602081905260408120838303905560028054849290611d47908490612aaf565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b6040516001600160a01b03831660248201526044810182905261163c9084907fa9059cbb00000000000000000000000000000000000000000000000000000000906064016117b6565b600554600090610595906001600160a01b031683306040517f3d602d80600a3d3981f3363d3d373d3d3d363d730000000000000000000000008152606093841b60148201527f5af43d82803e903d91602b57fd5bf3ff000000000000000000000000000000006028820152921b6038830152604c8201526037808220606c830152605591012090565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000908117909152906111c98582611fcc565b6000611f3c826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166121ec9092919063ffffffff16565b80519091501561163c5780806020019051810190611f5a919061279b565b61163c5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f74207375636365656400000000000000000000000000000000000000000000606482015260840161063e565b60408051600180825281830190925260609160009190816020015b604080518082019091526000815260606020820152815260200190600190039081611fe757905050905060405180604001604052807f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602001848152508160008151811061206257612062612b7c565b60209081029190910101526040517fde9443bf0000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063de9443bf906120b2908490600401612971565b600060405180830381600087803b1580156120cc57600080fd5b505af11580156120e0573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526121089190810190612682565b949350505050565b60006040517f3d602d80600a3d3981f3363d3d373d3d3d363d7300000000000000000000000081528360601b60148201527f5af43d82803e903d91602b57fd5bf300000000000000000000000000000000006028820152826037826000f59150506001600160a01b0381166105955760405162461bcd60e51b815260206004820152601760248201527f455243313136373a2063726561746532206661696c6564000000000000000000604482015260640161063e565b606061065a8383604051806060016040528060278152602001612bf5602791396121fb565b606061210884846000856122e6565b6060833b6122715760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f60448201527f6e74726163740000000000000000000000000000000000000000000000000000606482015260840161063e565b600080856001600160a01b03168560405161228c91906128f3565b600060405180830381855af49150503d80600081146122c7576040519150601f19603f3d011682016040523d82523d6000602084013e6122cc565b606091505b50915091506122dc828286612425565b9695505050505050565b60608247101561235e5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c0000000000000000000000000000000000000000000000000000606482015260840161063e565b843b6123ac5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161063e565b600080866001600160a01b031685876040516123c891906128f3565b60006040518083038185875af1925050503d8060008114612405576040519150601f19603f3d011682016040523d82523d6000602084013e61240a565b606091505b509150915061241a828286612425565b979650505050505050565b6060831561243457508161065a565b8251156124445782518084602001fd5b8160405162461bcd60e51b815260040161063e91906129ee565b60008083601f84011261247057600080fd5b50813567ffffffffffffffff81111561248857600080fd5b6020830191508360208260051b85010111156124a357600080fd5b9250929050565b6000602082840312156124bc57600080fd5b813561065a81612ba8565b6000602082840312156124d957600080fd5b815161065a81612ba8565b600080604083850312156124f757600080fd5b823561250281612ba8565b9150602083013561251281612ba8565b809150509250929050565b60008060006060848603121561253257600080fd5b833561253d81612ba8565b9250602084013561254d81612ba8565b929592945050506040919091013590565b6000806040838503121561257157600080fd5b823561257c81612ba8565b9150602083013561251281612bbd565b6000806040838503121561259f57600080fd5b82356125aa81612ba8565b946020939093013593505050565b600080600080608085870312156125ce57600080fd5b84356125d981612ba8565b93506020850135925060408501356125f081612ba8565b9150606085013561260081612bda565b939692955090935050565b60008060006060848603121561262057600080fd5b833561262b81612ba8565b95602085013595506040909401359392505050565b6000806020838503121561265357600080fd5b823567ffffffffffffffff81111561266a57600080fd5b6126768582860161245e565b90969095509350505050565b6000602080838503121561269557600080fd5b825167ffffffffffffffff808211156126ad57600080fd5b8185019150601f86818401126126c257600080fd5b8251828111156126d4576126d4612b92565b8060051b6126e3868201612a66565b8281528681019086880183880189018c10156126fe57600080fd5b600093505b8484101561278c5780518781111561271a57600080fd5b8801603f81018d1361272b57600080fd5b8981015160408982111561274157612741612b92565b6127528c601f198b85011601612a66565b8281528f8284860101111561276657600080fd5b612775838e8301848701612ac6565b865250505060019390930192918801918801612703565b509a9950505050505050505050565b6000602082840312156127ad57600080fd5b815161065a81612bbd565b6000602082840312156127ca57600080fd5b5051919050565b60008060008084860360c08112156127e857600080fd5b853594506080601f19820112156127fe57600080fd5b5060208501925060a085013567ffffffffffffffff81111561281f57600080fd5b61282b8782880161245e565b95989497509550505050565b60008060006060848603121561284c57600080fd5b8335925060208401359150604084013561286581612ba8565b809150509250925092565b60006020828403121561288257600080fd5b813561065a81612bcb565b60006020828403121561289f57600080fd5b815161065a81612bcb565b6000602082840312156128bc57600080fd5b815161065a81612bda565b600081518084526128df816020860160208601612ac6565b601f01601f19169290920160200192915050565b60008251612905818460208701612ac6565b9190910192915050565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b8281101561296457603f198886030184526129528583516128c7565b94509285019290850190600101612936565b5092979650505050505050565b60006020808301818452808551808352604092508286019150828160051b87010184880160005b838110156129e057888303603f19018552815180516001600160a01b031684528701518784018790526129cd878501826128c7565b9588019593505090860190600101612998565b509098975050505050505050565b60208152600061065a60208301846128c7565b60008083357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe1843603018112612a3657600080fd5b83018035915067ffffffffffffffff821115612a5157600080fd5b6020019150368190038213156124a357600080fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612a8f57612a8f612b92565b604052919050565b60008219821115612aaa57612aaa612b66565b500190565b600082821015612ac157612ac1612b66565b500390565b60005b83811015612ae1578181015183820152602001612ac9565b838111156104ec5750506000910152565b600181811c90821680612b0657607f821691505b60208210811415612b2757634e487b7160e01b600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612b5f57612b5f612b66565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146115c657600080fd5b80151581146115c657600080fd5b60ff811681146115c657600080fd5b6bffffffffffffffffffffffff811681146115c657600080fdfe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a26469706673582212201bdd74077fa202347308b16100a632a56937c0ea5893fd7242e465b863321ef864736f6c63430008060033",
              "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x1C4 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x889DE805 GT PUSH2 0xF9 JUMPI DUP1 PUSH4 0xAC9650D8 GT PUSH2 0x97 JUMPI DUP1 PUSH4 0xCA40EDF1 GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xCA40EDF1 EQ PUSH2 0x418 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x460 JUMPI DUP1 PUSH4 0xE18FA6EB EQ PUSH2 0x499 JUMPI DUP1 PUSH4 0xE7880AE1 EQ PUSH2 0x4AC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xAC9650D8 EQ PUSH2 0x3D2 JUMPI DUP1 PUSH4 0xADC9772E EQ PUSH2 0x3F2 JUMPI DUP1 PUSH4 0xC2A672E0 EQ PUSH2 0x405 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x95D89B41 GT PUSH2 0xD3 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x391 JUMPI DUP1 PUSH4 0x982B1F2F EQ PUSH2 0x399 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x3AC JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x3BF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x889DE805 EQ PUSH2 0x32F JUMPI DUP1 PUSH4 0x8B4B4EC9 EQ PUSH2 0x342 JUMPI DUP1 PUSH4 0x90AB0885 EQ PUSH2 0x355 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x5F665011 GT PUSH2 0x166 JUMPI DUP1 PUSH4 0x666F7AF6 GT PUSH2 0x140 JUMPI DUP1 PUSH4 0x666F7AF6 EQ PUSH2 0x2B9 JUMPI DUP1 PUSH4 0x6C59F295 EQ PUSH2 0x2CC JUMPI DUP1 PUSH4 0x6CC25DB7 EQ PUSH2 0x2DF JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x306 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x5F665011 EQ PUSH2 0x271 JUMPI DUP1 PUSH4 0x63FC611F EQ PUSH2 0x29C JUMPI DUP1 PUSH4 0x65A5D5F0 EQ PUSH2 0x2AF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x18160DDD GT PUSH2 0x1A2 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x21F JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x231 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x244 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x25E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6452792 EQ PUSH2 0x1C9 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x1DE JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x1FC JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1DC PUSH2 0x1D7 CALLDATASIZE PUSH1 0x4 PUSH2 0x27D1 JUMP JUMPDEST PUSH2 0x4BF JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1E6 PUSH2 0x4F2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1F3 SWAP2 SWAP1 PUSH2 0x29EE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x20F PUSH2 0x20A CALLDATASIZE PUSH1 0x4 PUSH2 0x258C JUMP JUMPDEST PUSH2 0x584 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1F3 JUMP JUMPDEST PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1F3 JUMP JUMPDEST PUSH2 0x20F PUSH2 0x23F CALLDATASIZE PUSH1 0x4 PUSH2 0x251D JUMP JUMPDEST PUSH2 0x59B JUMP JUMPDEST PUSH2 0x24C PUSH2 0x661 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1F3 JUMP JUMPDEST PUSH2 0x20F PUSH2 0x26C CALLDATASIZE PUSH1 0x4 PUSH2 0x258C JUMP JUMPDEST PUSH2 0x6F9 JUMP JUMPDEST PUSH2 0x284 PUSH2 0x27F CALLDATASIZE PUSH1 0x4 PUSH2 0x260B JUMP JUMPDEST PUSH2 0x735 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1F3 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH2 0x284 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 JUMP JUMPDEST PUSH2 0x223 PUSH3 0xED4E00 DUP2 JUMP JUMPDEST PUSH2 0x284 PUSH2 0x2C7 CALLDATASIZE PUSH1 0x4 PUSH2 0x260B JUMP JUMPDEST PUSH2 0x7B9 JUMP JUMPDEST PUSH2 0x284 PUSH2 0x2DA CALLDATASIZE PUSH1 0x4 PUSH2 0x25B8 JUMP JUMPDEST PUSH2 0x8A3 JUMP JUMPDEST PUSH2 0x284 PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x223 PUSH2 0x314 CALLDATASIZE PUSH1 0x4 PUSH2 0x24AA 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 0x284 PUSH2 0x33D CALLDATASIZE PUSH1 0x4 PUSH2 0x25B8 JUMP JUMPDEST PUSH2 0x9E9 JUMP JUMPDEST PUSH2 0x284 PUSH2 0x350 CALLDATASIZE PUSH1 0x4 PUSH2 0x2837 JUMP JUMPDEST PUSH2 0xAE4 JUMP JUMPDEST PUSH2 0x20F PUSH2 0x363 CALLDATASIZE PUSH1 0x4 PUSH2 0x24E4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH2 0x1E6 PUSH2 0xB4E JUMP JUMPDEST PUSH2 0x1DC PUSH2 0x3A7 CALLDATASIZE PUSH1 0x4 PUSH2 0x255E JUMP JUMPDEST PUSH2 0xB5D JUMP JUMPDEST PUSH2 0x20F PUSH2 0x3BA CALLDATASIZE PUSH1 0x4 PUSH2 0x258C JUMP JUMPDEST PUSH2 0xC3E JUMP JUMPDEST PUSH2 0x20F PUSH2 0x3CD CALLDATASIZE PUSH1 0x4 PUSH2 0x258C JUMP JUMPDEST PUSH2 0xCEF JUMP JUMPDEST PUSH2 0x3E5 PUSH2 0x3E0 CALLDATASIZE PUSH1 0x4 PUSH2 0x2640 JUMP JUMPDEST PUSH2 0xCFC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1F3 SWAP2 SWAP1 PUSH2 0x290F JUMP JUMPDEST PUSH2 0x1DC PUSH2 0x400 CALLDATASIZE PUSH1 0x4 PUSH2 0x258C JUMP JUMPDEST PUSH2 0xD08 JUMP JUMPDEST PUSH2 0x1DC PUSH2 0x413 CALLDATASIZE PUSH1 0x4 PUSH2 0x258C JUMP JUMPDEST PUSH2 0xD97 JUMP JUMPDEST PUSH2 0x42B PUSH2 0x426 CALLDATASIZE PUSH1 0x4 PUSH2 0x258C JUMP JUMPDEST PUSH2 0xE24 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP7 DUP8 AND DUP2 MSTORE SWAP6 SWAP1 SWAP5 AND PUSH1 0x20 DUP7 ADD MSTORE SWAP3 DUP5 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x60 DUP4 ADD MSTORE ISZERO ISZERO PUSH1 0x80 DUP3 ADD MSTORE PUSH1 0xA0 ADD PUSH2 0x1F3 JUMP JUMPDEST PUSH2 0x223 PUSH2 0x46E CALLDATASIZE PUSH1 0x4 PUSH2 0x24E4 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 0x284 PUSH2 0x4A7 CALLDATASIZE PUSH1 0x4 PUSH2 0x260B JUMP JUMPDEST PUSH2 0x1047 JUMP JUMPDEST PUSH2 0x284 PUSH2 0x4BA CALLDATASIZE PUSH1 0x4 PUSH2 0x258C JUMP JUMPDEST PUSH2 0x10ED JUMP JUMPDEST PUSH2 0x4EC PUSH32 0x0 DUP6 DUP6 DUP6 DUP6 PUSH2 0x10F9 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x501 SWAP1 PUSH2 0x2AF2 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 0x52D SWAP1 PUSH2 0x2AF2 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x57A JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x54F JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x57A 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 0x55D JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x591 CALLER DUP5 DUP5 PUSH2 0x11D1 JUMP JUMPDEST POP PUSH1 0x1 JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x5A8 DUP5 DUP5 DUP5 PUSH2 0x1329 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 0x647 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 0x654 DUP6 CALLER DUP6 DUP5 SUB PUSH2 0x11D1 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x313CE567 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 0x6BC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x6D0 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 0x6F4 SWAP2 SWAP1 PUSH2 0x288D 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 0x591 SWAP2 DUP6 SWAP1 PUSH2 0x730 SWAP1 DUP7 SWAP1 PUSH2 0x2A97 JUMP JUMPDEST PUSH2 0x11D1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x740 DUP5 PUSH2 0x1540 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x74C DUP6 DUP6 PUSH2 0x15C9 JUMP JUMPDEST SWAP1 POP PUSH2 0x759 DUP2 ADDRESS DUP6 PUSH2 0x161F JUMP JUMPDEST PUSH2 0x763 DUP6 DUP5 PUSH2 0x1641 JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x6862A473BAA6176F1C866C69AA93DA8508D7AFC71B52DDDC9D5E8B0BB7AAB6F4 DUP7 PUSH1 0x40 MLOAD PUSH2 0x7A9 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0x811 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 0x5457414244656C656761746F722F646C6774722D6E6F742D7A65726F2D616472 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x63E JUMP JUMPDEST PUSH2 0x81A DUP3 PUSH2 0x1719 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x826 DUP6 DUP6 PUSH2 0x15C9 JUMP JUMPDEST SWAP1 POP PUSH2 0x85D PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND CALLER DUP4 DUP7 PUSH2 0x1769 JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x383183291BD9A7FB8BD9C7C86C5013A89D1490C9F4E486DA279804B83729A1DC DUP7 PUSH1 0x40 MLOAD PUSH2 0x7A9 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x8AE DUP6 PUSH2 0x1540 JUMP JUMPDEST PUSH2 0x8B7 DUP4 PUSH2 0x181A JUMP JUMPDEST PUSH2 0x8CE DUP3 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1870 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x8DA DUP7 DUP7 PUSH2 0x15C9 JUMP JUMPDEST SWAP1 POP PUSH2 0x8E5 DUP2 PUSH2 0x18C3 JUMP JUMPDEST TIMESTAMP DUP4 ADD PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF DUP5 AND ISZERO PUSH2 0x97D JUMPI PUSH1 0x40 MLOAD PUSH32 0xAC2293AF00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH4 0xAC2293AF SWAP1 PUSH1 0x24 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x964 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x978 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP JUMPDEST PUSH2 0x987 DUP3 DUP7 PUSH2 0x1991 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF DUP4 AND DUP2 MSTORE CALLER PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP9 AND SWAP3 DUP10 SWAP3 SWAP2 DUP12 AND SWAP2 PUSH32 0xFD96A87F22AFEA1E17A7117A4923F1499A1C1EB2BD7C492CAF07F3A3C38ADE6F SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x9F4 DUP6 PUSH2 0x1540 JUMP JUMPDEST PUSH2 0x9FD DUP4 PUSH2 0x181A JUMP JUMPDEST PUSH2 0xA14 DUP3 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1870 JUMP JUMPDEST TIMESTAMP DUP3 ADD PUSH1 0x0 PUSH2 0xA6E PUSH2 0xA68 DUP9 DUP9 PUSH1 0x40 MLOAD PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT PUSH1 0x60 DUP5 SWAP1 SHL AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x34 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x54 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 DUP4 PUSH2 0x1A17 JUMP JUMPDEST SWAP1 POP PUSH2 0xA7A DUP2 DUP7 PUSH2 0x1991 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF DUP5 AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x20 DUP4 ADD MSTORE CALLER DUP3 DUP5 ADD MSTORE SWAP2 MLOAD DUP8 DUP4 AND SWAP3 DUP10 SWAP3 SWAP1 DUP12 AND SWAP2 PUSH32 0x5533ACB96061E404278604D3DF68397263BE1D4B9DF394136A2968802633D8A5 SWAP2 DUP2 SWAP1 SUB PUSH1 0x60 ADD SWAP1 LOG4 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xAEF DUP3 PUSH2 0x1ABD JUMP JUMPDEST PUSH1 0x0 PUSH2 0xAFB CALLER DUP7 PUSH2 0x15C9 JUMP JUMPDEST SWAP1 POP PUSH2 0xB08 DUP2 DUP5 DUP7 PUSH2 0x161F JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x622B7DA8A20026F1176CCC7EC0A635A4544A67E99B0125018E3D89B888CE8EBE DUP8 PUSH1 0x40 MLOAD PUSH2 0x7A9 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x501 SWAP1 PUSH2 0x2AF2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xBB3 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 0x5457414244656C656761746F722F7265702D6E6F742D7A65726F2D6164647200 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x63E JUMP JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP1 DUP6 MSTORE SWAP1 DUP4 MSTORE SWAP3 DUP2 SWAP1 KECCAK256 DUP1 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00 AND DUP7 ISZERO ISZERO SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE SWAP1 MLOAD SWAP1 DUP2 MSTORE SWAP2 SWAP3 SWAP2 PUSH32 0x50062A33E55B9F3DFCF05FBF1356B7C92313796CFB8526CDEE5A497FCBB8CC33 SWAP2 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP 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 0xCD8 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 0x63E JUMP JUMPDEST PUSH2 0xCE5 CALLER DUP6 DUP6 DUP5 SUB PUSH2 0x11D1 JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x591 CALLER DUP5 DUP5 PUSH2 0x1329 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x65A DUP4 DUP4 PUSH2 0x1B13 JUMP JUMPDEST PUSH2 0xD11 DUP2 PUSH2 0x1719 JUMP JUMPDEST PUSH2 0xD46 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND CALLER ADDRESS DUP5 PUSH2 0x1769 JUMP JUMPDEST PUSH2 0xD50 DUP3 DUP3 PUSH2 0x1641 JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x15C2C6E5DB9E25D828754C9C5CEE6C5C3DF074E6AC26E7491C0F8CE7BBD447D6 DUP3 PUSH1 0x40 MLOAD PUSH2 0xD8B SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH2 0xDA0 DUP3 PUSH2 0x1ABD JUMP JUMPDEST PUSH2 0xDA9 DUP2 PUSH2 0x1719 JUMP JUMPDEST PUSH2 0xDB3 CALLER DUP3 PUSH2 0x1C0D JUMP JUMPDEST PUSH2 0xDE7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP4 DUP4 PUSH2 0x1D92 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 CALLER SWAP1 PUSH32 0xF7128607975B3FF61BC02D19A1C8267E526F7A5B7144DC4EFCDAC634663FD369 SWAP1 PUSH1 0x20 ADD PUSH2 0xC32 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0xE36 DUP8 DUP8 PUSH2 0x15C9 JUMP JUMPDEST SWAP5 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND EXTCODESIZE ISZERO ISZERO PUSH1 0x40 MLOAD PUSH32 0x8D22EA2A00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE SWAP2 SWAP3 POP PUSH32 0x0 SWAP1 SWAP2 AND SWAP1 PUSH4 0x8D22EA2A SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xEC4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xED8 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 0xEFC SWAP2 SWAP1 PUSH2 0x24C7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x70A0823100000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE SWAP2 SWAP6 POP PUSH32 0x0 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 0xF7B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xF8F 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 0xFB3 SWAP2 SWAP1 PUSH2 0x27B8 JUMP JUMPDEST SWAP3 POP DUP1 ISZERO PUSH2 0x103D JUMPI DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x3C78929E 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 0xFF4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1008 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 0x102C SWAP2 SWAP1 PUSH2 0x28AA JUMP JUMPDEST PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP2 POP JUMPDEST SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1052 DUP5 PUSH2 0x1540 JUMP JUMPDEST PUSH2 0x105B DUP3 PUSH2 0x1719 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1067 DUP6 DUP6 PUSH2 0x15C9 JUMP JUMPDEST SWAP1 POP PUSH2 0x1073 DUP6 DUP5 PUSH2 0x1C0D JUMP JUMPDEST PUSH2 0x10A7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP3 DUP6 PUSH2 0x1D92 JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xB1968721EEB35D2206C8AA91805BC908019965FF4CFF13C158F89956FB8E9248 DUP7 PUSH1 0x40 MLOAD PUSH2 0x7A9 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x65A DUP4 DUP4 PUSH2 0x15C9 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH4 0xD505ACCF CALLER ADDRESS DUP8 DUP8 CALLDATALOAD PUSH2 0x111D PUSH1 0x40 DUP11 ADD PUSH1 0x20 DUP12 ADD PUSH2 0x2870 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 DUP7 ADD CALLDATALOAD PUSH1 0xA4 DUP3 ADD MSTORE PUSH1 0x60 DUP7 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 0x11A7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x11BB JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH2 0x11C9 DUP3 DUP3 PUSH2 0x1B13 JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x124C 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 0x63E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x12C8 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 0x63E 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 0x13A5 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 0x63E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1421 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 0x63E 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 0x14B0 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 0x63E 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 0x14E7 SWAP1 DUP5 SWAP1 PUSH2 0x2A97 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 0x1533 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0x4EC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND CALLER EQ DUP1 PUSH2 0x157A JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND JUMPDEST PUSH2 0x15C6 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 0x5457414244656C656761746F722F6E6F742D646C6774722D6F722D7265700000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x63E JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x65A PUSH2 0x161A DUP5 DUP5 PUSH1 0x40 MLOAD PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT PUSH1 0x60 DUP5 SWAP1 SHL AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x34 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x54 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 PUSH2 0x1DDB JUMP JUMPDEST PUSH2 0x1628 DUP2 PUSH2 0x1719 JUMP JUMPDEST PUSH2 0x1631 DUP4 PUSH2 0x18C3 JUMP JUMPDEST PUSH2 0x163C DUP4 DUP4 DUP4 PUSH2 0x1E64 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1697 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 0x63E JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x16A9 SWAP2 SWAP1 PUSH2 0x2A97 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 0x16D6 SWAP1 DUP5 SWAP1 PUSH2 0x2A97 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 PUSH2 0xC32 JUMP JUMPDEST PUSH1 0x0 DUP2 GT PUSH2 0x15C6 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 0x5457414244656C656761746F722F616D6F756E742D67742D7A65726F00000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x63E 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 0x4EC 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 0x1EE7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x15C6 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 0x5457414244656C656761746F722F646C67742D6E6F742D7A65726F2D61646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x63E JUMP JUMPDEST PUSH3 0xED4E00 DUP2 GT ISZERO PUSH2 0x15C6 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 0x5457414244656C656761746F722F6C6F636B2D746F6F2D6C6F6E670000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x63E JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x3C78929E 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 0x18FC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1910 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 0x1934 SWAP2 SWAP1 PUSH2 0x28AA JUMP JUMPDEST PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF AND TIMESTAMP LT ISZERO PUSH2 0x15C6 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 0x5457414244656C656761746F722F64656C65676174696F6E2D6C6F636B656400 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x63E JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x24 DUP1 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP3 MLOAD DUP1 DUP4 SUB SWAP1 SWAP2 ADD DUP2 MSTORE PUSH1 0x44 SWAP1 SWAP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x20 DUP2 ADD DUP1 MLOAD PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x5C19A95C00000000000000000000000000000000000000000000000000000000 SWAP1 DUP2 OR SWAP1 SWAP2 MSTORE SWAP1 PUSH2 0x1A10 DUP5 DUP3 PUSH2 0x1FCC JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x0 SWAP1 DUP2 SWAP1 PUSH2 0x1A32 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH2 0x2110 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x909F1CAD00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND SWAP1 PUSH4 0x909F1CAD SWAP1 PUSH1 0x24 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1A9D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1AB1 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP SWAP3 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x15C6 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 0x5457414244656C656761746F722F746F2D6E6F742D7A65726F2D616464720000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x63E JUMP JUMPDEST PUSH1 0x60 DUP2 PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1B31 JUMPI PUSH2 0x1B31 PUSH2 0x2B92 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x1B64 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x1B4F JUMPI SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x1C04 JUMPI PUSH2 0x1BD4 ADDRESS DUP8 DUP8 DUP5 DUP2 DUP2 LT PUSH2 0x1B88 JUMPI PUSH2 0x1B88 PUSH2 0x2B7C JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x1B9A SWAP2 SWAP1 PUSH2 0x2A01 JUMP JUMPDEST DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH1 0x0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP PUSH2 0x21C7 SWAP3 POP POP POP JUMP JUMPDEST DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x1BE6 JUMPI PUSH2 0x1BE6 PUSH2 0x2B7C JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP DUP1 DUP1 PUSH2 0x1BFC SWAP1 PUSH2 0x2B2D JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1B6A JUMP JUMPDEST POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1C89 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 0x63E 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 0x1D18 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 0x63E 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 0x1D47 SWAP1 DUP5 SWAP1 PUSH2 0x2AAF 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 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 0x163C SWAP1 DUP5 SWAP1 PUSH32 0xA9059CBB00000000000000000000000000000000000000000000000000000000 SWAP1 PUSH1 0x64 ADD PUSH2 0x17B6 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0x0 SWAP1 PUSH2 0x595 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 ADDRESS PUSH1 0x40 MLOAD PUSH32 0x3D602D80600A3D3981F3363D3D373D3D3D363D73000000000000000000000000 DUP2 MSTORE PUSH1 0x60 SWAP4 DUP5 SHL PUSH1 0x14 DUP3 ADD MSTORE PUSH32 0x5AF43D82803E903D91602B57FD5BF3FF00000000000000000000000000000000 PUSH1 0x28 DUP3 ADD MSTORE SWAP3 SHL PUSH1 0x38 DUP4 ADD MSTORE PUSH1 0x4C DUP3 ADD MSTORE PUSH1 0x37 DUP1 DUP3 KECCAK256 PUSH1 0x6C DUP4 ADD MSTORE PUSH1 0x55 SWAP2 ADD KECCAK256 SWAP1 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 SWAP1 DUP2 OR SWAP1 SWAP2 MSTORE SWAP1 PUSH2 0x11C9 DUP6 DUP3 PUSH2 0x1FCC JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1F3C 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 0x21EC SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP ISZERO PUSH2 0x163C JUMPI DUP1 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0x1F5A SWAP2 SWAP1 PUSH2 0x279B JUMP JUMPDEST PUSH2 0x163C 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 0x63E JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 DUP1 DUP3 MSTORE DUP2 DUP4 ADD SWAP1 SWAP3 MSTORE PUSH1 0x60 SWAP2 PUSH1 0x0 SWAP2 SWAP1 DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP2 MSTORE PUSH1 0x60 PUSH1 0x20 DUP3 ADD MSTORE DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x1FE7 JUMPI SWAP1 POP POP SWAP1 POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE POP DUP2 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x2062 JUMPI PUSH2 0x2062 PUSH2 0x2B7C JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE PUSH1 0x40 MLOAD PUSH32 0xDE9443BF00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH4 0xDE9443BF SWAP1 PUSH2 0x20B2 SWAP1 DUP5 SWAP1 PUSH1 0x4 ADD PUSH2 0x2971 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x20CC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x20E0 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 0x2108 SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x2682 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD PUSH32 0x3D602D80600A3D3981F3363D3D373D3D3D363D73000000000000000000000000 DUP2 MSTORE DUP4 PUSH1 0x60 SHL PUSH1 0x14 DUP3 ADD MSTORE PUSH32 0x5AF43D82803E903D91602B57FD5BF30000000000000000000000000000000000 PUSH1 0x28 DUP3 ADD MSTORE DUP3 PUSH1 0x37 DUP3 PUSH1 0x0 CREATE2 SWAP2 POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x595 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 0x455243313136373A2063726561746532206661696C6564000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x63E JUMP JUMPDEST PUSH1 0x60 PUSH2 0x65A DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x27 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x2BF5 PUSH1 0x27 SWAP2 CODECOPY PUSH2 0x21FB JUMP JUMPDEST PUSH1 0x60 PUSH2 0x2108 DUP5 DUP5 PUSH1 0x0 DUP6 PUSH2 0x22E6 JUMP JUMPDEST PUSH1 0x60 DUP4 EXTCODESIZE PUSH2 0x2271 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 0x416464726573733A2064656C65676174652063616C6C20746F206E6F6E2D636F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6E74726163740000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x63E JUMP JUMPDEST PUSH1 0x0 DUP1 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x40 MLOAD PUSH2 0x228C SWAP2 SWAP1 PUSH2 0x28F3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 GAS DELEGATECALL SWAP2 POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x22C7 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 0x22CC JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x22DC DUP3 DUP3 DUP7 PUSH2 0x2425 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP3 SELFBALANCE LT ISZERO PUSH2 0x235E 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 0x63E JUMP JUMPDEST DUP5 EXTCODESIZE PUSH2 0x23AC 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 0x63E JUMP JUMPDEST PUSH1 0x0 DUP1 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 DUP8 PUSH1 0x40 MLOAD PUSH2 0x23C8 SWAP2 SWAP1 PUSH2 0x28F3 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 0x2405 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 0x240A JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x241A DUP3 DUP3 DUP7 PUSH2 0x2425 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 ISZERO PUSH2 0x2434 JUMPI POP DUP2 PUSH2 0x65A JUMP JUMPDEST DUP3 MLOAD ISZERO PUSH2 0x2444 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 0x63E SWAP2 SWAP1 PUSH2 0x29EE JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x2470 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2488 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 0x24A3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x24BC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x65A DUP2 PUSH2 0x2BA8 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x24D9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x65A DUP2 PUSH2 0x2BA8 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x24F7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2502 DUP2 PUSH2 0x2BA8 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x2512 DUP2 PUSH2 0x2BA8 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2532 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x253D DUP2 PUSH2 0x2BA8 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x254D DUP2 PUSH2 0x2BA8 JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2571 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x257C DUP2 PUSH2 0x2BA8 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x2512 DUP2 PUSH2 0x2BBD JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x259F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x25AA DUP2 PUSH2 0x2BA8 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 0x25CE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x25D9 DUP2 PUSH2 0x2BA8 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH2 0x25F0 DUP2 PUSH2 0x2BA8 JUMP JUMPDEST SWAP2 POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH2 0x2600 DUP2 PUSH2 0x2BDA JUMP JUMPDEST SWAP4 SWAP7 SWAP3 SWAP6 POP SWAP1 SWAP4 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2620 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x262B DUP2 PUSH2 0x2BA8 JUMP JUMPDEST SWAP6 PUSH1 0x20 DUP6 ADD CALLDATALOAD SWAP6 POP PUSH1 0x40 SWAP1 SWAP5 ADD CALLDATALOAD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2653 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x266A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2676 DUP6 DUP3 DUP7 ADD PUSH2 0x245E JUMP JUMPDEST SWAP1 SWAP7 SWAP1 SWAP6 POP SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2695 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x26AD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP PUSH1 0x1F DUP7 DUP2 DUP5 ADD SLT PUSH2 0x26C2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD DUP3 DUP2 GT ISZERO PUSH2 0x26D4 JUMPI PUSH2 0x26D4 PUSH2 0x2B92 JUMP JUMPDEST DUP1 PUSH1 0x5 SHL PUSH2 0x26E3 DUP7 DUP3 ADD PUSH2 0x2A66 JUMP JUMPDEST DUP3 DUP2 MSTORE DUP7 DUP2 ADD SWAP1 DUP7 DUP9 ADD DUP4 DUP9 ADD DUP10 ADD DUP13 LT ISZERO PUSH2 0x26FE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP4 POP JUMPDEST DUP5 DUP5 LT ISZERO PUSH2 0x278C JUMPI DUP1 MLOAD DUP8 DUP2 GT ISZERO PUSH2 0x271A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP9 ADD PUSH1 0x3F DUP2 ADD DUP14 SGT PUSH2 0x272B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP10 DUP2 ADD MLOAD PUSH1 0x40 DUP10 DUP3 GT ISZERO PUSH2 0x2741 JUMPI PUSH2 0x2741 PUSH2 0x2B92 JUMP JUMPDEST PUSH2 0x2752 DUP13 PUSH1 0x1F NOT DUP12 DUP6 ADD AND ADD PUSH2 0x2A66 JUMP JUMPDEST DUP3 DUP2 MSTORE DUP16 DUP3 DUP5 DUP7 ADD ADD GT ISZERO PUSH2 0x2766 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2775 DUP4 DUP15 DUP4 ADD DUP5 DUP8 ADD PUSH2 0x2AC6 JUMP JUMPDEST DUP7 MSTORE POP POP POP PUSH1 0x1 SWAP4 SWAP1 SWAP4 ADD SWAP3 SWAP2 DUP9 ADD SWAP2 DUP9 ADD PUSH2 0x2703 JUMP JUMPDEST POP SWAP11 SWAP10 POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x27AD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x65A DUP2 PUSH2 0x2BBD JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x27CA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 DUP5 DUP7 SUB PUSH1 0xC0 DUP2 SLT ISZERO PUSH2 0x27E8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP6 CALLDATALOAD SWAP5 POP PUSH1 0x80 PUSH1 0x1F NOT DUP3 ADD SLT ISZERO PUSH2 0x27FE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x20 DUP6 ADD SWAP3 POP PUSH1 0xA0 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x281F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x282B DUP8 DUP3 DUP9 ADD PUSH2 0x245E JUMP JUMPDEST SWAP6 SWAP9 SWAP5 SWAP8 POP SWAP6 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x284C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x2865 DUP2 PUSH2 0x2BA8 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2882 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x65A DUP2 PUSH2 0x2BCB JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x289F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x65A DUP2 PUSH2 0x2BCB JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x28BC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x65A DUP2 PUSH2 0x2BDA JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH2 0x28DF DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH2 0x2AC6 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 0x2905 DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x2AC6 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 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 0x2964 JUMPI PUSH1 0x3F NOT DUP9 DUP7 SUB ADD DUP5 MSTORE PUSH2 0x2952 DUP6 DUP4 MLOAD PUSH2 0x28C7 JUMP JUMPDEST SWAP5 POP SWAP3 DUP6 ADD SWAP3 SWAP1 DUP6 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x2936 JUMP JUMPDEST POP SWAP3 SWAP8 SWAP7 POP 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 SWAP3 POP DUP3 DUP7 ADD SWAP2 POP DUP3 DUP2 PUSH1 0x5 SHL DUP8 ADD ADD DUP5 DUP9 ADD PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x29E0 JUMPI DUP9 DUP4 SUB PUSH1 0x3F NOT ADD DUP6 MSTORE DUP2 MLOAD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 MSTORE DUP8 ADD MLOAD DUP8 DUP5 ADD DUP8 SWAP1 MSTORE PUSH2 0x29CD DUP8 DUP6 ADD DUP3 PUSH2 0x28C7 JUMP JUMPDEST SWAP6 DUP9 ADD SWAP6 SWAP4 POP POP SWAP1 DUP7 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x2998 JUMP JUMPDEST POP SWAP1 SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0x65A PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x28C7 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 CALLDATALOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1 DUP5 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x2A36 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 ADD DUP1 CALLDATALOAD SWAP2 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x2A51 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 ADD SWAP2 POP CALLDATASIZE DUP2 SWAP1 SUB DUP3 SGT ISZERO PUSH2 0x24A3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x2A8F JUMPI PUSH2 0x2A8F PUSH2 0x2B92 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x2AAA JUMPI PUSH2 0x2AAA PUSH2 0x2B66 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x2AC1 JUMPI PUSH2 0x2AC1 PUSH2 0x2B66 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x2AE1 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x2AC9 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x4EC JUMPI POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x2B06 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x2B27 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 PUSH1 0x0 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x2B5F JUMPI PUSH2 0x2B5F PUSH2 0x2B66 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 0x15C6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x15C6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x15C6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x15C6 JUMPI PUSH1 0x0 DUP1 REVERT INVALID COINBASE PUSH5 0x6472657373 GASPRICE KECCAK256 PUSH13 0x6F772D6C6576656C2064656C65 PUSH8 0x6174652063616C6C KECCAK256 PUSH7 0x61696C6564A264 PUSH10 0x706673582212201BDD74 SMOD PUSH32 0xA202347308B16100A632A56937C0EA5893FD7242E465B863321EF864736F6C63 NUMBER STOP ADDMOD MOD STOP CALLER ",
              "sourceMap": "840:21451:81:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15493:226;;;;;;:::i;:::-;;:::i;:::-;;2141:98:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4238:166;;;;;;:::i;:::-;;:::i;:::-;;;12567:14:101;;12560:22;12542:41;;12530:2;12515:18;4238:166:4;12497:92:101;3229:106:4;3316:12;;3229:106;;;22853:25:101;;;22841:2;22826:18;3229:106:4;22808:76:101;4871:478:4;;;;;;:::i;:::-;;:::i;17425:116:81:-;;;:::i;:::-;;;23061:4:101;23049:17;;;23031:36;;23019:2;23004:18;17425:116:81;22986:87:101;5744:212:4;;;;;;:::i;:::-;;:::i;12448:455:81:-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8933:55:101;;;8915:74;;8903:2;8888:18;12448:455:81;8870:125:101;343:36:79;;;;;-1:-1:-1;;;;;343:36:79;;;5267:43:81;;5302:8;5267:43;;10435:488;;;;;;:::i;:::-;;:::i;9348:717::-;;;;;;:::i;:::-;;:::i;5158:31::-;;;;;3393:125:4;;;;;;:::i;:::-;-1:-1:-1;;;;;3493:18:4;3467:7;3493:18;;;;;;;;;;;;3393:125;8202:650:81;;;;;;:::i;:::-;;:::i;13329:379::-;;;;;;:::i;:::-;;:::i;14648:178::-;;;;;;:::i;:::-;-1:-1:-1;;;;;14777:27:81;;;14756:4;14777:27;;;:15;:27;;;;;;;;:44;;;;;;;;;;;;;;;14648:178;2352:102:4;;;:::i;14114:278:81:-;;;;;;:::i;:::-;;:::i;6443:405:4:-;;;;;;:::i;:::-;;:::i;3721:172::-;;;;;;:::i;:::-;;:::i;15125:112:81:-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;6545:232::-;;;;;;:::i;:::-;;:::i;7147:272::-;;;;;;:::i;:::-;;:::i;16255:527::-;;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;13197:15:101;;;13179:34;;13249:15;;;;13244:2;13229:18;;13222:43;13281:18;;;13274:34;;;;13339:2;13324:18;;13317:34;13395:14;13388:22;13382:3;13367:19;;13360:51;13105:3;13090:19;16255:527:81;13072:345:101;3951:149:4;;;;;;:::i;:::-;-1:-1:-1;;;;;4066:18:4;;;4040:7;4066:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3951:149;11406:500:81;;;;;;:::i;:::-;;:::i;17084:167::-;;;;;;:::i;:::-;;:::i;15493:226::-;15630:84;15671:6;15681:7;15690:16;15708:5;;15630:19;:84::i;:::-;15493:226;;;;:::o;2141:98:4:-;2195:13;2227:5;2220:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2141:98;:::o;4238:166::-;4321:4;4337:39;719:10:13;4360:7:4;4369:6;4337:8;:39::i;:::-;-1:-1:-1;4393:4:4;4238:166;;;;;:::o;4871:478::-;5007:4;5023:36;5033:6;5041:9;5052:6;5023:9;:36::i;:::-;-1:-1:-1;;;;;5097:19:4;;5070:24;5097:19;;;:11;:19;;;;;;;;719:10:13;5097:33:4;;;;;;;;5148:26;;;;5140:79;;;;-1:-1:-1;;;5140:79:4;;17906:2:101;5140:79:4;;;17888:21:101;17945:2;17925:18;;;17918:30;17984:34;17964:18;;;17957:62;18055:10;18035:18;;;18028:38;18083:19;;5140:79:4;;;;;;;;;5253:57;5262:6;719:10:13;5303:6:4;5284:16;:25;5253:8;:57::i;:::-;5338:4;5331:11;;;4871:478;;;;;;:::o;17425:116:81:-;17483:5;17517:6;-1:-1:-1;;;;;17503:31:81;;:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;17496:40;;17425:116;:::o;5744:212:4:-;719:10:13;5832:4:4;5880:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;5880:34:4;;;;;;;;;;5832:4;;5848:80;;5871:7;;5880:47;;5917:10;;5880:47;:::i;:::-;5848:8;:80::i;12448:455:81:-;12569:10;12587:45;12621:10;12587:33;:45::i;:::-;12639:22;12675:34;12691:10;12703:5;12675:15;:34::i;:::-;12639:71;;12717:46;12727:11;12748:4;12755:7;12717:9;:46::i;:::-;12770:26;12776:10;12788:7;12770:5;:26::i;:::-;12862:10;-1:-1:-1;;;;;12808:65:81;12846:5;12834:10;-1:-1:-1;;;;;12808:65:81;;12853:7;12808:65;;;;22853:25:101;;22841:2;22826:18;;22808:76;12808:65:81;;;;;;;;12887:11;12448:455;-1:-1:-1;;;;12448:455:81:o;10435:488::-;10545:10;-1:-1:-1;;;;;10571:24:81;;10563:69;;;;-1:-1:-1;;;10563:69:81;;17185:2:101;10563:69:81;;;17167:21:101;;;17204:18;;;17197:30;17263:34;17243:18;;;17236:62;17315:18;;10563:69:81;17157:182:101;10563:69:81;10638:29;10659:7;10638:20;:29::i;:::-;10674:22;10710:34;10726:10;10738:5;10710:15;:34::i;:::-;10674:71;-1:-1:-1;10751:74:81;-1:-1:-1;;;;;10758:6:81;10751:31;10783:10;10674:71;10817:7;10751:31;:74::i;:::-;10882:10;-1:-1:-1;;;;;10837:56:81;10866:5;10854:10;-1:-1:-1;;;;;10837:56:81;;10873:7;10837:56;;;;22853:25:101;;22841:2;22826:18;;22808:76;9348:717:81;9488:10;9506:45;9540:10;9506:33;:45::i;:::-;9557:43;9589:10;9557:31;:43::i;:::-;9606:35;9627:13;9606:35;;:20;:35::i;:::-;9648:22;9684:34;9700:10;9712:5;9684:15;:34::i;:::-;9648:71;;9725:39;9752:11;9725:26;:39::i;:::-;18464:15;18457:39;;9834:17;;;;9830:74;;9861:36;;;;;23252:26:101;23240:39;;9861:36:81;;;23222:58:101;-1:-1:-1;;;;;9861:24:81;;;;;23195:18:101;;9861:36:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9830:74;9910:42;9928:11;9941:10;9910:17;:42::i;:::-;9964:71;;;23493:26:101;23481:39;;23463:58;;10024:10:81;23552:2:101;23537:18;;23530:83;-1:-1:-1;;;;;9964:71:81;;;;9993:5;;9964:71;;;;;;23436:18:101;9964:71:81;;;;;;;-1:-1:-1;10049:11:81;9348:717;-1:-1:-1;;;;;9348:717:81:o;8202:650::-;8343:10;8361:45;8395:10;8361:33;:45::i;:::-;8412:43;8444:10;8412:31;:43::i;:::-;8461:35;8482:13;8461:35;;:20;:35::i;:::-;18464:15;18457:39;;8503:17;8587:89;8612:40;8625:10;8645:5;1765:35:79;;-1:-1:-1;;8333:2:101;8329:15;;;8325:88;1765:35:79;;;8313:101:101;8430:12;;;8423:28;;;1733:7:79;;8467:12:101;;1765:35:79;;;;;;;;;;;;1755:46;;;;;;1748:53;;1653:153;;;;;8612:40:81;8660:10;8587:17;:89::i;:::-;8562:114;;8683:42;8701:11;8714:10;8683:17;:42::i;:::-;8737:85;;;23874:26:101;23862:39;;23844:58;;-1:-1:-1;;;;;23999:15:101;;;23994:2;23979:18;;23972:43;8811:10:81;24031:18:101;;;24024:43;8737:85:81;;;;;;8767:5;;8737:85;;;;;;;;;23832:2:101;8737:85:81;;;8836:11;8202:650;-1:-1:-1;;;;;;8202:650:81:o;13329:379::-;13438:10;13456:36;13488:3;13456:31;:36::i;:::-;13499:22;13535:34;13551:10;13563:5;13535:15;:34::i;:::-;13499:71;;13576:36;13586:11;13599:3;13604:7;13576:9;:36::i;:::-;13674:3;-1:-1:-1;;;;;13624:54:81;13658:5;13646:10;-1:-1:-1;;;;;13624:54:81;;13665:7;13624:54;;;;22853:25:101;;22841:2;22826:18;;22808:76;2352:102:4;2408:13;2440:7;2433:14;;;;;:::i;14114:278:81:-;-1:-1:-1;;;;;14200:29:81;;14192:73;;;;-1:-1:-1;;;14192:73:81;;20248:2:101;14192:73:81;;;20230:21:101;20287:2;20267:18;;;20260:30;20326:33;20306:18;;;20299:61;20377:18;;14192:73:81;20220:181:101;14192:73:81;14288:10;14272:27;;;;:15;:27;;;;;;;;-1:-1:-1;;;;;14272:44:81;;;;;;;;;;;;:51;;;;;;;;;;;;;14335:52;;12542:41:101;;;14272:44:81;;14288:10;14335:52;;12515:18:101;14335:52:81;;;;;;;;14114:278;;:::o;6443:405:4:-;719:10:13;6536:4:4;6579:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;6579:34:4;;;;;;;;;;6631:35;;;;6623:85;;;;-1:-1:-1;;;6623:85:4;;22143:2:101;6623:85:4;;;22125:21:101;22182:2;22162:18;;;22155:30;22221:34;22201:18;;;22194:62;22292:7;22272:18;;;22265:35;22317:19;;6623:85:4;22115:227:101;6623:85:4;6742:67;719:10:13;6765:7:4;6793:15;6774:16;:34;6742:8;:67::i;:::-;-1:-1:-1;6837:4:4;;6443:405;-1:-1:-1;;;6443:405:4:o;3721:172::-;3807:4;3823:42;719:10:13;3847:9:4;3858:6;3823:9;:42::i;15125:112:81:-;15186:14;15215:17;15226:5;;15215:10;:17::i;6545:232::-;6605:29;6626:7;6605:20;:29::i;:::-;6641:67;-1:-1:-1;;;;;6648:6:81;6641:31;6673:10;6693:4;6700:7;6641:31;:67::i;:::-;6714:19;6720:3;6725:7;6714:5;:19::i;:::-;6759:3;-1:-1:-1;;;;;6745:27:81;;6764:7;6745:27;;;;22853:25:101;;22841:2;22826:18;;22808:76;6745:27:81;;;;;;;;6545:232;;:::o;7147:272::-;7209:36;7241:3;7209:31;:36::i;:::-;7251:29;7272:7;7251:20;:29::i;:::-;7287:26;7293:10;7305:7;7287:5;:26::i;:::-;7320:41;-1:-1:-1;;;;;7327:6:81;7320:27;7348:3;7353:7;7320:27;:41::i;:::-;7373;;22853:25:101;;;-1:-1:-1;;;;;7373:41:81;;;7389:10;;7373:41;;22841:2:101;22826:18;7373:41:81;22808:76:101;16255:527:81;16355:21;16384:17;16409:15;16432:17;16457:15;16511:34;16527:10;16539:5;16511:15;:34::i;:::-;16487:59;-1:-1:-1;;;;;;16565:30:81;;1087:20:12;1133:8;;16615:38:81;;;;;-1:-1:-1;;;;;8933:55:101;;;16615:38:81;;;8915:74:101;16552:45:81;;-1:-1:-1;16615:6:81;:17;;;;;;8888:18:101;;16615:38:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;16669:37;;;;;-1:-1:-1;;;;;8933:55:101;;;16669:37:81;;;8915:74:101;16603:50:81;;-1:-1:-1;16669:6:81;:16;;;;;;8888:18:101;;16669:37:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;16659:47;;16717:10;16713:65;;;16749:10;-1:-1:-1;;;;;16749:20:81;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;16737:34;;;;16713:65;16255:527;;;;;;;;:::o;11406:500::-;11525:10;11543:45;11577:10;11543:33;:45::i;:::-;11594:29;11615:7;11594:20;:29::i;:::-;11630:22;11666:34;11682:10;11694:5;11666:15;:34::i;:::-;11630:71;;11708:26;11714:10;11726:7;11708:5;:26::i;:::-;11741:58;-1:-1:-1;;;;;11748:6:81;11741:27;11777:11;11791:7;11741:27;:58::i;:::-;11865:10;-1:-1:-1;;;;;11811:65:81;11849:5;11837:10;-1:-1:-1;;;;;11811:65:81;;11856:7;11811:65;;;;22853:25:101;;22841:2;22826:18;;22808:76;17084:167:81;17188:7;17212:34;17228:10;17240:5;17212:15;:34::i;1607:388:80:-;-1:-1:-1;;;;;1776:19:80;;;1803:10;1829:4;1842:7;1857:25;;1890:18;;;;;;;;:::i;:::-;1916;1776:190;;;;;;;;;;-1:-1:-1;;;;;9793:15:101;;;1776:190:80;;;9775:34:101;9845:15;;;;9825:18;;;9818:43;9877:18;;;9870:34;;;;9920:18;;;9913:34;9996:4;9984:17;9963:19;;;9956:46;1916:18:80;;;10018:19:101;;;10011:35;1942:18:80;;;;10062:19:101;;;10055:35;9686:19;;1776:190:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1973:17;1984:5;;1973:10;:17::i;:::-;;1607:388;;;;;:::o;10019:370:4:-;-1:-1:-1;;;;;10150:19:4;;10142:68;;;;-1:-1:-1;;;10142:68:4;;20608:2:101;10142:68:4;;;20590:21:101;20647:2;20627:18;;;20620:30;20686:34;20666:18;;;20659:62;20757:6;20737:18;;;20730:34;20781:19;;10142:68:4;20580:226:101;10142:68:4;-1:-1:-1;;;;;10228:21:4;;10220:68;;;;-1:-1:-1;;;10220:68:4;;15259:2:101;10220:68:4;;;15241:21:101;15298:2;15278:18;;;15271:30;15337:34;15317:18;;;15310:62;15408:4;15388:18;;;15381:32;15430:19;;10220:68:4;15231:224:101;10220:68:4;-1:-1:-1;;;;;10299:18:4;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10350:32;;22853:25:101;;;10350:32:4;;22826:18:101;10350:32:4;;;;;;;10019:370;;;:::o;7322:713::-;-1:-1:-1;;;;;7457:20:4;;7449:70;;;;-1:-1:-1;;;7449:70:4;;19842:2:101;7449:70:4;;;19824:21:101;19881:2;19861:18;;;19854:30;19920:34;19900:18;;;19893:62;19991:7;19971:18;;;19964:35;20016:19;;7449:70:4;19814:227:101;7449:70:4;-1:-1:-1;;;;;7537:23:4;;7529:71;;;;-1:-1:-1;;;7529:71:4;;14096:2:101;7529:71:4;;;14078:21:101;14135:2;14115:18;;;14108:30;14174:34;14154:18;;;14147:62;14245:5;14225:18;;;14218:33;14268:19;;7529:71:4;14068:225:101;7529:71:4;-1:-1:-1;;;;;7693:17:4;;7669:21;7693:17;;;;;;;;;;;7728:23;;;;7720:74;;;;-1:-1:-1;;;7720:74:4;;15662:2:101;7720:74:4;;;15644:21:101;15701:2;15681:18;;;15674:30;15740:34;15720:18;;;15713:62;15811:8;15791:18;;;15784:36;15837:19;;7720:74:4;15634:228:101;7720:74:4;-1:-1:-1;;;;;7828:17:4;;;: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:4;7945:6;-1:-1:-1;;;;;7936:35:4;;7964:6;7936:35;;;;22853:25:101;;22841:2;22826:18;;22808:76;7936:35:4;;;;;;;;7982:46;20252:230:81;20695:216;-1:-1:-1;;;;;20793:24:81;;20807:10;20793:24;;:67;;-1:-1:-1;;;;;;20821:27:81;;;;;;:15;:27;;;;;;;;20849:10;20821:39;;;;;;;;;;20793:67;20778:128;;;;-1:-1:-1;;;20778:128:81;;19076:2:101;20778:128:81;;;19058:21:101;19115:2;19095:18;;;19088:30;19154:32;19134:18;;;19127:60;19204:18;;20778:128:81;19048:180:101;20778:128:81;20695:216;:::o;17936:167::-;18019:7;18041:57;18057:40;18070:10;18090:5;1765:35:79;;-1:-1:-1;;8333:2:101;8329:15;;;8325:88;1765:35:79;;;8313:101:101;8430:12;;;8423:28;;;1733:7:79;;8467:12:101;;1765:35:79;;;;;;;;;;;;1755:46;;;;;;1748:53;;1653:153;;;;;18057:40:81;18041:15;:57::i;20252:230::-;20356:29;20377:7;20356:20;:29::i;:::-;20391:39;20418:11;20391:26;:39::i;:::-;20437:40;20451:11;20464:3;20469:7;20437:13;:40::i;:::-;20252:230;;;:::o;8311:389:4:-;-1:-1:-1;;;;;8394:21:4;;8386:65;;;;-1:-1:-1;;;8386:65:4;;22549:2:101;8386:65:4;;;22531:21:101;22588:2;22568:18;;;22561:30;22627:33;22607:18;;;22600:61;22678:18;;8386:65:4;22521:181:101;8386:65:4;8538:6;8522:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;8554:18:4;;:9;:18;;;;;;;;;;:28;;8576:6;;8554:9;:28;;8576:6;;8554:28;:::i;:::-;;;;-1:-1:-1;;8597:37:4;;22853:25:101;;;-1:-1:-1;;;;;8597:37:4;;;8614:1;;8597:37;;22841:2:101;22826:18;8597:37:4;22808:76:101;21317:124:81;21402:1;21392:7;:11;21384:52;;;;-1:-1:-1;;;21384:52:81;;16828:2:101;21384:52:81;;;16810:21:101;16867:2;16847:18;;;16840:30;16906;16886:18;;;16879:58;16954:18;;21384:52:81;16800:178:101;912:241:9;1077:68;;-1:-1:-1;;;;;9281:15:101;;;1077:68:9;;;9263:34:101;9333:15;;9313:18;;;9306:43;9365:18;;;9358:34;;;1050:96:9;;1070:5;;1100:27;;9175:18:101;;1077:68:9;;;;-1:-1:-1;;1077:68:9;;;;;;;;;;;;;;;;;;;;;;;;;;;1050:19;:96::i;21045:155:81:-;-1:-1:-1;;;;;21134:24:81;;21126:69;;;;-1:-1:-1;;;21126:69:81;;21782:2:101;21126:69:81;;;21764:21:101;;;21801:18;;;21794:30;21860:34;21840:18;;;21833:62;21912:18;;21126:69:81;21754:182:101;22146:143:81;5302:8;22227:13;:25;;22219:65;;;;-1:-1:-1;;;22219:65:81;;14500:2:101;22219:65:81;;;14482:21:101;14539:2;14519:18;;;14512:30;14578:29;14558:18;;;14551:57;14625:18;;22219:65:81;14472:177:101;21813:171:81;21920:11;-1:-1:-1;;;;;21920:21:81;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;21901:42;;:15;:42;;21893:86;;;;-1:-1:-1;;;21893:86:81;;17546:2:101;21893:86:81;;;17528:21:101;17585:2;17565:18;;;17558:30;17624:33;17604:18;;;17597:61;17675:18;;21893:86:81;17518:181:101;18722:245:81;18878:45;;;-1:-1:-1;;;;;8933:55:101;;18878:45:81;;;;8915:74:101;;;;18878:45:81;;;;;;;;;;8888:18:101;;;;18878:45:81;;;;;;;;;;18827:24;18878:45;;;;;;18827:24;18930:32;18943:11;18878:45;18930:12;:32::i;:::-;;18802:165;;18722:245;;:::o;779:256:79:-;920:18;;858:10;;;;912:53;;-1:-1:-1;;;;;920:18:79;959:5;912:46;:53::i;:::-;972:34;;;;;23252:26:101;23240:39;;972:34:79;;;23222:58:101;876:90:79;;-1:-1:-1;;;;;;972:22:79;;;;;23195:18:101;;972:34:79;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1019:11:79;;779:256;-1:-1:-1;;;;;;779:256:79:o;21553:139:81:-;-1:-1:-1;;;;;21635:17:81;;21627:60;;;;-1:-1:-1;;;21627:60:81;;18315:2:101;21627:60:81;;;18297:21:101;18354:2;18334:18;;;18327:30;18393:32;18373:18;;;18366:60;18443:18;;21627:60:81;18287:180:101;958:332:80;1028:14;1072:5;1050:19;1072:5;1115:24;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1090:49;;1151:9;1146:119;1166:11;1162:1;:15;1146:119;;;1205:53;1242:4;1249:5;;1255:1;1249:8;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;1205:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1205:28:80;;-1:-1:-1;;;1205:53:80:i;:::-;1192:7;1200:1;1192:10;;;;;;;;:::i;:::-;;;;;;:66;;;;1179:3;;;;;:::i;:::-;;;;1146:119;;;-1:-1:-1;1278:7:80;958:332;-1:-1:-1;;;;958:332:80:o;9020:576:4:-;-1:-1:-1;;;;;9103:21:4;;9095:67;;;;-1:-1:-1;;;9095:67:4;;18674:2:101;9095:67:4;;;18656:21:101;18713:2;18693:18;;;18686:30;18752:34;18732:18;;;18725:62;18823:3;18803:18;;;18796:31;18844:19;;9095:67:4;18646:223:101;9095:67:4;-1:-1:-1;;;;;9258:18:4;;9233:22;9258:18;;;;;;;;;;;9294:24;;;;9286:71;;;;-1:-1:-1;;;9286:71:4;;14856:2:101;9286:71:4;;;14838:21:101;14895:2;14875:18;;;14868:30;14934:34;14914:18;;;14907:62;15005:4;14985:18;;;14978:32;15027:19;;9286:71:4;14828:224:101;9286:71:4;-1:-1:-1;;;;;9391:18:4;;: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:4;;22853:25:101;;;9519:1:4;;-1:-1:-1;;;;;9493:37:4;;;;;22841:2:101;22826:18;9493:37:4;;;;;;;20252:230:81;;;:::o;701:205:9:-;840:58;;-1:-1:-1;;;;;10293:55:101;;840:58:9;;;10275:74:101;10365:18;;;10358:34;;;813:86:9;;833:5;;863:23;;10248:18:101;;840:58:9;10230:168:101;1252:167:79;1345:18;;1315:7;;1337:77;;-1:-1:-1;;;;;1345:18:79;1393:5;1408:4;2723::2;2717:11;2753:66;2741:79;;2860:4;2856:25;;;2849:4;2840:14;;2833:49;2918:66;2911:4;2902:14;;2895:90;3021:19;;3014:4;3005:14;;2998:43;3070:4;3061:14;;3054:28;3133:4;3118:20;;;3111:4;3102:14;;3095:44;3191:4;3175:14;;3165:31;;2508:704;19214:269:81;19392:47;;;-1:-1:-1;;;;;10293:55:101;;19392:47:81;;;10275:74:101;10365:18;;;;10358:34;;;19392:47:81;;;;;;;;;;10248:18:101;;;;19392:47:81;;;;;;;;;;19341:24;19392:47;;;;;;19341:24;19446:32;19459:11;19392:47;19446:12;:32::i;3207:706:9:-;3626:23;3652:69;3680:4;3652:69;;;;;;;;;;;;;;;;;3660:5;-1:-1:-1;;;;;3652:27:9;;;:69;;;;;:::i;:::-;3735:17;;3626:95;;-1:-1:-1;3735:21:9;3731:176;;3830:10;3819:30;;;;;;;;;;;;:::i;:::-;3811:85;;;;-1:-1:-1;;;3811:85:9;;21371:2:101;3811:85:9;;;21353:21:101;21410:2;21390:18;;;21383:30;21449:34;21429:18;;;21422:62;21520:12;21500:18;;;21493:40;21550:19;;3811:85:9;21343:232:101;19722:296:81;19872:24;;;19894:1;19872:24;;;;;;;;;19814:14;;19838:31;;19872:24;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;19872:24:81;;;;;;;;;;;;;;;19838:58;;19914:53;;;;;;;;19944:6;-1:-1:-1;;;;;19914:53:81;;;;;19959:5;19914:53;;;19902:6;19909:1;19902:9;;;;;;;;:::i;:::-;;;;;;;;;;:65;19981:32;;;;;-1:-1:-1;;;;;19981:24:81;;;;;:32;;20006:6;;19981:32;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;19981:32:81;;;;;;;;;;;;:::i;:::-;19974:39;19722:296;-1:-1:-1;;;;19722:296:81:o;1848:550:2:-;1932:16;2000:4;1994:11;2030:66;2025:3;2018:79;2143:14;2137:4;2133:25;2126:4;2121:3;2117:14;2110:49;2195:66;2188:4;2183:3;2179:14;2172:90;2309:4;2303;2298:3;2295:1;2287:27;2275:39;-1:-1:-1;;;;;;;2341:22:2;;2333:58;;;;-1:-1:-1;;;2333:58:2;;16069:2:101;2333:58:2;;;16051:21:101;16108:2;16088:18;;;16081:30;16147:25;16127:18;;;16120:53;16190:18;;2333:58:2;16041:173:101;6223:198:12;6306:12;6337:77;6358:6;6366:4;6337:77;;;;;;;;;;;;;;;;;:20;:77::i;3514:223::-;3647:12;3678:52;3700:6;3708:4;3714:1;3717:12;3678:21;:52::i;6607:387::-;6748:12;1087:20;;6772:69;;;;-1:-1:-1;;;6772:69:12;;19435:2:101;6772:69:12;;;19417:21:101;19474:2;19454:18;;;19447:30;19513:34;19493:18;;;19486:62;19584:8;19564:18;;;19557:36;19610:19;;6772:69:12;19407:228:101;6772:69:12;6853:12;6867:23;6894:6;-1:-1:-1;;;;;6894:19:12;6914:4;6894:25;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6852:67;;;;6936:51;6953:7;6962:10;6974:12;6936:16;:51::i;:::-;6929:58;6607:387;-1:-1:-1;;;;;;6607:387:12:o;4601:499::-;4766:12;4823:5;4798:21;:30;;4790:81;;;;-1:-1:-1;;;4790:81:12;;16421:2:101;4790:81:12;;;16403:21:101;16460:2;16440:18;;;16433:30;16499:34;16479:18;;;16472:62;16570:8;16550:18;;;16543:36;16596:19;;4790:81:12;16393:228:101;4790:81:12;1087:20;;4881:60;;;;-1:-1:-1;;;4881:60:12;;21013:2:101;4881:60:12;;;20995:21:101;21052:2;21032:18;;;21025:30;21091:31;21071:18;;;21064:59;21140:18;;4881:60:12;20985:179:101;4881:60:12;4953:12;4967:23;4994:6;-1:-1:-1;;;;;4994:11:12;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:12:o;7214:692::-;7360:12;7388:7;7384:516;;;-1:-1:-1;7418:10:12;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:12;;;;;;;;:::i;14:374:101:-;84:8;94:6;148:3;141:4;133:6;129:17;125:27;115:2;;166:1;163;156:12;115:2;-1:-1:-1;189:20:101;;232:18;221:30;;218:2;;;264:1;261;254:12;218:2;301:4;293:6;289:17;277:29;;361:3;354:4;344:6;341:1;337:14;329:6;325:27;321:38;318:47;315:2;;;378:1;375;368:12;315:2;105:283;;;;;:::o;393:247::-;452:6;505:2;493:9;484:7;480:23;476:32;473:2;;;521:1;518;511:12;473:2;560:9;547:23;579:31;604:5;579:31;:::i;645:251::-;715:6;768:2;756:9;747:7;743:23;739:32;736:2;;;784:1;781;774:12;736:2;816:9;810:16;835:31;860:5;835:31;:::i;901:388::-;969:6;977;1030:2;1018:9;1009:7;1005:23;1001:32;998:2;;;1046:1;1043;1036:12;998:2;1085:9;1072:23;1104:31;1129:5;1104:31;:::i;:::-;1154:5;-1:-1:-1;1211:2:101;1196:18;;1183:32;1224:33;1183:32;1224:33;:::i;:::-;1276:7;1266:17;;;988:301;;;;;:::o;1294:456::-;1371:6;1379;1387;1440:2;1428:9;1419:7;1415:23;1411:32;1408:2;;;1456:1;1453;1446:12;1408:2;1495:9;1482:23;1514:31;1539:5;1514:31;:::i;:::-;1564:5;-1:-1:-1;1621:2:101;1606:18;;1593:32;1634:33;1593:32;1634:33;:::i;:::-;1398:352;;1686:7;;-1:-1:-1;;;1740:2:101;1725:18;;;;1712:32;;1398:352::o;1755:382::-;1820:6;1828;1881:2;1869:9;1860:7;1856:23;1852:32;1849:2;;;1897:1;1894;1887:12;1849:2;1936:9;1923:23;1955:31;1980:5;1955:31;:::i;:::-;2005:5;-1:-1:-1;2062:2:101;2047:18;;2034:32;2075:30;2034:32;2075:30;:::i;2142:315::-;2210:6;2218;2271:2;2259:9;2250:7;2246:23;2242:32;2239:2;;;2287:1;2284;2277:12;2239:2;2326:9;2313:23;2345:31;2370:5;2345:31;:::i;:::-;2395:5;2447:2;2432:18;;;;2419:32;;-1:-1:-1;;;2229:228:101:o;2462:596::-;2547:6;2555;2563;2571;2624:3;2612:9;2603:7;2599:23;2595:33;2592:2;;;2641:1;2638;2631:12;2592:2;2680:9;2667:23;2699:31;2724:5;2699:31;:::i;:::-;2749:5;-1:-1:-1;2801:2:101;2786:18;;2773:32;;-1:-1:-1;2857:2:101;2842:18;;2829:32;2870:33;2829:32;2870:33;:::i;:::-;2922:7;-1:-1:-1;2981:2:101;2966:18;;2953:32;2994;2953;2994;:::i;:::-;2582:476;;;;-1:-1:-1;2582:476:101;;-1:-1:-1;;2582:476:101:o;3063:383::-;3140:6;3148;3156;3209:2;3197:9;3188:7;3184:23;3180:32;3177:2;;;3225:1;3222;3215:12;3177:2;3264:9;3251:23;3283:31;3308:5;3283:31;:::i;:::-;3333:5;3385:2;3370:18;;3357:32;;-1:-1:-1;3436:2:101;3421:18;;;3408:32;;3167:279;-1:-1:-1;;;3167:279:101:o;3451:455::-;3548:6;3556;3609:2;3597:9;3588:7;3584:23;3580:32;3577:2;;;3625:1;3622;3615:12;3577:2;3665:9;3652:23;3698:18;3690:6;3687:30;3684:2;;;3730:1;3727;3720:12;3684:2;3769:77;3838:7;3829:6;3818:9;3814:22;3769:77;:::i;:::-;3865:8;;3743:103;;-1:-1:-1;3567:339:101;-1:-1:-1;;;;3567:339:101:o;3911:1589::-;4015:6;4046:2;4089;4077:9;4068:7;4064:23;4060:32;4057:2;;;4105:1;4102;4095:12;4057:2;4138:9;4132:16;4167:18;4208:2;4200:6;4197:14;4194:2;;;4224:1;4221;4214:12;4194:2;4262:6;4251:9;4247:22;4237:32;;4288:4;4328:7;4323:2;4319;4315:11;4311:25;4301:2;;4350:1;4347;4340:12;4301:2;4379;4373:9;4401:2;4397;4394:10;4391:2;;;4407:18;;:::i;:::-;4453:2;4450:1;4446:10;4476:28;4500:2;4496;4492:11;4476:28;:::i;:::-;4538:15;;;4569:12;;;;4601:11;;;4631;;;4627:20;;4624:33;-1:-1:-1;4621:2:101;;;4670:1;4667;4660:12;4621:2;4692:1;4683:10;;4702:768;4716:2;4713:1;4710:9;4702:768;;;4786:3;4780:10;4822:2;4809:11;4806:19;4803:2;;;4838:1;4835;4828:12;4803:2;4865:20;;4920:2;4912:11;;4908:25;-1:-1:-1;4898:2:101;;4947:1;4944;4937:12;4898:2;4988;4984;4980:11;4974:18;5015:2;5040;5036;5033:10;5030:2;;;5046:18;;:::i;:::-;5092:110;5198:2;-1:-1:-1;;5124:2:101;5120;5116:11;5112:84;5108:93;5092:110;:::i;:::-;5229:2;5222:5;5215:17;5273:7;5268:2;5263;5259;5255:11;5251:20;5248:33;5245:2;;;5294:1;5291;5284:12;5245:2;5311:54;5362:2;5357;5350:5;5346:14;5341:2;5337;5333:11;5311:54;:::i;:::-;5378:18;;-1:-1:-1;;;4734:1:101;4727:9;;;;;5416:12;;;;5448;;4702:768;;;-1:-1:-1;5489:5:101;4026:1474;-1:-1:-1;;;;;;;;;;4026:1474:101:o;5505:245::-;5572:6;5625:2;5613:9;5604:7;5600:23;5596:32;5593:2;;;5641:1;5638;5631:12;5593:2;5673:9;5667:16;5692:28;5714:5;5692:28;:::i;5755:184::-;5825:6;5878:2;5866:9;5857:7;5853:23;5849:32;5846:2;;;5894:1;5891;5884:12;5846:2;-1:-1:-1;5917:16:101;;5836:103;-1:-1:-1;5836:103:101:o;5944:744::-;6089:6;6097;6105;6113;6157:9;6148:7;6144:23;6187:3;6183:2;6179:12;6176:2;;;6204:1;6201;6194:12;6176:2;6240:9;6227:23;6217:33;;6343:3;-1:-1:-1;;6270:2:101;6266:75;6262:85;6259:2;;;6360:1;6357;6350:12;6259:2;;6398;6387:9;6383:18;6373:28;;6452:3;6441:9;6437:19;6424:33;6480:18;6472:6;6469:30;6466:2;;;6512:1;6509;6502:12;6466:2;6551:77;6620:7;6611:6;6600:9;6596:22;6551:77;:::i;:::-;6124:564;;;;-1:-1:-1;6647:8:101;-1:-1:-1;;;;6124:564:101:o;6693:383::-;6770:6;6778;6786;6839:2;6827:9;6818:7;6814:23;6810:32;6807:2;;;6855:1;6852;6845:12;6807:2;6891:9;6878:23;6868:33;;6948:2;6937:9;6933:18;6920:32;6910:42;;7002:2;6991:9;6987:18;6974:32;7015:31;7040:5;7015:31;:::i;:::-;7065:5;7055:15;;;6797:279;;;;;:::o;7081:243::-;7138:6;7191:2;7179:9;7170:7;7166:23;7162:32;7159:2;;;7207:1;7204;7197:12;7159:2;7246:9;7233:23;7265:29;7288:5;7265:29;:::i;7329:247::-;7397:6;7450:2;7438:9;7429:7;7425:23;7421:32;7418:2;;;7466:1;7463;7456:12;7418:2;7498:9;7492:16;7517:29;7540:5;7517:29;:::i;7581:249::-;7650:6;7703:2;7691:9;7682:7;7678:23;7674:32;7671:2;;;7719:1;7716;7709:12;7671:2;7751:9;7745:16;7770:30;7794:5;7770:30;:::i;7835:316::-;7876:3;7914:5;7908:12;7941:6;7936:3;7929:19;7957:63;8013:6;8006:4;8001:3;7997:14;7990:4;7983:5;7979:16;7957:63;:::i;:::-;8065:2;8053:15;-1:-1:-1;;8049:88:101;8040:98;;;;8140:4;8036:109;;7884:267;-1:-1:-1;;7884:267:101:o;8490:274::-;8619:3;8657:6;8651:13;8673:53;8719:6;8714:3;8707:4;8699:6;8695:17;8673:53;:::i;:::-;8742:16;;;;;8627:137;-1:-1:-1;;8627:137:101:o;10403:859::-;10563:4;10592:2;10632;10621:9;10617:18;10662:2;10651:9;10644:21;10685:6;10720;10714:13;10751:6;10743;10736:22;10789:2;10778:9;10774:18;10767:25;;10851:2;10841:6;10838:1;10834:14;10823:9;10819:30;10815:39;10801:53;;10889:2;10881:6;10877:15;10910:1;10920:313;10934:6;10931:1;10928:13;10920:313;;;-1:-1:-1;;11011:9:101;11003:6;10999:22;10995:95;10990:3;10983:108;11114:39;11146:6;11137;11131:13;11114:39;:::i;:::-;11104:49;-1:-1:-1;11211:12:101;;;;11176:15;;;;10956:1;10949:9;10920:313;;;-1:-1:-1;11250:6:101;;10572:690;-1:-1:-1;;;;;;;10572:690:101:o;11267:1130::-;11455:4;11484:2;11524;11513:9;11509:18;11554:2;11543:9;11536:21;11577:6;11612;11606:13;11643:6;11635;11628:22;11669:2;11659:12;;11702:2;11691:9;11687:18;11680:25;;11764:2;11754:6;11751:1;11747:14;11736:9;11732:30;11728:39;11802:2;11794:6;11790:15;11823:1;11833:535;11847:6;11844:1;11841:13;11833:535;;;11912:22;;;-1:-1:-1;;11908:95:101;11896:108;;12027:13;;12072:9;;-1:-1:-1;;;;;12068:58:101;12053:74;;12166:11;;12160:18;12198:15;;;12191:27;;;12241:47;12272:15;;;12160:18;12241:47;:::i;:::-;12346:12;;;;12231:57;-1:-1:-1;;12311:15:101;;;;11869:1;11862:9;11833:535;;;-1:-1:-1;12385:6:101;;11464:933;-1:-1:-1;;;;;;;;11464:933:101:o;13670:219::-;13819:2;13808:9;13801:21;13782:4;13839:44;13879:2;13868:9;13864:18;13856:6;13839:44;:::i;24078:580::-;24155:4;24161:6;24221:11;24208:25;24311:66;24300:8;24284:14;24280:29;24276:102;24256:18;24252:127;24242:2;;24393:1;24390;24383:12;24242:2;24420:33;;24472:20;;;-1:-1:-1;24515:18:101;24504:30;;24501:2;;;24547:1;24544;24537:12;24501:2;24580:4;24568:17;;-1:-1:-1;24611:14:101;24607:27;;;24597:38;;24594:2;;;24648:1;24645;24638:12;24663:334;24734:2;24728:9;24790:2;24780:13;;-1:-1:-1;;24776:86:101;24764:99;;24893:18;24878:34;;24914:22;;;24875:62;24872:2;;;24940:18;;:::i;:::-;24976:2;24969:22;24708:289;;-1:-1:-1;24708:289:101:o;25002:128::-;25042:3;25073:1;25069:6;25066:1;25063:13;25060:2;;;25079:18;;:::i;:::-;-1:-1:-1;25115:9:101;;25050:80::o;25135:125::-;25175:4;25203:1;25200;25197:8;25194:2;;;25208:18;;:::i;:::-;-1:-1:-1;25245:9:101;;25184:76::o;25265:258::-;25337:1;25347:113;25361:6;25358:1;25355:13;25347:113;;;25437:11;;;25431:18;25418:11;;;25411:39;25383:2;25376:10;25347:113;;;25478:6;25475:1;25472:13;25469:2;;;-1:-1:-1;;25513:1:101;25495:16;;25488:27;25318:205::o;25528:437::-;25607:1;25603:12;;;;25650;;;25671:2;;25725:4;25717:6;25713:17;25703:27;;25671:2;25778;25770:6;25767:14;25747:18;25744:38;25741:2;;;-1:-1:-1;;;25812:1:101;25805:88;25916:4;25913:1;25906:15;25944:4;25941:1;25934:15;25741:2;;25583:382;;;:::o;25970:195::-;26009:3;26040:66;26033:5;26030:77;26027:2;;;26110:18;;:::i;:::-;-1:-1:-1;26157:1:101;26146:13;;26017:148::o;26170:184::-;-1:-1:-1;;;26219:1:101;26212:88;26319:4;26316:1;26309:15;26343:4;26340:1;26333:15;26359:184;-1:-1:-1;;;26408:1:101;26401:88;26508:4;26505:1;26498:15;26532:4;26529:1;26522:15;26548:184;-1:-1:-1;;;26597:1:101;26590:88;26697:4;26694:1;26687:15;26721:4;26718:1;26711:15;26737:154;-1:-1:-1;;;;;26816:5:101;26812:54;26805:5;26802:65;26792:2;;26881:1;26878;26871:12;26896:118;26982:5;26975:13;26968:21;26961:5;26958:32;26948:2;;27004:1;27001;26994:12;27019:114;27103:4;27096:5;27092:16;27085:5;27082:27;27072:2;;27123:1;27120;27113:12;27138:137;27223:26;27216:5;27212:38;27205:5;27202:49;27192:2;;27265:1;27262;27255:12"
            },
            "gasEstimates": {
              "creation": {
                "codeDepositCost": "2269000",
                "executionCost": "infinite",
                "totalCost": "infinite"
              },
              "external": {
                "MAX_LOCK()": "285",
                "allowance(address,address)": "infinite",
                "approve(address,uint256)": "24682",
                "balanceOf(address)": "2645",
                "computeDelegationAddress(address,uint256)": "infinite",
                "createDelegation(address,uint256,address,uint96)": "infinite",
                "decimals()": "infinite",
                "decreaseAllowance(address,uint256)": "26971",
                "delegationInstance()": "2405",
                "fundDelegation(address,uint256,uint256)": "infinite",
                "fundDelegationFromStake(address,uint256,uint256)": "infinite",
                "getDelegation(address,uint256)": "infinite",
                "increaseAllowance(address,uint256)": "27041",
                "isRepresentativeOf(address,address)": "infinite",
                "multicall(bytes[])": "infinite",
                "name()": "infinite",
                "permitAndMulticall(uint256,(uint256,uint8,bytes32,bytes32),bytes[])": "infinite",
                "setRepresentative(address,bool)": "infinite",
                "stake(address,uint256)": "infinite",
                "symbol()": "infinite",
                "ticket()": "infinite",
                "totalSupply()": "2327",
                "transfer(address,uint256)": "51283",
                "transferDelegationTo(uint256,uint256,address)": "infinite",
                "transferFrom(address,address,uint256)": "infinite",
                "unstake(address,uint256)": "infinite",
                "updateDelegatee(address,uint256,address,uint96)": "infinite",
                "withdrawDelegationToStake(address,uint256,uint256)": "infinite"
              },
              "internal": {
                "_computeAddress(address,uint256)": "infinite",
                "_computeLockUntil(uint96)": "infinite",
                "_executeCall(contract Delegation,bytes memory)": "infinite",
                "_requireAmountGtZero(uint256)": "infinite",
                "_requireDelegateeNotZeroAddress(address)": "infinite",
                "_requireDelegationUnlocked(contract Delegation)": "infinite",
                "_requireDelegatorOrRepresentative(address)": "infinite",
                "_requireLockDuration(uint256)": "infinite",
                "_requireRecipientNotZeroAddress(address)": "infinite",
                "_setDelegateeCall(contract Delegation,address)": "infinite",
                "_transfer(contract Delegation,address,uint256)": "infinite",
                "_transferCall(contract Delegation,address,uint256)": "infinite"
              }
            },
            "methodIdentifiers": {
              "MAX_LOCK()": "65a5d5f0",
              "allowance(address,address)": "dd62ed3e",
              "approve(address,uint256)": "095ea7b3",
              "balanceOf(address)": "70a08231",
              "computeDelegationAddress(address,uint256)": "e7880ae1",
              "createDelegation(address,uint256,address,uint96)": "889de805",
              "decimals()": "313ce567",
              "decreaseAllowance(address,uint256)": "a457c2d7",
              "delegationInstance()": "63fc611f",
              "fundDelegation(address,uint256,uint256)": "666f7af6",
              "fundDelegationFromStake(address,uint256,uint256)": "e18fa6eb",
              "getDelegation(address,uint256)": "ca40edf1",
              "increaseAllowance(address,uint256)": "39509351",
              "isRepresentativeOf(address,address)": "90ab0885",
              "multicall(bytes[])": "ac9650d8",
              "name()": "06fdde03",
              "permitAndMulticall(uint256,(uint256,uint8,bytes32,bytes32),bytes[])": "06452792",
              "setRepresentative(address,bool)": "982b1f2f",
              "stake(address,uint256)": "adc9772e",
              "symbol()": "95d89b41",
              "ticket()": "6cc25db7",
              "totalSupply()": "18160ddd",
              "transfer(address,uint256)": "a9059cbb",
              "transferDelegationTo(uint256,uint256,address)": "8b4b4ec9",
              "transferFrom(address,address,uint256)": "23b872dd",
              "unstake(address,uint256)": "c2a672e0",
              "updateDelegatee(address,uint256,address,uint96)": "6c59f295",
              "withdrawDelegationToStake(address,uint256,uint256)": "5f665011"
            }
          },
          "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\":\"contract ITicket\",\"name\":\"_ticket\",\"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\":\"uint256\",\"name\":\"slot\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"delegatee\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint96\",\"name\":\"lockUntil\",\"type\":\"uint96\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"}],\"name\":\"DelegateeUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"delegator\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"slot\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint96\",\"name\":\"lockUntil\",\"type\":\"uint96\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"delegatee\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"contract Delegation\",\"name\":\"delegation\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"}],\"name\":\"DelegationCreated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"delegator\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"slot\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"}],\"name\":\"DelegationFunded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"delegator\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"slot\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"}],\"name\":\"DelegationFundedFromStake\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"delegator\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"representative\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"set\",\"type\":\"bool\"}],\"name\":\"RepresentativeSet\",\"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\":\"delegator\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"TicketsStaked\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"delegator\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"TicketsUnstaked\",\"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\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"delegator\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"slot\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"}],\"name\":\"TransferredDelegation\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"delegator\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"slot\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"}],\"name\":\"WithdrewDelegationToStake\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"MAX_LOCK\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"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\":[{\"internalType\":\"address\",\"name\":\"_delegator\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_slot\",\"type\":\"uint256\"}],\"name\":\"computeDelegationAddress\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_delegator\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_slot\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"_delegatee\",\"type\":\"address\"},{\"internalType\":\"uint96\",\"name\":\"_lockDuration\",\"type\":\"uint96\"}],\"name\":\"createDelegation\",\"outputs\":[{\"internalType\":\"contract Delegation\",\"name\":\"\",\"type\":\"address\"}],\"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\":[],\"name\":\"delegationInstance\",\"outputs\":[{\"internalType\":\"contract Delegation\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_delegator\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_slot\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"fundDelegation\",\"outputs\":[{\"internalType\":\"contract Delegation\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_delegator\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_slot\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"fundDelegationFromStake\",\"outputs\":[{\"internalType\":\"contract Delegation\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_delegator\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_slot\",\"type\":\"uint256\"}],\"name\":\"getDelegation\",\"outputs\":[{\"internalType\":\"contract Delegation\",\"name\":\"delegation\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"delegatee\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lockUntil\",\"type\":\"uint256\"},{\"internalType\":\"bool\",\"name\":\"wasCreated\",\"type\":\"bool\"}],\"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\":[{\"internalType\":\"address\",\"name\":\"_delegator\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"_representative\",\"type\":\"address\"}],\"name\":\"isRepresentativeOf\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes[]\",\"name\":\"_data\",\"type\":\"bytes[]\"}],\"name\":\"multicall\",\"outputs\":[{\"internalType\":\"bytes[]\",\"name\":\"\",\"type\":\"bytes[]\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"},{\"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 PermitAndMulticall.Signature\",\"name\":\"_permitSignature\",\"type\":\"tuple\"},{\"internalType\":\"bytes[]\",\"name\":\"_data\",\"type\":\"bytes[]\"}],\"name\":\"permitAndMulticall\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_representative\",\"type\":\"address\"},{\"internalType\":\"bool\",\"name\":\"_set\",\"type\":\"bool\"}],\"name\":\"setRepresentative\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"stake\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"ticket\",\"outputs\":[{\"internalType\":\"contract ITicket\",\"name\":\"\",\"type\":\"address\"}],\"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\":\"uint256\",\"name\":\"_slot\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"}],\"name\":\"transferDelegationTo\",\"outputs\":[{\"internalType\":\"contract Delegation\",\"name\":\"\",\"type\":\"address\"}],\"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\":\"address\",\"name\":\"_to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"unstake\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_delegator\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_slot\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"_delegatee\",\"type\":\"address\"},{\"internalType\":\"uint96\",\"name\":\"_lockDuration\",\"type\":\"uint96\"}],\"name\":\"updateDelegatee\",\"outputs\":[{\"internalType\":\"contract Delegation\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_delegator\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_slot\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"withdrawDelegationToStake\",\"outputs\":[{\"internalType\":\"contract Delegation\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"events\":{\"DelegateeUpdated(address,uint256,address,uint96,address)\":{\"params\":{\"delegatee\":\"Address of the delegatee\",\"delegator\":\"Address of the delegator\",\"lockUntil\":\"Timestamp until which the delegation is locked\",\"slot\":\"Slot of the delegation\",\"user\":\"Address of the user who updated the delegatee\"}},\"DelegationCreated(address,uint256,uint96,address,address,address)\":{\"params\":{\"delegatee\":\"Address of the delegatee\",\"delegation\":\"Address of the delegation that was created\",\"delegator\":\"Delegator of the delegation\",\"lockUntil\":\"Timestamp until which the delegation is locked\",\"slot\":\"Slot of the delegation\",\"user\":\"Address of the user who created the delegation\"}},\"DelegationFunded(address,uint256,uint256,address)\":{\"params\":{\"amount\":\"Amount of tickets that were sent to the delegation\",\"delegator\":\"Address of the delegator\",\"slot\":\"Slot of the delegation\",\"user\":\"Address of the user who funded the delegation\"}},\"DelegationFundedFromStake(address,uint256,uint256,address)\":{\"params\":{\"amount\":\"Amount of tickets that were sent to the delegation\",\"delegator\":\"Address of the delegator\",\"slot\":\"Slot of the delegation\",\"user\":\"Address of the user who pulled funds from the delegator stake to the delegation\"}},\"RepresentativeSet(address,address,bool)\":{\"params\":{\"delegator\":\"Address of the delegator\",\"representative\":\"Address of the representative\",\"set\":\"Boolean indicating if the representative was set or unset\"}},\"TicketSet(address)\":{\"params\":{\"ticket\":\"Address of the ticket\"}},\"TicketsStaked(address,uint256)\":{\"params\":{\"amount\":\"Amount of tickets staked\",\"delegator\":\"Address of the delegator\"}},\"TicketsUnstaked(address,address,uint256)\":{\"params\":{\"amount\":\"Amount of tickets unstaked\",\"delegator\":\"Address of the delegator\",\"recipient\":\"Address of the recipient that will receive the tickets\"}},\"TransferredDelegation(address,uint256,uint256,address)\":{\"params\":{\"amount\":\"Amount of tickets withdrawn\",\"delegator\":\"Address of the delegator\",\"slot\":\"Slot of the delegation\",\"to\":\"Recipient address of withdrawn tickets\"}},\"WithdrewDelegationToStake(address,uint256,uint256,address)\":{\"params\":{\"amount\":\"Amount of tickets withdrawn\",\"delegator\":\"Address of the delegator\",\"slot\":\"Slot of the delegation\",\"user\":\"Address of the user who withdrew the tickets\"}}},\"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}.\"},\"computeDelegationAddress(address,uint256)\":{\"params\":{\"_delegator\":\"The user who is delegating tickets\",\"_slot\":\"The delegation slot\"},\"returns\":{\"_0\":\"The address of the delegation.  This is the address that holds the balance of tickets.\"}},\"constructor\":{\"params\":{\"_ticket\":\"Address of the ticket contract\",\"name_\":\"The name for the staked ticket token\",\"symbol_\":\"The symbol for the staked ticket token\"}},\"createDelegation(address,uint256,address,uint96)\":{\"details\":\"The `_delegator` and `_slot` params are used to compute the salt of the delegation\",\"params\":{\"_delegatee\":\"Address of the delegatee\",\"_delegator\":\"Address of the delegator that will be able to handle the delegation\",\"_lockDuration\":\"Duration of time for which the delegation is locked. Must be less than the max duration.\",\"_slot\":\"Slot of the delegation\"},\"returns\":{\"_0\":\"Returns the address of the Delegation contract that will hold the tickets\"}},\"decimals()\":{\"details\":\"This value is equal to the decimals of the ticket being delegated.\",\"returns\":{\"_0\":\"ERC20 token 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`.\"},\"fundDelegation(address,uint256,uint256)\":{\"details\":\"Callable by anyone.Will revert if delegation does not exist.\",\"params\":{\"_amount\":\"Amount of tickets to transfer\",\"_delegator\":\"Address of the delegator\",\"_slot\":\"Slot of the delegation\"},\"returns\":{\"_0\":\"The address of the Delegation\"}},\"fundDelegationFromStake(address,uint256,uint256)\":{\"details\":\"Callable only by the `_delegator` or a representative.Will revert if delegation does not exist.Will revert if `_amount` is greater than the staked amount.\",\"params\":{\"_amount\":\"Amount of tickets to send to the delegation from the staked amount\",\"_delegator\":\"Address of the delegator\",\"_slot\":\"Slot of the delegation\"},\"returns\":{\"_0\":\"The address of the Delegation\"}},\"getDelegation(address,uint256)\":{\"params\":{\"_delegator\":\"The delegator address\",\"_slot\":\"The delegation slot they are using\"},\"returns\":{\"balance\":\"The balance of tickets in the delegation\",\"delegatee\":\"The address that tickets are being delegated to\",\"delegation\":\"The address that holds tickets for the delegation\",\"lockUntil\":\"The timestamp at which the delegation unlocks\",\"wasCreated\":\"Whether or not the delegation has been created\"}},\"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.\"},\"isRepresentativeOf(address,address)\":{\"params\":{\"_delegator\":\"The delegator\",\"_representative\":\"The representative to check for\"},\"returns\":{\"_0\":\"True if the rep is a rep, false otherwise\"}},\"multicall(bytes[])\":{\"params\":{\"_data\":\"An array of encoded function calls.  The calls must be abi-encoded calls to this contract.\"},\"returns\":{\"_0\":\"The results from each function call\"}},\"name()\":{\"details\":\"Returns the name of the token.\"},\"permitAndMulticall(uint256,(uint256,uint8,bytes32,bytes32),bytes[])\":{\"params\":{\"_amount\":\"Amount of tickets to approve\",\"_data\":\"Datas to call with `functionDelegateCall`\",\"_permitSignature\":\"Permit signature\"}},\"setRepresentative(address,bool)\":{\"details\":\"If `_set` is `true`, `_representative` will be set as representative of `msg.sender`.If `_set` is `false`, `_representative` will be unset as representative of `msg.sender`.\",\"params\":{\"_representative\":\"Address of the representative\",\"_set\":\"Set or unset the representative\"}},\"stake(address,uint256)\":{\"details\":\"Tickets can be staked on behalf of a `_to` user.\",\"params\":{\"_amount\":\"Amount of tickets to stake\",\"_to\":\"Address to which the stake will be attributed\"}},\"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`.\"},\"transferDelegationTo(uint256,uint256,address)\":{\"details\":\"Tickets are sent directly to the passed `_to` address.Will revert if delegation is still locked.\",\"params\":{\"_amount\":\"Amount to withdraw\",\"_slot\":\"Slot of the delegation\",\"_to\":\"Account to transfer the withdrawn tickets to\"},\"returns\":{\"_0\":\"The address of the Delegation\"}},\"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`.\"},\"unstake(address,uint256)\":{\"details\":\"If delegator has delegated his whole stake, he will first have to withdraw from a delegation to be able to unstake.\",\"params\":{\"_amount\":\"Amount of tickets to unstake\",\"_to\":\"Address of the recipient that will receive the tickets\"}},\"updateDelegatee(address,uint256,address,uint96)\":{\"details\":\"Only callable by the `_delegator` or their representative.Will revert if delegation is still locked.\",\"params\":{\"_delegatee\":\"Address of the delegatee\",\"_delegator\":\"Address of the delegator\",\"_lockDuration\":\"Duration of time during which the delegatee cannot be changed nor withdrawn\",\"_slot\":\"Slot of the delegation\"},\"returns\":{\"_0\":\"The address of the Delegation\"}},\"withdrawDelegationToStake(address,uint256,uint256)\":{\"details\":\"Only callable by the `_delegator` or a representative.Will send the tickets to this contract and increase the `_delegator` staked amount.Will revert if delegation is still locked.\",\"params\":{\"_amount\":\"Amount of tickets to withdraw\",\"_delegator\":\"Address of the delegator\",\"_slot\":\"Slot of the delegation\"},\"returns\":{\"_0\":\"The address of the Delegation\"}}},\"stateVariables\":{\"representatives\":{\"details\":\"Representative can only handle delegation and cannot withdraw tickets to their wallet.delegator => representative => bool allowing representative to represent the delegator\"}},\"title\":\"Delegate chances to win to multiple accounts.\",\"version\":1},\"userdoc\":{\"events\":{\"DelegateeUpdated(address,uint256,address,uint96,address)\":{\"notice\":\"Emitted when a delegatee is updated.\"},\"DelegationCreated(address,uint256,uint96,address,address,address)\":{\"notice\":\"Emitted when a new delegation is created.\"},\"DelegationFunded(address,uint256,uint256,address)\":{\"notice\":\"Emitted when a delegation is funded.\"},\"DelegationFundedFromStake(address,uint256,uint256,address)\":{\"notice\":\"Emitted when a delegation is funded from the staked amount.\"},\"RepresentativeSet(address,address,bool)\":{\"notice\":\"Emitted when a representative is set.\"},\"TicketSet(address)\":{\"notice\":\"Emitted when ticket associated with this contract has been set.\"},\"TicketsStaked(address,uint256)\":{\"notice\":\"Emitted when tickets have been staked.\"},\"TicketsUnstaked(address,address,uint256)\":{\"notice\":\"Emitted when tickets have been unstaked.\"},\"TransferredDelegation(address,uint256,uint256,address)\":{\"notice\":\"Emitted when a delegator withdraws an amount of tickets from a delegation to a specified wallet.\"},\"WithdrewDelegationToStake(address,uint256,uint256,address)\":{\"notice\":\"Emitted when an amount of tickets has been withdrawn from a delegation. The tickets are held by this contract and the delegator stake is increased.\"}},\"kind\":\"user\",\"methods\":{\"MAX_LOCK()\":{\"notice\":\"Max lock time during which a delegation cannot be updated.\"},\"computeDelegationAddress(address,uint256)\":{\"notice\":\"Computes the address of the delegation for the delegator + slot combination.\"},\"constructor\":{\"notice\":\"Creates a new TWAB Delegator that is bound to the given ticket contract.\"},\"createDelegation(address,uint256,address,uint96)\":{\"notice\":\"Creates a new delegation. This will create a new Delegation contract for the given slot and have it delegate its tickets to the given delegatee. If a non-zero lock duration is passed, then the delegatee cannot be changed, nor funding withdrawn, until the lock has expired.\"},\"decimals()\":{\"notice\":\"Returns the ERC20 token decimals.\"},\"delegationInstance()\":{\"notice\":\"The instance to which all proxies will point.\"},\"fundDelegation(address,uint256,uint256)\":{\"notice\":\"Fund a delegation by transferring tickets from the caller to the delegation.\"},\"fundDelegationFromStake(address,uint256,uint256)\":{\"notice\":\"Fund a delegation using the `_delegator` stake.\"},\"getDelegation(address,uint256)\":{\"notice\":\"Allows the caller to easily get the details for a delegation.\"},\"isRepresentativeOf(address,address)\":{\"notice\":\"Returns whether or not the given rep is a representative of the delegator.\"},\"multicall(bytes[])\":{\"notice\":\"Allows a user to call multiple functions on the same contract.  Useful for EOA who wants to batch transactions.\"},\"permitAndMulticall(uint256,(uint256,uint8,bytes32,bytes32),bytes[])\":{\"notice\":\"Alow a user to approve ticket and run various calls in one transaction.\"},\"setRepresentative(address,bool)\":{\"notice\":\"Allow an account to set or unset a `_representative` to handle delegation.\"},\"stake(address,uint256)\":{\"notice\":\"Stake `_amount` of tickets in this contract.\"},\"ticket()\":{\"notice\":\"Prize pool ticket to which this contract is tied to.\"},\"transferDelegationTo(uint256,uint256,address)\":{\"notice\":\"Withdraw an `_amount` of tickets from a delegation. The delegator is assumed to be the caller.\"},\"unstake(address,uint256)\":{\"notice\":\"Unstake `_amount` of tickets from this contract. Transfers ticket to the passed `_to` address.\"},\"updateDelegatee(address,uint256,address,uint96)\":{\"notice\":\"Updates the delegatee and lock duration for a delegation slot.\"},\"withdrawDelegationToStake(address,uint256,uint256)\":{\"notice\":\"Withdraw tickets from a delegation. The tickets will be held by this contract and the delegator's stake will increase.\"}},\"notice\":\"This contract allows accounts to easily delegate a portion of their tickets to multiple delegatees. The delegatees chance of winning prizes is increased by the delegated amount. If a delegator doesn't want to actively manage the delegations, then they can stake on the contract and appoint representatives.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@pooltogether/v4-twab-delegator/contracts/TWABDelegator.sol\":\"TWABDelegator\"},\"evmVersion\":\"berlin\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":2000},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/proxy/Clones.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts v4.4.1 (proxy/Clones.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev https://eips.ethereum.org/EIPS/eip-1167[EIP 1167] is a standard for\\n * deploying minimal proxy contracts, also known as \\\"clones\\\".\\n *\\n * > To simply and cheaply clone contract functionality in an immutable way, this standard specifies\\n * > a minimal bytecode implementation that delegates all calls to a known, fixed address.\\n *\\n * The library includes functions to deploy a proxy using either `create` (traditional deployment) or `create2`\\n * (salted deterministic deployment). It also includes functions to predict the addresses of clones deployed using the\\n * deterministic method.\\n *\\n * _Available since v3.4._\\n */\\nlibrary Clones {\\n    /**\\n     * @dev Deploys and returns the address of a clone that mimics the behaviour of `implementation`.\\n     *\\n     * This function uses the create opcode, which should never revert.\\n     */\\n    function clone(address implementation) internal returns (address instance) {\\n        assembly {\\n            let ptr := mload(0x40)\\n            mstore(ptr, 0x3d602d80600a3d3981f3363d3d373d3d3d363d73000000000000000000000000)\\n            mstore(add(ptr, 0x14), shl(0x60, implementation))\\n            mstore(add(ptr, 0x28), 0x5af43d82803e903d91602b57fd5bf30000000000000000000000000000000000)\\n            instance := create(0, ptr, 0x37)\\n        }\\n        require(instance != address(0), \\\"ERC1167: create failed\\\");\\n    }\\n\\n    /**\\n     * @dev Deploys and returns the address of a clone that mimics the behaviour of `implementation`.\\n     *\\n     * This function uses the create2 opcode and a `salt` to deterministically deploy\\n     * the clone. Using the same `implementation` and `salt` multiple time will revert, since\\n     * the clones cannot be deployed twice at the same address.\\n     */\\n    function cloneDeterministic(address implementation, bytes32 salt) internal returns (address instance) {\\n        assembly {\\n            let ptr := mload(0x40)\\n            mstore(ptr, 0x3d602d80600a3d3981f3363d3d373d3d3d363d73000000000000000000000000)\\n            mstore(add(ptr, 0x14), shl(0x60, implementation))\\n            mstore(add(ptr, 0x28), 0x5af43d82803e903d91602b57fd5bf30000000000000000000000000000000000)\\n            instance := create2(0, ptr, 0x37, salt)\\n        }\\n        require(instance != address(0), \\\"ERC1167: create2 failed\\\");\\n    }\\n\\n    /**\\n     * @dev Computes the address of a clone deployed using {Clones-cloneDeterministic}.\\n     */\\n    function predictDeterministicAddress(\\n        address implementation,\\n        bytes32 salt,\\n        address deployer\\n    ) internal pure returns (address predicted) {\\n        assembly {\\n            let ptr := mload(0x40)\\n            mstore(ptr, 0x3d602d80600a3d3981f3363d3d373d3d3d363d73000000000000000000000000)\\n            mstore(add(ptr, 0x14), shl(0x60, implementation))\\n            mstore(add(ptr, 0x28), 0x5af43d82803e903d91602b57fd5bf3ff00000000000000000000000000000000)\\n            mstore(add(ptr, 0x38), shl(0x60, deployer))\\n            mstore(add(ptr, 0x4c), salt)\\n            mstore(add(ptr, 0x6c), keccak256(ptr, 0x37))\\n            predicted := keccak256(add(ptr, 0x37), 0x55)\\n        }\\n    }\\n\\n    /**\\n     * @dev Computes the address of a clone deployed using {Clones-cloneDeterministic}.\\n     */\\n    function predictDeterministicAddress(address implementation, bytes32 salt)\\n        internal\\n        view\\n        returns (address predicted)\\n    {\\n        return predictDeterministicAddress(implementation, salt, address(this));\\n    }\\n}\\n\",\"keccak256\":\"0x1cc0efb01cbf008b768fd7b334786a6e358809198bb7e67f1c530af4957c6a21\",\"license\":\"MIT\"},\"@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-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/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 buffer) 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 of 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 seven year minimum,\\n                of accurate historical lookups with current estimates of 1 new block\\n                every 15 seconds - assuming each block contains 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\":\"0x446d8221329601d40464981a50a0e31f3fd48da0ebf0fea646c5a089ccfbdff4\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-twab-delegator/contracts/Delegation.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\n/**\\n * @title Contract instantiated via CREATE2 to handle a Delegation by a delegator to a delegatee.\\n * @notice A Delegation allows his owner to execute calls on behalf of the contract.\\n * @dev This contract is intended to be counterfactually instantiated via CREATE2 through the LowLevelDelegator contract.\\n * @dev This contract will hold tickets that will be delegated to a chosen delegatee.\\n */\\ncontract Delegation {\\n  /**\\n   * @notice A structure to define arbitrary contract calls.\\n   * @param to The address to call\\n   * @param data The call data\\n   */\\n  struct Call {\\n    address to;\\n    bytes data;\\n  }\\n\\n  /// @notice Contract owner.\\n  address private _owner;\\n\\n  /// @notice Timestamp until which the delegation is locked.\\n  uint96 public lockUntil;\\n\\n  /**\\n   * @notice Initializes the delegation.\\n   * @param _lockUntil Timestamp until which the delegation is locked\\n   */\\n  function initialize(uint96 _lockUntil) external {\\n    require(_owner == address(0), \\\"Delegation/already-init\\\");\\n    _owner = msg.sender;\\n    lockUntil = _lockUntil;\\n  }\\n\\n  /**\\n   * @notice Executes calls on behalf of this contract.\\n   * @param calls The array of calls to be executed\\n   * @return An array of the return values for each of the calls\\n   */\\n  function executeCalls(Call[] calldata calls) external onlyOwner returns (bytes[] memory) {\\n    uint256 _callsLength = calls.length;\\n    bytes[] memory response = new bytes[](_callsLength);\\n    Call memory call;\\n\\n    for (uint256 i; i < _callsLength; i++) {\\n      call = calls[i];\\n      response[i] = _executeCall(call.to, call.data);\\n    }\\n\\n    return response;\\n  }\\n\\n  /**\\n   * @notice Set the timestamp until which the delegation is locked.\\n   * @param _lockUntil The timestamp until which the delegation is locked\\n   */\\n  function setLockUntil(uint96 _lockUntil) external onlyOwner {\\n    lockUntil = _lockUntil;\\n  }\\n\\n  /**\\n   * @notice Executes a call to another contract.\\n   * @param to The address to call\\n   * @param data The call data\\n   * @return The return data from the call\\n   */\\n  function _executeCall(address to, bytes memory data) internal returns (bytes memory) {\\n    (bool succeeded, bytes memory returnValue) = to.call{ value: 0 }(data);\\n    require(succeeded, string(returnValue));\\n    return returnValue;\\n  }\\n\\n  /// @notice Modifier to only allow the contract owner to call a function\\n  modifier onlyOwner() {\\n    require(msg.sender == _owner, \\\"Delegation/only-owner\\\");\\n    _;\\n  }\\n}\\n\",\"keccak256\":\"0xc2ea113565355fe530fc67b8fb6f8b8fbe3dfdca41e95dfe90599a45e315fff6\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-twab-delegator/contracts/LowLevelDelegator.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/proxy/Clones.sol\\\";\\n\\nimport \\\"./Delegation.sol\\\";\\n\\n/// @title The LowLevelDelegator allows users to create delegations very cheaply.\\ncontract LowLevelDelegator {\\n  using Clones for address;\\n\\n  /// @notice The instance to which all proxies will point.\\n  Delegation public delegationInstance;\\n\\n  /// @notice Contract constructor.\\n  constructor() {\\n    delegationInstance = new Delegation();\\n    delegationInstance.initialize(uint96(0));\\n  }\\n\\n  /**\\n   * @notice Creates a clone of the delegation.\\n   * @param _salt Random number used to deterministically deploy the clone\\n   * @param _lockUntil Timestamp until which the delegation is locked\\n   * @return The newly created delegation\\n   */\\n  function _createDelegation(bytes32 _salt, uint96 _lockUntil) internal returns (Delegation) {\\n    Delegation _delegation = Delegation(address(delegationInstance).cloneDeterministic(_salt));\\n    _delegation.initialize(_lockUntil);\\n    return _delegation;\\n  }\\n\\n  /**\\n   * @notice Computes the address of a clone, also known as minimal proxy contract.\\n   * @param _salt Random number used to compute the address\\n   * @return Address at which the clone will be deployed\\n   */\\n  function _computeAddress(bytes32 _salt) internal view returns (address) {\\n    return address(delegationInstance).predictDeterministicAddress(_salt, address(this));\\n  }\\n\\n  /**\\n   * @notice Computes salt used to deterministically deploy a clone.\\n   * @param _delegator Address of the delegator\\n   * @param _slot Slot of the delegation\\n   * @return Salt used to deterministically deploy a clone.\\n   */\\n  function _computeSalt(address _delegator, bytes32 _slot) internal pure returns (bytes32) {\\n    return keccak256(abi.encodePacked(_delegator, _slot));\\n  }\\n}\\n\",\"keccak256\":\"0x9b16bf6411ae2a363bac7dcd8afede08114420920677388969ec68e455c5427f\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-twab-delegator/contracts/PermitAndMulticall.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol\\\";\\nimport \\\"@openzeppelin/contracts/utils/Address.sol\\\";\\n\\n/**\\n * @notice Allows a user to permit token spend and then call multiple functions on a contract.\\n */\\ncontract PermitAndMulticall {\\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   */\\n  struct Signature {\\n    uint256 deadline;\\n    uint8 v;\\n    bytes32 r;\\n    bytes32 s;\\n  }\\n\\n  /**\\n   * @notice Allows a user to call multiple functions on the same contract.  Useful for EOA who want to batch transactions.\\n   * @param _data An array of encoded function calls.  The calls must be abi-encoded calls to this contract.\\n   * @return The results from each function call\\n   */\\n  function _multicall(bytes[] calldata _data) internal virtual returns (bytes[] memory) {\\n    uint256 _dataLength = _data.length;\\n    bytes[] memory results = new bytes[](_dataLength);\\n\\n    for (uint256 i; i < _dataLength; i++) {\\n      results[i] = Address.functionDelegateCall(address(this), _data[i]);\\n    }\\n\\n    return results;\\n  }\\n\\n  /**\\n   * @notice Allow a user to approve an ERC20 token and run various calls in one transaction.\\n   * @param _permitToken Address of the ERC20 token\\n   * @param _amount Amount of tickets to approve\\n   * @param _permitSignature Permit signature\\n   * @param _data Datas to call with `functionDelegateCall`\\n   */\\n  function _permitAndMulticall(\\n    IERC20Permit _permitToken,\\n    uint256 _amount,\\n    Signature calldata _permitSignature,\\n    bytes[] calldata _data\\n  ) internal {\\n    _permitToken.permit(\\n      msg.sender,\\n      address(this),\\n      _amount,\\n      _permitSignature.deadline,\\n      _permitSignature.v,\\n      _permitSignature.r,\\n      _permitSignature.s\\n    );\\n\\n    _multicall(_data);\\n  }\\n}\\n\",\"keccak256\":\"0x2137f42bfa852716a1df09c2a452d62043236b1a783023f1ee1b05d1f958f4c5\",\"license\":\"GPL-3.0\"},\"@pooltogether/v4-twab-delegator/contracts/TWABDelegator.sol\":{\"content\":\"// SPDX-License-Identifier: GPL-3.0\\n\\npragma solidity 0.8.6;\\n\\nimport \\\"@openzeppelin/contracts/proxy/Clones.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/ERC20.sol\\\";\\nimport \\\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\\\";\\nimport \\\"@pooltogether/v4-core/contracts/interfaces/ITicket.sol\\\";\\n\\nimport \\\"./Delegation.sol\\\";\\nimport \\\"./LowLevelDelegator.sol\\\";\\nimport \\\"./PermitAndMulticall.sol\\\";\\n\\n/**\\n * @title Delegate chances to win to multiple accounts.\\n * @notice This contract allows accounts to easily delegate a portion of their tickets to multiple delegatees.\\n  The delegatees chance of winning prizes is increased by the delegated amount.\\n  If a delegator doesn't want to actively manage the delegations, then they can stake on the contract and appoint representatives.\\n */\\ncontract TWABDelegator is ERC20, LowLevelDelegator, PermitAndMulticall {\\n  using Address for address;\\n  using Clones for address;\\n  using SafeERC20 for IERC20;\\n\\n  /* ============ Events ============ */\\n\\n  /**\\n   * @notice Emitted when ticket associated with this contract has been set.\\n   * @param ticket Address of the ticket\\n   */\\n  event TicketSet(ITicket indexed ticket);\\n\\n  /**\\n   * @notice Emitted when tickets have been staked.\\n   * @param delegator Address of the delegator\\n   * @param amount Amount of tickets staked\\n   */\\n  event TicketsStaked(address indexed delegator, uint256 amount);\\n\\n  /**\\n   * @notice Emitted when tickets have been unstaked.\\n   * @param delegator Address of the delegator\\n   * @param recipient Address of the recipient that will receive the tickets\\n   * @param amount Amount of tickets unstaked\\n   */\\n  event TicketsUnstaked(address indexed delegator, address indexed recipient, uint256 amount);\\n\\n  /**\\n   * @notice Emitted when a new delegation is created.\\n   * @param delegator Delegator of the delegation\\n   * @param slot Slot of the delegation\\n   * @param lockUntil Timestamp until which the delegation is locked\\n   * @param delegatee Address of the delegatee\\n   * @param delegation Address of the delegation that was created\\n   * @param user Address of the user who created the delegation\\n   */\\n  event DelegationCreated(\\n    address indexed delegator,\\n    uint256 indexed slot,\\n    uint96 lockUntil,\\n    address indexed delegatee,\\n    Delegation delegation,\\n    address user\\n  );\\n\\n  /**\\n   * @notice Emitted when a delegatee is updated.\\n   * @param delegator Address of the delegator\\n   * @param slot Slot of the delegation\\n   * @param delegatee Address of the delegatee\\n   * @param lockUntil Timestamp until which the delegation is locked\\n   * @param user Address of the user who updated the delegatee\\n   */\\n  event DelegateeUpdated(\\n    address indexed delegator,\\n    uint256 indexed slot,\\n    address indexed delegatee,\\n    uint96 lockUntil,\\n    address user\\n  );\\n\\n  /**\\n   * @notice Emitted when a delegation is funded.\\n   * @param delegator Address of the delegator\\n   * @param slot Slot of the delegation\\n   * @param amount Amount of tickets that were sent to the delegation\\n   * @param user Address of the user who funded the delegation\\n   */\\n  event DelegationFunded(\\n    address indexed delegator,\\n    uint256 indexed slot,\\n    uint256 amount,\\n    address indexed user\\n  );\\n\\n  /**\\n   * @notice Emitted when a delegation is funded from the staked amount.\\n   * @param delegator Address of the delegator\\n   * @param slot Slot of the delegation\\n   * @param amount Amount of tickets that were sent to the delegation\\n   * @param user Address of the user who pulled funds from the delegator stake to the delegation\\n   */\\n  event DelegationFundedFromStake(\\n    address indexed delegator,\\n    uint256 indexed slot,\\n    uint256 amount,\\n    address indexed user\\n  );\\n\\n  /**\\n   * @notice Emitted when an amount of tickets has been withdrawn from a delegation. The tickets are held by this contract and the delegator stake is increased.\\n   * @param delegator Address of the delegator\\n   * @param slot Slot of the delegation\\n   * @param amount Amount of tickets withdrawn\\n   * @param user Address of the user who withdrew the tickets\\n   */\\n  event WithdrewDelegationToStake(\\n    address indexed delegator,\\n    uint256 indexed slot,\\n    uint256 amount,\\n    address indexed user\\n  );\\n\\n  /**\\n   * @notice Emitted when a delegator withdraws an amount of tickets from a delegation to a specified wallet.\\n   * @param delegator Address of the delegator\\n   * @param slot  Slot of the delegation\\n   * @param amount Amount of tickets withdrawn\\n   * @param to Recipient address of withdrawn tickets\\n   */\\n  event TransferredDelegation(\\n    address indexed delegator,\\n    uint256 indexed slot,\\n    uint256 amount,\\n    address indexed to\\n  );\\n\\n  /**\\n   * @notice Emitted when a representative is set.\\n   * @param delegator Address of the delegator\\n   * @param representative Address of the representative\\n   * @param set Boolean indicating if the representative was set or unset\\n   */\\n  event RepresentativeSet(address indexed delegator, address indexed representative, bool set);\\n\\n  /* ============ Variables ============ */\\n\\n  /// @notice Prize pool ticket to which this contract is tied to.\\n  ITicket public immutable ticket;\\n\\n  /// @notice Max lock time during which a delegation cannot be updated.\\n  uint256 public constant MAX_LOCK = 180 days;\\n\\n  /**\\n   * @notice Representative elected by the delegator to handle delegation.\\n   * @dev Representative can only handle delegation and cannot withdraw tickets to their wallet.\\n   * @dev delegator => representative => bool allowing representative to represent the delegator\\n   */\\n  mapping(address => mapping(address => bool)) internal representatives;\\n\\n  /* ============ Constructor ============ */\\n\\n  /**\\n   * @notice Creates a new TWAB Delegator that is bound to the given ticket contract.\\n   * @param name_ The name for the staked ticket token\\n   * @param symbol_ The symbol for the staked ticket token\\n   * @param _ticket Address of the ticket contract\\n   */\\n  constructor(\\n    string memory name_,\\n    string memory symbol_,\\n    ITicket _ticket\\n  ) LowLevelDelegator() ERC20(name_, symbol_) {\\n    require(address(_ticket) != address(0), \\\"TWABDelegator/tick-not-zero-addr\\\");\\n    ticket = _ticket;\\n\\n    emit TicketSet(_ticket);\\n  }\\n\\n  /* ============ External Functions ============ */\\n\\n  /**\\n   * @notice Stake `_amount` of tickets in this contract.\\n   * @dev Tickets can be staked on behalf of a `_to` user.\\n   * @param _to Address to which the stake will be attributed\\n   * @param _amount Amount of tickets to stake\\n   */\\n  function stake(address _to, uint256 _amount) external {\\n    _requireAmountGtZero(_amount);\\n\\n    IERC20(ticket).safeTransferFrom(msg.sender, address(this), _amount);\\n    _mint(_to, _amount);\\n\\n    emit TicketsStaked(_to, _amount);\\n  }\\n\\n  /**\\n   * @notice Unstake `_amount` of tickets from this contract. Transfers ticket to the passed `_to` address.\\n   * @dev If delegator has delegated his whole stake, he will first have to withdraw from a delegation to be able to unstake.\\n   * @param _to Address of the recipient that will receive the tickets\\n   * @param _amount Amount of tickets to unstake\\n   */\\n  function unstake(address _to, uint256 _amount) external {\\n    _requireRecipientNotZeroAddress(_to);\\n    _requireAmountGtZero(_amount);\\n\\n    _burn(msg.sender, _amount);\\n\\n    IERC20(ticket).safeTransfer(_to, _amount);\\n\\n    emit TicketsUnstaked(msg.sender, _to, _amount);\\n  }\\n\\n  /**\\n   * @notice Creates a new delegation.\\n   This will create a new Delegation contract for the given slot and have it delegate its tickets to the given delegatee.\\n   If a non-zero lock duration is passed, then the delegatee cannot be changed, nor funding withdrawn, until the lock has expired.\\n   * @dev The `_delegator` and `_slot` params are used to compute the salt of the delegation\\n   * @param _delegator Address of the delegator that will be able to handle the delegation\\n   * @param _slot Slot of the delegation\\n   * @param _delegatee Address of the delegatee\\n   * @param _lockDuration Duration of time for which the delegation is locked. Must be less than the max duration.\\n   * @return Returns the address of the Delegation contract that will hold the tickets\\n   */\\n  function createDelegation(\\n    address _delegator,\\n    uint256 _slot,\\n    address _delegatee,\\n    uint96 _lockDuration\\n  ) external returns (Delegation) {\\n    _requireDelegatorOrRepresentative(_delegator);\\n    _requireDelegateeNotZeroAddress(_delegatee);\\n    _requireLockDuration(_lockDuration);\\n\\n    uint96 _lockUntil = _computeLockUntil(_lockDuration);\\n\\n    Delegation _delegation = _createDelegation(\\n      _computeSalt(_delegator, bytes32(_slot)),\\n      _lockUntil\\n    );\\n\\n    _setDelegateeCall(_delegation, _delegatee);\\n\\n    emit DelegationCreated(_delegator, _slot, _lockUntil, _delegatee, _delegation, msg.sender);\\n\\n    return _delegation;\\n  }\\n\\n  /**\\n   * @notice Updates the delegatee and lock duration for a delegation slot.\\n   * @dev Only callable by the `_delegator` or their representative.\\n   * @dev Will revert if delegation is still locked.\\n   * @param _delegator Address of the delegator\\n   * @param _slot Slot of the delegation\\n   * @param _delegatee Address of the delegatee\\n   * @param _lockDuration Duration of time during which the delegatee cannot be changed nor withdrawn\\n   * @return The address of the Delegation\\n   */\\n  function updateDelegatee(\\n    address _delegator,\\n    uint256 _slot,\\n    address _delegatee,\\n    uint96 _lockDuration\\n  ) external returns (Delegation) {\\n    _requireDelegatorOrRepresentative(_delegator);\\n    _requireDelegateeNotZeroAddress(_delegatee);\\n    _requireLockDuration(_lockDuration);\\n\\n    Delegation _delegation = Delegation(_computeAddress(_delegator, _slot));\\n    _requireDelegationUnlocked(_delegation);\\n\\n    uint96 _lockUntil = _computeLockUntil(_lockDuration);\\n\\n    if (_lockDuration > 0) {\\n      _delegation.setLockUntil(_lockUntil);\\n    }\\n\\n    _setDelegateeCall(_delegation, _delegatee);\\n\\n    emit DelegateeUpdated(_delegator, _slot, _delegatee, _lockUntil, msg.sender);\\n\\n    return _delegation;\\n  }\\n\\n  /**\\n   * @notice Fund a delegation by transferring tickets from the caller to the delegation.\\n   * @dev Callable by anyone.\\n   * @dev Will revert if delegation does not exist.\\n   * @param _delegator Address of the delegator\\n   * @param _slot Slot of the delegation\\n   * @param _amount Amount of tickets to transfer\\n   * @return The address of the Delegation\\n   */\\n  function fundDelegation(\\n    address _delegator,\\n    uint256 _slot,\\n    uint256 _amount\\n  ) external returns (Delegation) {\\n    require(_delegator != address(0), \\\"TWABDelegator/dlgtr-not-zero-adr\\\");\\n    _requireAmountGtZero(_amount);\\n\\n    Delegation _delegation = Delegation(_computeAddress(_delegator, _slot));\\n    IERC20(ticket).safeTransferFrom(msg.sender, address(_delegation), _amount);\\n\\n    emit DelegationFunded(_delegator, _slot, _amount, msg.sender);\\n\\n    return _delegation;\\n  }\\n\\n  /**\\n   * @notice Fund a delegation using the `_delegator` stake.\\n   * @dev Callable only by the `_delegator` or a representative.\\n   * @dev Will revert if delegation does not exist.\\n   * @dev Will revert if `_amount` is greater than the staked amount.\\n   * @param _delegator Address of the delegator\\n   * @param _slot Slot of the delegation\\n   * @param _amount Amount of tickets to send to the delegation from the staked amount\\n   * @return The address of the Delegation\\n   */\\n  function fundDelegationFromStake(\\n    address _delegator,\\n    uint256 _slot,\\n    uint256 _amount\\n  ) external returns (Delegation) {\\n    _requireDelegatorOrRepresentative(_delegator);\\n    _requireAmountGtZero(_amount);\\n\\n    Delegation _delegation = Delegation(_computeAddress(_delegator, _slot));\\n\\n    _burn(_delegator, _amount);\\n\\n    IERC20(ticket).safeTransfer(address(_delegation), _amount);\\n\\n    emit DelegationFundedFromStake(_delegator, _slot, _amount, msg.sender);\\n\\n    return _delegation;\\n  }\\n\\n  /**\\n   * @notice Withdraw tickets from a delegation. The tickets will be held by this contract and the delegator's stake will increase.\\n   * @dev Only callable by the `_delegator` or a representative.\\n   * @dev Will send the tickets to this contract and increase the `_delegator` staked amount.\\n   * @dev Will revert if delegation is still locked.\\n   * @param _delegator Address of the delegator\\n   * @param _slot Slot of the delegation\\n   * @param _amount Amount of tickets to withdraw\\n   * @return The address of the Delegation\\n   */\\n  function withdrawDelegationToStake(\\n    address _delegator,\\n    uint256 _slot,\\n    uint256 _amount\\n  ) external returns (Delegation) {\\n    _requireDelegatorOrRepresentative(_delegator);\\n\\n    Delegation _delegation = Delegation(_computeAddress(_delegator, _slot));\\n\\n    _transfer(_delegation, address(this), _amount);\\n\\n    _mint(_delegator, _amount);\\n\\n    emit WithdrewDelegationToStake(_delegator, _slot, _amount, msg.sender);\\n\\n    return _delegation;\\n  }\\n\\n  /**\\n   * @notice Withdraw an `_amount` of tickets from a delegation. The delegator is assumed to be the caller.\\n   * @dev Tickets are sent directly to the passed `_to` address.\\n   * @dev Will revert if delegation is still locked.\\n   * @param _slot Slot of the delegation\\n   * @param _amount Amount to withdraw\\n   * @param _to Account to transfer the withdrawn tickets to\\n   * @return The address of the Delegation\\n   */\\n  function transferDelegationTo(\\n    uint256 _slot,\\n    uint256 _amount,\\n    address _to\\n  ) external returns (Delegation) {\\n    _requireRecipientNotZeroAddress(_to);\\n\\n    Delegation _delegation = Delegation(_computeAddress(msg.sender, _slot));\\n    _transfer(_delegation, _to, _amount);\\n\\n    emit TransferredDelegation(msg.sender, _slot, _amount, _to);\\n\\n    return _delegation;\\n  }\\n\\n  /**\\n   * @notice Allow an account to set or unset a `_representative` to handle delegation.\\n   * @dev If `_set` is `true`, `_representative` will be set as representative of `msg.sender`.\\n   * @dev If `_set` is `false`, `_representative` will be unset as representative of `msg.sender`.\\n   * @param _representative Address of the representative\\n   * @param _set Set or unset the representative\\n   */\\n  function setRepresentative(address _representative, bool _set) external {\\n    require(_representative != address(0), \\\"TWABDelegator/rep-not-zero-addr\\\");\\n\\n    representatives[msg.sender][_representative] = _set;\\n\\n    emit RepresentativeSet(msg.sender, _representative, _set);\\n  }\\n\\n  /**\\n   * @notice Returns whether or not the given rep is a representative of the delegator.\\n   * @param _delegator The delegator\\n   * @param _representative The representative to check for\\n   * @return True if the rep is a rep, false otherwise\\n   */\\n  function isRepresentativeOf(address _delegator, address _representative)\\n    external\\n    view\\n    returns (bool)\\n  {\\n    return representatives[_delegator][_representative];\\n  }\\n\\n  /**\\n   * @notice Allows a user to call multiple functions on the same contract.  Useful for EOA who wants to batch transactions.\\n   * @param _data An array of encoded function calls.  The calls must be abi-encoded calls to this contract.\\n   * @return The results from each function call\\n   */\\n  function multicall(bytes[] calldata _data) external returns (bytes[] memory) {\\n    return _multicall(_data);\\n  }\\n\\n  /**\\n   * @notice Alow a user to approve ticket and run various calls in one transaction.\\n   * @param _amount Amount of tickets to approve\\n   * @param _permitSignature Permit signature\\n   * @param _data Datas to call with `functionDelegateCall`\\n   */\\n  function permitAndMulticall(\\n    uint256 _amount,\\n    Signature calldata _permitSignature,\\n    bytes[] calldata _data\\n  ) external {\\n    _permitAndMulticall(IERC20Permit(address(ticket)), _amount, _permitSignature, _data);\\n  }\\n\\n  /**\\n   * @notice Allows the caller to easily get the details for a delegation.\\n   * @param _delegator The delegator address\\n   * @param _slot The delegation slot they are using\\n   * @return delegation The address that holds tickets for the delegation\\n   * @return delegatee The address that tickets are being delegated to\\n   * @return balance The balance of tickets in the delegation\\n   * @return lockUntil The timestamp at which the delegation unlocks\\n   * @return wasCreated Whether or not the delegation has been created\\n   */\\n  function getDelegation(address _delegator, uint256 _slot)\\n    external\\n    view\\n    returns (\\n      Delegation delegation,\\n      address delegatee,\\n      uint256 balance,\\n      uint256 lockUntil,\\n      bool wasCreated\\n    )\\n  {\\n    delegation = Delegation(_computeAddress(_delegator, _slot));\\n    wasCreated = address(delegation).isContract();\\n    delegatee = ticket.delegateOf(address(delegation));\\n    balance = ticket.balanceOf(address(delegation));\\n\\n    if (wasCreated) {\\n      lockUntil = delegation.lockUntil();\\n    }\\n  }\\n\\n  /**\\n   * @notice Computes the address of the delegation for the delegator + slot combination.\\n   * @param _delegator The user who is delegating tickets\\n   * @param _slot The delegation slot\\n   * @return The address of the delegation.  This is the address that holds the balance of tickets.\\n   */\\n  function computeDelegationAddress(address _delegator, uint256 _slot)\\n    external\\n    view\\n    returns (address)\\n  {\\n    return _computeAddress(_delegator, _slot);\\n  }\\n\\n  /**\\n   * @notice Returns the ERC20 token decimals.\\n   * @dev This value is equal to the decimals of the ticket being delegated.\\n   * @return ERC20 token decimals\\n   */\\n  function decimals() public view virtual override returns (uint8) {\\n    return ERC20(address(ticket)).decimals();\\n  }\\n\\n  /* ============ Internal Functions ============ */\\n\\n  /**\\n   * @notice Computes the address of a delegation contract using the delegator and slot as a salt.\\n   The contract is a clone, also known as minimal proxy contract.\\n   * @param _delegator Address of the delegator\\n   * @param _slot Slot of the delegation\\n   * @return Address at which the delegation contract will be deployed\\n   */\\n  function _computeAddress(address _delegator, uint256 _slot) internal view returns (address) {\\n    return _computeAddress(_computeSalt(_delegator, bytes32(_slot)));\\n  }\\n\\n  /**\\n   * @notice Computes the timestamp at which the delegation unlocks, after which the delegatee can be changed and tickets withdrawn.\\n   * @param _lockDuration The duration of the lock\\n   * @return The lock expiration timestamp\\n   */\\n  function _computeLockUntil(uint96 _lockDuration) internal view returns (uint96) {\\n    unchecked {\\n      return uint96(block.timestamp) + _lockDuration;\\n    }\\n  }\\n\\n  /**\\n   * @notice Delegates tickets from the `_delegation` contract to the `_delegatee` address.\\n   * @param _delegation Address of the delegation contract\\n   * @param _delegatee Address of the delegatee\\n   */\\n  function _setDelegateeCall(Delegation _delegation, address _delegatee) internal {\\n    bytes4 _selector = ticket.delegate.selector;\\n    bytes memory _data = abi.encodeWithSelector(_selector, _delegatee);\\n\\n    _executeCall(_delegation, _data);\\n  }\\n\\n  /**\\n   * @notice Tranfers tickets from the Delegation contract to the `_to` address.\\n   * @param _delegation Address of the delegation contract\\n   * @param _to Address of the recipient\\n   * @param _amount Amount of tickets to transfer\\n   */\\n  function _transferCall(\\n    Delegation _delegation,\\n    address _to,\\n    uint256 _amount\\n  ) internal {\\n    bytes4 _selector = ticket.transfer.selector;\\n    bytes memory _data = abi.encodeWithSelector(_selector, _to, _amount);\\n\\n    _executeCall(_delegation, _data);\\n  }\\n\\n  /**\\n   * @notice Execute a function call on the delegation contract.\\n   * @param _delegation Address of the delegation contract\\n   * @param _data The call data that will be executed\\n   * @return The return datas from the calls\\n   */\\n  function _executeCall(Delegation _delegation, bytes memory _data)\\n    internal\\n    returns (bytes[] memory)\\n  {\\n    Delegation.Call[] memory _calls = new Delegation.Call[](1);\\n    _calls[0] = Delegation.Call({ to: address(ticket), data: _data });\\n\\n    return _delegation.executeCalls(_calls);\\n  }\\n\\n  /**\\n   * @notice Transfers tickets from a delegation contract to `_to`.\\n   * @param _delegation Address of the delegation contract\\n   * @param _to Address of the recipient\\n   * @param _amount Amount of tickets to transfer\\n   */\\n  function _transfer(\\n    Delegation _delegation,\\n    address _to,\\n    uint256 _amount\\n  ) internal {\\n    _requireAmountGtZero(_amount);\\n    _requireDelegationUnlocked(_delegation);\\n\\n    _transferCall(_delegation, _to, _amount);\\n  }\\n\\n  /* ============ Modifier/Require Functions ============ */\\n\\n  /**\\n   * @notice Require to only allow the delegator or representative to call a function.\\n   * @param _delegator Address of the delegator\\n   */\\n  function _requireDelegatorOrRepresentative(address _delegator) internal view {\\n    require(\\n      _delegator == msg.sender || representatives[_delegator][msg.sender],\\n      \\\"TWABDelegator/not-dlgtr-or-rep\\\"\\n    );\\n  }\\n\\n  /**\\n   * @notice Require to verify that `_delegatee` is not address zero.\\n   * @param _delegatee Address of the delegatee\\n   */\\n  function _requireDelegateeNotZeroAddress(address _delegatee) internal pure {\\n    require(_delegatee != address(0), \\\"TWABDelegator/dlgt-not-zero-addr\\\");\\n  }\\n\\n  /**\\n   * @notice Require to verify that `_amount` is greater than 0.\\n   * @param _amount Amount to check\\n   */\\n  function _requireAmountGtZero(uint256 _amount) internal pure {\\n    require(_amount > 0, \\\"TWABDelegator/amount-gt-zero\\\");\\n  }\\n\\n  /**\\n   * @notice Require to verify that `_to` is not address zero.\\n   * @param _to Address to check\\n   */\\n  function _requireRecipientNotZeroAddress(address _to) internal pure {\\n    require(_to != address(0), \\\"TWABDelegator/to-not-zero-addr\\\");\\n  }\\n\\n  /**\\n   * @notice Require to verify if a `_delegation` is locked.\\n   * @param _delegation Delegation to check\\n   */\\n  function _requireDelegationUnlocked(Delegation _delegation) internal view {\\n    require(block.timestamp >= _delegation.lockUntil(), \\\"TWABDelegator/delegation-locked\\\");\\n  }\\n\\n  /**\\n   * @notice Require to verify that a `_lockDuration` does not exceed the maximum lock duration.\\n   * @param _lockDuration Lock duration to check\\n   */\\n  function _requireLockDuration(uint256 _lockDuration) internal pure {\\n    require(_lockDuration <= MAX_LOCK, \\\"TWABDelegator/lock-too-long\\\");\\n  }\\n}\\n\",\"keccak256\":\"0xb601391dace6c270c82f8cf18bd063ca1b1926a3349e27d713f687d7e6f914ad\",\"license\":\"GPL-3.0\"}},\"version\":1}",
          "storageLayout": {
            "storage": [
              {
                "astId": 282,
                "contract": "@pooltogether/v4-twab-delegator/contracts/TWABDelegator.sol:TWABDelegator",
                "label": "_balances",
                "offset": 0,
                "slot": "0",
                "type": "t_mapping(t_address,t_uint256)"
              },
              {
                "astId": 288,
                "contract": "@pooltogether/v4-twab-delegator/contracts/TWABDelegator.sol:TWABDelegator",
                "label": "_allowances",
                "offset": 0,
                "slot": "1",
                "type": "t_mapping(t_address,t_mapping(t_address,t_uint256))"
              },
              {
                "astId": 290,
                "contract": "@pooltogether/v4-twab-delegator/contracts/TWABDelegator.sol:TWABDelegator",
                "label": "_totalSupply",
                "offset": 0,
                "slot": "2",
                "type": "t_uint256"
              },
              {
                "astId": 292,
                "contract": "@pooltogether/v4-twab-delegator/contracts/TWABDelegator.sol:TWABDelegator",
                "label": "_name",
                "offset": 0,
                "slot": "3",
                "type": "t_string_storage"
              },
              {
                "astId": 294,
                "contract": "@pooltogether/v4-twab-delegator/contracts/TWABDelegator.sol:TWABDelegator",
                "label": "_symbol",
                "offset": 0,
                "slot": "4",
                "type": "t_string_storage"
              },
              {
                "astId": 16223,
                "contract": "@pooltogether/v4-twab-delegator/contracts/TWABDelegator.sol:TWABDelegator",
                "label": "delegationInstance",
                "offset": 0,
                "slot": "5",
                "type": "t_contract(Delegation)16211"
              },
              {
                "astId": 16574,
                "contract": "@pooltogether/v4-twab-delegator/contracts/TWABDelegator.sol:TWABDelegator",
                "label": "representatives",
                "offset": 0,
                "slot": "6",
                "type": "t_mapping(t_address,t_mapping(t_address,t_bool))"
              }
            ],
            "types": {
              "t_address": {
                "encoding": "inplace",
                "label": "address",
                "numberOfBytes": "20"
              },
              "t_bool": {
                "encoding": "inplace",
                "label": "bool",
                "numberOfBytes": "1"
              },
              "t_contract(Delegation)16211": {
                "encoding": "inplace",
                "label": "contract Delegation",
                "numberOfBytes": "20"
              },
              "t_mapping(t_address,t_bool)": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => bool)",
                "numberOfBytes": "32",
                "value": "t_bool"
              },
              "t_mapping(t_address,t_mapping(t_address,t_bool))": {
                "encoding": "mapping",
                "key": "t_address",
                "label": "mapping(address => mapping(address => bool))",
                "numberOfBytes": "32",
                "value": "t_mapping(t_address,t_bool)"
              },
              "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": {
            "events": {
              "DelegateeUpdated(address,uint256,address,uint96,address)": {
                "notice": "Emitted when a delegatee is updated."
              },
              "DelegationCreated(address,uint256,uint96,address,address,address)": {
                "notice": "Emitted when a new delegation is created."
              },
              "DelegationFunded(address,uint256,uint256,address)": {
                "notice": "Emitted when a delegation is funded."
              },
              "DelegationFundedFromStake(address,uint256,uint256,address)": {
                "notice": "Emitted when a delegation is funded from the staked amount."
              },
              "RepresentativeSet(address,address,bool)": {
                "notice": "Emitted when a representative is set."
              },
              "TicketSet(address)": {
                "notice": "Emitted when ticket associated with this contract has been set."
              },
              "TicketsStaked(address,uint256)": {
                "notice": "Emitted when tickets have been staked."
              },
              "TicketsUnstaked(address,address,uint256)": {
                "notice": "Emitted when tickets have been unstaked."
              },
              "TransferredDelegation(address,uint256,uint256,address)": {
                "notice": "Emitted when a delegator withdraws an amount of tickets from a delegation to a specified wallet."
              },
              "WithdrewDelegationToStake(address,uint256,uint256,address)": {
                "notice": "Emitted when an amount of tickets has been withdrawn from a delegation. The tickets are held by this contract and the delegator stake is increased."
              }
            },
            "kind": "user",
            "methods": {
              "MAX_LOCK()": {
                "notice": "Max lock time during which a delegation cannot be updated."
              },
              "computeDelegationAddress(address,uint256)": {
                "notice": "Computes the address of the delegation for the delegator + slot combination."
              },
              "constructor": {
                "notice": "Creates a new TWAB Delegator that is bound to the given ticket contract."
              },
              "createDelegation(address,uint256,address,uint96)": {
                "notice": "Creates a new delegation. This will create a new Delegation contract for the given slot and have it delegate its tickets to the given delegatee. If a non-zero lock duration is passed, then the delegatee cannot be changed, nor funding withdrawn, until the lock has expired."
              },
              "decimals()": {
                "notice": "Returns the ERC20 token decimals."
              },
              "delegationInstance()": {
                "notice": "The instance to which all proxies will point."
              },
              "fundDelegation(address,uint256,uint256)": {
                "notice": "Fund a delegation by transferring tickets from the caller to the delegation."
              },
              "fundDelegationFromStake(address,uint256,uint256)": {
                "notice": "Fund a delegation using the `_delegator` stake."
              },
              "getDelegation(address,uint256)": {
                "notice": "Allows the caller to easily get the details for a delegation."
              },
              "isRepresentativeOf(address,address)": {
                "notice": "Returns whether or not the given rep is a representative of the delegator."
              },
              "multicall(bytes[])": {
                "notice": "Allows a user to call multiple functions on the same contract.  Useful for EOA who wants to batch transactions."
              },
              "permitAndMulticall(uint256,(uint256,uint8,bytes32,bytes32),bytes[])": {
                "notice": "Alow a user to approve ticket and run various calls in one transaction."
              },
              "setRepresentative(address,bool)": {
                "notice": "Allow an account to set or unset a `_representative` to handle delegation."
              },
              "stake(address,uint256)": {
                "notice": "Stake `_amount` of tickets in this contract."
              },
              "ticket()": {
                "notice": "Prize pool ticket to which this contract is tied to."
              },
              "transferDelegationTo(uint256,uint256,address)": {
                "notice": "Withdraw an `_amount` of tickets from a delegation. The delegator is assumed to be the caller."
              },
              "unstake(address,uint256)": {
                "notice": "Unstake `_amount` of tickets from this contract. Transfers ticket to the passed `_to` address."
              },
              "updateDelegatee(address,uint256,address,uint96)": {
                "notice": "Updates the delegatee and lock duration for a delegation slot."
              },
              "withdrawDelegationToStake(address,uint256,uint256)": {
                "notice": "Withdraw tickets from a delegation. The tickets will be held by this contract and the delegator's stake will increase."
              }
            },
            "notice": "This contract allows accounts to easily delegate a portion of their tickets to multiple delegatees. The delegatees chance of winning prizes is increased by the delegated amount. If a delegator doesn't want to actively manage the delegations, then they can stake on the contract and appoint representatives.",
            "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
          }
        }
      }
    },
    "errors": [
      {
        "component": "general",
        "errorCode": "1878",
        "formattedMessage": "Warning: SPDX license identifier not provided in source file. Before publishing, consider adding a comment containing \"SPDX-License-Identifier: <SPDX-License>\" to each source file. Use \"SPDX-License-Identifier: UNLICENSED\" for non-open-source code. Please see https://spdx.org for more information.\n--> @pooltogether/fixed-point/contracts/FixedPoint.sol\n\n",
        "message": "SPDX license identifier not provided in source file. Before publishing, consider adding a comment containing \"SPDX-License-Identifier: <SPDX-License>\" to each source file. Use \"SPDX-License-Identifier: UNLICENSED\" for non-open-source code. Please see https://spdx.org for more information.",
        "severity": "warning",
        "sourceLocation": {
          "end": -1,
          "file": "@pooltogether/fixed-point/contracts/FixedPoint.sol",
          "start": -1
        },
        "type": "Warning"
      }
    ],
    "sources": {
      "@chainlink/contracts/src/v0.8/VRFConsumerBaseV2.sol": {
        "ast": {
          "absolutePath": "@chainlink/contracts/src/v0.8/VRFConsumerBaseV2.sol",
          "exportedSymbols": {
            "VRFConsumerBaseV2": [
              57
            ]
          },
          "id": 58,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 1,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "32:23:0"
            },
            {
              "abstract": true,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 2,
                "nodeType": "StructuredDocumentation",
                "src": "57:5275:0",
                "text": "****************************************************************************\n @notice Interface for contracts using VRF randomness\n *****************************************************************************\n @dev PURPOSE\n @dev Reggie the Random Oracle (not his real job) wants to provide randomness\n @dev to Vera the verifier in such a way that Vera can be sure he's not\n @dev making his output up to suit himself. Reggie provides Vera a public key\n @dev to which he knows the secret key. Each time Vera provides a seed to\n @dev Reggie, he gives back a value which is computed completely\n @dev deterministically from the seed and the secret key.\n @dev Reggie provides a proof by which Vera can verify that the output was\n @dev correctly computed once Reggie tells it to her, but without that proof,\n @dev the output is indistinguishable to her from a uniform random sample\n @dev from the output space.\n @dev The purpose of this contract is to make it easy for unrelated contracts\n @dev to talk to Vera the verifier about the work Reggie is doing, to provide\n @dev simple access to a verifiable source of randomness. It ensures 2 things:\n @dev 1. The fulfillment came from the VRFCoordinator\n @dev 2. The consumer contract implements fulfillRandomWords.\n *****************************************************************************\n @dev USAGE\n @dev Calling contracts must inherit from VRFConsumerBase, and can\n @dev initialize VRFConsumerBase's attributes in their constructor as\n @dev shown:\n @dev   contract VRFConsumer {\n @dev     constructor(<other arguments>, address _vrfCoordinator, address _link)\n @dev       VRFConsumerBase(_vrfCoordinator) public {\n @dev         <initialization with other arguments goes here>\n @dev       }\n @dev   }\n @dev The oracle will have given you an ID for the VRF keypair they have\n @dev committed to (let's call it keyHash). Create subscription, fund it\n @dev and your consumer contract as a consumer of it (see VRFCoordinatorInterface\n @dev subscription management functions).\n @dev Call requestRandomWords(keyHash, subId, minimumRequestConfirmations,\n @dev callbackGasLimit, numWords),\n @dev see (VRFCoordinatorInterface for a description of the arguments).\n @dev Once the VRFCoordinator has received and validated the oracle's response\n @dev to your request, it will call your contract's fulfillRandomWords method.\n @dev The randomness argument to fulfillRandomWords is a set of random words\n @dev generated from your requestId and the blockHash of the request.\n @dev If your contract could have concurrent requests open, you can use the\n @dev requestId returned from requestRandomWords to track which response is associated\n @dev with which randomness request.\n @dev See \"SECURITY CONSIDERATIONS\" for principles to keep in mind,\n @dev if your contract could have multiple requests in flight simultaneously.\n @dev Colliding `requestId`s are cryptographically impossible as long as seeds\n @dev differ.\n *****************************************************************************\n @dev SECURITY CONSIDERATIONS\n @dev A method with the ability to call your fulfillRandomness method directly\n @dev could spoof a VRF response with any random value, so it's critical that\n @dev it cannot be directly called by anything other than this base contract\n @dev (specifically, by the VRFConsumerBase.rawFulfillRandomness method).\n @dev For your users to trust that your contract's random behavior is free\n @dev from malicious interference, it's best if you can write it so that all\n @dev behaviors implied by a VRF response are executed *during* your\n @dev fulfillRandomness method. If your contract must store the response (or\n @dev anything derived from it) and use it later, you must ensure that any\n @dev user-significant behavior which depends on that stored value cannot be\n @dev manipulated by a subsequent VRF request.\n @dev Similarly, both miners and the VRF oracle itself have some influence\n @dev over the order in which VRF responses appear on the blockchain, so if\n @dev your contract could have multiple VRF requests in flight simultaneously,\n @dev you must ensure that the order in which the VRF responses arrive cannot\n @dev be used to manipulate your contract's user-significant behavior.\n @dev Since the block hash of the block which contains the requestRandomness\n @dev call is mixed into the input to the VRF *last*, a sufficiently powerful\n @dev miner could, in principle, fork the blockchain to evict the block\n @dev containing the request, forcing the request to be included in a\n @dev different block with a different hash, and therefore a different input\n @dev to the VRF. However, such an attack would incur a substantial economic\n @dev cost. This cost scales with the number of blocks the VRF oracle waits\n @dev until it calls responds to a request. It is for this reason that\n @dev that you can signal to an oracle you'd like them to wait longer before\n @dev responding to the request (however this is not enforced in the contract\n @dev and so remains effective only in the case of unmodified oracle software)."
              },
              "fullyImplemented": false,
              "id": 57,
              "linearizedBaseContracts": [
                57
              ],
              "name": "VRFConsumerBaseV2",
              "nameLocation": "5351:17:0",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "id": 8,
                  "name": "OnlyCoordinatorCanFulfill",
                  "nameLocation": "5379:25:0",
                  "nodeType": "ErrorDefinition",
                  "parameters": {
                    "id": 7,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4,
                        "mutability": "mutable",
                        "name": "have",
                        "nameLocation": "5413:4:0",
                        "nodeType": "VariableDeclaration",
                        "scope": 8,
                        "src": "5405:12:0",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5405:7:0",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 6,
                        "mutability": "mutable",
                        "name": "want",
                        "nameLocation": "5427:4:0",
                        "nodeType": "VariableDeclaration",
                        "scope": 8,
                        "src": "5419:12:0",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 5,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5419:7:0",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5404:28:0"
                  },
                  "src": "5373:60:0"
                },
                {
                  "constant": false,
                  "id": 10,
                  "mutability": "immutable",
                  "name": "vrfCoordinator",
                  "nameLocation": "5462:14:0",
                  "nodeType": "VariableDeclaration",
                  "scope": 57,
                  "src": "5436:40:0",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 9,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "5436:7:0",
                    "stateMutability": "nonpayable",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "body": {
                    "id": 20,
                    "nodeType": "Block",
                    "src": "5593:43:0",
                    "statements": [
                      {
                        "expression": {
                          "id": 18,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 16,
                            "name": "vrfCoordinator",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10,
                            "src": "5599:14:0",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 17,
                            "name": "_vrfCoordinator",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13,
                            "src": "5616:15:0",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "5599:32:0",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "id": 19,
                        "nodeType": "ExpressionStatement",
                        "src": "5599:32:0"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 11,
                    "nodeType": "StructuredDocumentation",
                    "src": "5481:72:0",
                    "text": " @param _vrfCoordinator address of VRFCoordinator contract"
                  },
                  "id": 21,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 14,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13,
                        "mutability": "mutable",
                        "name": "_vrfCoordinator",
                        "nameLocation": "5576:15:0",
                        "nodeType": "VariableDeclaration",
                        "scope": 21,
                        "src": "5568:23:0",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 12,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5568:7:0",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5567:25:0"
                  },
                  "returnParameters": {
                    "id": 15,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "5593:0:0"
                  },
                  "scope": 57,
                  "src": "5556:80:0",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "documentation": {
                    "id": 22,
                    "nodeType": "StructuredDocumentation",
                    "src": "5640:686:0",
                    "text": " @notice fulfillRandomness handles the VRF response. Your contract must\n @notice implement it. See \"SECURITY CONSIDERATIONS\" above for important\n @notice principles to keep in mind when implementing your fulfillRandomness\n @notice method.\n @dev VRFConsumerBaseV2 expects its subcontracts to have a method with this\n @dev signature, and will call it once it has verified the proof\n @dev associated with the randomness. (It is triggered via a call to\n @dev rawFulfillRandomness, below.)\n @param requestId The Id initially returned by requestRandomness\n @param randomWords the VRF output expanded to the requested number of words"
                  },
                  "id": 30,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "fulfillRandomWords",
                  "nameLocation": "6338:18:0",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 28,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 24,
                        "mutability": "mutable",
                        "name": "requestId",
                        "nameLocation": "6365:9:0",
                        "nodeType": "VariableDeclaration",
                        "scope": 30,
                        "src": "6357:17:0",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 23,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "6357:7:0",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 27,
                        "mutability": "mutable",
                        "name": "randomWords",
                        "nameLocation": "6393:11:0",
                        "nodeType": "VariableDeclaration",
                        "scope": 30,
                        "src": "6376:28:0",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 25,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "6376:7:0",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 26,
                          "nodeType": "ArrayTypeName",
                          "src": "6376:9:0",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6356:49:0"
                  },
                  "returnParameters": {
                    "id": 29,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "6422:0:0"
                  },
                  "scope": 57,
                  "src": "6329:94:0",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 55,
                    "nodeType": "Block",
                    "src": "6707:167:0",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          },
                          "id": 41,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 38,
                              "name": "msg",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": -15,
                              "src": "6717:3:0",
                              "typeDescriptions": {
                                "typeIdentifier": "t_magic_message",
                                "typeString": "msg"
                              }
                            },
                            "id": 39,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "sender",
                            "nodeType": "MemberAccess",
                            "src": "6717:10:0",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "!=",
                          "rightExpression": {
                            "id": 40,
                            "name": "vrfCoordinator",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10,
                            "src": "6731:14:0",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "6717:28:0",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 49,
                        "nodeType": "IfStatement",
                        "src": "6713:109:0",
                        "trueBody": {
                          "id": 48,
                          "nodeType": "Block",
                          "src": "6747:75:0",
                          "statements": [
                            {
                              "errorCall": {
                                "arguments": [
                                  {
                                    "expression": {
                                      "id": 43,
                                      "name": "msg",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -15,
                                      "src": "6788:3:0",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_magic_message",
                                        "typeString": "msg"
                                      }
                                    },
                                    "id": 44,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "sender",
                                    "nodeType": "MemberAccess",
                                    "src": "6788:10:0",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "id": 45,
                                    "name": "vrfCoordinator",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 10,
                                    "src": "6800:14:0",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  ],
                                  "id": 42,
                                  "name": "OnlyCoordinatorCanFulfill",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 8,
                                  "src": "6762:25:0",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_error_pure$_t_address_$_t_address_$returns$__$",
                                    "typeString": "function (address,address) pure"
                                  }
                                },
                                "id": 46,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "6762:53:0",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 47,
                              "nodeType": "RevertStatement",
                              "src": "6755:60:0"
                            }
                          ]
                        }
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 51,
                              "name": "requestId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 32,
                              "src": "6846:9:0",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 52,
                              "name": "randomWords",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 35,
                              "src": "6857:11:0",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                "typeString": "uint256[] memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                "typeString": "uint256[] memory"
                              }
                            ],
                            "id": 50,
                            "name": "fulfillRandomWords",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 30,
                            "src": "6827:18:0",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_uint256_$_t_array$_t_uint256_$dyn_memory_ptr_$returns$__$",
                              "typeString": "function (uint256,uint256[] memory)"
                            }
                          },
                          "id": 53,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6827:42:0",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 54,
                        "nodeType": "ExpressionStatement",
                        "src": "6827:42:0"
                      }
                    ]
                  },
                  "functionSelector": "1fe543e3",
                  "id": 56,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "rawFulfillRandomWords",
                  "nameLocation": "6627:21:0",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 36,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 32,
                        "mutability": "mutable",
                        "name": "requestId",
                        "nameLocation": "6657:9:0",
                        "nodeType": "VariableDeclaration",
                        "scope": 56,
                        "src": "6649:17:0",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 31,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "6649:7:0",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 35,
                        "mutability": "mutable",
                        "name": "randomWords",
                        "nameLocation": "6685:11:0",
                        "nodeType": "VariableDeclaration",
                        "scope": 56,
                        "src": "6668:28:0",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 33,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "6668:7:0",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 34,
                          "nodeType": "ArrayTypeName",
                          "src": "6668:9:0",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6648:49:0"
                  },
                  "returnParameters": {
                    "id": 37,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "6707:0:0"
                  },
                  "scope": 57,
                  "src": "6618:256:0",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 58,
              "src": "5333:1543:0",
              "usedErrors": [
                8
              ]
            }
          ],
          "src": "32:6845:0"
        },
        "id": 0
      },
      "@chainlink/contracts/src/v0.8/interfaces/VRFCoordinatorV2Interface.sol": {
        "ast": {
          "absolutePath": "@chainlink/contracts/src/v0.8/interfaces/VRFCoordinatorV2Interface.sol",
          "exportedSymbols": {
            "VRFCoordinatorV2Interface": [
              146
            ]
          },
          "id": 147,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 59,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "32:23:1"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "fullyImplemented": false,
              "id": 146,
              "linearizedBaseContracts": [
                146
              ],
              "name": "VRFCoordinatorV2Interface",
              "nameLocation": "67:25:1",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "documentation": {
                    "id": 60,
                    "nodeType": "StructuredDocumentation",
                    "src": "97:267:1",
                    "text": " @notice Get configuration relevant for making requests\n @return minimumRequestConfirmations global min for request confirmations\n @return maxGasLimit global max for request gas limit\n @return s_provingKeyHashes list of registered key hashes"
                  },
                  "functionSelector": "00012291",
                  "id": 70,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getRequestConfig",
                  "nameLocation": "376:16:1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 61,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "392:2:1"
                  },
                  "returnParameters": {
                    "id": 69,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 63,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 70,
                        "src": "437:6:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint16",
                          "typeString": "uint16"
                        },
                        "typeName": {
                          "id": 62,
                          "name": "uint16",
                          "nodeType": "ElementaryTypeName",
                          "src": "437:6:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint16",
                            "typeString": "uint16"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 65,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 70,
                        "src": "451:6:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 64,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "451:6:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 68,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 70,
                        "src": "465:16:1",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_bytes32_$dyn_memory_ptr",
                          "typeString": "bytes32[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 66,
                            "name": "bytes32",
                            "nodeType": "ElementaryTypeName",
                            "src": "465:7:1",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes32",
                              "typeString": "bytes32"
                            }
                          },
                          "id": 67,
                          "nodeType": "ArrayTypeName",
                          "src": "465:9:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_bytes32_$dyn_storage_ptr",
                            "typeString": "bytes32[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "429:58:1"
                  },
                  "scope": 146,
                  "src": "367:121:1",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 71,
                    "nodeType": "StructuredDocumentation",
                    "src": "492:1511:1",
                    "text": " @notice Request a set of random words.\n @param keyHash - Corresponds to a particular oracle job which uses\n that key for generating the VRF proof. Different keyHash's have different gas price\n ceilings, so you can select a specific one to bound your maximum per request cost.\n @param subId  - The ID of the VRF subscription. Must be funded\n with the minimum subscription balance required for the selected keyHash.\n @param minimumRequestConfirmations - How many blocks you'd like the\n oracle to wait before responding to the request. See SECURITY CONSIDERATIONS\n for why you may want to request more. The acceptable range is\n [minimumRequestBlockConfirmations, 200].\n @param callbackGasLimit - How much gas you'd like to receive in your\n fulfillRandomWords callback. Note that gasleft() inside fulfillRandomWords\n may be slightly less than this amount because of gas used calling the function\n (argument decoding etc.), so you may need to request slightly more than you expect\n to have inside fulfillRandomWords. The acceptable range is\n [0, maxGasLimit]\n @param numWords - The number of uint256 random values you'd like to receive\n in your fulfillRandomWords callback. Note these numbers are expanded in a\n secure way by the VRFCoordinator from a single random value supplied by the oracle.\n @return requestId - A unique identifier of the request. Can be used to match\n a request to a response in fulfillRandomWords."
                  },
                  "functionSelector": "5d3b1d30",
                  "id": 86,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "requestRandomWords",
                  "nameLocation": "2015:18:1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 82,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 73,
                        "mutability": "mutable",
                        "name": "keyHash",
                        "nameLocation": "2047:7:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 86,
                        "src": "2039:15:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 72,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2039:7:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 75,
                        "mutability": "mutable",
                        "name": "subId",
                        "nameLocation": "2067:5:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 86,
                        "src": "2060:12:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 74,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "2060:6:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 77,
                        "mutability": "mutable",
                        "name": "minimumRequestConfirmations",
                        "nameLocation": "2085:27:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 86,
                        "src": "2078:34:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint16",
                          "typeString": "uint16"
                        },
                        "typeName": {
                          "id": 76,
                          "name": "uint16",
                          "nodeType": "ElementaryTypeName",
                          "src": "2078:6:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint16",
                            "typeString": "uint16"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 79,
                        "mutability": "mutable",
                        "name": "callbackGasLimit",
                        "nameLocation": "2125:16:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 86,
                        "src": "2118:23:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 78,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2118:6:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 81,
                        "mutability": "mutable",
                        "name": "numWords",
                        "nameLocation": "2154:8:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 86,
                        "src": "2147:15:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 80,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2147:6:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2033:133:1"
                  },
                  "returnParameters": {
                    "id": 85,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 84,
                        "mutability": "mutable",
                        "name": "requestId",
                        "nameLocation": "2193:9:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 86,
                        "src": "2185:17:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 83,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2185:7:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2184:19:1"
                  },
                  "scope": 146,
                  "src": "2006:198:1",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 87,
                    "nodeType": "StructuredDocumentation",
                    "src": "2208:384:1",
                    "text": " @notice Create a VRF subscription.\n @return subId - A unique subscription id.\n @dev You can manage the consumer set dynamically with addConsumer/removeConsumer.\n @dev Note to fund the subscription, use transferAndCall. For example\n @dev  LINKTOKEN.transferAndCall(\n @dev    address(COORDINATOR),\n @dev    amount,\n @dev    abi.encode(subId));"
                  },
                  "functionSelector": "a21a23e4",
                  "id": 92,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "createSubscription",
                  "nameLocation": "2604:18:1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 88,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2622:2:1"
                  },
                  "returnParameters": {
                    "id": 91,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 90,
                        "mutability": "mutable",
                        "name": "subId",
                        "nameLocation": "2650:5:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 92,
                        "src": "2643:12:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 89,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "2643:6:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2642:14:1"
                  },
                  "scope": 146,
                  "src": "2595:62:1",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 93,
                    "nodeType": "StructuredDocumentation",
                    "src": "2661:381:1",
                    "text": " @notice Get a VRF subscription.\n @param subId - ID of the subscription\n @return balance - LINK balance of the subscription in juels.\n @return reqCount - number of requests for this subscription, determines fee tier.\n @return owner - owner of the subscription.\n @return consumers - list of consumer address which are able to use this subscription."
                  },
                  "functionSelector": "a47c7696",
                  "id": 107,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getSubscription",
                  "nameLocation": "3054:15:1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 96,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 95,
                        "mutability": "mutable",
                        "name": "subId",
                        "nameLocation": "3077:5:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 107,
                        "src": "3070:12:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 94,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "3070:6:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3069:14:1"
                  },
                  "returnParameters": {
                    "id": 106,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 98,
                        "mutability": "mutable",
                        "name": "balance",
                        "nameLocation": "3133:7:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 107,
                        "src": "3126:14:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint96",
                          "typeString": "uint96"
                        },
                        "typeName": {
                          "id": 97,
                          "name": "uint96",
                          "nodeType": "ElementaryTypeName",
                          "src": "3126:6:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint96",
                            "typeString": "uint96"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 100,
                        "mutability": "mutable",
                        "name": "reqCount",
                        "nameLocation": "3155:8:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 107,
                        "src": "3148:15:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 99,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "3148:6:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 102,
                        "mutability": "mutable",
                        "name": "owner",
                        "nameLocation": "3179:5:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 107,
                        "src": "3171:13:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 101,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3171:7:1",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 105,
                        "mutability": "mutable",
                        "name": "consumers",
                        "nameLocation": "3209:9:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 107,
                        "src": "3192:26:1",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_address_$dyn_memory_ptr",
                          "typeString": "address[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 103,
                            "name": "address",
                            "nodeType": "ElementaryTypeName",
                            "src": "3192:7:1",
                            "stateMutability": "nonpayable",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "id": 104,
                          "nodeType": "ArrayTypeName",
                          "src": "3192:9:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_address_$dyn_storage_ptr",
                            "typeString": "address[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3118:106:1"
                  },
                  "scope": 146,
                  "src": "3045:180:1",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 108,
                    "nodeType": "StructuredDocumentation",
                    "src": "3229:164:1",
                    "text": " @notice Request subscription owner transfer.\n @param subId - ID of the subscription\n @param newOwner - proposed new owner of the subscription"
                  },
                  "functionSelector": "04c357cb",
                  "id": 115,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "requestSubscriptionOwnerTransfer",
                  "nameLocation": "3405:32:1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 113,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 110,
                        "mutability": "mutable",
                        "name": "subId",
                        "nameLocation": "3445:5:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 115,
                        "src": "3438:12:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 109,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "3438:6:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 112,
                        "mutability": "mutable",
                        "name": "newOwner",
                        "nameLocation": "3460:8:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 115,
                        "src": "3452:16:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 111,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3452:7:1",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3437:32:1"
                  },
                  "returnParameters": {
                    "id": 114,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3478:0:1"
                  },
                  "scope": 146,
                  "src": "3396:83:1",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 116,
                    "nodeType": "StructuredDocumentation",
                    "src": "3483:212:1",
                    "text": " @notice Request subscription owner transfer.\n @param subId - ID of the subscription\n @dev will revert if original owner of subId has\n not requested that msg.sender become the new owner."
                  },
                  "functionSelector": "82359740",
                  "id": 121,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "acceptSubscriptionOwnerTransfer",
                  "nameLocation": "3707:31:1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 119,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 118,
                        "mutability": "mutable",
                        "name": "subId",
                        "nameLocation": "3746:5:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 121,
                        "src": "3739:12:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 117,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "3739:6:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3738:14:1"
                  },
                  "returnParameters": {
                    "id": 120,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3761:0:1"
                  },
                  "scope": 146,
                  "src": "3698:64:1",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 122,
                    "nodeType": "StructuredDocumentation",
                    "src": "3766:170:1",
                    "text": " @notice Add a consumer to a VRF subscription.\n @param subId - ID of the subscription\n @param consumer - New consumer which can use the subscription"
                  },
                  "functionSelector": "7341c10c",
                  "id": 129,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "addConsumer",
                  "nameLocation": "3948:11:1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 127,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 124,
                        "mutability": "mutable",
                        "name": "subId",
                        "nameLocation": "3967:5:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 129,
                        "src": "3960:12:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 123,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "3960:6:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 126,
                        "mutability": "mutable",
                        "name": "consumer",
                        "nameLocation": "3982:8:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 129,
                        "src": "3974:16:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 125,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3974:7:1",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3959:32:1"
                  },
                  "returnParameters": {
                    "id": 128,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4000:0:1"
                  },
                  "scope": 146,
                  "src": "3939:62:1",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 130,
                    "nodeType": "StructuredDocumentation",
                    "src": "4005:172:1",
                    "text": " @notice Remove a consumer from a VRF subscription.\n @param subId - ID of the subscription\n @param consumer - Consumer to remove from the subscription"
                  },
                  "functionSelector": "9f87fad7",
                  "id": 137,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "removeConsumer",
                  "nameLocation": "4189:14:1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 135,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 132,
                        "mutability": "mutable",
                        "name": "subId",
                        "nameLocation": "4211:5:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 137,
                        "src": "4204:12:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 131,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "4204:6:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 134,
                        "mutability": "mutable",
                        "name": "consumer",
                        "nameLocation": "4226:8:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 137,
                        "src": "4218:16:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 133,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4218:7:1",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4203:32:1"
                  },
                  "returnParameters": {
                    "id": 136,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4244:0:1"
                  },
                  "scope": 146,
                  "src": "4180:65:1",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 138,
                    "nodeType": "StructuredDocumentation",
                    "src": "4249:140:1",
                    "text": " @notice Cancel a subscription\n @param subId - ID of the subscription\n @param to - Where to send the remaining LINK to"
                  },
                  "functionSelector": "d7ae1d30",
                  "id": 145,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "cancelSubscription",
                  "nameLocation": "4401:18:1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 143,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 140,
                        "mutability": "mutable",
                        "name": "subId",
                        "nameLocation": "4427:5:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 145,
                        "src": "4420:12:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 139,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "4420:6:1",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 142,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "4442:2:1",
                        "nodeType": "VariableDeclaration",
                        "scope": 145,
                        "src": "4434:10:1",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 141,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4434:7:1",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4419:26:1"
                  },
                  "returnParameters": {
                    "id": 144,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4454:0:1"
                  },
                  "scope": 146,
                  "src": "4392:63:1",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 147,
              "src": "57:4400:1",
              "usedErrors": []
            }
          ],
          "src": "32:4426:1"
        },
        "id": 1
      },
      "@openzeppelin/contracts/proxy/Clones.sol": {
        "ast": {
          "absolutePath": "@openzeppelin/contracts/proxy/Clones.sol",
          "exportedSymbols": {
            "Clones": [
              226
            ]
          },
          "id": 227,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 148,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "85:23:2"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "library",
              "documentation": {
                "id": 149,
                "nodeType": "StructuredDocumentation",
                "src": "110:629:2",
                "text": " @dev https://eips.ethereum.org/EIPS/eip-1167[EIP 1167] is a standard for\n deploying minimal proxy contracts, also known as \"clones\".\n > To simply and cheaply clone contract functionality in an immutable way, this standard specifies\n > a minimal bytecode implementation that delegates all calls to a known, fixed address.\n The library includes functions to deploy a proxy using either `create` (traditional deployment) or `create2`\n (salted deterministic deployment). It also includes functions to predict the addresses of clones deployed using the\n deterministic method.\n _Available since v3.4._"
              },
              "fullyImplemented": true,
              "id": 226,
              "linearizedBaseContracts": [
                226
              ],
              "name": "Clones",
              "nameLocation": "748:6:2",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "body": {
                    "id": 168,
                    "nodeType": "Block",
                    "src": "1033:440:2",
                    "statements": [
                      {
                        "AST": {
                          "nodeType": "YulBlock",
                          "src": "1052:348:2",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1066:22:2",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1083:4:2",
                                    "type": "",
                                    "value": "0x40"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1077:5:2"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1077:11:2"
                              },
                              "variables": [
                                {
                                  "name": "ptr",
                                  "nodeType": "YulTypedName",
                                  "src": "1070:3:2",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "ptr",
                                    "nodeType": "YulIdentifier",
                                    "src": "1108:3:2"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1113:66:2",
                                    "type": "",
                                    "value": "0x3d602d80600a3d3981f3363d3d373d3d3d363d73000000000000000000000000"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1101:6:2"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1101:79:2"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1101:79:2"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "ptr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1204:3:2"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1209:4:2",
                                        "type": "",
                                        "value": "0x14"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1200:3:2"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1200:14:2"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1220:4:2",
                                        "type": "",
                                        "value": "0x60"
                                      },
                                      {
                                        "name": "implementation",
                                        "nodeType": "YulIdentifier",
                                        "src": "1226:14:2"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "1216:3:2"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1216:25:2"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1193:6:2"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1193:49:2"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1193:49:2"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "ptr",
                                        "nodeType": "YulIdentifier",
                                        "src": "1266:3:2"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "1271:4:2",
                                        "type": "",
                                        "value": "0x28"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "1262:3:2"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "1262:14:2"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1278:66:2",
                                    "type": "",
                                    "value": "0x5af43d82803e903d91602b57fd5bf30000000000000000000000000000000000"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "1255:6:2"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1255:90:2"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "1255:90:2"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "1358:32:2",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1377:1:2",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "name": "ptr",
                                    "nodeType": "YulIdentifier",
                                    "src": "1380:3:2"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "1385:4:2",
                                    "type": "",
                                    "value": "0x37"
                                  }
                                ],
                                "functionName": {
                                  "name": "create",
                                  "nodeType": "YulIdentifier",
                                  "src": "1370:6:2"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1370:20:2"
                              },
                              "variableNames": [
                                {
                                  "name": "instance",
                                  "nodeType": "YulIdentifier",
                                  "src": "1358:8:2"
                                }
                              ]
                            }
                          ]
                        },
                        "evmVersion": "berlin",
                        "externalReferences": [
                          {
                            "declaration": 152,
                            "isOffset": false,
                            "isSlot": false,
                            "src": "1226:14:2",
                            "valueSize": 1
                          },
                          {
                            "declaration": 155,
                            "isOffset": false,
                            "isSlot": false,
                            "src": "1358:8:2",
                            "valueSize": 1
                          }
                        ],
                        "id": 157,
                        "nodeType": "InlineAssembly",
                        "src": "1043:357:2"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 164,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 159,
                                "name": "instance",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 155,
                                "src": "1417:8:2",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 162,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "1437:1:2",
                                    "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": 161,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "1429:7:2",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 160,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "1429:7:2",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 163,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1429:10:2",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "1417:22:2",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "455243313136373a20637265617465206661696c6564",
                              "id": 165,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1441:24:2",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_68ca40b61460257f14e69f48b1a4dbc812e9afc6932f127ef8084544457b3335",
                                "typeString": "literal_string \"ERC1167: create failed\""
                              },
                              "value": "ERC1167: create failed"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_68ca40b61460257f14e69f48b1a4dbc812e9afc6932f127ef8084544457b3335",
                                "typeString": "literal_string \"ERC1167: create failed\""
                              }
                            ],
                            "id": 158,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1409:7:2",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 166,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1409:57:2",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 167,
                        "nodeType": "ExpressionStatement",
                        "src": "1409:57:2"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 150,
                    "nodeType": "StructuredDocumentation",
                    "src": "761:192:2",
                    "text": " @dev Deploys and returns the address of a clone that mimics the behaviour of `implementation`.\n This function uses the create opcode, which should never revert."
                  },
                  "id": 169,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "clone",
                  "nameLocation": "967:5:2",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 153,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 152,
                        "mutability": "mutable",
                        "name": "implementation",
                        "nameLocation": "981:14:2",
                        "nodeType": "VariableDeclaration",
                        "scope": 169,
                        "src": "973:22:2",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 151,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "973:7:2",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "972:24:2"
                  },
                  "returnParameters": {
                    "id": 156,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 155,
                        "mutability": "mutable",
                        "name": "instance",
                        "nameLocation": "1023:8:2",
                        "nodeType": "VariableDeclaration",
                        "scope": 169,
                        "src": "1015:16:2",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 154,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1015:7:2",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1014:18:2"
                  },
                  "scope": 226,
                  "src": "958:515:2",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 190,
                    "nodeType": "Block",
                    "src": "1950:448:2",
                    "statements": [
                      {
                        "AST": {
                          "nodeType": "YulBlock",
                          "src": "1969:355:2",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "1983:22:2",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2000:4:2",
                                    "type": "",
                                    "value": "0x40"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "1994:5:2"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1994:11:2"
                              },
                              "variables": [
                                {
                                  "name": "ptr",
                                  "nodeType": "YulTypedName",
                                  "src": "1987:3:2",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "ptr",
                                    "nodeType": "YulIdentifier",
                                    "src": "2025:3:2"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2030:66:2",
                                    "type": "",
                                    "value": "0x3d602d80600a3d3981f3363d3d373d3d3d363d73000000000000000000000000"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2018:6:2"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2018:79:2"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2018:79:2"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "ptr",
                                        "nodeType": "YulIdentifier",
                                        "src": "2121:3:2"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2126:4:2",
                                        "type": "",
                                        "value": "0x14"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2117:3:2"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2117:14:2"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2137:4:2",
                                        "type": "",
                                        "value": "0x60"
                                      },
                                      {
                                        "name": "implementation",
                                        "nodeType": "YulIdentifier",
                                        "src": "2143:14:2"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "2133:3:2"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2133:25:2"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2110:6:2"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2110:49:2"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2110:49:2"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "ptr",
                                        "nodeType": "YulIdentifier",
                                        "src": "2183:3:2"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2188:4:2",
                                        "type": "",
                                        "value": "0x28"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2179:3:2"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2179:14:2"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2195:66:2",
                                    "type": "",
                                    "value": "0x5af43d82803e903d91602b57fd5bf30000000000000000000000000000000000"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2172:6:2"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2172:90:2"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2172:90:2"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "2275:39:2",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2295:1:2",
                                    "type": "",
                                    "value": "0"
                                  },
                                  {
                                    "name": "ptr",
                                    "nodeType": "YulIdentifier",
                                    "src": "2298:3:2"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2303:4:2",
                                    "type": "",
                                    "value": "0x37"
                                  },
                                  {
                                    "name": "salt",
                                    "nodeType": "YulIdentifier",
                                    "src": "2309:4:2"
                                  }
                                ],
                                "functionName": {
                                  "name": "create2",
                                  "nodeType": "YulIdentifier",
                                  "src": "2287:7:2"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2287:27:2"
                              },
                              "variableNames": [
                                {
                                  "name": "instance",
                                  "nodeType": "YulIdentifier",
                                  "src": "2275:8:2"
                                }
                              ]
                            }
                          ]
                        },
                        "evmVersion": "berlin",
                        "externalReferences": [
                          {
                            "declaration": 172,
                            "isOffset": false,
                            "isSlot": false,
                            "src": "2143:14:2",
                            "valueSize": 1
                          },
                          {
                            "declaration": 177,
                            "isOffset": false,
                            "isSlot": false,
                            "src": "2275:8:2",
                            "valueSize": 1
                          },
                          {
                            "declaration": 174,
                            "isOffset": false,
                            "isSlot": false,
                            "src": "2309:4:2",
                            "valueSize": 1
                          }
                        ],
                        "id": 179,
                        "nodeType": "InlineAssembly",
                        "src": "1960:364:2"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 186,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 181,
                                "name": "instance",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 177,
                                "src": "2341:8:2",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 184,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "2361:1:2",
                                    "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": 183,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "2353:7:2",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 182,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "2353:7:2",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 185,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "2353:10:2",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "2341:22:2",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "455243313136373a2063726561746532206661696c6564",
                              "id": 187,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2365:25:2",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_4ec050e530ce66e7658278ab7a4e4a2f19225159c48fc52eb249bd268e755d73",
                                "typeString": "literal_string \"ERC1167: create2 failed\""
                              },
                              "value": "ERC1167: create2 failed"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_4ec050e530ce66e7658278ab7a4e4a2f19225159c48fc52eb249bd268e755d73",
                                "typeString": "literal_string \"ERC1167: create2 failed\""
                              }
                            ],
                            "id": 180,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2333:7:2",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 188,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2333:58:2",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 189,
                        "nodeType": "ExpressionStatement",
                        "src": "2333:58:2"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 170,
                    "nodeType": "StructuredDocumentation",
                    "src": "1479:364:2",
                    "text": " @dev Deploys and returns the address of a clone that mimics the behaviour of `implementation`.\n This function uses the create2 opcode and a `salt` to deterministically deploy\n the clone. Using the same `implementation` and `salt` multiple time will revert, since\n the clones cannot be deployed twice at the same address."
                  },
                  "id": 191,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "cloneDeterministic",
                  "nameLocation": "1857:18:2",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 175,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 172,
                        "mutability": "mutable",
                        "name": "implementation",
                        "nameLocation": "1884:14:2",
                        "nodeType": "VariableDeclaration",
                        "scope": 191,
                        "src": "1876:22:2",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 171,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1876:7:2",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 174,
                        "mutability": "mutable",
                        "name": "salt",
                        "nameLocation": "1908:4:2",
                        "nodeType": "VariableDeclaration",
                        "scope": 191,
                        "src": "1900:12:2",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 173,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1900:7:2",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1875:38:2"
                  },
                  "returnParameters": {
                    "id": 178,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 177,
                        "mutability": "mutable",
                        "name": "instance",
                        "nameLocation": "1940:8:2",
                        "nodeType": "VariableDeclaration",
                        "scope": 191,
                        "src": "1932:16:2",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 176,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1932:7:2",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1931:18:2"
                  },
                  "scope": 226,
                  "src": "1848:550:2",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 204,
                    "nodeType": "Block",
                    "src": "2673:539:2",
                    "statements": [
                      {
                        "AST": {
                          "nodeType": "YulBlock",
                          "src": "2692:514:2",
                          "statements": [
                            {
                              "nodeType": "YulVariableDeclaration",
                              "src": "2706:22:2",
                              "value": {
                                "arguments": [
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2723:4:2",
                                    "type": "",
                                    "value": "0x40"
                                  }
                                ],
                                "functionName": {
                                  "name": "mload",
                                  "nodeType": "YulIdentifier",
                                  "src": "2717:5:2"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2717:11:2"
                              },
                              "variables": [
                                {
                                  "name": "ptr",
                                  "nodeType": "YulTypedName",
                                  "src": "2710:3:2",
                                  "type": ""
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "name": "ptr",
                                    "nodeType": "YulIdentifier",
                                    "src": "2748:3:2"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2753:66:2",
                                    "type": "",
                                    "value": "0x3d602d80600a3d3981f3363d3d373d3d3d363d73000000000000000000000000"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2741:6:2"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2741:79:2"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2741:79:2"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "ptr",
                                        "nodeType": "YulIdentifier",
                                        "src": "2844:3:2"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2849:4:2",
                                        "type": "",
                                        "value": "0x14"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2840:3:2"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2840:14:2"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2860:4:2",
                                        "type": "",
                                        "value": "0x60"
                                      },
                                      {
                                        "name": "implementation",
                                        "nodeType": "YulIdentifier",
                                        "src": "2866:14:2"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "2856:3:2"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2856:25:2"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2833:6:2"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2833:49:2"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2833:49:2"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "ptr",
                                        "nodeType": "YulIdentifier",
                                        "src": "2906:3:2"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "2911:4:2",
                                        "type": "",
                                        "value": "0x28"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "2902:3:2"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "2902:14:2"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "2918:66:2",
                                    "type": "",
                                    "value": "0x5af43d82803e903d91602b57fd5bf3ff00000000000000000000000000000000"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2895:6:2"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2895:90:2"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2895:90:2"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "ptr",
                                        "nodeType": "YulIdentifier",
                                        "src": "3009:3:2"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3014:4:2",
                                        "type": "",
                                        "value": "0x38"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3005:3:2"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3005:14:2"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3025:4:2",
                                        "type": "",
                                        "value": "0x60"
                                      },
                                      {
                                        "name": "deployer",
                                        "nodeType": "YulIdentifier",
                                        "src": "3031:8:2"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shl",
                                      "nodeType": "YulIdentifier",
                                      "src": "3021:3:2"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3021:19:2"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "2998:6:2"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "2998:43:2"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "2998:43:2"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "ptr",
                                        "nodeType": "YulIdentifier",
                                        "src": "3065:3:2"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3070:4:2",
                                        "type": "",
                                        "value": "0x4c"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3061:3:2"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3061:14:2"
                                  },
                                  {
                                    "name": "salt",
                                    "nodeType": "YulIdentifier",
                                    "src": "3077:4:2"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3054:6:2"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3054:28:2"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3054:28:2"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "ptr",
                                        "nodeType": "YulIdentifier",
                                        "src": "3106:3:2"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3111:4:2",
                                        "type": "",
                                        "value": "0x6c"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3102:3:2"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3102:14:2"
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "name": "ptr",
                                        "nodeType": "YulIdentifier",
                                        "src": "3128:3:2"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3133:4:2",
                                        "type": "",
                                        "value": "0x37"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "keccak256",
                                      "nodeType": "YulIdentifier",
                                      "src": "3118:9:2"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3118:20:2"
                                  }
                                ],
                                "functionName": {
                                  "name": "mstore",
                                  "nodeType": "YulIdentifier",
                                  "src": "3095:6:2"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3095:44:2"
                              },
                              "nodeType": "YulExpressionStatement",
                              "src": "3095:44:2"
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "3152:44:2",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "name": "ptr",
                                        "nodeType": "YulIdentifier",
                                        "src": "3179:3:2"
                                      },
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "3184:4:2",
                                        "type": "",
                                        "value": "0x37"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "add",
                                      "nodeType": "YulIdentifier",
                                      "src": "3175:3:2"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "3175:14:2"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "3191:4:2",
                                    "type": "",
                                    "value": "0x55"
                                  }
                                ],
                                "functionName": {
                                  "name": "keccak256",
                                  "nodeType": "YulIdentifier",
                                  "src": "3165:9:2"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "3165:31:2"
                              },
                              "variableNames": [
                                {
                                  "name": "predicted",
                                  "nodeType": "YulIdentifier",
                                  "src": "3152:9:2"
                                }
                              ]
                            }
                          ]
                        },
                        "evmVersion": "berlin",
                        "externalReferences": [
                          {
                            "declaration": 198,
                            "isOffset": false,
                            "isSlot": false,
                            "src": "3031:8:2",
                            "valueSize": 1
                          },
                          {
                            "declaration": 194,
                            "isOffset": false,
                            "isSlot": false,
                            "src": "2866:14:2",
                            "valueSize": 1
                          },
                          {
                            "declaration": 201,
                            "isOffset": false,
                            "isSlot": false,
                            "src": "3152:9:2",
                            "valueSize": 1
                          },
                          {
                            "declaration": 196,
                            "isOffset": false,
                            "isSlot": false,
                            "src": "3077:4:2",
                            "valueSize": 1
                          }
                        ],
                        "id": 203,
                        "nodeType": "InlineAssembly",
                        "src": "2683:523:2"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 192,
                    "nodeType": "StructuredDocumentation",
                    "src": "2404:99:2",
                    "text": " @dev Computes the address of a clone deployed using {Clones-cloneDeterministic}."
                  },
                  "id": 205,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "predictDeterministicAddress",
                  "nameLocation": "2517:27:2",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 199,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 194,
                        "mutability": "mutable",
                        "name": "implementation",
                        "nameLocation": "2562:14:2",
                        "nodeType": "VariableDeclaration",
                        "scope": 205,
                        "src": "2554:22:2",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 193,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2554:7:2",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 196,
                        "mutability": "mutable",
                        "name": "salt",
                        "nameLocation": "2594:4:2",
                        "nodeType": "VariableDeclaration",
                        "scope": 205,
                        "src": "2586:12:2",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 195,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2586:7:2",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 198,
                        "mutability": "mutable",
                        "name": "deployer",
                        "nameLocation": "2616:8:2",
                        "nodeType": "VariableDeclaration",
                        "scope": 205,
                        "src": "2608:16:2",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 197,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2608:7:2",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2544:86:2"
                  },
                  "returnParameters": {
                    "id": 202,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 201,
                        "mutability": "mutable",
                        "name": "predicted",
                        "nameLocation": "2662:9:2",
                        "nodeType": "VariableDeclaration",
                        "scope": 205,
                        "src": "2654:17:2",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 200,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2654:7:2",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2653:19:2"
                  },
                  "scope": 226,
                  "src": "2508:704:2",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 224,
                    "nodeType": "Block",
                    "src": "3467:88:2",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 216,
                              "name": "implementation",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 208,
                              "src": "3512:14:2",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 217,
                              "name": "salt",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 210,
                              "src": "3528:4:2",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "id": 220,
                                  "name": "this",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -28,
                                  "src": "3542:4:2",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_Clones_$226",
                                    "typeString": "library Clones"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_Clones_$226",
                                    "typeString": "library Clones"
                                  }
                                ],
                                "id": 219,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "3534:7:2",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 218,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "3534:7:2",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 221,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "3534:13:2",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 215,
                            "name": "predictDeterministicAddress",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              205,
                              225
                            ],
                            "referencedDeclaration": 205,
                            "src": "3484:27:2",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_address_$_t_bytes32_$_t_address_$returns$_t_address_$",
                              "typeString": "function (address,bytes32,address) pure returns (address)"
                            }
                          },
                          "id": 222,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3484:64:2",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "functionReturnParameters": 214,
                        "id": 223,
                        "nodeType": "Return",
                        "src": "3477:71:2"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 206,
                    "nodeType": "StructuredDocumentation",
                    "src": "3218:99:2",
                    "text": " @dev Computes the address of a clone deployed using {Clones-cloneDeterministic}."
                  },
                  "id": 225,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "predictDeterministicAddress",
                  "nameLocation": "3331:27:2",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 211,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 208,
                        "mutability": "mutable",
                        "name": "implementation",
                        "nameLocation": "3367:14:2",
                        "nodeType": "VariableDeclaration",
                        "scope": 225,
                        "src": "3359:22:2",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 207,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3359:7:2",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 210,
                        "mutability": "mutable",
                        "name": "salt",
                        "nameLocation": "3391:4:2",
                        "nodeType": "VariableDeclaration",
                        "scope": 225,
                        "src": "3383:12:2",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 209,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "3383:7:2",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3358:38:2"
                  },
                  "returnParameters": {
                    "id": 214,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 213,
                        "mutability": "mutable",
                        "name": "predicted",
                        "nameLocation": "3452:9:2",
                        "nodeType": "VariableDeclaration",
                        "scope": 225,
                        "src": "3444:17:2",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 212,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3444:7:2",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3443:19:2"
                  },
                  "scope": 226,
                  "src": "3322:233:2",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 227,
              "src": "740:2817:2",
              "usedErrors": []
            }
          ],
          "src": "85:3473:2"
        },
        "id": 2
      },
      "@openzeppelin/contracts/security/ReentrancyGuard.sol": {
        "ast": {
          "absolutePath": "@openzeppelin/contracts/security/ReentrancyGuard.sol",
          "exportedSymbols": {
            "ReentrancyGuard": [
              266
            ]
          },
          "id": 267,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 228,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "97:23:3"
            },
            {
              "abstract": true,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 229,
                "nodeType": "StructuredDocumentation",
                "src": "122:750:3",
                "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": 266,
              "linearizedBaseContracts": [
                266
              ],
              "name": "ReentrancyGuard",
              "nameLocation": "891:15:3",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "constant": true,
                  "id": 232,
                  "mutability": "constant",
                  "name": "_NOT_ENTERED",
                  "nameLocation": "1686:12:3",
                  "nodeType": "VariableDeclaration",
                  "scope": 266,
                  "src": "1661:41:3",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 230,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "1661:7:3",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": {
                    "hexValue": "31",
                    "id": 231,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "number",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "1701:1:3",
                    "typeDescriptions": {
                      "typeIdentifier": "t_rational_1_by_1",
                      "typeString": "int_const 1"
                    },
                    "value": "1"
                  },
                  "visibility": "private"
                },
                {
                  "constant": true,
                  "id": 235,
                  "mutability": "constant",
                  "name": "_ENTERED",
                  "nameLocation": "1733:8:3",
                  "nodeType": "VariableDeclaration",
                  "scope": 266,
                  "src": "1708:37:3",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 233,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "1708:7:3",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": {
                    "hexValue": "32",
                    "id": 234,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "number",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "1744:1:3",
                    "typeDescriptions": {
                      "typeIdentifier": "t_rational_2_by_1",
                      "typeString": "int_const 2"
                    },
                    "value": "2"
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "id": 237,
                  "mutability": "mutable",
                  "name": "_status",
                  "nameLocation": "1768:7:3",
                  "nodeType": "VariableDeclaration",
                  "scope": 266,
                  "src": "1752:23:3",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 236,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "1752:7:3",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "body": {
                    "id": 244,
                    "nodeType": "Block",
                    "src": "1796:39:3",
                    "statements": [
                      {
                        "expression": {
                          "id": 242,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 240,
                            "name": "_status",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 237,
                            "src": "1806:7:3",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 241,
                            "name": "_NOT_ENTERED",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 232,
                            "src": "1816:12:3",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "1806:22:3",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 243,
                        "nodeType": "ExpressionStatement",
                        "src": "1806:22:3"
                      }
                    ]
                  },
                  "id": 245,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 238,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1793:2:3"
                  },
                  "returnParameters": {
                    "id": 239,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1796:0:3"
                  },
                  "scope": 266,
                  "src": "1782:53:3",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 264,
                    "nodeType": "Block",
                    "src": "2236:421:3",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 251,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 249,
                                "name": "_status",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 237,
                                "src": "2325:7:3",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "id": 250,
                                "name": "_ENTERED",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 235,
                                "src": "2336:8:3",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "2325:19:3",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5265656e7472616e637947756172643a207265656e7472616e742063616c6c",
                              "id": 252,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2346:33:3",
                              "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": 248,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2317:7:3",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 253,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2317:63:3",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 254,
                        "nodeType": "ExpressionStatement",
                        "src": "2317:63:3"
                      },
                      {
                        "expression": {
                          "id": 257,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 255,
                            "name": "_status",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 237,
                            "src": "2455:7:3",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 256,
                            "name": "_ENTERED",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 235,
                            "src": "2465:8:3",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "2455:18:3",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 258,
                        "nodeType": "ExpressionStatement",
                        "src": "2455:18:3"
                      },
                      {
                        "id": 259,
                        "nodeType": "PlaceholderStatement",
                        "src": "2484:1:3"
                      },
                      {
                        "expression": {
                          "id": 262,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 260,
                            "name": "_status",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 237,
                            "src": "2628:7:3",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 261,
                            "name": "_NOT_ENTERED",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 232,
                            "src": "2638:12:3",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "2628:22:3",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 263,
                        "nodeType": "ExpressionStatement",
                        "src": "2628:22:3"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 246,
                    "nodeType": "StructuredDocumentation",
                    "src": "1841:366:3",
                    "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": 265,
                  "name": "nonReentrant",
                  "nameLocation": "2221:12:3",
                  "nodeType": "ModifierDefinition",
                  "parameters": {
                    "id": 247,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2233:2:3"
                  },
                  "src": "2212:445:3",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 267,
              "src": "873:1786:3",
              "usedErrors": []
            }
          ],
          "src": "97:2563:3"
        },
        "id": 3
      },
      "@openzeppelin/contracts/token/ERC20/ERC20.sol": {
        "ast": {
          "absolutePath": "@openzeppelin/contracts/token/ERC20/ERC20.sol",
          "exportedSymbols": {
            "Context": [
              1797
            ],
            "ERC20": [
              812
            ],
            "IERC20": [
              890
            ],
            "IERC20Metadata": [
              915
            ]
          },
          "id": 813,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 268,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "90:23:4"
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "file": "./IERC20.sol",
              "id": 269,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 813,
              "sourceUnit": 891,
              "src": "115:22:4",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol",
              "file": "./extensions/IERC20Metadata.sol",
              "id": 270,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 813,
              "sourceUnit": 916,
              "src": "138:41:4",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/utils/Context.sol",
              "file": "../../utils/Context.sol",
              "id": 271,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 813,
              "sourceUnit": 1798,
              "src": "180:33:4",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 273,
                    "name": "Context",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 1797,
                    "src": "1406:7:4"
                  },
                  "id": 274,
                  "nodeType": "InheritanceSpecifier",
                  "src": "1406:7:4"
                },
                {
                  "baseName": {
                    "id": 275,
                    "name": "IERC20",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 890,
                    "src": "1415:6:4"
                  },
                  "id": 276,
                  "nodeType": "InheritanceSpecifier",
                  "src": "1415:6:4"
                },
                {
                  "baseName": {
                    "id": 277,
                    "name": "IERC20Metadata",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 915,
                    "src": "1423:14:4"
                  },
                  "id": 278,
                  "nodeType": "InheritanceSpecifier",
                  "src": "1423:14:4"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 272,
                "nodeType": "StructuredDocumentation",
                "src": "215:1172:4",
                "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": 812,
              "linearizedBaseContracts": [
                812,
                915,
                890,
                1797
              ],
              "name": "ERC20",
              "nameLocation": "1397:5:4",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "constant": false,
                  "id": 282,
                  "mutability": "mutable",
                  "name": "_balances",
                  "nameLocation": "1480:9:4",
                  "nodeType": "VariableDeclaration",
                  "scope": 812,
                  "src": "1444:45:4",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                    "typeString": "mapping(address => uint256)"
                  },
                  "typeName": {
                    "id": 281,
                    "keyType": {
                      "id": 279,
                      "name": "address",
                      "nodeType": "ElementaryTypeName",
                      "src": "1452:7:4",
                      "typeDescriptions": {
                        "typeIdentifier": "t_address",
                        "typeString": "address"
                      }
                    },
                    "nodeType": "Mapping",
                    "src": "1444:27:4",
                    "typeDescriptions": {
                      "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                      "typeString": "mapping(address => uint256)"
                    },
                    "valueType": {
                      "id": 280,
                      "name": "uint256",
                      "nodeType": "ElementaryTypeName",
                      "src": "1463:7:4",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint256",
                        "typeString": "uint256"
                      }
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "id": 288,
                  "mutability": "mutable",
                  "name": "_allowances",
                  "nameLocation": "1552:11:4",
                  "nodeType": "VariableDeclaration",
                  "scope": 812,
                  "src": "1496:67:4",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$",
                    "typeString": "mapping(address => mapping(address => uint256))"
                  },
                  "typeName": {
                    "id": 287,
                    "keyType": {
                      "id": 283,
                      "name": "address",
                      "nodeType": "ElementaryTypeName",
                      "src": "1504:7:4",
                      "typeDescriptions": {
                        "typeIdentifier": "t_address",
                        "typeString": "address"
                      }
                    },
                    "nodeType": "Mapping",
                    "src": "1496:47:4",
                    "typeDescriptions": {
                      "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$",
                      "typeString": "mapping(address => mapping(address => uint256))"
                    },
                    "valueType": {
                      "id": 286,
                      "keyType": {
                        "id": 284,
                        "name": "address",
                        "nodeType": "ElementaryTypeName",
                        "src": "1523:7:4",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        }
                      },
                      "nodeType": "Mapping",
                      "src": "1515:27:4",
                      "typeDescriptions": {
                        "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                        "typeString": "mapping(address => uint256)"
                      },
                      "valueType": {
                        "id": 285,
                        "name": "uint256",
                        "nodeType": "ElementaryTypeName",
                        "src": "1534:7:4",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        }
                      }
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "id": 290,
                  "mutability": "mutable",
                  "name": "_totalSupply",
                  "nameLocation": "1586:12:4",
                  "nodeType": "VariableDeclaration",
                  "scope": 812,
                  "src": "1570:28:4",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 289,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "1570:7:4",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "id": 292,
                  "mutability": "mutable",
                  "name": "_name",
                  "nameLocation": "1620:5:4",
                  "nodeType": "VariableDeclaration",
                  "scope": 812,
                  "src": "1605:20:4",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_string_storage",
                    "typeString": "string"
                  },
                  "typeName": {
                    "id": 291,
                    "name": "string",
                    "nodeType": "ElementaryTypeName",
                    "src": "1605:6:4",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_storage_ptr",
                      "typeString": "string"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "id": 294,
                  "mutability": "mutable",
                  "name": "_symbol",
                  "nameLocation": "1646:7:4",
                  "nodeType": "VariableDeclaration",
                  "scope": 812,
                  "src": "1631:22:4",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_string_storage",
                    "typeString": "string"
                  },
                  "typeName": {
                    "id": 293,
                    "name": "string",
                    "nodeType": "ElementaryTypeName",
                    "src": "1631:6:4",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_storage_ptr",
                      "typeString": "string"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "body": {
                    "id": 310,
                    "nodeType": "Block",
                    "src": "2019:57:4",
                    "statements": [
                      {
                        "expression": {
                          "id": 304,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 302,
                            "name": "_name",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 292,
                            "src": "2029:5:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_string_storage",
                              "typeString": "string storage ref"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 303,
                            "name": "name_",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 297,
                            "src": "2037:5:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_string_memory_ptr",
                              "typeString": "string memory"
                            }
                          },
                          "src": "2029:13:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage",
                            "typeString": "string storage ref"
                          }
                        },
                        "id": 305,
                        "nodeType": "ExpressionStatement",
                        "src": "2029:13:4"
                      },
                      {
                        "expression": {
                          "id": 308,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 306,
                            "name": "_symbol",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 294,
                            "src": "2052:7:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_string_storage",
                              "typeString": "string storage ref"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 307,
                            "name": "symbol_",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 299,
                            "src": "2062:7:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_string_memory_ptr",
                              "typeString": "string memory"
                            }
                          },
                          "src": "2052:17:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage",
                            "typeString": "string storage ref"
                          }
                        },
                        "id": 309,
                        "nodeType": "ExpressionStatement",
                        "src": "2052:17:4"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 295,
                    "nodeType": "StructuredDocumentation",
                    "src": "1660:298:4",
                    "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": 311,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 300,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 297,
                        "mutability": "mutable",
                        "name": "name_",
                        "nameLocation": "1989:5:4",
                        "nodeType": "VariableDeclaration",
                        "scope": 311,
                        "src": "1975:19:4",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 296,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "1975:6:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 299,
                        "mutability": "mutable",
                        "name": "symbol_",
                        "nameLocation": "2010:7:4",
                        "nodeType": "VariableDeclaration",
                        "scope": 311,
                        "src": "1996:21:4",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 298,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "1996:6:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1974:44:4"
                  },
                  "returnParameters": {
                    "id": 301,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2019:0:4"
                  },
                  "scope": 812,
                  "src": "1963:113:4",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    902
                  ],
                  "body": {
                    "id": 320,
                    "nodeType": "Block",
                    "src": "2210:29:4",
                    "statements": [
                      {
                        "expression": {
                          "id": 318,
                          "name": "_name",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 292,
                          "src": "2227:5:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage",
                            "typeString": "string storage ref"
                          }
                        },
                        "functionReturnParameters": 317,
                        "id": 319,
                        "nodeType": "Return",
                        "src": "2220:12:4"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 312,
                    "nodeType": "StructuredDocumentation",
                    "src": "2082:54:4",
                    "text": " @dev Returns the name of the token."
                  },
                  "functionSelector": "06fdde03",
                  "id": 321,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "name",
                  "nameLocation": "2150:4:4",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 314,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2177:8:4"
                  },
                  "parameters": {
                    "id": 313,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2154:2:4"
                  },
                  "returnParameters": {
                    "id": 317,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 316,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 321,
                        "src": "2195:13:4",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 315,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "2195:6:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2194:15:4"
                  },
                  "scope": 812,
                  "src": "2141:98:4",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    908
                  ],
                  "body": {
                    "id": 330,
                    "nodeType": "Block",
                    "src": "2423:31:4",
                    "statements": [
                      {
                        "expression": {
                          "id": 328,
                          "name": "_symbol",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 294,
                          "src": "2440:7:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage",
                            "typeString": "string storage ref"
                          }
                        },
                        "functionReturnParameters": 327,
                        "id": 329,
                        "nodeType": "Return",
                        "src": "2433:14:4"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 322,
                    "nodeType": "StructuredDocumentation",
                    "src": "2245:102:4",
                    "text": " @dev Returns the symbol of the token, usually a shorter version of the\n name."
                  },
                  "functionSelector": "95d89b41",
                  "id": 331,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "symbol",
                  "nameLocation": "2361:6:4",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 324,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2390:8:4"
                  },
                  "parameters": {
                    "id": 323,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2367:2:4"
                  },
                  "returnParameters": {
                    "id": 327,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 326,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 331,
                        "src": "2408:13:4",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 325,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "2408:6:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2407:15:4"
                  },
                  "scope": 812,
                  "src": "2352:102:4",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    914
                  ],
                  "body": {
                    "id": 340,
                    "nodeType": "Block",
                    "src": "3143:26:4",
                    "statements": [
                      {
                        "expression": {
                          "hexValue": "3138",
                          "id": 338,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "number",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "3160:2:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_rational_18_by_1",
                            "typeString": "int_const 18"
                          },
                          "value": "18"
                        },
                        "functionReturnParameters": 337,
                        "id": 339,
                        "nodeType": "Return",
                        "src": "3153:9:4"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 332,
                    "nodeType": "StructuredDocumentation",
                    "src": "2460:613:4",
                    "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": 341,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "decimals",
                  "nameLocation": "3087:8:4",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 334,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3118:8:4"
                  },
                  "parameters": {
                    "id": 333,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3095:2:4"
                  },
                  "returnParameters": {
                    "id": 337,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 336,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 341,
                        "src": "3136:5:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 335,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "3136:5:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3135:7:4"
                  },
                  "scope": 812,
                  "src": "3078:91:4",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    821
                  ],
                  "body": {
                    "id": 350,
                    "nodeType": "Block",
                    "src": "3299:36:4",
                    "statements": [
                      {
                        "expression": {
                          "id": 348,
                          "name": "_totalSupply",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 290,
                          "src": "3316:12:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 347,
                        "id": 349,
                        "nodeType": "Return",
                        "src": "3309:19:4"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 342,
                    "nodeType": "StructuredDocumentation",
                    "src": "3175:49:4",
                    "text": " @dev See {IERC20-totalSupply}."
                  },
                  "functionSelector": "18160ddd",
                  "id": 351,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "totalSupply",
                  "nameLocation": "3238:11:4",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 344,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3272:8:4"
                  },
                  "parameters": {
                    "id": 343,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3249:2:4"
                  },
                  "returnParameters": {
                    "id": 347,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 346,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 351,
                        "src": "3290:7:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 345,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3290:7:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3289:9:4"
                  },
                  "scope": 812,
                  "src": "3229:106:4",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    829
                  ],
                  "body": {
                    "id": 364,
                    "nodeType": "Block",
                    "src": "3476:42:4",
                    "statements": [
                      {
                        "expression": {
                          "baseExpression": {
                            "id": 360,
                            "name": "_balances",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 282,
                            "src": "3493:9:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                              "typeString": "mapping(address => uint256)"
                            }
                          },
                          "id": 362,
                          "indexExpression": {
                            "id": 361,
                            "name": "account",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 354,
                            "src": "3503:7:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "3493:18:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 359,
                        "id": 363,
                        "nodeType": "Return",
                        "src": "3486:25:4"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 352,
                    "nodeType": "StructuredDocumentation",
                    "src": "3341:47:4",
                    "text": " @dev See {IERC20-balanceOf}."
                  },
                  "functionSelector": "70a08231",
                  "id": 365,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "balanceOf",
                  "nameLocation": "3402:9:4",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 356,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3449:8:4"
                  },
                  "parameters": {
                    "id": 355,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 354,
                        "mutability": "mutable",
                        "name": "account",
                        "nameLocation": "3420:7:4",
                        "nodeType": "VariableDeclaration",
                        "scope": 365,
                        "src": "3412:15:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 353,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3412:7:4",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3411:17:4"
                  },
                  "returnParameters": {
                    "id": 359,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 358,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 365,
                        "src": "3467:7:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 357,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3467:7:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3466:9:4"
                  },
                  "scope": 812,
                  "src": "3393:125:4",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    839
                  ],
                  "body": {
                    "id": 385,
                    "nodeType": "Block",
                    "src": "3813:80:4",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "id": 377,
                                "name": "_msgSender",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1787,
                                "src": "3833:10:4",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
                                  "typeString": "function () view returns (address)"
                                }
                              },
                              "id": 378,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "3833:12:4",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 379,
                              "name": "recipient",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 368,
                              "src": "3847:9:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 380,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 370,
                              "src": "3858:6: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": 376,
                            "name": "_transfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 616,
                            "src": "3823:9:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 381,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3823:42:4",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 382,
                        "nodeType": "ExpressionStatement",
                        "src": "3823:42:4"
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 383,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "3882:4:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 375,
                        "id": 384,
                        "nodeType": "Return",
                        "src": "3875:11:4"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 366,
                    "nodeType": "StructuredDocumentation",
                    "src": "3524:192:4",
                    "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": 386,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "transfer",
                  "nameLocation": "3730:8:4",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 372,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3789:8:4"
                  },
                  "parameters": {
                    "id": 371,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 368,
                        "mutability": "mutable",
                        "name": "recipient",
                        "nameLocation": "3747:9:4",
                        "nodeType": "VariableDeclaration",
                        "scope": 386,
                        "src": "3739:17:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 367,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3739:7:4",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 370,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "3766:6:4",
                        "nodeType": "VariableDeclaration",
                        "scope": 386,
                        "src": "3758:14:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 369,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3758:7:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3738:35:4"
                  },
                  "returnParameters": {
                    "id": 375,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 374,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 386,
                        "src": "3807:4:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 373,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "3807:4:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3806:6:4"
                  },
                  "scope": 812,
                  "src": "3721:172:4",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    849
                  ],
                  "body": {
                    "id": 403,
                    "nodeType": "Block",
                    "src": "4049:51:4",
                    "statements": [
                      {
                        "expression": {
                          "baseExpression": {
                            "baseExpression": {
                              "id": 397,
                              "name": "_allowances",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 288,
                              "src": "4066:11:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$",
                                "typeString": "mapping(address => mapping(address => uint256))"
                              }
                            },
                            "id": 399,
                            "indexExpression": {
                              "id": 398,
                              "name": "owner",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 389,
                              "src": "4078:5:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "IndexAccess",
                            "src": "4066:18:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                              "typeString": "mapping(address => uint256)"
                            }
                          },
                          "id": 401,
                          "indexExpression": {
                            "id": 400,
                            "name": "spender",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 391,
                            "src": "4085:7:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "4066:27:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 396,
                        "id": 402,
                        "nodeType": "Return",
                        "src": "4059:34:4"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 387,
                    "nodeType": "StructuredDocumentation",
                    "src": "3899:47:4",
                    "text": " @dev See {IERC20-allowance}."
                  },
                  "functionSelector": "dd62ed3e",
                  "id": 404,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "allowance",
                  "nameLocation": "3960:9:4",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 393,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "4022:8:4"
                  },
                  "parameters": {
                    "id": 392,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 389,
                        "mutability": "mutable",
                        "name": "owner",
                        "nameLocation": "3978:5:4",
                        "nodeType": "VariableDeclaration",
                        "scope": 404,
                        "src": "3970:13:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 388,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3970:7:4",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 391,
                        "mutability": "mutable",
                        "name": "spender",
                        "nameLocation": "3993:7:4",
                        "nodeType": "VariableDeclaration",
                        "scope": 404,
                        "src": "3985:15:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 390,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3985:7:4",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3969:32:4"
                  },
                  "returnParameters": {
                    "id": 396,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 395,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 404,
                        "src": "4040:7:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 394,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4040:7:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4039:9:4"
                  },
                  "scope": 812,
                  "src": "3951:149:4",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    859
                  ],
                  "body": {
                    "id": 424,
                    "nodeType": "Block",
                    "src": "4327:77:4",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "id": 416,
                                "name": "_msgSender",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1787,
                                "src": "4346:10:4",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
                                  "typeString": "function () view returns (address)"
                                }
                              },
                              "id": 417,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "4346:12:4",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 418,
                              "name": "spender",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 407,
                              "src": "4360:7:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 419,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 409,
                              "src": "4369:6: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": 415,
                            "name": "_approve",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 789,
                            "src": "4337:8:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 420,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4337:39:4",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 421,
                        "nodeType": "ExpressionStatement",
                        "src": "4337:39:4"
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 422,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "4393:4:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 414,
                        "id": 423,
                        "nodeType": "Return",
                        "src": "4386:11:4"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 405,
                    "nodeType": "StructuredDocumentation",
                    "src": "4106:127:4",
                    "text": " @dev See {IERC20-approve}.\n Requirements:\n - `spender` cannot be the zero address."
                  },
                  "functionSelector": "095ea7b3",
                  "id": 425,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "approve",
                  "nameLocation": "4247:7:4",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 411,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "4303:8:4"
                  },
                  "parameters": {
                    "id": 410,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 407,
                        "mutability": "mutable",
                        "name": "spender",
                        "nameLocation": "4263:7:4",
                        "nodeType": "VariableDeclaration",
                        "scope": 425,
                        "src": "4255:15:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 406,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4255:7:4",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 409,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "4280:6:4",
                        "nodeType": "VariableDeclaration",
                        "scope": 425,
                        "src": "4272:14:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 408,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4272:7:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4254:33:4"
                  },
                  "returnParameters": {
                    "id": 414,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 413,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 425,
                        "src": "4321:4:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 412,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "4321:4:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4320:6:4"
                  },
                  "scope": 812,
                  "src": "4238:166:4",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    871
                  ],
                  "body": {
                    "id": 472,
                    "nodeType": "Block",
                    "src": "5013:336:4",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 439,
                              "name": "sender",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 428,
                              "src": "5033:6:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 440,
                              "name": "recipient",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 430,
                              "src": "5041:9:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 441,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 432,
                              "src": "5052:6: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": 438,
                            "name": "_transfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 616,
                            "src": "5023:9:4",
                            "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": "5023:36:4",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 443,
                        "nodeType": "ExpressionStatement",
                        "src": "5023:36:4"
                      },
                      {
                        "assignments": [
                          445
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 445,
                            "mutability": "mutable",
                            "name": "currentAllowance",
                            "nameLocation": "5078:16:4",
                            "nodeType": "VariableDeclaration",
                            "scope": 472,
                            "src": "5070:24:4",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 444,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "5070:7:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 452,
                        "initialValue": {
                          "baseExpression": {
                            "baseExpression": {
                              "id": 446,
                              "name": "_allowances",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 288,
                              "src": "5097:11:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$",
                                "typeString": "mapping(address => mapping(address => uint256))"
                              }
                            },
                            "id": 448,
                            "indexExpression": {
                              "id": 447,
                              "name": "sender",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 428,
                              "src": "5109:6:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "IndexAccess",
                            "src": "5097:19:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                              "typeString": "mapping(address => uint256)"
                            }
                          },
                          "id": 451,
                          "indexExpression": {
                            "arguments": [],
                            "expression": {
                              "argumentTypes": [],
                              "id": 449,
                              "name": "_msgSender",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1787,
                              "src": "5117:10:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
                                "typeString": "function () view returns (address)"
                              }
                            },
                            "id": 450,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "5117:12:4",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "5097:33:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "5070:60:4"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 456,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 454,
                                "name": "currentAllowance",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 445,
                                "src": "5148:16:4",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">=",
                              "rightExpression": {
                                "id": 455,
                                "name": "amount",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 432,
                                "src": "5168:6:4",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "5148:26:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365",
                              "id": 457,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "5176:42:4",
                              "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": 453,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "5140:7:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 458,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5140:79:4",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 459,
                        "nodeType": "ExpressionStatement",
                        "src": "5140:79:4"
                      },
                      {
                        "id": 469,
                        "nodeType": "UncheckedBlock",
                        "src": "5229:92:4",
                        "statements": [
                          {
                            "expression": {
                              "arguments": [
                                {
                                  "id": 461,
                                  "name": "sender",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 428,
                                  "src": "5262:6:4",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "arguments": [],
                                  "expression": {
                                    "argumentTypes": [],
                                    "id": 462,
                                    "name": "_msgSender",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 1787,
                                    "src": "5270:10:4",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
                                      "typeString": "function () view returns (address)"
                                    }
                                  },
                                  "id": 463,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "5270:12:4",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "commonType": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "id": 466,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "id": 464,
                                    "name": "currentAllowance",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 445,
                                    "src": "5284:16:4",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": "-",
                                  "rightExpression": {
                                    "id": 465,
                                    "name": "amount",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 432,
                                    "src": "5303:6:4",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "src": "5284:25: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": 460,
                                "name": "_approve",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 789,
                                "src": "5253:8:4",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                                  "typeString": "function (address,address,uint256)"
                                }
                              },
                              "id": 467,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "5253:57:4",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_tuple$__$",
                                "typeString": "tuple()"
                              }
                            },
                            "id": 468,
                            "nodeType": "ExpressionStatement",
                            "src": "5253:57:4"
                          }
                        ]
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 470,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "5338:4:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 437,
                        "id": 471,
                        "nodeType": "Return",
                        "src": "5331:11:4"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 426,
                    "nodeType": "StructuredDocumentation",
                    "src": "4410:456:4",
                    "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": 473,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "transferFrom",
                  "nameLocation": "4880:12:4",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 434,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "4989:8:4"
                  },
                  "parameters": {
                    "id": 433,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 428,
                        "mutability": "mutable",
                        "name": "sender",
                        "nameLocation": "4910:6:4",
                        "nodeType": "VariableDeclaration",
                        "scope": 473,
                        "src": "4902:14:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 427,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4902:7:4",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 430,
                        "mutability": "mutable",
                        "name": "recipient",
                        "nameLocation": "4934:9:4",
                        "nodeType": "VariableDeclaration",
                        "scope": 473,
                        "src": "4926:17:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 429,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4926:7:4",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 432,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "4961:6:4",
                        "nodeType": "VariableDeclaration",
                        "scope": 473,
                        "src": "4953:14:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 431,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4953:7:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4892:81:4"
                  },
                  "returnParameters": {
                    "id": 437,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 436,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 473,
                        "src": "5007:4:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 435,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "5007:4:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5006:6:4"
                  },
                  "scope": 812,
                  "src": "4871:478:4",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 499,
                    "nodeType": "Block",
                    "src": "5838:118:4",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "id": 484,
                                "name": "_msgSender",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1787,
                                "src": "5857:10:4",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
                                  "typeString": "function () view returns (address)"
                                }
                              },
                              "id": 485,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "5857:12:4",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 486,
                              "name": "spender",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 476,
                              "src": "5871:7:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 494,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "baseExpression": {
                                  "baseExpression": {
                                    "id": 487,
                                    "name": "_allowances",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 288,
                                    "src": "5880:11:4",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$",
                                      "typeString": "mapping(address => mapping(address => uint256))"
                                    }
                                  },
                                  "id": 490,
                                  "indexExpression": {
                                    "arguments": [],
                                    "expression": {
                                      "argumentTypes": [],
                                      "id": 488,
                                      "name": "_msgSender",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 1787,
                                      "src": "5892:10:4",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
                                        "typeString": "function () view returns (address)"
                                      }
                                    },
                                    "id": 489,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "kind": "functionCall",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "5892:12:4",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "IndexAccess",
                                  "src": "5880:25:4",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                                    "typeString": "mapping(address => uint256)"
                                  }
                                },
                                "id": 492,
                                "indexExpression": {
                                  "id": 491,
                                  "name": "spender",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 476,
                                  "src": "5906:7:4",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "IndexAccess",
                                "src": "5880:34:4",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "+",
                              "rightExpression": {
                                "id": 493,
                                "name": "addedValue",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 478,
                                "src": "5917:10:4",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "5880:47: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": 483,
                            "name": "_approve",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 789,
                            "src": "5848:8:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 495,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5848:80:4",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 496,
                        "nodeType": "ExpressionStatement",
                        "src": "5848:80:4"
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 497,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "5945:4:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 482,
                        "id": 498,
                        "nodeType": "Return",
                        "src": "5938:11:4"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 474,
                    "nodeType": "StructuredDocumentation",
                    "src": "5355:384:4",
                    "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": 500,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "increaseAllowance",
                  "nameLocation": "5753:17:4",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 479,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 476,
                        "mutability": "mutable",
                        "name": "spender",
                        "nameLocation": "5779:7:4",
                        "nodeType": "VariableDeclaration",
                        "scope": 500,
                        "src": "5771:15:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 475,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5771:7:4",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 478,
                        "mutability": "mutable",
                        "name": "addedValue",
                        "nameLocation": "5796:10:4",
                        "nodeType": "VariableDeclaration",
                        "scope": 500,
                        "src": "5788:18:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 477,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "5788:7:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5770:37:4"
                  },
                  "returnParameters": {
                    "id": 482,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 481,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 500,
                        "src": "5832:4:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 480,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "5832:4:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5831:6:4"
                  },
                  "scope": 812,
                  "src": "5744:212:4",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 538,
                    "nodeType": "Block",
                    "src": "6542:306:4",
                    "statements": [
                      {
                        "assignments": [
                          511
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 511,
                            "mutability": "mutable",
                            "name": "currentAllowance",
                            "nameLocation": "6560:16:4",
                            "nodeType": "VariableDeclaration",
                            "scope": 538,
                            "src": "6552:24:4",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 510,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "6552:7:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 518,
                        "initialValue": {
                          "baseExpression": {
                            "baseExpression": {
                              "id": 512,
                              "name": "_allowances",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 288,
                              "src": "6579:11:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$",
                                "typeString": "mapping(address => mapping(address => uint256))"
                              }
                            },
                            "id": 515,
                            "indexExpression": {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "id": 513,
                                "name": "_msgSender",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1787,
                                "src": "6591:10:4",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
                                  "typeString": "function () view returns (address)"
                                }
                              },
                              "id": 514,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "6591:12:4",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "IndexAccess",
                            "src": "6579:25:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                              "typeString": "mapping(address => uint256)"
                            }
                          },
                          "id": 517,
                          "indexExpression": {
                            "id": 516,
                            "name": "spender",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 503,
                            "src": "6605:7:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "6579:34:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "6552:61:4"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 522,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 520,
                                "name": "currentAllowance",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 511,
                                "src": "6631:16:4",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">=",
                              "rightExpression": {
                                "id": 521,
                                "name": "subtractedValue",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 505,
                                "src": "6651:15:4",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "6631:35:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f",
                              "id": 523,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "6668:39:4",
                              "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": 519,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "6623:7:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 524,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6623:85:4",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 525,
                        "nodeType": "ExpressionStatement",
                        "src": "6623:85:4"
                      },
                      {
                        "id": 535,
                        "nodeType": "UncheckedBlock",
                        "src": "6718:102:4",
                        "statements": [
                          {
                            "expression": {
                              "arguments": [
                                {
                                  "arguments": [],
                                  "expression": {
                                    "argumentTypes": [],
                                    "id": 527,
                                    "name": "_msgSender",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 1787,
                                    "src": "6751:10:4",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
                                      "typeString": "function () view returns (address)"
                                    }
                                  },
                                  "id": 528,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "6751:12:4",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "id": 529,
                                  "name": "spender",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 503,
                                  "src": "6765:7:4",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "commonType": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "id": 532,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "id": 530,
                                    "name": "currentAllowance",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 511,
                                    "src": "6774:16:4",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": "-",
                                  "rightExpression": {
                                    "id": 531,
                                    "name": "subtractedValue",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 505,
                                    "src": "6793:15:4",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "src": "6774:34: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": 526,
                                "name": "_approve",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 789,
                                "src": "6742:8:4",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                                  "typeString": "function (address,address,uint256)"
                                }
                              },
                              "id": 533,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "6742:67:4",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_tuple$__$",
                                "typeString": "tuple()"
                              }
                            },
                            "id": 534,
                            "nodeType": "ExpressionStatement",
                            "src": "6742:67:4"
                          }
                        ]
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 536,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "6837:4:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 509,
                        "id": 537,
                        "nodeType": "Return",
                        "src": "6830:11:4"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 501,
                    "nodeType": "StructuredDocumentation",
                    "src": "5962:476:4",
                    "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": 539,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "decreaseAllowance",
                  "nameLocation": "6452:17:4",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 506,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 503,
                        "mutability": "mutable",
                        "name": "spender",
                        "nameLocation": "6478:7:4",
                        "nodeType": "VariableDeclaration",
                        "scope": 539,
                        "src": "6470:15:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 502,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6470:7:4",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 505,
                        "mutability": "mutable",
                        "name": "subtractedValue",
                        "nameLocation": "6495:15:4",
                        "nodeType": "VariableDeclaration",
                        "scope": 539,
                        "src": "6487:23:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 504,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "6487:7:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6469:42:4"
                  },
                  "returnParameters": {
                    "id": 509,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 508,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 539,
                        "src": "6536:4:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 507,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "6536:4:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6535:6:4"
                  },
                  "scope": 812,
                  "src": "6443:405:4",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 615,
                    "nodeType": "Block",
                    "src": "7439:596:4",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 555,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 550,
                                "name": "sender",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 542,
                                "src": "7457:6:4",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 553,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "7475:1:4",
                                    "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": 552,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "7467:7:4",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 551,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "7467:7:4",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 554,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "7467:10:4",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "7457:20:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "45524332303a207472616e736665722066726f6d20746865207a65726f2061646472657373",
                              "id": 556,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "7479:39:4",
                              "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": 549,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "7449:7:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 557,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7449:70:4",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 558,
                        "nodeType": "ExpressionStatement",
                        "src": "7449:70:4"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 565,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 560,
                                "name": "recipient",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 544,
                                "src": "7537:9:4",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 563,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "7558:1:4",
                                    "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": 562,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "7550:7:4",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 561,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "7550:7:4",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 564,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "7550:10:4",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "7537:23:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "45524332303a207472616e7366657220746f20746865207a65726f2061646472657373",
                              "id": 566,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "7562:37:4",
                              "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": 559,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "7529:7:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 567,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7529:71:4",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 568,
                        "nodeType": "ExpressionStatement",
                        "src": "7529:71:4"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 570,
                              "name": "sender",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 542,
                              "src": "7632:6:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 571,
                              "name": "recipient",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 544,
                              "src": "7640:9:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 572,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 546,
                              "src": "7651:6: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": 569,
                            "name": "_beforeTokenTransfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 800,
                            "src": "7611:20:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 573,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7611:47:4",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 574,
                        "nodeType": "ExpressionStatement",
                        "src": "7611:47:4"
                      },
                      {
                        "assignments": [
                          576
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 576,
                            "mutability": "mutable",
                            "name": "senderBalance",
                            "nameLocation": "7677:13:4",
                            "nodeType": "VariableDeclaration",
                            "scope": 615,
                            "src": "7669:21:4",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 575,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "7669:7:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 580,
                        "initialValue": {
                          "baseExpression": {
                            "id": 577,
                            "name": "_balances",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 282,
                            "src": "7693:9:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                              "typeString": "mapping(address => uint256)"
                            }
                          },
                          "id": 579,
                          "indexExpression": {
                            "id": 578,
                            "name": "sender",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 542,
                            "src": "7703:6:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "7693:17:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7669:41:4"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 584,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 582,
                                "name": "senderBalance",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 576,
                                "src": "7728:13:4",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">=",
                              "rightExpression": {
                                "id": 583,
                                "name": "amount",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 546,
                                "src": "7745:6:4",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "7728:23:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365",
                              "id": 585,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "7753:40:4",
                              "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": 581,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "7720:7:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 586,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7720:74:4",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 587,
                        "nodeType": "ExpressionStatement",
                        "src": "7720:74:4"
                      },
                      {
                        "id": 596,
                        "nodeType": "UncheckedBlock",
                        "src": "7804:77:4",
                        "statements": [
                          {
                            "expression": {
                              "id": 594,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftHandSide": {
                                "baseExpression": {
                                  "id": 588,
                                  "name": "_balances",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 282,
                                  "src": "7828:9:4",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                                    "typeString": "mapping(address => uint256)"
                                  }
                                },
                                "id": 590,
                                "indexExpression": {
                                  "id": 589,
                                  "name": "sender",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 542,
                                  "src": "7838:6:4",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": true,
                                "nodeType": "IndexAccess",
                                "src": "7828:17:4",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "Assignment",
                              "operator": "=",
                              "rightHandSide": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 593,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 591,
                                  "name": "senderBalance",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 576,
                                  "src": "7848:13:4",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "-",
                                "rightExpression": {
                                  "id": 592,
                                  "name": "amount",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 546,
                                  "src": "7864:6:4",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "7848:22:4",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "7828:42:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "id": 595,
                            "nodeType": "ExpressionStatement",
                            "src": "7828:42:4"
                          }
                        ]
                      },
                      {
                        "expression": {
                          "id": 601,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "id": 597,
                              "name": "_balances",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 282,
                              "src": "7890:9:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                                "typeString": "mapping(address => uint256)"
                              }
                            },
                            "id": 599,
                            "indexExpression": {
                              "id": 598,
                              "name": "recipient",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 544,
                              "src": "7900:9:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "7890:20:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "+=",
                          "rightHandSide": {
                            "id": 600,
                            "name": "amount",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 546,
                            "src": "7914:6:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "7890:30:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 602,
                        "nodeType": "ExpressionStatement",
                        "src": "7890:30:4"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 604,
                              "name": "sender",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 542,
                              "src": "7945:6:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 605,
                              "name": "recipient",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 544,
                              "src": "7953:9:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 606,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 546,
                              "src": "7964:6: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": 603,
                            "name": "Transfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 880,
                            "src": "7936:8:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 607,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7936:35:4",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 608,
                        "nodeType": "EmitStatement",
                        "src": "7931:40:4"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 610,
                              "name": "sender",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 542,
                              "src": "8002:6:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 611,
                              "name": "recipient",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 544,
                              "src": "8010:9:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 612,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 546,
                              "src": "8021:6: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": 609,
                            "name": "_afterTokenTransfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 811,
                            "src": "7982:19:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 613,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7982:46:4",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 614,
                        "nodeType": "ExpressionStatement",
                        "src": "7982:46:4"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 540,
                    "nodeType": "StructuredDocumentation",
                    "src": "6854:463:4",
                    "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": 616,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_transfer",
                  "nameLocation": "7331:9:4",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 547,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 542,
                        "mutability": "mutable",
                        "name": "sender",
                        "nameLocation": "7358:6:4",
                        "nodeType": "VariableDeclaration",
                        "scope": 616,
                        "src": "7350:14:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 541,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "7350:7:4",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 544,
                        "mutability": "mutable",
                        "name": "recipient",
                        "nameLocation": "7382:9:4",
                        "nodeType": "VariableDeclaration",
                        "scope": 616,
                        "src": "7374:17:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 543,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "7374:7:4",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 546,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "7409:6:4",
                        "nodeType": "VariableDeclaration",
                        "scope": 616,
                        "src": "7401:14:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 545,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "7401:7:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7340:81:4"
                  },
                  "returnParameters": {
                    "id": 548,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "7439:0:4"
                  },
                  "scope": 812,
                  "src": "7322:713:4",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 671,
                    "nodeType": "Block",
                    "src": "8376:324:4",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 630,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 625,
                                "name": "account",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 619,
                                "src": "8394:7:4",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 628,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "8413:1:4",
                                    "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": 627,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "8405:7:4",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 626,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "8405:7:4",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 629,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "8405:10:4",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "8394:21:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "45524332303a206d696e7420746f20746865207a65726f2061646472657373",
                              "id": 631,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "8417:33:4",
                              "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": 624,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "8386:7:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 632,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8386:65:4",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 633,
                        "nodeType": "ExpressionStatement",
                        "src": "8386:65:4"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "hexValue": "30",
                                  "id": 637,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "8491:1:4",
                                  "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": 636,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "8483:7:4",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 635,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "8483:7:4",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 638,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "8483:10:4",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 639,
                              "name": "account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 619,
                              "src": "8495:7:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 640,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 621,
                              "src": "8504:6: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": 634,
                            "name": "_beforeTokenTransfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 800,
                            "src": "8462:20:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 641,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8462:49:4",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 642,
                        "nodeType": "ExpressionStatement",
                        "src": "8462:49:4"
                      },
                      {
                        "expression": {
                          "id": 645,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 643,
                            "name": "_totalSupply",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 290,
                            "src": "8522:12:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "+=",
                          "rightHandSide": {
                            "id": 644,
                            "name": "amount",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 621,
                            "src": "8538:6:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "8522:22:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 646,
                        "nodeType": "ExpressionStatement",
                        "src": "8522:22:4"
                      },
                      {
                        "expression": {
                          "id": 651,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "id": 647,
                              "name": "_balances",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 282,
                              "src": "8554:9:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                                "typeString": "mapping(address => uint256)"
                              }
                            },
                            "id": 649,
                            "indexExpression": {
                              "id": 648,
                              "name": "account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 619,
                              "src": "8564:7:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "8554:18:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "+=",
                          "rightHandSide": {
                            "id": 650,
                            "name": "amount",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 621,
                            "src": "8576:6:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "8554:28:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 652,
                        "nodeType": "ExpressionStatement",
                        "src": "8554:28:4"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "hexValue": "30",
                                  "id": 656,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "8614:1:4",
                                  "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": 655,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "8606:7:4",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 654,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "8606:7:4",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 657,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "8606:10:4",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 658,
                              "name": "account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 619,
                              "src": "8618:7:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 659,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 621,
                              "src": "8627:6: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": 653,
                            "name": "Transfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 880,
                            "src": "8597:8:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 660,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8597:37:4",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 661,
                        "nodeType": "EmitStatement",
                        "src": "8592:42:4"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "hexValue": "30",
                                  "id": 665,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "8673:1:4",
                                  "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": 664,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "8665:7:4",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 663,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "8665:7:4",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 666,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "8665:10:4",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 667,
                              "name": "account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 619,
                              "src": "8677:7:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 668,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 621,
                              "src": "8686:6: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": 662,
                            "name": "_afterTokenTransfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 811,
                            "src": "8645:19:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 669,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8645:48:4",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 670,
                        "nodeType": "ExpressionStatement",
                        "src": "8645:48:4"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 617,
                    "nodeType": "StructuredDocumentation",
                    "src": "8041:265:4",
                    "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": 672,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_mint",
                  "nameLocation": "8320:5:4",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 622,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 619,
                        "mutability": "mutable",
                        "name": "account",
                        "nameLocation": "8334:7:4",
                        "nodeType": "VariableDeclaration",
                        "scope": 672,
                        "src": "8326:15:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 618,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "8326:7:4",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 621,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "8351:6:4",
                        "nodeType": "VariableDeclaration",
                        "scope": 672,
                        "src": "8343:14:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 620,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "8343:7:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8325:33:4"
                  },
                  "returnParameters": {
                    "id": 623,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "8376:0:4"
                  },
                  "scope": 812,
                  "src": "8311:389:4",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 743,
                    "nodeType": "Block",
                    "src": "9085:511:4",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 686,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 681,
                                "name": "account",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 675,
                                "src": "9103:7:4",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 684,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "9122:1:4",
                                    "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": 683,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "9114:7:4",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 682,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "9114:7:4",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 685,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "9114:10:4",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "9103:21:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "45524332303a206275726e2066726f6d20746865207a65726f2061646472657373",
                              "id": 687,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "9126:35:4",
                              "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": 680,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "9095:7:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 688,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9095:67:4",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 689,
                        "nodeType": "ExpressionStatement",
                        "src": "9095:67:4"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 691,
                              "name": "account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 675,
                              "src": "9194:7:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "hexValue": "30",
                                  "id": 694,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "9211:1:4",
                                  "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": 693,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "9203:7:4",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 692,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "9203:7:4",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 695,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "9203:10:4",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 696,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 677,
                              "src": "9215:6: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": 690,
                            "name": "_beforeTokenTransfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 800,
                            "src": "9173:20:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 697,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9173:49:4",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 698,
                        "nodeType": "ExpressionStatement",
                        "src": "9173:49:4"
                      },
                      {
                        "assignments": [
                          700
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 700,
                            "mutability": "mutable",
                            "name": "accountBalance",
                            "nameLocation": "9241:14:4",
                            "nodeType": "VariableDeclaration",
                            "scope": 743,
                            "src": "9233:22:4",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 699,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "9233:7:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 704,
                        "initialValue": {
                          "baseExpression": {
                            "id": 701,
                            "name": "_balances",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 282,
                            "src": "9258:9:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                              "typeString": "mapping(address => uint256)"
                            }
                          },
                          "id": 703,
                          "indexExpression": {
                            "id": 702,
                            "name": "account",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 675,
                            "src": "9268:7:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "9258:18:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "9233:43:4"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 708,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 706,
                                "name": "accountBalance",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 700,
                                "src": "9294:14:4",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">=",
                              "rightExpression": {
                                "id": 707,
                                "name": "amount",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 677,
                                "src": "9312:6:4",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "9294:24:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "45524332303a206275726e20616d6f756e7420657863656564732062616c616e6365",
                              "id": 709,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "9320:36:4",
                              "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": 705,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "9286:7:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 710,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9286:71:4",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 711,
                        "nodeType": "ExpressionStatement",
                        "src": "9286:71:4"
                      },
                      {
                        "id": 720,
                        "nodeType": "UncheckedBlock",
                        "src": "9367:79:4",
                        "statements": [
                          {
                            "expression": {
                              "id": 718,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftHandSide": {
                                "baseExpression": {
                                  "id": 712,
                                  "name": "_balances",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 282,
                                  "src": "9391:9:4",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                                    "typeString": "mapping(address => uint256)"
                                  }
                                },
                                "id": 714,
                                "indexExpression": {
                                  "id": 713,
                                  "name": "account",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 675,
                                  "src": "9401:7:4",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": true,
                                "nodeType": "IndexAccess",
                                "src": "9391:18:4",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "Assignment",
                              "operator": "=",
                              "rightHandSide": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 717,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 715,
                                  "name": "accountBalance",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 700,
                                  "src": "9412:14:4",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "-",
                                "rightExpression": {
                                  "id": 716,
                                  "name": "amount",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 677,
                                  "src": "9429:6:4",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "9412:23:4",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "9391:44:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "id": 719,
                            "nodeType": "ExpressionStatement",
                            "src": "9391:44:4"
                          }
                        ]
                      },
                      {
                        "expression": {
                          "id": 723,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 721,
                            "name": "_totalSupply",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 290,
                            "src": "9455:12:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "-=",
                          "rightHandSide": {
                            "id": 722,
                            "name": "amount",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 677,
                            "src": "9471:6:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "9455:22:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 724,
                        "nodeType": "ExpressionStatement",
                        "src": "9455:22:4"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 726,
                              "name": "account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 675,
                              "src": "9502:7:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "hexValue": "30",
                                  "id": 729,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "9519:1:4",
                                  "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": 728,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "9511:7:4",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 727,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "9511:7:4",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 730,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "9511:10:4",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 731,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 677,
                              "src": "9523:6: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": 725,
                            "name": "Transfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 880,
                            "src": "9493:8:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 732,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9493:37:4",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 733,
                        "nodeType": "EmitStatement",
                        "src": "9488:42:4"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 735,
                              "name": "account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 675,
                              "src": "9561:7:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "hexValue": "30",
                                  "id": 738,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "9578:1:4",
                                  "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": 737,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "9570:7:4",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 736,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "9570:7:4",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 739,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "9570:10:4",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 740,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 677,
                              "src": "9582:6: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": 734,
                            "name": "_afterTokenTransfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 811,
                            "src": "9541:19:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 741,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9541:48:4",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 742,
                        "nodeType": "ExpressionStatement",
                        "src": "9541:48:4"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 673,
                    "nodeType": "StructuredDocumentation",
                    "src": "8706:309:4",
                    "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": 744,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_burn",
                  "nameLocation": "9029:5:4",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 678,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 675,
                        "mutability": "mutable",
                        "name": "account",
                        "nameLocation": "9043:7:4",
                        "nodeType": "VariableDeclaration",
                        "scope": 744,
                        "src": "9035:15:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 674,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "9035:7:4",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 677,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "9060:6:4",
                        "nodeType": "VariableDeclaration",
                        "scope": 744,
                        "src": "9052:14:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 676,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "9052:7:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9034:33:4"
                  },
                  "returnParameters": {
                    "id": 679,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "9085:0:4"
                  },
                  "scope": 812,
                  "src": "9020:576:4",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 788,
                    "nodeType": "Block",
                    "src": "10132:257:4",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 760,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 755,
                                "name": "owner",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 747,
                                "src": "10150:5:4",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 758,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "10167:1:4",
                                    "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": 757,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "10159:7:4",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 756,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "10159:7:4",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 759,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "10159:10:4",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "10150:19:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "45524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373",
                              "id": 761,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "10171:38:4",
                              "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": 754,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "10142:7:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 762,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10142:68:4",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 763,
                        "nodeType": "ExpressionStatement",
                        "src": "10142:68:4"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 770,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 765,
                                "name": "spender",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 749,
                                "src": "10228:7:4",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 768,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "10247:1:4",
                                    "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": 767,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "10239:7:4",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 766,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "10239:7:4",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 769,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "10239:10:4",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "10228:21:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "45524332303a20617070726f766520746f20746865207a65726f2061646472657373",
                              "id": 771,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "10251:36:4",
                              "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": 764,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "10220:7:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 772,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10220:68:4",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 773,
                        "nodeType": "ExpressionStatement",
                        "src": "10220:68:4"
                      },
                      {
                        "expression": {
                          "id": 780,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "baseExpression": {
                                "id": 774,
                                "name": "_allowances",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 288,
                                "src": "10299:11:4",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$",
                                  "typeString": "mapping(address => mapping(address => uint256))"
                                }
                              },
                              "id": 777,
                              "indexExpression": {
                                "id": 775,
                                "name": "owner",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 747,
                                "src": "10311:5:4",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "nodeType": "IndexAccess",
                              "src": "10299:18:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
                                "typeString": "mapping(address => uint256)"
                              }
                            },
                            "id": 778,
                            "indexExpression": {
                              "id": 776,
                              "name": "spender",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 749,
                              "src": "10318:7:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "10299:27:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 779,
                            "name": "amount",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 751,
                            "src": "10329:6:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "10299:36:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 781,
                        "nodeType": "ExpressionStatement",
                        "src": "10299:36:4"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 783,
                              "name": "owner",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 747,
                              "src": "10359:5:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 784,
                              "name": "spender",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 749,
                              "src": "10366:7:4",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 785,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 751,
                              "src": "10375:6: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": 782,
                            "name": "Approval",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 889,
                            "src": "10350:8:4",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 786,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10350:32:4",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 787,
                        "nodeType": "EmitStatement",
                        "src": "10345:37:4"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 745,
                    "nodeType": "StructuredDocumentation",
                    "src": "9602:412:4",
                    "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": 789,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_approve",
                  "nameLocation": "10028:8:4",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 752,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 747,
                        "mutability": "mutable",
                        "name": "owner",
                        "nameLocation": "10054:5:4",
                        "nodeType": "VariableDeclaration",
                        "scope": 789,
                        "src": "10046:13:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 746,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "10046:7:4",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 749,
                        "mutability": "mutable",
                        "name": "spender",
                        "nameLocation": "10077:7:4",
                        "nodeType": "VariableDeclaration",
                        "scope": 789,
                        "src": "10069:15:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 748,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "10069:7:4",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 751,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "10102:6:4",
                        "nodeType": "VariableDeclaration",
                        "scope": 789,
                        "src": "10094:14:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 750,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "10094:7:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "10036:78:4"
                  },
                  "returnParameters": {
                    "id": 753,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "10132:0:4"
                  },
                  "scope": 812,
                  "src": "10019:370:4",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 799,
                    "nodeType": "Block",
                    "src": "11092:2:4",
                    "statements": []
                  },
                  "documentation": {
                    "id": 790,
                    "nodeType": "StructuredDocumentation",
                    "src": "10395:573:4",
                    "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": 800,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_beforeTokenTransfer",
                  "nameLocation": "10982:20:4",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 797,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 792,
                        "mutability": "mutable",
                        "name": "from",
                        "nameLocation": "11020:4:4",
                        "nodeType": "VariableDeclaration",
                        "scope": 800,
                        "src": "11012:12:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 791,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "11012:7:4",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 794,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "11042:2:4",
                        "nodeType": "VariableDeclaration",
                        "scope": 800,
                        "src": "11034:10:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 793,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "11034:7:4",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 796,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "11062:6:4",
                        "nodeType": "VariableDeclaration",
                        "scope": 800,
                        "src": "11054:14:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 795,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "11054:7:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "11002:72:4"
                  },
                  "returnParameters": {
                    "id": 798,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "11092:0:4"
                  },
                  "scope": 812,
                  "src": "10973:121:4",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 810,
                    "nodeType": "Block",
                    "src": "11800:2:4",
                    "statements": []
                  },
                  "documentation": {
                    "id": 801,
                    "nodeType": "StructuredDocumentation",
                    "src": "11100:577:4",
                    "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": 811,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_afterTokenTransfer",
                  "nameLocation": "11691:19:4",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 808,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 803,
                        "mutability": "mutable",
                        "name": "from",
                        "nameLocation": "11728:4:4",
                        "nodeType": "VariableDeclaration",
                        "scope": 811,
                        "src": "11720:12:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 802,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "11720:7:4",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 805,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "11750:2:4",
                        "nodeType": "VariableDeclaration",
                        "scope": 811,
                        "src": "11742:10:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 804,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "11742:7:4",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 807,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "11770:6:4",
                        "nodeType": "VariableDeclaration",
                        "scope": 811,
                        "src": "11762:14:4",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 806,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "11762:7:4",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "11710:72:4"
                  },
                  "returnParameters": {
                    "id": 809,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "11800:0:4"
                  },
                  "scope": 812,
                  "src": "11682:120:4",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "internal"
                }
              ],
              "scope": 813,
              "src": "1388:10416:4",
              "usedErrors": []
            }
          ],
          "src": "90:11715:4"
        },
        "id": 4
      },
      "@openzeppelin/contracts/token/ERC20/IERC20.sol": {
        "ast": {
          "absolutePath": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
          "exportedSymbols": {
            "IERC20": [
              890
            ]
          },
          "id": 891,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 814,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "91:23:5"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "documentation": {
                "id": 815,
                "nodeType": "StructuredDocumentation",
                "src": "116:70:5",
                "text": " @dev Interface of the ERC20 standard as defined in the EIP."
              },
              "fullyImplemented": false,
              "id": 890,
              "linearizedBaseContracts": [
                890
              ],
              "name": "IERC20",
              "nameLocation": "197:6:5",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "documentation": {
                    "id": 816,
                    "nodeType": "StructuredDocumentation",
                    "src": "210:66:5",
                    "text": " @dev Returns the amount of tokens in existence."
                  },
                  "functionSelector": "18160ddd",
                  "id": 821,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "totalSupply",
                  "nameLocation": "290:11:5",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 817,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "301:2:5"
                  },
                  "returnParameters": {
                    "id": 820,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 819,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 821,
                        "src": "327:7:5",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 818,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "327:7:5",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "326:9:5"
                  },
                  "scope": 890,
                  "src": "281:55:5",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 822,
                    "nodeType": "StructuredDocumentation",
                    "src": "342:72:5",
                    "text": " @dev Returns the amount of tokens owned by `account`."
                  },
                  "functionSelector": "70a08231",
                  "id": 829,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "balanceOf",
                  "nameLocation": "428:9:5",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 825,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 824,
                        "mutability": "mutable",
                        "name": "account",
                        "nameLocation": "446:7:5",
                        "nodeType": "VariableDeclaration",
                        "scope": 829,
                        "src": "438:15:5",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 823,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "438:7:5",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "437:17:5"
                  },
                  "returnParameters": {
                    "id": 828,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 827,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 829,
                        "src": "478:7:5",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 826,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "478:7:5",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "477:9:5"
                  },
                  "scope": 890,
                  "src": "419:68:5",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 830,
                    "nodeType": "StructuredDocumentation",
                    "src": "493:209:5",
                    "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": 839,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "transfer",
                  "nameLocation": "716:8:5",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 835,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 832,
                        "mutability": "mutable",
                        "name": "recipient",
                        "nameLocation": "733:9:5",
                        "nodeType": "VariableDeclaration",
                        "scope": 839,
                        "src": "725:17:5",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 831,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "725:7:5",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 834,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "752:6:5",
                        "nodeType": "VariableDeclaration",
                        "scope": 839,
                        "src": "744:14:5",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 833,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "744:7:5",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "724:35:5"
                  },
                  "returnParameters": {
                    "id": 838,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 837,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 839,
                        "src": "778:4:5",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 836,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "778:4:5",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "777:6:5"
                  },
                  "scope": 890,
                  "src": "707:77:5",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 840,
                    "nodeType": "StructuredDocumentation",
                    "src": "790:264:5",
                    "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": 849,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "allowance",
                  "nameLocation": "1068:9:5",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 845,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 842,
                        "mutability": "mutable",
                        "name": "owner",
                        "nameLocation": "1086:5:5",
                        "nodeType": "VariableDeclaration",
                        "scope": 849,
                        "src": "1078:13:5",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 841,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1078:7:5",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 844,
                        "mutability": "mutable",
                        "name": "spender",
                        "nameLocation": "1101:7:5",
                        "nodeType": "VariableDeclaration",
                        "scope": 849,
                        "src": "1093:15:5",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 843,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1093:7:5",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1077:32:5"
                  },
                  "returnParameters": {
                    "id": 848,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 847,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 849,
                        "src": "1133:7:5",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 846,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1133:7:5",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1132:9:5"
                  },
                  "scope": 890,
                  "src": "1059:83:5",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 850,
                    "nodeType": "StructuredDocumentation",
                    "src": "1148:642:5",
                    "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": 859,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "approve",
                  "nameLocation": "1804:7:5",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 855,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 852,
                        "mutability": "mutable",
                        "name": "spender",
                        "nameLocation": "1820:7:5",
                        "nodeType": "VariableDeclaration",
                        "scope": 859,
                        "src": "1812:15:5",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 851,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1812:7:5",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 854,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "1837:6:5",
                        "nodeType": "VariableDeclaration",
                        "scope": 859,
                        "src": "1829:14:5",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 853,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1829:7:5",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1811:33:5"
                  },
                  "returnParameters": {
                    "id": 858,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 857,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 859,
                        "src": "1863:4:5",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 856,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "1863:4:5",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1862:6:5"
                  },
                  "scope": 890,
                  "src": "1795:74:5",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 860,
                    "nodeType": "StructuredDocumentation",
                    "src": "1875:296:5",
                    "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": 871,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "transferFrom",
                  "nameLocation": "2185:12:5",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 867,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 862,
                        "mutability": "mutable",
                        "name": "sender",
                        "nameLocation": "2215:6:5",
                        "nodeType": "VariableDeclaration",
                        "scope": 871,
                        "src": "2207:14:5",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 861,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2207:7:5",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 864,
                        "mutability": "mutable",
                        "name": "recipient",
                        "nameLocation": "2239:9:5",
                        "nodeType": "VariableDeclaration",
                        "scope": 871,
                        "src": "2231:17:5",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 863,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2231:7:5",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 866,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "2266:6:5",
                        "nodeType": "VariableDeclaration",
                        "scope": 871,
                        "src": "2258:14:5",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 865,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2258:7:5",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2197:81:5"
                  },
                  "returnParameters": {
                    "id": 870,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 869,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 871,
                        "src": "2297:4:5",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 868,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "2297:4:5",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2296:6:5"
                  },
                  "scope": 890,
                  "src": "2176:127:5",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 872,
                    "nodeType": "StructuredDocumentation",
                    "src": "2309:158:5",
                    "text": " @dev Emitted when `value` tokens are moved from one account (`from`) to\n another (`to`).\n Note that `value` may be zero."
                  },
                  "id": 880,
                  "name": "Transfer",
                  "nameLocation": "2478:8:5",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 879,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 874,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "from",
                        "nameLocation": "2503:4:5",
                        "nodeType": "VariableDeclaration",
                        "scope": 880,
                        "src": "2487:20:5",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 873,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2487:7:5",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 876,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "2525:2:5",
                        "nodeType": "VariableDeclaration",
                        "scope": 880,
                        "src": "2509:18:5",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 875,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2509:7:5",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 878,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "2537:5:5",
                        "nodeType": "VariableDeclaration",
                        "scope": 880,
                        "src": "2529:13:5",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 877,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2529:7:5",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2486:57:5"
                  },
                  "src": "2472:72:5"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 881,
                    "nodeType": "StructuredDocumentation",
                    "src": "2550:148:5",
                    "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": 889,
                  "name": "Approval",
                  "nameLocation": "2709:8:5",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 888,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 883,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "owner",
                        "nameLocation": "2734:5:5",
                        "nodeType": "VariableDeclaration",
                        "scope": 889,
                        "src": "2718:21:5",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 882,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2718:7:5",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 885,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "spender",
                        "nameLocation": "2757:7:5",
                        "nodeType": "VariableDeclaration",
                        "scope": 889,
                        "src": "2741:23:5",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 884,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2741:7:5",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 887,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "2774:5:5",
                        "nodeType": "VariableDeclaration",
                        "scope": 889,
                        "src": "2766:13:5",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 886,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2766:7:5",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2717:63:5"
                  },
                  "src": "2703:78:5"
                }
              ],
              "scope": 891,
              "src": "187:2596:5",
              "usedErrors": []
            }
          ],
          "src": "91:2693:5"
        },
        "id": 5
      },
      "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol": {
        "ast": {
          "absolutePath": "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol",
          "exportedSymbols": {
            "IERC20": [
              890
            ],
            "IERC20Metadata": [
              915
            ]
          },
          "id": 916,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 892,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "110:23:6"
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "file": "../IERC20.sol",
              "id": 893,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 916,
              "sourceUnit": 891,
              "src": "135:23:6",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 895,
                    "name": "IERC20",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 890,
                    "src": "305:6:6"
                  },
                  "id": 896,
                  "nodeType": "InheritanceSpecifier",
                  "src": "305:6:6"
                }
              ],
              "contractDependencies": [],
              "contractKind": "interface",
              "documentation": {
                "id": 894,
                "nodeType": "StructuredDocumentation",
                "src": "160:116:6",
                "text": " @dev Interface for the optional metadata functions from the ERC20 standard.\n _Available since v4.1._"
              },
              "fullyImplemented": false,
              "id": 915,
              "linearizedBaseContracts": [
                915,
                890
              ],
              "name": "IERC20Metadata",
              "nameLocation": "287:14:6",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "documentation": {
                    "id": 897,
                    "nodeType": "StructuredDocumentation",
                    "src": "318:54:6",
                    "text": " @dev Returns the name of the token."
                  },
                  "functionSelector": "06fdde03",
                  "id": 902,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "name",
                  "nameLocation": "386:4:6",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 898,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "390:2:6"
                  },
                  "returnParameters": {
                    "id": 901,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 900,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 902,
                        "src": "416:13:6",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 899,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "416:6:6",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "415:15:6"
                  },
                  "scope": 915,
                  "src": "377:54:6",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 903,
                    "nodeType": "StructuredDocumentation",
                    "src": "437:56:6",
                    "text": " @dev Returns the symbol of the token."
                  },
                  "functionSelector": "95d89b41",
                  "id": 908,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "symbol",
                  "nameLocation": "507:6:6",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 904,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "513:2:6"
                  },
                  "returnParameters": {
                    "id": 907,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 906,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 908,
                        "src": "539:13:6",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 905,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "539:6:6",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "538:15:6"
                  },
                  "scope": 915,
                  "src": "498:56:6",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 909,
                    "nodeType": "StructuredDocumentation",
                    "src": "560:65:6",
                    "text": " @dev Returns the decimals places of the token."
                  },
                  "functionSelector": "313ce567",
                  "id": 914,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "decimals",
                  "nameLocation": "639:8:6",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 910,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "647:2:6"
                  },
                  "returnParameters": {
                    "id": 913,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 912,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 914,
                        "src": "673:5:6",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 911,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "673:5:6",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "672:7:6"
                  },
                  "scope": 915,
                  "src": "630:50:6",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 916,
              "src": "277:405:6",
              "usedErrors": []
            }
          ],
          "src": "110:573:6"
        },
        "id": 6
      },
      "@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol": {
        "ast": {
          "absolutePath": "@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol",
          "exportedSymbols": {
            "Context": [
              1797
            ],
            "Counters": [
              1871
            ],
            "ECDSA": [
              2464
            ],
            "EIP712": [
              2618
            ],
            "ERC20": [
              812
            ],
            "ERC20Permit": [
              1084
            ],
            "IERC20": [
              890
            ],
            "IERC20Metadata": [
              915
            ],
            "IERC20Permit": [
              1120
            ],
            "Strings": [
              2074
            ]
          },
          "id": 1085,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 917,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "113:23:7"
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol",
              "file": "./draft-IERC20Permit.sol",
              "id": 918,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 1085,
              "sourceUnit": 1121,
              "src": "138:34:7",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/ERC20.sol",
              "file": "../ERC20.sol",
              "id": 919,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 1085,
              "sourceUnit": 813,
              "src": "173:22:7",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol",
              "file": "../../../utils/cryptography/draft-EIP712.sol",
              "id": 920,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 1085,
              "sourceUnit": 2619,
              "src": "196:54:7",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/utils/cryptography/ECDSA.sol",
              "file": "../../../utils/cryptography/ECDSA.sol",
              "id": 921,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 1085,
              "sourceUnit": 2465,
              "src": "251:47:7",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/utils/Counters.sol",
              "file": "../../../utils/Counters.sol",
              "id": 922,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 1085,
              "sourceUnit": 1872,
              "src": "299:37:7",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": true,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 924,
                    "name": "ERC20",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 812,
                    "src": "889:5:7"
                  },
                  "id": 925,
                  "nodeType": "InheritanceSpecifier",
                  "src": "889:5:7"
                },
                {
                  "baseName": {
                    "id": 926,
                    "name": "IERC20Permit",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 1120,
                    "src": "896:12:7"
                  },
                  "id": 927,
                  "nodeType": "InheritanceSpecifier",
                  "src": "896:12:7"
                },
                {
                  "baseName": {
                    "id": 928,
                    "name": "EIP712",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 2618,
                    "src": "910:6:7"
                  },
                  "id": 929,
                  "nodeType": "InheritanceSpecifier",
                  "src": "910:6:7"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 923,
                "nodeType": "StructuredDocumentation",
                "src": "338:517:7",
                "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": 1084,
              "linearizedBaseContracts": [
                1084,
                2618,
                1120,
                812,
                915,
                890,
                1797
              ],
              "name": "ERC20Permit",
              "nameLocation": "874:11:7",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "id": 933,
                  "libraryName": {
                    "id": 930,
                    "name": "Counters",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 1871,
                    "src": "929:8:7"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "923:36:7",
                  "typeName": {
                    "id": 932,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 931,
                      "name": "Counters.Counter",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 1803,
                      "src": "942:16:7"
                    },
                    "referencedDeclaration": 1803,
                    "src": "942:16:7",
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_Counter_$1803_storage_ptr",
                      "typeString": "struct Counters.Counter"
                    }
                  }
                },
                {
                  "constant": false,
                  "id": 938,
                  "mutability": "mutable",
                  "name": "_nonces",
                  "nameLocation": "1010:7:7",
                  "nodeType": "VariableDeclaration",
                  "scope": 1084,
                  "src": "965:52:7",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_mapping$_t_address_$_t_struct$_Counter_$1803_storage_$",
                    "typeString": "mapping(address => struct Counters.Counter)"
                  },
                  "typeName": {
                    "id": 937,
                    "keyType": {
                      "id": 934,
                      "name": "address",
                      "nodeType": "ElementaryTypeName",
                      "src": "973:7:7",
                      "typeDescriptions": {
                        "typeIdentifier": "t_address",
                        "typeString": "address"
                      }
                    },
                    "nodeType": "Mapping",
                    "src": "965:36:7",
                    "typeDescriptions": {
                      "typeIdentifier": "t_mapping$_t_address_$_t_struct$_Counter_$1803_storage_$",
                      "typeString": "mapping(address => struct Counters.Counter)"
                    },
                    "valueType": {
                      "id": 936,
                      "nodeType": "UserDefinedTypeName",
                      "pathNode": {
                        "id": 935,
                        "name": "Counters.Counter",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 1803,
                        "src": "984:16:7"
                      },
                      "referencedDeclaration": 1803,
                      "src": "984:16:7",
                      "typeDescriptions": {
                        "typeIdentifier": "t_struct$_Counter_$1803_storage_ptr",
                        "typeString": "struct Counters.Counter"
                      }
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "id": 943,
                  "mutability": "immutable",
                  "name": "_PERMIT_TYPEHASH",
                  "nameLocation": "1102:16:7",
                  "nodeType": "VariableDeclaration",
                  "scope": 1084,
                  "src": "1076:148:7",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 939,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "1076:7:7",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": {
                    "arguments": [
                      {
                        "hexValue": "5065726d69742861646472657373206f776e65722c61646472657373207370656e6465722c75696e743235362076616c75652c75696e74323536206e6f6e63652c75696e7432353620646561646c696e6529",
                        "id": 941,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": true,
                        "kind": "string",
                        "lValueRequested": false,
                        "nodeType": "Literal",
                        "src": "1139:84:7",
                        "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": 940,
                      "name": "keccak256",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": -8,
                      "src": "1129:9:7",
                      "typeDescriptions": {
                        "typeIdentifier": "t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$",
                        "typeString": "function (bytes memory) pure returns (bytes32)"
                      }
                    },
                    "id": 942,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "functionCall",
                    "lValueRequested": false,
                    "names": [],
                    "nodeType": "FunctionCall",
                    "src": "1129:95:7",
                    "tryCall": false,
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "body": {
                    "id": 953,
                    "nodeType": "Block",
                    "src": "1506:2:7",
                    "statements": []
                  },
                  "documentation": {
                    "id": 944,
                    "nodeType": "StructuredDocumentation",
                    "src": "1231:220:7",
                    "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": 954,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 949,
                          "name": "name",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 946,
                          "src": "1495:4:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_memory_ptr",
                            "typeString": "string memory"
                          }
                        },
                        {
                          "hexValue": "31",
                          "id": 950,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "string",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "1501:3:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_stringliteral_c89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6",
                            "typeString": "literal_string \"1\""
                          },
                          "value": "1"
                        }
                      ],
                      "id": 951,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 948,
                        "name": "EIP712",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 2618,
                        "src": "1488:6:7"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "1488:17:7"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 947,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 946,
                        "mutability": "mutable",
                        "name": "name",
                        "nameLocation": "1482:4:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 954,
                        "src": "1468:18:7",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 945,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "1468:6:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1467:20:7"
                  },
                  "returnParameters": {
                    "id": 952,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1506:0:7"
                  },
                  "scope": 1084,
                  "src": "1456:52:7",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "baseFunctions": [
                    1105
                  ],
                  "body": {
                    "id": 1026,
                    "nodeType": "Block",
                    "src": "1767:428:7",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 977,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 974,
                                  "name": "block",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -4,
                                  "src": "1785:5:7",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_block",
                                    "typeString": "block"
                                  }
                                },
                                "id": 975,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "timestamp",
                                "nodeType": "MemberAccess",
                                "src": "1785:15:7",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "id": 976,
                                "name": "deadline",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 963,
                                "src": "1804:8:7",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "1785:27:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "45524332305065726d69743a206578706972656420646561646c696e65",
                              "id": 978,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1814:31:7",
                              "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": 973,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1777:7:7",
                            "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": "1777:69:7",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 980,
                        "nodeType": "ExpressionStatement",
                        "src": "1777:69:7"
                      },
                      {
                        "assignments": [
                          982
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 982,
                            "mutability": "mutable",
                            "name": "structHash",
                            "nameLocation": "1865:10:7",
                            "nodeType": "VariableDeclaration",
                            "scope": 1026,
                            "src": "1857:18:7",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes32",
                              "typeString": "bytes32"
                            },
                            "typeName": {
                              "id": 981,
                              "name": "bytes32",
                              "nodeType": "ElementaryTypeName",
                              "src": "1857:7:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 996,
                        "initialValue": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 986,
                                  "name": "_PERMIT_TYPEHASH",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 943,
                                  "src": "1899:16:7",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes32",
                                    "typeString": "bytes32"
                                  }
                                },
                                {
                                  "id": 987,
                                  "name": "owner",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 957,
                                  "src": "1917:5:7",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "id": 988,
                                  "name": "spender",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 959,
                                  "src": "1924:7:7",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "id": 989,
                                  "name": "value",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 961,
                                  "src": "1933:5:7",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                {
                                  "arguments": [
                                    {
                                      "id": 991,
                                      "name": "owner",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 957,
                                      "src": "1950:5:7",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_address",
                                        "typeString": "address"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_address",
                                        "typeString": "address"
                                      }
                                    ],
                                    "id": 990,
                                    "name": "_useNonce",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 1083,
                                    "src": "1940:9:7",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_nonpayable$_t_address_$returns$_t_uint256_$",
                                      "typeString": "function (address) returns (uint256)"
                                    }
                                  },
                                  "id": 992,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "1940:16:7",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                {
                                  "id": 993,
                                  "name": "deadline",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 963,
                                  "src": "1958:8:7",
                                  "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": 984,
                                  "name": "abi",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -1,
                                  "src": "1888:3:7",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_abi",
                                    "typeString": "abi"
                                  }
                                },
                                "id": 985,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "encode",
                                "nodeType": "MemberAccess",
                                "src": "1888:10:7",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$",
                                  "typeString": "function () pure returns (bytes memory)"
                                }
                              },
                              "id": 994,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "1888:79:7",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "id": 983,
                            "name": "keccak256",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": -8,
                            "src": "1878:9:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$",
                              "typeString": "function (bytes memory) pure returns (bytes32)"
                            }
                          },
                          "id": 995,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1878:90:7",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1857:111:7"
                      },
                      {
                        "assignments": [
                          998
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 998,
                            "mutability": "mutable",
                            "name": "hash",
                            "nameLocation": "1987:4:7",
                            "nodeType": "VariableDeclaration",
                            "scope": 1026,
                            "src": "1979:12:7",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes32",
                              "typeString": "bytes32"
                            },
                            "typeName": {
                              "id": 997,
                              "name": "bytes32",
                              "nodeType": "ElementaryTypeName",
                              "src": "1979:7:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 1002,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 1000,
                              "name": "structHash",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 982,
                              "src": "2011:10:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            ],
                            "id": 999,
                            "name": "_hashTypedDataV4",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 2617,
                            "src": "1994:16:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_bytes32_$returns$_t_bytes32_$",
                              "typeString": "function (bytes32) view returns (bytes32)"
                            }
                          },
                          "id": 1001,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1994:28:7",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1979:43:7"
                      },
                      {
                        "assignments": [
                          1004
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 1004,
                            "mutability": "mutable",
                            "name": "signer",
                            "nameLocation": "2041:6:7",
                            "nodeType": "VariableDeclaration",
                            "scope": 1026,
                            "src": "2033:14:7",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            },
                            "typeName": {
                              "id": 1003,
                              "name": "address",
                              "nodeType": "ElementaryTypeName",
                              "src": "2033:7:7",
                              "stateMutability": "nonpayable",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 1012,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 1007,
                              "name": "hash",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 998,
                              "src": "2064:4:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            {
                              "id": 1008,
                              "name": "v",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 965,
                              "src": "2070:1:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            {
                              "id": 1009,
                              "name": "r",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 967,
                              "src": "2073:1:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            {
                              "id": 1010,
                              "name": "s",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 969,
                              "src": "2076:1:7",
                              "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": 1005,
                              "name": "ECDSA",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2464,
                              "src": "2050:5:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_ECDSA_$2464_$",
                                "typeString": "type(library ECDSA)"
                              }
                            },
                            "id": 1006,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "recover",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 2404,
                            "src": "2050:13:7",
                            "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": 1011,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2050:28:7",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2033:45:7"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 1016,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 1014,
                                "name": "signer",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1004,
                                "src": "2096:6:7",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "==",
                              "rightExpression": {
                                "id": 1015,
                                "name": "owner",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 957,
                                "src": "2106:5:7",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "2096:15:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "45524332305065726d69743a20696e76616c6964207369676e6174757265",
                              "id": 1017,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2113:32:7",
                              "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": 1013,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2088:7:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 1018,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2088:58:7",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1019,
                        "nodeType": "ExpressionStatement",
                        "src": "2088:58:7"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 1021,
                              "name": "owner",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 957,
                              "src": "2166:5:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 1022,
                              "name": "spender",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 959,
                              "src": "2173:7:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 1023,
                              "name": "value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 961,
                              "src": "2182:5:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 1020,
                            "name": "_approve",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 789,
                            "src": "2157:8:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 1024,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2157:31:7",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1025,
                        "nodeType": "ExpressionStatement",
                        "src": "2157:31:7"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 955,
                    "nodeType": "StructuredDocumentation",
                    "src": "1514:50:7",
                    "text": " @dev See {IERC20Permit-permit}."
                  },
                  "functionSelector": "d505accf",
                  "id": 1027,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "permit",
                  "nameLocation": "1578:6:7",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 971,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "1758:8:7"
                  },
                  "parameters": {
                    "id": 970,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 957,
                        "mutability": "mutable",
                        "name": "owner",
                        "nameLocation": "1602:5:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1027,
                        "src": "1594:13:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 956,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1594:7:7",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 959,
                        "mutability": "mutable",
                        "name": "spender",
                        "nameLocation": "1625:7:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1027,
                        "src": "1617:15:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 958,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1617:7:7",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 961,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "1650:5:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1027,
                        "src": "1642:13:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 960,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1642:7:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 963,
                        "mutability": "mutable",
                        "name": "deadline",
                        "nameLocation": "1673:8:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1027,
                        "src": "1665:16:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 962,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1665:7:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 965,
                        "mutability": "mutable",
                        "name": "v",
                        "nameLocation": "1697:1:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1027,
                        "src": "1691:7:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 964,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "1691:5:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 967,
                        "mutability": "mutable",
                        "name": "r",
                        "nameLocation": "1716:1:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1027,
                        "src": "1708:9:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 966,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1708:7:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 969,
                        "mutability": "mutable",
                        "name": "s",
                        "nameLocation": "1735:1:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1027,
                        "src": "1727:9:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 968,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1727:7:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1584:158:7"
                  },
                  "returnParameters": {
                    "id": 972,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1767:0:7"
                  },
                  "scope": 1084,
                  "src": "1569:626:7",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    1113
                  ],
                  "body": {
                    "id": 1042,
                    "nodeType": "Block",
                    "src": "2334:48:7",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "baseExpression": {
                                "id": 1036,
                                "name": "_nonces",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 938,
                                "src": "2351:7:7",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_mapping$_t_address_$_t_struct$_Counter_$1803_storage_$",
                                  "typeString": "mapping(address => struct Counters.Counter storage ref)"
                                }
                              },
                              "id": 1038,
                              "indexExpression": {
                                "id": 1037,
                                "name": "owner",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1030,
                                "src": "2359:5:7",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "nodeType": "IndexAccess",
                              "src": "2351:14:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Counter_$1803_storage",
                                "typeString": "struct Counters.Counter storage ref"
                              }
                            },
                            "id": 1039,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "current",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 1815,
                            "src": "2351:22:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_struct$_Counter_$1803_storage_ptr_$returns$_t_uint256_$bound_to$_t_struct$_Counter_$1803_storage_ptr_$",
                              "typeString": "function (struct Counters.Counter storage pointer) view returns (uint256)"
                            }
                          },
                          "id": 1040,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2351:24:7",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 1035,
                        "id": 1041,
                        "nodeType": "Return",
                        "src": "2344:31:7"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1028,
                    "nodeType": "StructuredDocumentation",
                    "src": "2201:50:7",
                    "text": " @dev See {IERC20Permit-nonces}."
                  },
                  "functionSelector": "7ecebe00",
                  "id": 1043,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "nonces",
                  "nameLocation": "2265:6:7",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 1032,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2307:8:7"
                  },
                  "parameters": {
                    "id": 1031,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1030,
                        "mutability": "mutable",
                        "name": "owner",
                        "nameLocation": "2280:5:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1043,
                        "src": "2272:13:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1029,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2272:7:7",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2271:15:7"
                  },
                  "returnParameters": {
                    "id": 1035,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1034,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 1043,
                        "src": "2325:7:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1033,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2325:7:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2324:9:7"
                  },
                  "scope": 1084,
                  "src": "2256:126:7",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    1119
                  ],
                  "body": {
                    "id": 1053,
                    "nodeType": "Block",
                    "src": "2575:44:7",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 1050,
                            "name": "_domainSeparatorV4",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 2574,
                            "src": "2592:18:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$__$returns$_t_bytes32_$",
                              "typeString": "function () view returns (bytes32)"
                            }
                          },
                          "id": 1051,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2592:20:7",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "functionReturnParameters": 1049,
                        "id": 1052,
                        "nodeType": "Return",
                        "src": "2585:27:7"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1044,
                    "nodeType": "StructuredDocumentation",
                    "src": "2388:60:7",
                    "text": " @dev See {IERC20Permit-DOMAIN_SEPARATOR}."
                  },
                  "functionSelector": "3644e515",
                  "id": 1054,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "DOMAIN_SEPARATOR",
                  "nameLocation": "2515:16:7",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 1046,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2548:8:7"
                  },
                  "parameters": {
                    "id": 1045,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2531:2:7"
                  },
                  "returnParameters": {
                    "id": 1049,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1048,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 1054,
                        "src": "2566:7:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 1047,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2566:7:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2565:9:7"
                  },
                  "scope": 1084,
                  "src": "2506:113:7",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 1082,
                    "nodeType": "Block",
                    "src": "2827:126:7",
                    "statements": [
                      {
                        "assignments": [
                          1066
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 1066,
                            "mutability": "mutable",
                            "name": "nonce",
                            "nameLocation": "2862:5:7",
                            "nodeType": "VariableDeclaration",
                            "scope": 1082,
                            "src": "2837:30:7",
                            "stateVariable": false,
                            "storageLocation": "storage",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Counter_$1803_storage_ptr",
                              "typeString": "struct Counters.Counter"
                            },
                            "typeName": {
                              "id": 1065,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 1064,
                                "name": "Counters.Counter",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 1803,
                                "src": "2837:16:7"
                              },
                              "referencedDeclaration": 1803,
                              "src": "2837:16:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Counter_$1803_storage_ptr",
                                "typeString": "struct Counters.Counter"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 1070,
                        "initialValue": {
                          "baseExpression": {
                            "id": 1067,
                            "name": "_nonces",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 938,
                            "src": "2870:7:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_struct$_Counter_$1803_storage_$",
                              "typeString": "mapping(address => struct Counters.Counter storage ref)"
                            }
                          },
                          "id": 1069,
                          "indexExpression": {
                            "id": 1068,
                            "name": "owner",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1057,
                            "src": "2878:5:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "2870:14:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Counter_$1803_storage",
                            "typeString": "struct Counters.Counter storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2837:47:7"
                      },
                      {
                        "expression": {
                          "id": 1075,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 1071,
                            "name": "current",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1060,
                            "src": "2894:7:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [],
                            "expression": {
                              "argumentTypes": [],
                              "expression": {
                                "id": 1072,
                                "name": "nonce",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1066,
                                "src": "2904:5:7",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Counter_$1803_storage_ptr",
                                  "typeString": "struct Counters.Counter storage pointer"
                                }
                              },
                              "id": 1073,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "current",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 1815,
                              "src": "2904:13:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_view$_t_struct$_Counter_$1803_storage_ptr_$returns$_t_uint256_$bound_to$_t_struct$_Counter_$1803_storage_ptr_$",
                                "typeString": "function (struct Counters.Counter storage pointer) view returns (uint256)"
                              }
                            },
                            "id": 1074,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "2904:15:7",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "2894:25:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 1076,
                        "nodeType": "ExpressionStatement",
                        "src": "2894:25:7"
                      },
                      {
                        "expression": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "id": 1077,
                              "name": "nonce",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1066,
                              "src": "2929:5:7",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Counter_$1803_storage_ptr",
                                "typeString": "struct Counters.Counter storage pointer"
                              }
                            },
                            "id": 1079,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "increment",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 1829,
                            "src": "2929:15:7",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_struct$_Counter_$1803_storage_ptr_$returns$__$bound_to$_t_struct$_Counter_$1803_storage_ptr_$",
                              "typeString": "function (struct Counters.Counter storage pointer)"
                            }
                          },
                          "id": 1080,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2929:17:7",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1081,
                        "nodeType": "ExpressionStatement",
                        "src": "2929:17:7"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1055,
                    "nodeType": "StructuredDocumentation",
                    "src": "2625:120:7",
                    "text": " @dev \"Consume a nonce\": return the current value and increment.\n _Available since v4.1._"
                  },
                  "id": 1083,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_useNonce",
                  "nameLocation": "2759:9:7",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1058,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1057,
                        "mutability": "mutable",
                        "name": "owner",
                        "nameLocation": "2777:5:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1083,
                        "src": "2769:13:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1056,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2769:7:7",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2768:15:7"
                  },
                  "returnParameters": {
                    "id": 1061,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1060,
                        "mutability": "mutable",
                        "name": "current",
                        "nameLocation": "2818:7:7",
                        "nodeType": "VariableDeclaration",
                        "scope": 1083,
                        "src": "2810:15:7",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1059,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2810:7:7",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2809:17:7"
                  },
                  "scope": 1084,
                  "src": "2750:203:7",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "internal"
                }
              ],
              "scope": 1085,
              "src": "856:2099:7",
              "usedErrors": []
            }
          ],
          "src": "113:2843:7"
        },
        "id": 7
      },
      "@openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol": {
        "ast": {
          "absolutePath": "@openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol",
          "exportedSymbols": {
            "IERC20Permit": [
              1120
            ]
          },
          "id": 1121,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 1086,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "114:23:8"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "documentation": {
                "id": 1087,
                "nodeType": "StructuredDocumentation",
                "src": "139:480:8",
                "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": 1120,
              "linearizedBaseContracts": [
                1120
              ],
              "name": "IERC20Permit",
              "nameLocation": "630:12:8",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "documentation": {
                    "id": 1088,
                    "nodeType": "StructuredDocumentation",
                    "src": "649:792:8",
                    "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": 1105,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "permit",
                  "nameLocation": "1455:6:8",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1103,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1090,
                        "mutability": "mutable",
                        "name": "owner",
                        "nameLocation": "1479:5:8",
                        "nodeType": "VariableDeclaration",
                        "scope": 1105,
                        "src": "1471:13:8",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1089,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1471:7:8",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1092,
                        "mutability": "mutable",
                        "name": "spender",
                        "nameLocation": "1502:7:8",
                        "nodeType": "VariableDeclaration",
                        "scope": 1105,
                        "src": "1494:15:8",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1091,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1494:7:8",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1094,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "1527:5:8",
                        "nodeType": "VariableDeclaration",
                        "scope": 1105,
                        "src": "1519:13:8",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1093,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1519:7:8",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1096,
                        "mutability": "mutable",
                        "name": "deadline",
                        "nameLocation": "1550:8:8",
                        "nodeType": "VariableDeclaration",
                        "scope": 1105,
                        "src": "1542:16:8",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1095,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1542:7:8",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1098,
                        "mutability": "mutable",
                        "name": "v",
                        "nameLocation": "1574:1:8",
                        "nodeType": "VariableDeclaration",
                        "scope": 1105,
                        "src": "1568:7:8",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 1097,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "1568:5:8",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1100,
                        "mutability": "mutable",
                        "name": "r",
                        "nameLocation": "1593:1:8",
                        "nodeType": "VariableDeclaration",
                        "scope": 1105,
                        "src": "1585:9:8",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 1099,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1585:7:8",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1102,
                        "mutability": "mutable",
                        "name": "s",
                        "nameLocation": "1612:1:8",
                        "nodeType": "VariableDeclaration",
                        "scope": 1105,
                        "src": "1604:9:8",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 1101,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1604:7:8",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1461:158:8"
                  },
                  "returnParameters": {
                    "id": 1104,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1628:0:8"
                  },
                  "scope": 1120,
                  "src": "1446:183:8",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 1106,
                    "nodeType": "StructuredDocumentation",
                    "src": "1635:294:8",
                    "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": 1113,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "nonces",
                  "nameLocation": "1943:6:8",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1109,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1108,
                        "mutability": "mutable",
                        "name": "owner",
                        "nameLocation": "1958:5:8",
                        "nodeType": "VariableDeclaration",
                        "scope": 1113,
                        "src": "1950:13:8",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1107,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1950:7:8",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1949:15:8"
                  },
                  "returnParameters": {
                    "id": 1112,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1111,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 1113,
                        "src": "1988:7:8",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1110,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1988:7:8",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1987:9:8"
                  },
                  "scope": 1120,
                  "src": "1934:63:8",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 1114,
                    "nodeType": "StructuredDocumentation",
                    "src": "2003:128:8",
                    "text": " @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}."
                  },
                  "functionSelector": "3644e515",
                  "id": 1119,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "DOMAIN_SEPARATOR",
                  "nameLocation": "2198:16:8",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1115,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2214:2:8"
                  },
                  "returnParameters": {
                    "id": 1118,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1117,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 1119,
                        "src": "2240:7:8",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 1116,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2240:7:8",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2239:9:8"
                  },
                  "scope": 1120,
                  "src": "2189:60:8",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 1121,
              "src": "620:1631:8",
              "usedErrors": []
            }
          ],
          "src": "114:2138:8"
        },
        "id": 8
      },
      "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol": {
        "ast": {
          "absolutePath": "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol",
          "exportedSymbols": {
            "Address": [
              1775
            ],
            "IERC20": [
              890
            ],
            "SafeERC20": [
              1344
            ]
          },
          "id": 1345,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 1122,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "100:23:9"
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "file": "../IERC20.sol",
              "id": 1123,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 1345,
              "sourceUnit": 891,
              "src": "125:23:9",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/utils/Address.sol",
              "file": "../../../utils/Address.sol",
              "id": 1124,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 1345,
              "sourceUnit": 1776,
              "src": "149:36:9",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "library",
              "documentation": {
                "id": 1125,
                "nodeType": "StructuredDocumentation",
                "src": "187:457:9",
                "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": 1344,
              "linearizedBaseContracts": [
                1344
              ],
              "name": "SafeERC20",
              "nameLocation": "653:9:9",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "id": 1128,
                  "libraryName": {
                    "id": 1126,
                    "name": "Address",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 1775,
                    "src": "675:7:9"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "669:26:9",
                  "typeName": {
                    "id": 1127,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "687:7:9",
                    "stateMutability": "nonpayable",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  }
                },
                {
                  "body": {
                    "id": 1150,
                    "nodeType": "Block",
                    "src": "803:103:9",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 1139,
                              "name": "token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1131,
                              "src": "833:5:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$890",
                                "typeString": "contract IERC20"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "expression": {
                                    "expression": {
                                      "id": 1142,
                                      "name": "token",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 1131,
                                      "src": "863:5:9",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_contract$_IERC20_$890",
                                        "typeString": "contract IERC20"
                                      }
                                    },
                                    "id": 1143,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "transfer",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 839,
                                    "src": "863:14:9",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$",
                                      "typeString": "function (address,uint256) external returns (bool)"
                                    }
                                  },
                                  "id": 1144,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "selector",
                                  "nodeType": "MemberAccess",
                                  "src": "863:23:9",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes4",
                                    "typeString": "bytes4"
                                  }
                                },
                                {
                                  "id": 1145,
                                  "name": "to",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1133,
                                  "src": "888:2:9",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "id": 1146,
                                  "name": "value",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1135,
                                  "src": "892:5:9",
                                  "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": 1140,
                                  "name": "abi",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -1,
                                  "src": "840:3:9",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_abi",
                                    "typeString": "abi"
                                  }
                                },
                                "id": 1141,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "encodeWithSelector",
                                "nodeType": "MemberAccess",
                                "src": "840:22:9",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_abiencodewithselector_pure$_t_bytes4_$returns$_t_bytes_memory_ptr_$",
                                  "typeString": "function (bytes4) pure returns (bytes memory)"
                                }
                              },
                              "id": 1147,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "840:58:9",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IERC20_$890",
                                "typeString": "contract IERC20"
                              },
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "id": 1138,
                            "name": "_callOptionalReturn",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1343,
                            "src": "813:19:9",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20_$890_$_t_bytes_memory_ptr_$returns$__$",
                              "typeString": "function (contract IERC20,bytes memory)"
                            }
                          },
                          "id": 1148,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "813:86:9",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1149,
                        "nodeType": "ExpressionStatement",
                        "src": "813:86:9"
                      }
                    ]
                  },
                  "id": 1151,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "safeTransfer",
                  "nameLocation": "710:12:9",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1136,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1131,
                        "mutability": "mutable",
                        "name": "token",
                        "nameLocation": "739:5:9",
                        "nodeType": "VariableDeclaration",
                        "scope": 1151,
                        "src": "732:12:9",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$890",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 1130,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 1129,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 890,
                            "src": "732:6:9"
                          },
                          "referencedDeclaration": 890,
                          "src": "732:6:9",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$890",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1133,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "762:2:9",
                        "nodeType": "VariableDeclaration",
                        "scope": 1151,
                        "src": "754:10:9",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1132,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "754:7:9",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1135,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "782:5:9",
                        "nodeType": "VariableDeclaration",
                        "scope": 1151,
                        "src": "774:13:9",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1134,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "774:7:9",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "722:71:9"
                  },
                  "returnParameters": {
                    "id": 1137,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "803:0:9"
                  },
                  "scope": 1344,
                  "src": "701:205:9",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 1176,
                    "nodeType": "Block",
                    "src": "1040:113:9",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 1164,
                              "name": "token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1154,
                              "src": "1070:5:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$890",
                                "typeString": "contract IERC20"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "expression": {
                                    "expression": {
                                      "id": 1167,
                                      "name": "token",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 1154,
                                      "src": "1100:5:9",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_contract$_IERC20_$890",
                                        "typeString": "contract IERC20"
                                      }
                                    },
                                    "id": 1168,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "transferFrom",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 871,
                                    "src": "1100:18:9",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$_t_bool_$",
                                      "typeString": "function (address,address,uint256) external returns (bool)"
                                    }
                                  },
                                  "id": 1169,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "selector",
                                  "nodeType": "MemberAccess",
                                  "src": "1100:27:9",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes4",
                                    "typeString": "bytes4"
                                  }
                                },
                                {
                                  "id": 1170,
                                  "name": "from",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1156,
                                  "src": "1129:4:9",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "id": 1171,
                                  "name": "to",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1158,
                                  "src": "1135:2:9",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "id": 1172,
                                  "name": "value",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1160,
                                  "src": "1139:5:9",
                                  "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": 1165,
                                  "name": "abi",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -1,
                                  "src": "1077:3:9",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_abi",
                                    "typeString": "abi"
                                  }
                                },
                                "id": 1166,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "encodeWithSelector",
                                "nodeType": "MemberAccess",
                                "src": "1077:22:9",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_abiencodewithselector_pure$_t_bytes4_$returns$_t_bytes_memory_ptr_$",
                                  "typeString": "function (bytes4) pure returns (bytes memory)"
                                }
                              },
                              "id": 1173,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "1077:68:9",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IERC20_$890",
                                "typeString": "contract IERC20"
                              },
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "id": 1163,
                            "name": "_callOptionalReturn",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1343,
                            "src": "1050:19:9",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20_$890_$_t_bytes_memory_ptr_$returns$__$",
                              "typeString": "function (contract IERC20,bytes memory)"
                            }
                          },
                          "id": 1174,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1050:96:9",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1175,
                        "nodeType": "ExpressionStatement",
                        "src": "1050:96:9"
                      }
                    ]
                  },
                  "id": 1177,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "safeTransferFrom",
                  "nameLocation": "921:16:9",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1161,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1154,
                        "mutability": "mutable",
                        "name": "token",
                        "nameLocation": "954:5:9",
                        "nodeType": "VariableDeclaration",
                        "scope": 1177,
                        "src": "947:12:9",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$890",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 1153,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 1152,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 890,
                            "src": "947:6:9"
                          },
                          "referencedDeclaration": 890,
                          "src": "947:6:9",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$890",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1156,
                        "mutability": "mutable",
                        "name": "from",
                        "nameLocation": "977:4:9",
                        "nodeType": "VariableDeclaration",
                        "scope": 1177,
                        "src": "969:12:9",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1155,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "969:7:9",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1158,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "999:2:9",
                        "nodeType": "VariableDeclaration",
                        "scope": 1177,
                        "src": "991:10:9",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1157,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "991:7:9",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1160,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "1019:5:9",
                        "nodeType": "VariableDeclaration",
                        "scope": 1177,
                        "src": "1011:13:9",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1159,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1011:7:9",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "937:93:9"
                  },
                  "returnParameters": {
                    "id": 1162,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1040:0:9"
                  },
                  "scope": 1344,
                  "src": "912:241:9",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 1220,
                    "nodeType": "Block",
                    "src": "1519:497:9",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              "id": 1204,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "components": [
                                  {
                                    "commonType": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    },
                                    "id": 1191,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "leftExpression": {
                                      "id": 1189,
                                      "name": "value",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 1185,
                                      "src": "1768:5:9",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "nodeType": "BinaryOperation",
                                    "operator": "==",
                                    "rightExpression": {
                                      "hexValue": "30",
                                      "id": 1190,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "kind": "number",
                                      "lValueRequested": false,
                                      "nodeType": "Literal",
                                      "src": "1777:1:9",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_rational_0_by_1",
                                        "typeString": "int_const 0"
                                      },
                                      "value": "0"
                                    },
                                    "src": "1768:10:9",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bool",
                                      "typeString": "bool"
                                    }
                                  }
                                ],
                                "id": 1192,
                                "isConstant": false,
                                "isInlineArray": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "TupleExpression",
                                "src": "1767:12:9",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "||",
                              "rightExpression": {
                                "components": [
                                  {
                                    "commonType": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    },
                                    "id": 1202,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "leftExpression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "id": 1197,
                                              "name": "this",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": -28,
                                              "src": "1808:4:9",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_contract$_SafeERC20_$1344",
                                                "typeString": "library SafeERC20"
                                              }
                                            }
                                          ],
                                          "expression": {
                                            "argumentTypes": [
                                              {
                                                "typeIdentifier": "t_contract$_SafeERC20_$1344",
                                                "typeString": "library SafeERC20"
                                              }
                                            ],
                                            "id": 1196,
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": true,
                                            "lValueRequested": false,
                                            "nodeType": "ElementaryTypeNameExpression",
                                            "src": "1800:7:9",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_type$_t_address_$",
                                              "typeString": "type(address)"
                                            },
                                            "typeName": {
                                              "id": 1195,
                                              "name": "address",
                                              "nodeType": "ElementaryTypeName",
                                              "src": "1800:7:9",
                                              "typeDescriptions": {}
                                            }
                                          },
                                          "id": 1198,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "kind": "typeConversion",
                                          "lValueRequested": false,
                                          "names": [],
                                          "nodeType": "FunctionCall",
                                          "src": "1800:13:9",
                                          "tryCall": false,
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_address",
                                            "typeString": "address"
                                          }
                                        },
                                        {
                                          "id": 1199,
                                          "name": "spender",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 1183,
                                          "src": "1815:7:9",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_address",
                                            "typeString": "address"
                                          }
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_address",
                                            "typeString": "address"
                                          },
                                          {
                                            "typeIdentifier": "t_address",
                                            "typeString": "address"
                                          }
                                        ],
                                        "expression": {
                                          "id": 1193,
                                          "name": "token",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 1181,
                                          "src": "1784:5:9",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_contract$_IERC20_$890",
                                            "typeString": "contract IERC20"
                                          }
                                        },
                                        "id": 1194,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "memberName": "allowance",
                                        "nodeType": "MemberAccess",
                                        "referencedDeclaration": 849,
                                        "src": "1784:15:9",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_function_external_view$_t_address_$_t_address_$returns$_t_uint256_$",
                                          "typeString": "function (address,address) view external returns (uint256)"
                                        }
                                      },
                                      "id": 1200,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "functionCall",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "1784:39:9",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "nodeType": "BinaryOperation",
                                    "operator": "==",
                                    "rightExpression": {
                                      "hexValue": "30",
                                      "id": 1201,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "kind": "number",
                                      "lValueRequested": false,
                                      "nodeType": "Literal",
                                      "src": "1827:1:9",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_rational_0_by_1",
                                        "typeString": "int_const 0"
                                      },
                                      "value": "0"
                                    },
                                    "src": "1784:44:9",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bool",
                                      "typeString": "bool"
                                    }
                                  }
                                ],
                                "id": 1203,
                                "isConstant": false,
                                "isInlineArray": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "TupleExpression",
                                "src": "1783:46:9",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "src": "1767:62:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365",
                              "id": 1205,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1843:56:9",
                              "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": 1188,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1746:7:9",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 1206,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1746:163:9",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1207,
                        "nodeType": "ExpressionStatement",
                        "src": "1746:163:9"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 1209,
                              "name": "token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1181,
                              "src": "1939:5:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$890",
                                "typeString": "contract IERC20"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "expression": {
                                    "expression": {
                                      "id": 1212,
                                      "name": "token",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 1181,
                                      "src": "1969:5:9",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_contract$_IERC20_$890",
                                        "typeString": "contract IERC20"
                                      }
                                    },
                                    "id": 1213,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "approve",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 859,
                                    "src": "1969:13:9",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$",
                                      "typeString": "function (address,uint256) external returns (bool)"
                                    }
                                  },
                                  "id": 1214,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "selector",
                                  "nodeType": "MemberAccess",
                                  "src": "1969:22:9",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes4",
                                    "typeString": "bytes4"
                                  }
                                },
                                {
                                  "id": 1215,
                                  "name": "spender",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1183,
                                  "src": "1993:7:9",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "id": 1216,
                                  "name": "value",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1185,
                                  "src": "2002:5:9",
                                  "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": 1210,
                                  "name": "abi",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -1,
                                  "src": "1946:3:9",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_abi",
                                    "typeString": "abi"
                                  }
                                },
                                "id": 1211,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "encodeWithSelector",
                                "nodeType": "MemberAccess",
                                "src": "1946:22:9",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_abiencodewithselector_pure$_t_bytes4_$returns$_t_bytes_memory_ptr_$",
                                  "typeString": "function (bytes4) pure returns (bytes memory)"
                                }
                              },
                              "id": 1217,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "1946:62:9",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IERC20_$890",
                                "typeString": "contract IERC20"
                              },
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "id": 1208,
                            "name": "_callOptionalReturn",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1343,
                            "src": "1919:19:9",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20_$890_$_t_bytes_memory_ptr_$returns$__$",
                              "typeString": "function (contract IERC20,bytes memory)"
                            }
                          },
                          "id": 1218,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1919:90:9",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1219,
                        "nodeType": "ExpressionStatement",
                        "src": "1919:90:9"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1178,
                    "nodeType": "StructuredDocumentation",
                    "src": "1159:249:9",
                    "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": 1221,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "safeApprove",
                  "nameLocation": "1422:11:9",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1186,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1181,
                        "mutability": "mutable",
                        "name": "token",
                        "nameLocation": "1450:5:9",
                        "nodeType": "VariableDeclaration",
                        "scope": 1221,
                        "src": "1443:12:9",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$890",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 1180,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 1179,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 890,
                            "src": "1443:6:9"
                          },
                          "referencedDeclaration": 890,
                          "src": "1443:6:9",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$890",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1183,
                        "mutability": "mutable",
                        "name": "spender",
                        "nameLocation": "1473:7:9",
                        "nodeType": "VariableDeclaration",
                        "scope": 1221,
                        "src": "1465:15:9",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1182,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1465:7:9",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1185,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "1498:5:9",
                        "nodeType": "VariableDeclaration",
                        "scope": 1221,
                        "src": "1490:13:9",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1184,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1490:7:9",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1433:76:9"
                  },
                  "returnParameters": {
                    "id": 1187,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1519:0:9"
                  },
                  "scope": 1344,
                  "src": "1413:603:9",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 1256,
                    "nodeType": "Block",
                    "src": "2138:194:9",
                    "statements": [
                      {
                        "assignments": [
                          1232
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 1232,
                            "mutability": "mutable",
                            "name": "newAllowance",
                            "nameLocation": "2156:12:9",
                            "nodeType": "VariableDeclaration",
                            "scope": 1256,
                            "src": "2148:20:9",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 1231,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "2148:7:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 1243,
                        "initialValue": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 1242,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "arguments": [
                              {
                                "arguments": [
                                  {
                                    "id": 1237,
                                    "name": "this",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -28,
                                    "src": "2195:4:9",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_SafeERC20_$1344",
                                      "typeString": "library SafeERC20"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_SafeERC20_$1344",
                                      "typeString": "library SafeERC20"
                                    }
                                  ],
                                  "id": 1236,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "2187:7:9",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 1235,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "2187:7:9",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 1238,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "2187:13:9",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              {
                                "id": 1239,
                                "name": "spender",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1226,
                                "src": "2202:7:9",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                },
                                {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              ],
                              "expression": {
                                "id": 1233,
                                "name": "token",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1224,
                                "src": "2171:5:9",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_contract$_IERC20_$890",
                                  "typeString": "contract IERC20"
                                }
                              },
                              "id": 1234,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "allowance",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 849,
                              "src": "2171:15:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_external_view$_t_address_$_t_address_$returns$_t_uint256_$",
                                "typeString": "function (address,address) view external returns (uint256)"
                              }
                            },
                            "id": 1240,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "2171:39:9",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "+",
                          "rightExpression": {
                            "id": 1241,
                            "name": "value",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1228,
                            "src": "2213:5:9",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "2171:47:9",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2148:70:9"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 1245,
                              "name": "token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1224,
                              "src": "2248:5:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$890",
                                "typeString": "contract IERC20"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "expression": {
                                    "expression": {
                                      "id": 1248,
                                      "name": "token",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 1224,
                                      "src": "2278:5:9",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_contract$_IERC20_$890",
                                        "typeString": "contract IERC20"
                                      }
                                    },
                                    "id": 1249,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "approve",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 859,
                                    "src": "2278:13:9",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$",
                                      "typeString": "function (address,uint256) external returns (bool)"
                                    }
                                  },
                                  "id": 1250,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "selector",
                                  "nodeType": "MemberAccess",
                                  "src": "2278:22:9",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes4",
                                    "typeString": "bytes4"
                                  }
                                },
                                {
                                  "id": 1251,
                                  "name": "spender",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1226,
                                  "src": "2302:7:9",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "id": 1252,
                                  "name": "newAllowance",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1232,
                                  "src": "2311:12:9",
                                  "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": 1246,
                                  "name": "abi",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -1,
                                  "src": "2255:3:9",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_abi",
                                    "typeString": "abi"
                                  }
                                },
                                "id": 1247,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "encodeWithSelector",
                                "nodeType": "MemberAccess",
                                "src": "2255:22:9",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_abiencodewithselector_pure$_t_bytes4_$returns$_t_bytes_memory_ptr_$",
                                  "typeString": "function (bytes4) pure returns (bytes memory)"
                                }
                              },
                              "id": 1253,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "2255:69:9",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IERC20_$890",
                                "typeString": "contract IERC20"
                              },
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "id": 1244,
                            "name": "_callOptionalReturn",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1343,
                            "src": "2228:19:9",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20_$890_$_t_bytes_memory_ptr_$returns$__$",
                              "typeString": "function (contract IERC20,bytes memory)"
                            }
                          },
                          "id": 1254,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2228:97:9",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1255,
                        "nodeType": "ExpressionStatement",
                        "src": "2228:97:9"
                      }
                    ]
                  },
                  "id": 1257,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "safeIncreaseAllowance",
                  "nameLocation": "2031:21:9",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1229,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1224,
                        "mutability": "mutable",
                        "name": "token",
                        "nameLocation": "2069:5:9",
                        "nodeType": "VariableDeclaration",
                        "scope": 1257,
                        "src": "2062:12:9",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$890",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 1223,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 1222,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 890,
                            "src": "2062:6:9"
                          },
                          "referencedDeclaration": 890,
                          "src": "2062:6:9",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$890",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1226,
                        "mutability": "mutable",
                        "name": "spender",
                        "nameLocation": "2092:7:9",
                        "nodeType": "VariableDeclaration",
                        "scope": 1257,
                        "src": "2084:15:9",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1225,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2084:7:9",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1228,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "2117:5:9",
                        "nodeType": "VariableDeclaration",
                        "scope": 1257,
                        "src": "2109:13:9",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1227,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2109:7:9",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2052:76:9"
                  },
                  "returnParameters": {
                    "id": 1230,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2138:0:9"
                  },
                  "scope": 1344,
                  "src": "2022:310:9",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 1304,
                    "nodeType": "Block",
                    "src": "2454:370:9",
                    "statements": [
                      {
                        "id": 1303,
                        "nodeType": "UncheckedBlock",
                        "src": "2464:354:9",
                        "statements": [
                          {
                            "assignments": [
                              1268
                            ],
                            "declarations": [
                              {
                                "constant": false,
                                "id": 1268,
                                "mutability": "mutable",
                                "name": "oldAllowance",
                                "nameLocation": "2496:12:9",
                                "nodeType": "VariableDeclaration",
                                "scope": 1303,
                                "src": "2488:20:9",
                                "stateVariable": false,
                                "storageLocation": "default",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "typeName": {
                                  "id": 1267,
                                  "name": "uint256",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "2488:7:9",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "visibility": "internal"
                              }
                            ],
                            "id": 1277,
                            "initialValue": {
                              "arguments": [
                                {
                                  "arguments": [
                                    {
                                      "id": 1273,
                                      "name": "this",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -28,
                                      "src": "2535:4:9",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_contract$_SafeERC20_$1344",
                                        "typeString": "library SafeERC20"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_contract$_SafeERC20_$1344",
                                        "typeString": "library SafeERC20"
                                      }
                                    ],
                                    "id": 1272,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "ElementaryTypeNameExpression",
                                    "src": "2527:7:9",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_address_$",
                                      "typeString": "type(address)"
                                    },
                                    "typeName": {
                                      "id": 1271,
                                      "name": "address",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "2527:7:9",
                                      "typeDescriptions": {}
                                    }
                                  },
                                  "id": 1274,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "typeConversion",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "2527:13:9",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "id": 1275,
                                  "name": "spender",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1262,
                                  "src": "2542:7:9",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                ],
                                "expression": {
                                  "id": 1269,
                                  "name": "token",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1260,
                                  "src": "2511:5:9",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_IERC20_$890",
                                    "typeString": "contract IERC20"
                                  }
                                },
                                "id": 1270,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "allowance",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 849,
                                "src": "2511:15:9",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_external_view$_t_address_$_t_address_$returns$_t_uint256_$",
                                  "typeString": "function (address,address) view external returns (uint256)"
                                }
                              },
                              "id": 1276,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "2511:39:9",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "nodeType": "VariableDeclarationStatement",
                            "src": "2488:62:9"
                          },
                          {
                            "expression": {
                              "arguments": [
                                {
                                  "commonType": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "id": 1281,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "id": 1279,
                                    "name": "oldAllowance",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 1268,
                                    "src": "2572:12:9",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": ">=",
                                  "rightExpression": {
                                    "id": 1280,
                                    "name": "value",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 1264,
                                    "src": "2588:5:9",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "src": "2572:21:9",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bool",
                                    "typeString": "bool"
                                  }
                                },
                                {
                                  "hexValue": "5361666545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f",
                                  "id": 1282,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "string",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "2595:43:9",
                                  "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": 1278,
                                "name": "require",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [
                                  -18,
                                  -18
                                ],
                                "referencedDeclaration": -18,
                                "src": "2564:7:9",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                                  "typeString": "function (bool,string memory) pure"
                                }
                              },
                              "id": 1283,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "2564:75:9",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_tuple$__$",
                                "typeString": "tuple()"
                              }
                            },
                            "id": 1284,
                            "nodeType": "ExpressionStatement",
                            "src": "2564:75:9"
                          },
                          {
                            "assignments": [
                              1286
                            ],
                            "declarations": [
                              {
                                "constant": false,
                                "id": 1286,
                                "mutability": "mutable",
                                "name": "newAllowance",
                                "nameLocation": "2661:12:9",
                                "nodeType": "VariableDeclaration",
                                "scope": 1303,
                                "src": "2653:20:9",
                                "stateVariable": false,
                                "storageLocation": "default",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "typeName": {
                                  "id": 1285,
                                  "name": "uint256",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "2653:7:9",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "visibility": "internal"
                              }
                            ],
                            "id": 1290,
                            "initialValue": {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 1289,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 1287,
                                "name": "oldAllowance",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1268,
                                "src": "2676:12:9",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "-",
                              "rightExpression": {
                                "id": 1288,
                                "name": "value",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1264,
                                "src": "2691:5:9",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "2676:20:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "nodeType": "VariableDeclarationStatement",
                            "src": "2653:43:9"
                          },
                          {
                            "expression": {
                              "arguments": [
                                {
                                  "id": 1292,
                                  "name": "token",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1260,
                                  "src": "2730:5:9",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_IERC20_$890",
                                    "typeString": "contract IERC20"
                                  }
                                },
                                {
                                  "arguments": [
                                    {
                                      "expression": {
                                        "expression": {
                                          "id": 1295,
                                          "name": "token",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 1260,
                                          "src": "2760:5:9",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_contract$_IERC20_$890",
                                            "typeString": "contract IERC20"
                                          }
                                        },
                                        "id": 1296,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "memberName": "approve",
                                        "nodeType": "MemberAccess",
                                        "referencedDeclaration": 859,
                                        "src": "2760:13:9",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$",
                                          "typeString": "function (address,uint256) external returns (bool)"
                                        }
                                      },
                                      "id": 1297,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "memberName": "selector",
                                      "nodeType": "MemberAccess",
                                      "src": "2760:22:9",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_bytes4",
                                        "typeString": "bytes4"
                                      }
                                    },
                                    {
                                      "id": 1298,
                                      "name": "spender",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 1262,
                                      "src": "2784:7:9",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_address",
                                        "typeString": "address"
                                      }
                                    },
                                    {
                                      "id": 1299,
                                      "name": "newAllowance",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 1286,
                                      "src": "2793:12:9",
                                      "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": 1293,
                                      "name": "abi",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -1,
                                      "src": "2737:3:9",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_magic_abi",
                                        "typeString": "abi"
                                      }
                                    },
                                    "id": 1294,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "memberName": "encodeWithSelector",
                                    "nodeType": "MemberAccess",
                                    "src": "2737:22:9",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_abiencodewithselector_pure$_t_bytes4_$returns$_t_bytes_memory_ptr_$",
                                      "typeString": "function (bytes4) pure returns (bytes memory)"
                                    }
                                  },
                                  "id": 1300,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "2737:69:9",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes_memory_ptr",
                                    "typeString": "bytes memory"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_IERC20_$890",
                                    "typeString": "contract IERC20"
                                  },
                                  {
                                    "typeIdentifier": "t_bytes_memory_ptr",
                                    "typeString": "bytes memory"
                                  }
                                ],
                                "id": 1291,
                                "name": "_callOptionalReturn",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1343,
                                "src": "2710:19:9",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20_$890_$_t_bytes_memory_ptr_$returns$__$",
                                  "typeString": "function (contract IERC20,bytes memory)"
                                }
                              },
                              "id": 1301,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "2710:97:9",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_tuple$__$",
                                "typeString": "tuple()"
                              }
                            },
                            "id": 1302,
                            "nodeType": "ExpressionStatement",
                            "src": "2710:97:9"
                          }
                        ]
                      }
                    ]
                  },
                  "id": 1305,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "safeDecreaseAllowance",
                  "nameLocation": "2347:21:9",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1265,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1260,
                        "mutability": "mutable",
                        "name": "token",
                        "nameLocation": "2385:5:9",
                        "nodeType": "VariableDeclaration",
                        "scope": 1305,
                        "src": "2378:12:9",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$890",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 1259,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 1258,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 890,
                            "src": "2378:6:9"
                          },
                          "referencedDeclaration": 890,
                          "src": "2378:6:9",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$890",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1262,
                        "mutability": "mutable",
                        "name": "spender",
                        "nameLocation": "2408:7:9",
                        "nodeType": "VariableDeclaration",
                        "scope": 1305,
                        "src": "2400:15:9",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1261,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2400:7:9",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1264,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "2433:5:9",
                        "nodeType": "VariableDeclaration",
                        "scope": 1305,
                        "src": "2425:13:9",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1263,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2425:7:9",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2368:76:9"
                  },
                  "returnParameters": {
                    "id": 1266,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2454:0:9"
                  },
                  "scope": 1344,
                  "src": "2338:486:9",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 1342,
                    "nodeType": "Block",
                    "src": "3277:636:9",
                    "statements": [
                      {
                        "assignments": [
                          1315
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 1315,
                            "mutability": "mutable",
                            "name": "returndata",
                            "nameLocation": "3639:10:9",
                            "nodeType": "VariableDeclaration",
                            "scope": 1342,
                            "src": "3626:23:9",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes_memory_ptr",
                              "typeString": "bytes"
                            },
                            "typeName": {
                              "id": 1314,
                              "name": "bytes",
                              "nodeType": "ElementaryTypeName",
                              "src": "3626:5:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_storage_ptr",
                                "typeString": "bytes"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 1324,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 1321,
                              "name": "data",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1311,
                              "src": "3680:4:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            },
                            {
                              "hexValue": "5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564",
                              "id": 1322,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "3686:34:9",
                              "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": 1318,
                                  "name": "token",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1309,
                                  "src": "3660:5:9",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_IERC20_$890",
                                    "typeString": "contract IERC20"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_IERC20_$890",
                                    "typeString": "contract IERC20"
                                  }
                                ],
                                "id": 1317,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "3652:7:9",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 1316,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "3652:7:9",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 1319,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "3652:14:9",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "id": 1320,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "functionCall",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 1569,
                            "src": "3652:27:9",
                            "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": 1323,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3652:69:9",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_memory_ptr",
                            "typeString": "bytes memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3626:95:9"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 1328,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 1325,
                              "name": "returndata",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1315,
                              "src": "3735:10:9",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            },
                            "id": 1326,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "length",
                            "nodeType": "MemberAccess",
                            "src": "3735:17:9",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": ">",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 1327,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "3755:1:9",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "3735:21:9",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 1341,
                        "nodeType": "IfStatement",
                        "src": "3731:176:9",
                        "trueBody": {
                          "id": 1340,
                          "nodeType": "Block",
                          "src": "3758:149:9",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "id": 1332,
                                        "name": "returndata",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 1315,
                                        "src": "3830:10:9",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_bytes_memory_ptr",
                                          "typeString": "bytes memory"
                                        }
                                      },
                                      {
                                        "components": [
                                          {
                                            "id": 1334,
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": true,
                                            "lValueRequested": false,
                                            "nodeType": "ElementaryTypeNameExpression",
                                            "src": "3843:4:9",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_type$_t_bool_$",
                                              "typeString": "type(bool)"
                                            },
                                            "typeName": {
                                              "id": 1333,
                                              "name": "bool",
                                              "nodeType": "ElementaryTypeName",
                                              "src": "3843:4:9",
                                              "typeDescriptions": {}
                                            }
                                          }
                                        ],
                                        "id": 1335,
                                        "isConstant": false,
                                        "isInlineArray": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "TupleExpression",
                                        "src": "3842:6:9",
                                        "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": 1330,
                                        "name": "abi",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": -1,
                                        "src": "3819:3:9",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_magic_abi",
                                          "typeString": "abi"
                                        }
                                      },
                                      "id": 1331,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "memberName": "decode",
                                      "nodeType": "MemberAccess",
                                      "src": "3819:10:9",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_function_abidecode_pure$__$returns$__$",
                                        "typeString": "function () pure"
                                      }
                                    },
                                    "id": 1336,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "kind": "functionCall",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "3819:30:9",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bool",
                                      "typeString": "bool"
                                    }
                                  },
                                  {
                                    "hexValue": "5361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564",
                                    "id": 1337,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "string",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "3851:44:9",
                                    "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": 1329,
                                  "name": "require",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [
                                    -18,
                                    -18
                                  ],
                                  "referencedDeclaration": -18,
                                  "src": "3811:7:9",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                                    "typeString": "function (bool,string memory) pure"
                                  }
                                },
                                "id": 1338,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "3811:85:9",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 1339,
                              "nodeType": "ExpressionStatement",
                              "src": "3811:85:9"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1306,
                    "nodeType": "StructuredDocumentation",
                    "src": "2830:372:9",
                    "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": 1343,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_callOptionalReturn",
                  "nameLocation": "3216:19:9",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1312,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1309,
                        "mutability": "mutable",
                        "name": "token",
                        "nameLocation": "3243:5:9",
                        "nodeType": "VariableDeclaration",
                        "scope": 1343,
                        "src": "3236:12:9",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$890",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 1308,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 1307,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 890,
                            "src": "3236:6:9"
                          },
                          "referencedDeclaration": 890,
                          "src": "3236:6:9",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$890",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1311,
                        "mutability": "mutable",
                        "name": "data",
                        "nameLocation": "3263:4:9",
                        "nodeType": "VariableDeclaration",
                        "scope": 1343,
                        "src": "3250:17:9",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 1310,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "3250:5:9",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3235:33:9"
                  },
                  "returnParameters": {
                    "id": 1313,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3277:0:9"
                  },
                  "scope": 1344,
                  "src": "3207:706:9",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "private"
                }
              ],
              "scope": 1345,
              "src": "645:3270:9",
              "usedErrors": []
            }
          ],
          "src": "100:3816:9"
        },
        "id": 9
      },
      "@openzeppelin/contracts/token/ERC721/IERC721.sol": {
        "ast": {
          "absolutePath": "@openzeppelin/contracts/token/ERC721/IERC721.sol",
          "exportedSymbols": {
            "IERC165": [
              2832
            ],
            "IERC721": [
              1460
            ]
          },
          "id": 1461,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 1346,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "93:23:10"
            },
            {
              "absolutePath": "@openzeppelin/contracts/utils/introspection/IERC165.sol",
              "file": "../../utils/introspection/IERC165.sol",
              "id": 1347,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 1461,
              "sourceUnit": 2833,
              "src": "118:47:10",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 1349,
                    "name": "IERC165",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 2832,
                    "src": "256:7:10"
                  },
                  "id": 1350,
                  "nodeType": "InheritanceSpecifier",
                  "src": "256:7:10"
                }
              ],
              "contractDependencies": [],
              "contractKind": "interface",
              "documentation": {
                "id": 1348,
                "nodeType": "StructuredDocumentation",
                "src": "167:67:10",
                "text": " @dev Required interface of an ERC721 compliant contract."
              },
              "fullyImplemented": false,
              "id": 1460,
              "linearizedBaseContracts": [
                1460,
                2832
              ],
              "name": "IERC721",
              "nameLocation": "245:7:10",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 1351,
                    "nodeType": "StructuredDocumentation",
                    "src": "270:88:10",
                    "text": " @dev Emitted when `tokenId` token is transferred from `from` to `to`."
                  },
                  "id": 1359,
                  "name": "Transfer",
                  "nameLocation": "369:8:10",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 1358,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1353,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "from",
                        "nameLocation": "394:4:10",
                        "nodeType": "VariableDeclaration",
                        "scope": 1359,
                        "src": "378:20:10",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1352,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "378:7:10",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1355,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "416:2:10",
                        "nodeType": "VariableDeclaration",
                        "scope": 1359,
                        "src": "400:18:10",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1354,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "400:7:10",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1357,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "tokenId",
                        "nameLocation": "436:7:10",
                        "nodeType": "VariableDeclaration",
                        "scope": 1359,
                        "src": "420:23:10",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1356,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "420:7:10",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "377:67:10"
                  },
                  "src": "363:82:10"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 1360,
                    "nodeType": "StructuredDocumentation",
                    "src": "451:94:10",
                    "text": " @dev Emitted when `owner` enables `approved` to manage the `tokenId` token."
                  },
                  "id": 1368,
                  "name": "Approval",
                  "nameLocation": "556:8:10",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 1367,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1362,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "owner",
                        "nameLocation": "581:5:10",
                        "nodeType": "VariableDeclaration",
                        "scope": 1368,
                        "src": "565:21:10",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1361,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "565:7:10",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1364,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "approved",
                        "nameLocation": "604:8:10",
                        "nodeType": "VariableDeclaration",
                        "scope": 1368,
                        "src": "588:24:10",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1363,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "588:7:10",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1366,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "tokenId",
                        "nameLocation": "630:7:10",
                        "nodeType": "VariableDeclaration",
                        "scope": 1368,
                        "src": "614:23:10",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1365,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "614:7:10",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "564:74:10"
                  },
                  "src": "550:89:10"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 1369,
                    "nodeType": "StructuredDocumentation",
                    "src": "645:117:10",
                    "text": " @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets."
                  },
                  "id": 1377,
                  "name": "ApprovalForAll",
                  "nameLocation": "773:14:10",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 1376,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1371,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "owner",
                        "nameLocation": "804:5:10",
                        "nodeType": "VariableDeclaration",
                        "scope": 1377,
                        "src": "788:21:10",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1370,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "788:7:10",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1373,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "operator",
                        "nameLocation": "827:8:10",
                        "nodeType": "VariableDeclaration",
                        "scope": 1377,
                        "src": "811:24:10",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1372,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "811:7:10",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1375,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "approved",
                        "nameLocation": "842:8:10",
                        "nodeType": "VariableDeclaration",
                        "scope": 1377,
                        "src": "837:13:10",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 1374,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "837:4:10",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "787:64:10"
                  },
                  "src": "767:85:10"
                },
                {
                  "documentation": {
                    "id": 1378,
                    "nodeType": "StructuredDocumentation",
                    "src": "858:76:10",
                    "text": " @dev Returns the number of tokens in ``owner``'s account."
                  },
                  "functionSelector": "70a08231",
                  "id": 1385,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "balanceOf",
                  "nameLocation": "948:9:10",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1381,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1380,
                        "mutability": "mutable",
                        "name": "owner",
                        "nameLocation": "966:5:10",
                        "nodeType": "VariableDeclaration",
                        "scope": 1385,
                        "src": "958:13:10",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1379,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "958:7:10",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "957:15:10"
                  },
                  "returnParameters": {
                    "id": 1384,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1383,
                        "mutability": "mutable",
                        "name": "balance",
                        "nameLocation": "1004:7:10",
                        "nodeType": "VariableDeclaration",
                        "scope": 1385,
                        "src": "996:15:10",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1382,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "996:7:10",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "995:17:10"
                  },
                  "scope": 1460,
                  "src": "939:74:10",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 1386,
                    "nodeType": "StructuredDocumentation",
                    "src": "1019:131:10",
                    "text": " @dev Returns the owner of the `tokenId` token.\n Requirements:\n - `tokenId` must exist."
                  },
                  "functionSelector": "6352211e",
                  "id": 1393,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "ownerOf",
                  "nameLocation": "1164:7:10",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1389,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1388,
                        "mutability": "mutable",
                        "name": "tokenId",
                        "nameLocation": "1180:7:10",
                        "nodeType": "VariableDeclaration",
                        "scope": 1393,
                        "src": "1172:15:10",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1387,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1172:7:10",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1171:17:10"
                  },
                  "returnParameters": {
                    "id": 1392,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1391,
                        "mutability": "mutable",
                        "name": "owner",
                        "nameLocation": "1220:5:10",
                        "nodeType": "VariableDeclaration",
                        "scope": 1393,
                        "src": "1212:13:10",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1390,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1212:7:10",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1211:15:10"
                  },
                  "scope": 1460,
                  "src": "1155:72:10",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 1394,
                    "nodeType": "StructuredDocumentation",
                    "src": "1233:690:10",
                    "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": 1403,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "safeTransferFrom",
                  "nameLocation": "1937:16:10",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1401,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1396,
                        "mutability": "mutable",
                        "name": "from",
                        "nameLocation": "1971:4:10",
                        "nodeType": "VariableDeclaration",
                        "scope": 1403,
                        "src": "1963:12:10",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1395,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1963:7:10",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1398,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "1993:2:10",
                        "nodeType": "VariableDeclaration",
                        "scope": 1403,
                        "src": "1985:10:10",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1397,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1985:7:10",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1400,
                        "mutability": "mutable",
                        "name": "tokenId",
                        "nameLocation": "2013:7:10",
                        "nodeType": "VariableDeclaration",
                        "scope": 1403,
                        "src": "2005:15:10",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1399,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2005:7:10",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1953:73:10"
                  },
                  "returnParameters": {
                    "id": 1402,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2035:0:10"
                  },
                  "scope": 1460,
                  "src": "1928:108:10",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 1404,
                    "nodeType": "StructuredDocumentation",
                    "src": "2042:504:10",
                    "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": 1413,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "transferFrom",
                  "nameLocation": "2560:12:10",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1411,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1406,
                        "mutability": "mutable",
                        "name": "from",
                        "nameLocation": "2590:4:10",
                        "nodeType": "VariableDeclaration",
                        "scope": 1413,
                        "src": "2582:12:10",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1405,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2582:7:10",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1408,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "2612:2:10",
                        "nodeType": "VariableDeclaration",
                        "scope": 1413,
                        "src": "2604:10:10",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1407,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2604:7:10",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1410,
                        "mutability": "mutable",
                        "name": "tokenId",
                        "nameLocation": "2632:7:10",
                        "nodeType": "VariableDeclaration",
                        "scope": 1413,
                        "src": "2624:15:10",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1409,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2624:7:10",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2572:73:10"
                  },
                  "returnParameters": {
                    "id": 1412,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2654:0:10"
                  },
                  "scope": 1460,
                  "src": "2551:104:10",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 1414,
                    "nodeType": "StructuredDocumentation",
                    "src": "2661:452:10",
                    "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": 1421,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "approve",
                  "nameLocation": "3127:7:10",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1419,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1416,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "3143:2:10",
                        "nodeType": "VariableDeclaration",
                        "scope": 1421,
                        "src": "3135:10:10",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1415,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3135:7:10",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1418,
                        "mutability": "mutable",
                        "name": "tokenId",
                        "nameLocation": "3155:7:10",
                        "nodeType": "VariableDeclaration",
                        "scope": 1421,
                        "src": "3147:15:10",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1417,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3147:7:10",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3134:29:10"
                  },
                  "returnParameters": {
                    "id": 1420,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3172:0:10"
                  },
                  "scope": 1460,
                  "src": "3118:55:10",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 1422,
                    "nodeType": "StructuredDocumentation",
                    "src": "3179:139:10",
                    "text": " @dev Returns the account approved for `tokenId` token.\n Requirements:\n - `tokenId` must exist."
                  },
                  "functionSelector": "081812fc",
                  "id": 1429,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getApproved",
                  "nameLocation": "3332:11:10",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1425,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1424,
                        "mutability": "mutable",
                        "name": "tokenId",
                        "nameLocation": "3352:7:10",
                        "nodeType": "VariableDeclaration",
                        "scope": 1429,
                        "src": "3344:15:10",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1423,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3344:7:10",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3343:17:10"
                  },
                  "returnParameters": {
                    "id": 1428,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1427,
                        "mutability": "mutable",
                        "name": "operator",
                        "nameLocation": "3392:8:10",
                        "nodeType": "VariableDeclaration",
                        "scope": 1429,
                        "src": "3384:16:10",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1426,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3384:7:10",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3383:18:10"
                  },
                  "scope": 1460,
                  "src": "3323:79:10",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 1430,
                    "nodeType": "StructuredDocumentation",
                    "src": "3408:309:10",
                    "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": 1437,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setApprovalForAll",
                  "nameLocation": "3731:17:10",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1435,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1432,
                        "mutability": "mutable",
                        "name": "operator",
                        "nameLocation": "3757:8:10",
                        "nodeType": "VariableDeclaration",
                        "scope": 1437,
                        "src": "3749:16:10",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1431,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3749:7:10",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1434,
                        "mutability": "mutable",
                        "name": "_approved",
                        "nameLocation": "3772:9:10",
                        "nodeType": "VariableDeclaration",
                        "scope": 1437,
                        "src": "3767:14:10",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 1433,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "3767:4:10",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3748:34:10"
                  },
                  "returnParameters": {
                    "id": 1436,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3791:0:10"
                  },
                  "scope": 1460,
                  "src": "3722:70:10",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 1438,
                    "nodeType": "StructuredDocumentation",
                    "src": "3798:138:10",
                    "text": " @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.\n See {setApprovalForAll}"
                  },
                  "functionSelector": "e985e9c5",
                  "id": 1447,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "isApprovedForAll",
                  "nameLocation": "3950:16:10",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1443,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1440,
                        "mutability": "mutable",
                        "name": "owner",
                        "nameLocation": "3975:5:10",
                        "nodeType": "VariableDeclaration",
                        "scope": 1447,
                        "src": "3967:13:10",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1439,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3967:7:10",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1442,
                        "mutability": "mutable",
                        "name": "operator",
                        "nameLocation": "3990:8:10",
                        "nodeType": "VariableDeclaration",
                        "scope": 1447,
                        "src": "3982:16:10",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1441,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3982:7:10",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3966:33:10"
                  },
                  "returnParameters": {
                    "id": 1446,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1445,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 1447,
                        "src": "4023:4:10",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 1444,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "4023:4:10",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4022:6:10"
                  },
                  "scope": 1460,
                  "src": "3941:88:10",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 1448,
                    "nodeType": "StructuredDocumentation",
                    "src": "4035:556:10",
                    "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": 1459,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "safeTransferFrom",
                  "nameLocation": "4605:16:10",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1457,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1450,
                        "mutability": "mutable",
                        "name": "from",
                        "nameLocation": "4639:4:10",
                        "nodeType": "VariableDeclaration",
                        "scope": 1459,
                        "src": "4631:12:10",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1449,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4631:7:10",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1452,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "4661:2:10",
                        "nodeType": "VariableDeclaration",
                        "scope": 1459,
                        "src": "4653:10:10",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1451,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4653:7:10",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1454,
                        "mutability": "mutable",
                        "name": "tokenId",
                        "nameLocation": "4681:7:10",
                        "nodeType": "VariableDeclaration",
                        "scope": 1459,
                        "src": "4673:15:10",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1453,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4673:7:10",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1456,
                        "mutability": "mutable",
                        "name": "data",
                        "nameLocation": "4713:4:10",
                        "nodeType": "VariableDeclaration",
                        "scope": 1459,
                        "src": "4698:19:10",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_calldata_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 1455,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "4698:5:10",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4621:102:10"
                  },
                  "returnParameters": {
                    "id": 1458,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4732:0:10"
                  },
                  "scope": 1460,
                  "src": "4596:137:10",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 1461,
              "src": "235:4500:10",
              "usedErrors": []
            }
          ],
          "src": "93:4643:10"
        },
        "id": 10
      },
      "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol": {
        "ast": {
          "absolutePath": "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol",
          "exportedSymbols": {
            "IERC721Receiver": [
              1478
            ]
          },
          "id": 1479,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 1462,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "101:23:11"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "documentation": {
                "id": 1463,
                "nodeType": "StructuredDocumentation",
                "src": "126:152:11",
                "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": 1478,
              "linearizedBaseContracts": [
                1478
              ],
              "name": "IERC721Receiver",
              "nameLocation": "289:15:11",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "documentation": {
                    "id": 1464,
                    "nodeType": "StructuredDocumentation",
                    "src": "311:485:11",
                    "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": 1477,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "onERC721Received",
                  "nameLocation": "810:16:11",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1473,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1466,
                        "mutability": "mutable",
                        "name": "operator",
                        "nameLocation": "844:8:11",
                        "nodeType": "VariableDeclaration",
                        "scope": 1477,
                        "src": "836:16:11",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1465,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "836:7:11",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1468,
                        "mutability": "mutable",
                        "name": "from",
                        "nameLocation": "870:4:11",
                        "nodeType": "VariableDeclaration",
                        "scope": 1477,
                        "src": "862:12:11",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1467,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "862:7:11",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1470,
                        "mutability": "mutable",
                        "name": "tokenId",
                        "nameLocation": "892:7:11",
                        "nodeType": "VariableDeclaration",
                        "scope": 1477,
                        "src": "884:15:11",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1469,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "884:7:11",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1472,
                        "mutability": "mutable",
                        "name": "data",
                        "nameLocation": "924:4:11",
                        "nodeType": "VariableDeclaration",
                        "scope": 1477,
                        "src": "909:19:11",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_calldata_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 1471,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "909:5:11",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "826:108:11"
                  },
                  "returnParameters": {
                    "id": 1476,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1475,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 1477,
                        "src": "953:6:11",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes4",
                          "typeString": "bytes4"
                        },
                        "typeName": {
                          "id": 1474,
                          "name": "bytes4",
                          "nodeType": "ElementaryTypeName",
                          "src": "953:6:11",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes4",
                            "typeString": "bytes4"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "952:8:11"
                  },
                  "scope": 1478,
                  "src": "801:160:11",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 1479,
              "src": "279:684:11",
              "usedErrors": []
            }
          ],
          "src": "101:863:11"
        },
        "id": 11
      },
      "@openzeppelin/contracts/utils/Address.sol": {
        "ast": {
          "absolutePath": "@openzeppelin/contracts/utils/Address.sol",
          "exportedSymbols": {
            "Address": [
              1775
            ]
          },
          "id": 1776,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 1480,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "86:23:12"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "library",
              "documentation": {
                "id": 1481,
                "nodeType": "StructuredDocumentation",
                "src": "111:67:12",
                "text": " @dev Collection of functions related to the address type"
              },
              "fullyImplemented": true,
              "id": 1775,
              "linearizedBaseContracts": [
                1775
              ],
              "name": "Address",
              "nameLocation": "187:7:12",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "body": {
                    "id": 1497,
                    "nodeType": "Block",
                    "src": "837:311:12",
                    "statements": [
                      {
                        "assignments": [
                          1490
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 1490,
                            "mutability": "mutable",
                            "name": "size",
                            "nameLocation": "1042:4:12",
                            "nodeType": "VariableDeclaration",
                            "scope": 1497,
                            "src": "1034:12:12",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 1489,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "1034:7:12",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 1491,
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1034:12:12"
                      },
                      {
                        "AST": {
                          "nodeType": "YulBlock",
                          "src": "1065:52:12",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "1079:28:12",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "account",
                                    "nodeType": "YulIdentifier",
                                    "src": "1099:7:12"
                                  }
                                ],
                                "functionName": {
                                  "name": "extcodesize",
                                  "nodeType": "YulIdentifier",
                                  "src": "1087:11:12"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "1087:20:12"
                              },
                              "variableNames": [
                                {
                                  "name": "size",
                                  "nodeType": "YulIdentifier",
                                  "src": "1079:4:12"
                                }
                              ]
                            }
                          ]
                        },
                        "evmVersion": "berlin",
                        "externalReferences": [
                          {
                            "declaration": 1484,
                            "isOffset": false,
                            "isSlot": false,
                            "src": "1099:7:12",
                            "valueSize": 1
                          },
                          {
                            "declaration": 1490,
                            "isOffset": false,
                            "isSlot": false,
                            "src": "1079:4:12",
                            "valueSize": 1
                          }
                        ],
                        "id": 1492,
                        "nodeType": "InlineAssembly",
                        "src": "1056:61:12"
                      },
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 1495,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 1493,
                            "name": "size",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1490,
                            "src": "1133:4:12",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": ">",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 1494,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "1140:1:12",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "1133:8:12",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 1488,
                        "id": 1496,
                        "nodeType": "Return",
                        "src": "1126:15:12"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1482,
                    "nodeType": "StructuredDocumentation",
                    "src": "201:565:12",
                    "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": 1498,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "isContract",
                  "nameLocation": "780:10:12",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1485,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1484,
                        "mutability": "mutable",
                        "name": "account",
                        "nameLocation": "799:7:12",
                        "nodeType": "VariableDeclaration",
                        "scope": 1498,
                        "src": "791:15:12",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1483,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "791:7:12",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "790:17:12"
                  },
                  "returnParameters": {
                    "id": 1488,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1487,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 1498,
                        "src": "831:4:12",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 1486,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "831:4:12",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "830:6:12"
                  },
                  "scope": 1775,
                  "src": "771:377:12",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 1531,
                    "nodeType": "Block",
                    "src": "2136:241:12",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 1513,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "arguments": [
                                    {
                                      "id": 1509,
                                      "name": "this",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -28,
                                      "src": "2162:4:12",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_contract$_Address_$1775",
                                        "typeString": "library Address"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_contract$_Address_$1775",
                                        "typeString": "library Address"
                                      }
                                    ],
                                    "id": 1508,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "ElementaryTypeNameExpression",
                                    "src": "2154:7:12",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_address_$",
                                      "typeString": "type(address)"
                                    },
                                    "typeName": {
                                      "id": 1507,
                                      "name": "address",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "2154:7:12",
                                      "typeDescriptions": {}
                                    }
                                  },
                                  "id": 1510,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "typeConversion",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "2154:13:12",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "id": 1511,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "balance",
                                "nodeType": "MemberAccess",
                                "src": "2154:21:12",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">=",
                              "rightExpression": {
                                "id": 1512,
                                "name": "amount",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1503,
                                "src": "2179:6:12",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "2154:31:12",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "416464726573733a20696e73756666696369656e742062616c616e6365",
                              "id": 1514,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2187:31:12",
                              "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": 1506,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2146:7:12",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 1515,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2146:73:12",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1516,
                        "nodeType": "ExpressionStatement",
                        "src": "2146:73:12"
                      },
                      {
                        "assignments": [
                          1518,
                          null
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 1518,
                            "mutability": "mutable",
                            "name": "success",
                            "nameLocation": "2236:7:12",
                            "nodeType": "VariableDeclaration",
                            "scope": 1531,
                            "src": "2231:12:12",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            },
                            "typeName": {
                              "id": 1517,
                              "name": "bool",
                              "nodeType": "ElementaryTypeName",
                              "src": "2231:4:12",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            "visibility": "internal"
                          },
                          null
                        ],
                        "id": 1525,
                        "initialValue": {
                          "arguments": [
                            {
                              "hexValue": "",
                              "id": 1523,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2279:2:12",
                              "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": 1519,
                                "name": "recipient",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1501,
                                "src": "2249:9:12",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address_payable",
                                  "typeString": "address payable"
                                }
                              },
                              "id": 1520,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "call",
                              "nodeType": "MemberAccess",
                              "src": "2249:14:12",
                              "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": 1522,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "names": [
                              "value"
                            ],
                            "nodeType": "FunctionCallOptions",
                            "options": [
                              {
                                "id": 1521,
                                "name": "amount",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1503,
                                "src": "2271:6:12",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              }
                            ],
                            "src": "2249:29:12",
                            "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": 1524,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2249:33:12",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_bool_$_t_bytes_memory_ptr_$",
                            "typeString": "tuple(bool,bytes memory)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2230:52:12"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 1527,
                              "name": "success",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1518,
                              "src": "2300:7:12",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "416464726573733a20756e61626c6520746f2073656e642076616c75652c20726563697069656e74206d61792068617665207265766572746564",
                              "id": 1528,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2309:60:12",
                              "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": 1526,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2292:7:12",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 1529,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2292:78:12",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1530,
                        "nodeType": "ExpressionStatement",
                        "src": "2292:78:12"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1499,
                    "nodeType": "StructuredDocumentation",
                    "src": "1154:906:12",
                    "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": 1532,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "sendValue",
                  "nameLocation": "2074:9:12",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1504,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1501,
                        "mutability": "mutable",
                        "name": "recipient",
                        "nameLocation": "2100:9:12",
                        "nodeType": "VariableDeclaration",
                        "scope": 1532,
                        "src": "2084:25:12",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address_payable",
                          "typeString": "address payable"
                        },
                        "typeName": {
                          "id": 1500,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2084:15:12",
                          "stateMutability": "payable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address_payable",
                            "typeString": "address payable"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1503,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "2119:6:12",
                        "nodeType": "VariableDeclaration",
                        "scope": 1532,
                        "src": "2111:14:12",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1502,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2111:7:12",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2083:43:12"
                  },
                  "returnParameters": {
                    "id": 1505,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2136:0:12"
                  },
                  "scope": 1775,
                  "src": "2065:312:12",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 1548,
                    "nodeType": "Block",
                    "src": "3208:84:12",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 1543,
                              "name": "target",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1535,
                              "src": "3238:6:12",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 1544,
                              "name": "data",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1537,
                              "src": "3246:4:12",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            },
                            {
                              "hexValue": "416464726573733a206c6f772d6c6576656c2063616c6c206661696c6564",
                              "id": 1545,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "3252:32:12",
                              "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": 1542,
                            "name": "functionCall",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              1549,
                              1569
                            ],
                            "referencedDeclaration": 1569,
                            "src": "3225:12:12",
                            "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": 1546,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3225:60:12",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_memory_ptr",
                            "typeString": "bytes memory"
                          }
                        },
                        "functionReturnParameters": 1541,
                        "id": 1547,
                        "nodeType": "Return",
                        "src": "3218:67:12"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1533,
                    "nodeType": "StructuredDocumentation",
                    "src": "2383:731:12",
                    "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": 1549,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "functionCall",
                  "nameLocation": "3128:12:12",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1538,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1535,
                        "mutability": "mutable",
                        "name": "target",
                        "nameLocation": "3149:6:12",
                        "nodeType": "VariableDeclaration",
                        "scope": 1549,
                        "src": "3141:14:12",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1534,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3141:7:12",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1537,
                        "mutability": "mutable",
                        "name": "data",
                        "nameLocation": "3170:4:12",
                        "nodeType": "VariableDeclaration",
                        "scope": 1549,
                        "src": "3157:17:12",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 1536,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "3157:5:12",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3140:35:12"
                  },
                  "returnParameters": {
                    "id": 1541,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1540,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 1549,
                        "src": "3194:12:12",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 1539,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "3194:5:12",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3193:14:12"
                  },
                  "scope": 1775,
                  "src": "3119:173:12",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 1568,
                    "nodeType": "Block",
                    "src": "3661:76:12",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 1562,
                              "name": "target",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1552,
                              "src": "3700:6:12",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 1563,
                              "name": "data",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1554,
                              "src": "3708:4:12",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            },
                            {
                              "hexValue": "30",
                              "id": 1564,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "3714:1:12",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_0_by_1",
                                "typeString": "int_const 0"
                              },
                              "value": "0"
                            },
                            {
                              "id": 1565,
                              "name": "errorMessage",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1556,
                              "src": "3717:12:12",
                              "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": 1561,
                            "name": "functionCallWithValue",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              1589,
                              1639
                            ],
                            "referencedDeclaration": 1639,
                            "src": "3678:21:12",
                            "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": 1566,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3678:52:12",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_memory_ptr",
                            "typeString": "bytes memory"
                          }
                        },
                        "functionReturnParameters": 1560,
                        "id": 1567,
                        "nodeType": "Return",
                        "src": "3671:59:12"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1550,
                    "nodeType": "StructuredDocumentation",
                    "src": "3298:211:12",
                    "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": 1569,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "functionCall",
                  "nameLocation": "3523:12:12",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1557,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1552,
                        "mutability": "mutable",
                        "name": "target",
                        "nameLocation": "3553:6:12",
                        "nodeType": "VariableDeclaration",
                        "scope": 1569,
                        "src": "3545:14:12",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1551,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3545:7:12",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1554,
                        "mutability": "mutable",
                        "name": "data",
                        "nameLocation": "3582:4:12",
                        "nodeType": "VariableDeclaration",
                        "scope": 1569,
                        "src": "3569:17:12",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 1553,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "3569:5:12",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1556,
                        "mutability": "mutable",
                        "name": "errorMessage",
                        "nameLocation": "3610:12:12",
                        "nodeType": "VariableDeclaration",
                        "scope": 1569,
                        "src": "3596:26:12",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 1555,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "3596:6:12",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3535:93:12"
                  },
                  "returnParameters": {
                    "id": 1560,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1559,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 1569,
                        "src": "3647:12:12",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 1558,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "3647:5:12",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3646:14:12"
                  },
                  "scope": 1775,
                  "src": "3514:223:12",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 1588,
                    "nodeType": "Block",
                    "src": "4242:111:12",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 1582,
                              "name": "target",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1572,
                              "src": "4281:6:12",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 1583,
                              "name": "data",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1574,
                              "src": "4289:4:12",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            },
                            {
                              "id": 1584,
                              "name": "value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1576,
                              "src": "4295:5:12",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "hexValue": "416464726573733a206c6f772d6c6576656c2063616c6c20776974682076616c7565206661696c6564",
                              "id": 1585,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "4302:43:12",
                              "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": 1581,
                            "name": "functionCallWithValue",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              1589,
                              1639
                            ],
                            "referencedDeclaration": 1639,
                            "src": "4259:21:12",
                            "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": 1586,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4259:87:12",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_memory_ptr",
                            "typeString": "bytes memory"
                          }
                        },
                        "functionReturnParameters": 1580,
                        "id": 1587,
                        "nodeType": "Return",
                        "src": "4252:94:12"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1570,
                    "nodeType": "StructuredDocumentation",
                    "src": "3743:351:12",
                    "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": 1589,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "functionCallWithValue",
                  "nameLocation": "4108:21:12",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1577,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1572,
                        "mutability": "mutable",
                        "name": "target",
                        "nameLocation": "4147:6:12",
                        "nodeType": "VariableDeclaration",
                        "scope": 1589,
                        "src": "4139:14:12",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1571,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4139:7:12",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1574,
                        "mutability": "mutable",
                        "name": "data",
                        "nameLocation": "4176:4:12",
                        "nodeType": "VariableDeclaration",
                        "scope": 1589,
                        "src": "4163:17:12",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 1573,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "4163:5:12",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1576,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "4198:5:12",
                        "nodeType": "VariableDeclaration",
                        "scope": 1589,
                        "src": "4190:13:12",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1575,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4190:7:12",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4129:80:12"
                  },
                  "returnParameters": {
                    "id": 1580,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1579,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 1589,
                        "src": "4228:12:12",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 1578,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "4228:5:12",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4227:14:12"
                  },
                  "scope": 1775,
                  "src": "4099:254:12",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 1638,
                    "nodeType": "Block",
                    "src": "4780:320:12",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 1610,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "arguments": [
                                    {
                                      "id": 1606,
                                      "name": "this",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -28,
                                      "src": "4806:4:12",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_contract$_Address_$1775",
                                        "typeString": "library Address"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_contract$_Address_$1775",
                                        "typeString": "library Address"
                                      }
                                    ],
                                    "id": 1605,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "ElementaryTypeNameExpression",
                                    "src": "4798:7:12",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_address_$",
                                      "typeString": "type(address)"
                                    },
                                    "typeName": {
                                      "id": 1604,
                                      "name": "address",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "4798:7:12",
                                      "typeDescriptions": {}
                                    }
                                  },
                                  "id": 1607,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "typeConversion",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "4798:13:12",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "id": 1608,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "balance",
                                "nodeType": "MemberAccess",
                                "src": "4798:21:12",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">=",
                              "rightExpression": {
                                "id": 1609,
                                "name": "value",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1596,
                                "src": "4823:5:12",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "4798:30:12",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c",
                              "id": 1611,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "4830:40:12",
                              "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": 1603,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "4790:7:12",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 1612,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4790:81:12",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1613,
                        "nodeType": "ExpressionStatement",
                        "src": "4790:81:12"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 1616,
                                  "name": "target",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1592,
                                  "src": "4900:6:12",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                ],
                                "id": 1615,
                                "name": "isContract",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1498,
                                "src": "4889:10:12",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$_t_address_$returns$_t_bool_$",
                                  "typeString": "function (address) view returns (bool)"
                                }
                              },
                              "id": 1617,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "4889:18:12",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374",
                              "id": 1618,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "4909:31:12",
                              "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": 1614,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "4881:7:12",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 1619,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4881:60:12",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1620,
                        "nodeType": "ExpressionStatement",
                        "src": "4881:60:12"
                      },
                      {
                        "assignments": [
                          1622,
                          1624
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 1622,
                            "mutability": "mutable",
                            "name": "success",
                            "nameLocation": "4958:7:12",
                            "nodeType": "VariableDeclaration",
                            "scope": 1638,
                            "src": "4953:12:12",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            },
                            "typeName": {
                              "id": 1621,
                              "name": "bool",
                              "nodeType": "ElementaryTypeName",
                              "src": "4953:4:12",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 1624,
                            "mutability": "mutable",
                            "name": "returndata",
                            "nameLocation": "4980:10:12",
                            "nodeType": "VariableDeclaration",
                            "scope": 1638,
                            "src": "4967:23:12",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes_memory_ptr",
                              "typeString": "bytes"
                            },
                            "typeName": {
                              "id": 1623,
                              "name": "bytes",
                              "nodeType": "ElementaryTypeName",
                              "src": "4967:5:12",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_storage_ptr",
                                "typeString": "bytes"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 1631,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 1629,
                              "name": "data",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1594,
                              "src": "5020:4:12",
                              "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": 1625,
                                "name": "target",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1592,
                                "src": "4994:6:12",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "id": 1626,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "call",
                              "nodeType": "MemberAccess",
                              "src": "4994:11:12",
                              "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": 1628,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "names": [
                              "value"
                            ],
                            "nodeType": "FunctionCallOptions",
                            "options": [
                              {
                                "id": 1627,
                                "name": "value",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1596,
                                "src": "5013:5:12",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              }
                            ],
                            "src": "4994:25:12",
                            "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": 1630,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4994:31:12",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_bool_$_t_bytes_memory_ptr_$",
                            "typeString": "tuple(bool,bytes memory)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4952:73:12"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 1633,
                              "name": "success",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1622,
                              "src": "5059:7:12",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "id": 1634,
                              "name": "returndata",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1624,
                              "src": "5068:10:12",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            },
                            {
                              "id": 1635,
                              "name": "errorMessage",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1598,
                              "src": "5080:12:12",
                              "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": 1632,
                            "name": "verifyCallResult",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1774,
                            "src": "5042:16:12",
                            "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": 1636,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5042:51:12",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_memory_ptr",
                            "typeString": "bytes memory"
                          }
                        },
                        "functionReturnParameters": 1602,
                        "id": 1637,
                        "nodeType": "Return",
                        "src": "5035:58:12"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1590,
                    "nodeType": "StructuredDocumentation",
                    "src": "4359:237:12",
                    "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": 1639,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "functionCallWithValue",
                  "nameLocation": "4610:21:12",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1599,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1592,
                        "mutability": "mutable",
                        "name": "target",
                        "nameLocation": "4649:6:12",
                        "nodeType": "VariableDeclaration",
                        "scope": 1639,
                        "src": "4641:14:12",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1591,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4641:7:12",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1594,
                        "mutability": "mutable",
                        "name": "data",
                        "nameLocation": "4678:4:12",
                        "nodeType": "VariableDeclaration",
                        "scope": 1639,
                        "src": "4665:17:12",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 1593,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "4665:5:12",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1596,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "4700:5:12",
                        "nodeType": "VariableDeclaration",
                        "scope": 1639,
                        "src": "4692:13:12",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1595,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4692:7:12",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1598,
                        "mutability": "mutable",
                        "name": "errorMessage",
                        "nameLocation": "4729:12:12",
                        "nodeType": "VariableDeclaration",
                        "scope": 1639,
                        "src": "4715:26:12",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 1597,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "4715:6:12",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4631:116:12"
                  },
                  "returnParameters": {
                    "id": 1602,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1601,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 1639,
                        "src": "4766:12:12",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 1600,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "4766:5:12",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4765:14:12"
                  },
                  "scope": 1775,
                  "src": "4601:499:12",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 1655,
                    "nodeType": "Block",
                    "src": "5377:97:12",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 1650,
                              "name": "target",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1642,
                              "src": "5413:6:12",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 1651,
                              "name": "data",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1644,
                              "src": "5421:4:12",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            },
                            {
                              "hexValue": "416464726573733a206c6f772d6c6576656c207374617469632063616c6c206661696c6564",
                              "id": 1652,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "5427:39:12",
                              "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": 1649,
                            "name": "functionStaticCall",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              1656,
                              1691
                            ],
                            "referencedDeclaration": 1691,
                            "src": "5394:18:12",
                            "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": 1653,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5394:73:12",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_memory_ptr",
                            "typeString": "bytes memory"
                          }
                        },
                        "functionReturnParameters": 1648,
                        "id": 1654,
                        "nodeType": "Return",
                        "src": "5387:80:12"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1640,
                    "nodeType": "StructuredDocumentation",
                    "src": "5106:166:12",
                    "text": " @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n but performing a static call.\n _Available since v3.3._"
                  },
                  "id": 1656,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "functionStaticCall",
                  "nameLocation": "5286:18:12",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1645,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1642,
                        "mutability": "mutable",
                        "name": "target",
                        "nameLocation": "5313:6:12",
                        "nodeType": "VariableDeclaration",
                        "scope": 1656,
                        "src": "5305:14:12",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1641,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5305:7:12",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1644,
                        "mutability": "mutable",
                        "name": "data",
                        "nameLocation": "5334:4:12",
                        "nodeType": "VariableDeclaration",
                        "scope": 1656,
                        "src": "5321:17:12",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 1643,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "5321:5:12",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5304:35:12"
                  },
                  "returnParameters": {
                    "id": 1648,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1647,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 1656,
                        "src": "5363:12:12",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 1646,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "5363:5:12",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5362:14:12"
                  },
                  "scope": 1775,
                  "src": "5277:197:12",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 1690,
                    "nodeType": "Block",
                    "src": "5816:228:12",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 1670,
                                  "name": "target",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1659,
                                  "src": "5845:6:12",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                ],
                                "id": 1669,
                                "name": "isContract",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1498,
                                "src": "5834:10:12",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$_t_address_$returns$_t_bool_$",
                                  "typeString": "function (address) view returns (bool)"
                                }
                              },
                              "id": 1671,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "5834:18:12",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "416464726573733a207374617469632063616c6c20746f206e6f6e2d636f6e7472616374",
                              "id": 1672,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "5854:38:12",
                              "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": 1668,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "5826:7:12",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 1673,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5826:67:12",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1674,
                        "nodeType": "ExpressionStatement",
                        "src": "5826:67:12"
                      },
                      {
                        "assignments": [
                          1676,
                          1678
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 1676,
                            "mutability": "mutable",
                            "name": "success",
                            "nameLocation": "5910:7:12",
                            "nodeType": "VariableDeclaration",
                            "scope": 1690,
                            "src": "5905:12:12",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            },
                            "typeName": {
                              "id": 1675,
                              "name": "bool",
                              "nodeType": "ElementaryTypeName",
                              "src": "5905:4:12",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 1678,
                            "mutability": "mutable",
                            "name": "returndata",
                            "nameLocation": "5932:10:12",
                            "nodeType": "VariableDeclaration",
                            "scope": 1690,
                            "src": "5919:23:12",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes_memory_ptr",
                              "typeString": "bytes"
                            },
                            "typeName": {
                              "id": 1677,
                              "name": "bytes",
                              "nodeType": "ElementaryTypeName",
                              "src": "5919:5:12",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_storage_ptr",
                                "typeString": "bytes"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 1683,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 1681,
                              "name": "data",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1661,
                              "src": "5964:4:12",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "expression": {
                              "id": 1679,
                              "name": "target",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1659,
                              "src": "5946:6:12",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "id": 1680,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "staticcall",
                            "nodeType": "MemberAccess",
                            "src": "5946:17:12",
                            "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": 1682,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5946:23:12",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_bool_$_t_bytes_memory_ptr_$",
                            "typeString": "tuple(bool,bytes memory)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "5904:65:12"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 1685,
                              "name": "success",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1676,
                              "src": "6003:7:12",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "id": 1686,
                              "name": "returndata",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1678,
                              "src": "6012:10:12",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            },
                            {
                              "id": 1687,
                              "name": "errorMessage",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1663,
                              "src": "6024:12:12",
                              "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": 1684,
                            "name": "verifyCallResult",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1774,
                            "src": "5986:16:12",
                            "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": 1688,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5986:51:12",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_memory_ptr",
                            "typeString": "bytes memory"
                          }
                        },
                        "functionReturnParameters": 1667,
                        "id": 1689,
                        "nodeType": "Return",
                        "src": "5979:58:12"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1657,
                    "nodeType": "StructuredDocumentation",
                    "src": "5480:173:12",
                    "text": " @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n but performing a static call.\n _Available since v3.3._"
                  },
                  "id": 1691,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "functionStaticCall",
                  "nameLocation": "5667:18:12",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1664,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1659,
                        "mutability": "mutable",
                        "name": "target",
                        "nameLocation": "5703:6:12",
                        "nodeType": "VariableDeclaration",
                        "scope": 1691,
                        "src": "5695:14:12",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1658,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5695:7:12",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1661,
                        "mutability": "mutable",
                        "name": "data",
                        "nameLocation": "5732:4:12",
                        "nodeType": "VariableDeclaration",
                        "scope": 1691,
                        "src": "5719:17:12",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 1660,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "5719:5:12",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1663,
                        "mutability": "mutable",
                        "name": "errorMessage",
                        "nameLocation": "5760:12:12",
                        "nodeType": "VariableDeclaration",
                        "scope": 1691,
                        "src": "5746:26:12",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 1662,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "5746:6:12",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5685:93:12"
                  },
                  "returnParameters": {
                    "id": 1667,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1666,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 1691,
                        "src": "5802:12:12",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 1665,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "5802:5:12",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5801:14:12"
                  },
                  "scope": 1775,
                  "src": "5658:386:12",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 1707,
                    "nodeType": "Block",
                    "src": "6320:101:12",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 1702,
                              "name": "target",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1694,
                              "src": "6358:6:12",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 1703,
                              "name": "data",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1696,
                              "src": "6366:4:12",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            },
                            {
                              "hexValue": "416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564",
                              "id": 1704,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "6372:41:12",
                              "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": 1701,
                            "name": "functionDelegateCall",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              1708,
                              1743
                            ],
                            "referencedDeclaration": 1743,
                            "src": "6337:20:12",
                            "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": 1705,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6337:77:12",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_memory_ptr",
                            "typeString": "bytes memory"
                          }
                        },
                        "functionReturnParameters": 1700,
                        "id": 1706,
                        "nodeType": "Return",
                        "src": "6330:84:12"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1692,
                    "nodeType": "StructuredDocumentation",
                    "src": "6050:168:12",
                    "text": " @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n but performing a delegate call.\n _Available since v3.4._"
                  },
                  "id": 1708,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "functionDelegateCall",
                  "nameLocation": "6232:20:12",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1697,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1694,
                        "mutability": "mutable",
                        "name": "target",
                        "nameLocation": "6261:6:12",
                        "nodeType": "VariableDeclaration",
                        "scope": 1708,
                        "src": "6253:14:12",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1693,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6253:7:12",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1696,
                        "mutability": "mutable",
                        "name": "data",
                        "nameLocation": "6282:4:12",
                        "nodeType": "VariableDeclaration",
                        "scope": 1708,
                        "src": "6269:17:12",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 1695,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "6269:5:12",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6252:35:12"
                  },
                  "returnParameters": {
                    "id": 1700,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1699,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 1708,
                        "src": "6306:12:12",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 1698,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "6306:5:12",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6305:14:12"
                  },
                  "scope": 1775,
                  "src": "6223:198:12",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 1742,
                    "nodeType": "Block",
                    "src": "6762:232:12",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 1722,
                                  "name": "target",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1711,
                                  "src": "6791:6:12",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                ],
                                "id": 1721,
                                "name": "isContract",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1498,
                                "src": "6780:10:12",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$_t_address_$returns$_t_bool_$",
                                  "typeString": "function (address) view returns (bool)"
                                }
                              },
                              "id": 1723,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "6780:18:12",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6e7472616374",
                              "id": 1724,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "6800:40:12",
                              "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": 1720,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "6772:7:12",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 1725,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6772:69:12",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1726,
                        "nodeType": "ExpressionStatement",
                        "src": "6772:69:12"
                      },
                      {
                        "assignments": [
                          1728,
                          1730
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 1728,
                            "mutability": "mutable",
                            "name": "success",
                            "nameLocation": "6858:7:12",
                            "nodeType": "VariableDeclaration",
                            "scope": 1742,
                            "src": "6853:12:12",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            },
                            "typeName": {
                              "id": 1727,
                              "name": "bool",
                              "nodeType": "ElementaryTypeName",
                              "src": "6853:4:12",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 1730,
                            "mutability": "mutable",
                            "name": "returndata",
                            "nameLocation": "6880:10:12",
                            "nodeType": "VariableDeclaration",
                            "scope": 1742,
                            "src": "6867:23:12",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes_memory_ptr",
                              "typeString": "bytes"
                            },
                            "typeName": {
                              "id": 1729,
                              "name": "bytes",
                              "nodeType": "ElementaryTypeName",
                              "src": "6867:5:12",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_storage_ptr",
                                "typeString": "bytes"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 1735,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 1733,
                              "name": "data",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1713,
                              "src": "6914:4:12",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "expression": {
                              "id": 1731,
                              "name": "target",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1711,
                              "src": "6894:6:12",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "id": 1732,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "delegatecall",
                            "nodeType": "MemberAccess",
                            "src": "6894:19:12",
                            "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": 1734,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6894:25:12",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_bool_$_t_bytes_memory_ptr_$",
                            "typeString": "tuple(bool,bytes memory)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "6852:67:12"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 1737,
                              "name": "success",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1728,
                              "src": "6953:7:12",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "id": 1738,
                              "name": "returndata",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1730,
                              "src": "6962:10:12",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            },
                            {
                              "id": 1739,
                              "name": "errorMessage",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1715,
                              "src": "6974:12:12",
                              "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": 1736,
                            "name": "verifyCallResult",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1774,
                            "src": "6936:16:12",
                            "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": 1740,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6936:51:12",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_memory_ptr",
                            "typeString": "bytes memory"
                          }
                        },
                        "functionReturnParameters": 1719,
                        "id": 1741,
                        "nodeType": "Return",
                        "src": "6929:58:12"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1709,
                    "nodeType": "StructuredDocumentation",
                    "src": "6427:175:12",
                    "text": " @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n but performing a delegate call.\n _Available since v3.4._"
                  },
                  "id": 1743,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "functionDelegateCall",
                  "nameLocation": "6616:20:12",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1716,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1711,
                        "mutability": "mutable",
                        "name": "target",
                        "nameLocation": "6654:6:12",
                        "nodeType": "VariableDeclaration",
                        "scope": 1743,
                        "src": "6646:14:12",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1710,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6646:7:12",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1713,
                        "mutability": "mutable",
                        "name": "data",
                        "nameLocation": "6683:4:12",
                        "nodeType": "VariableDeclaration",
                        "scope": 1743,
                        "src": "6670:17:12",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 1712,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "6670:5:12",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1715,
                        "mutability": "mutable",
                        "name": "errorMessage",
                        "nameLocation": "6711:12:12",
                        "nodeType": "VariableDeclaration",
                        "scope": 1743,
                        "src": "6697:26:12",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 1714,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "6697:6:12",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6636:93:12"
                  },
                  "returnParameters": {
                    "id": 1719,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1718,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 1743,
                        "src": "6748:12:12",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 1717,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "6748:5:12",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6747:14:12"
                  },
                  "scope": 1775,
                  "src": "6607:387:12",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 1773,
                    "nodeType": "Block",
                    "src": "7374:532:12",
                    "statements": [
                      {
                        "condition": {
                          "id": 1755,
                          "name": "success",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 1746,
                          "src": "7388:7:12",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "falseBody": {
                          "id": 1771,
                          "nodeType": "Block",
                          "src": "7445:455:12",
                          "statements": [
                            {
                              "condition": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 1762,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "expression": {
                                    "id": 1759,
                                    "name": "returndata",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 1748,
                                    "src": "7529:10:12",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bytes_memory_ptr",
                                      "typeString": "bytes memory"
                                    }
                                  },
                                  "id": 1760,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "length",
                                  "nodeType": "MemberAccess",
                                  "src": "7529:17:12",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": ">",
                                "rightExpression": {
                                  "hexValue": "30",
                                  "id": 1761,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "7549:1:12",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                },
                                "src": "7529:21:12",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "falseBody": {
                                "id": 1769,
                                "nodeType": "Block",
                                "src": "7837:53:12",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "id": 1766,
                                          "name": "errorMessage",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 1750,
                                          "src": "7862:12:12",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_string_memory_ptr",
                                            "typeString": "string memory"
                                          }
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_string_memory_ptr",
                                            "typeString": "string memory"
                                          }
                                        ],
                                        "id": 1765,
                                        "name": "revert",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [
                                          -19,
                                          -19
                                        ],
                                        "referencedDeclaration": -19,
                                        "src": "7855:6:12",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_function_revert_pure$_t_string_memory_ptr_$returns$__$",
                                          "typeString": "function (string memory) pure"
                                        }
                                      },
                                      "id": 1767,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "functionCall",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "7855:20:12",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_tuple$__$",
                                        "typeString": "tuple()"
                                      }
                                    },
                                    "id": 1768,
                                    "nodeType": "ExpressionStatement",
                                    "src": "7855:20:12"
                                  }
                                ]
                              },
                              "id": 1770,
                              "nodeType": "IfStatement",
                              "src": "7525:365:12",
                              "trueBody": {
                                "id": 1764,
                                "nodeType": "Block",
                                "src": "7552:279:12",
                                "statements": [
                                  {
                                    "AST": {
                                      "nodeType": "YulBlock",
                                      "src": "7672:145:12",
                                      "statements": [
                                        {
                                          "nodeType": "YulVariableDeclaration",
                                          "src": "7694:40:12",
                                          "value": {
                                            "arguments": [
                                              {
                                                "name": "returndata",
                                                "nodeType": "YulIdentifier",
                                                "src": "7723:10:12"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "mload",
                                              "nodeType": "YulIdentifier",
                                              "src": "7717:5:12"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "7717:17:12"
                                          },
                                          "variables": [
                                            {
                                              "name": "returndata_size",
                                              "nodeType": "YulTypedName",
                                              "src": "7698:15:12",
                                              "type": ""
                                            }
                                          ]
                                        },
                                        {
                                          "expression": {
                                            "arguments": [
                                              {
                                                "arguments": [
                                                  {
                                                    "kind": "number",
                                                    "nodeType": "YulLiteral",
                                                    "src": "7766:2:12",
                                                    "type": "",
                                                    "value": "32"
                                                  },
                                                  {
                                                    "name": "returndata",
                                                    "nodeType": "YulIdentifier",
                                                    "src": "7770:10:12"
                                                  }
                                                ],
                                                "functionName": {
                                                  "name": "add",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "7762:3:12"
                                                },
                                                "nodeType": "YulFunctionCall",
                                                "src": "7762:19:12"
                                              },
                                              {
                                                "name": "returndata_size",
                                                "nodeType": "YulIdentifier",
                                                "src": "7783:15:12"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "revert",
                                              "nodeType": "YulIdentifier",
                                              "src": "7755:6:12"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "7755:44:12"
                                          },
                                          "nodeType": "YulExpressionStatement",
                                          "src": "7755:44:12"
                                        }
                                      ]
                                    },
                                    "evmVersion": "berlin",
                                    "externalReferences": [
                                      {
                                        "declaration": 1748,
                                        "isOffset": false,
                                        "isSlot": false,
                                        "src": "7723:10:12",
                                        "valueSize": 1
                                      },
                                      {
                                        "declaration": 1748,
                                        "isOffset": false,
                                        "isSlot": false,
                                        "src": "7770:10:12",
                                        "valueSize": 1
                                      }
                                    ],
                                    "id": 1763,
                                    "nodeType": "InlineAssembly",
                                    "src": "7663:154:12"
                                  }
                                ]
                              }
                            }
                          ]
                        },
                        "id": 1772,
                        "nodeType": "IfStatement",
                        "src": "7384:516:12",
                        "trueBody": {
                          "id": 1758,
                          "nodeType": "Block",
                          "src": "7397:42:12",
                          "statements": [
                            {
                              "expression": {
                                "id": 1756,
                                "name": "returndata",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1748,
                                "src": "7418:10:12",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bytes_memory_ptr",
                                  "typeString": "bytes memory"
                                }
                              },
                              "functionReturnParameters": 1754,
                              "id": 1757,
                              "nodeType": "Return",
                              "src": "7411:17:12"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1744,
                    "nodeType": "StructuredDocumentation",
                    "src": "7000:209:12",
                    "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": 1774,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "verifyCallResult",
                  "nameLocation": "7223:16:12",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1751,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1746,
                        "mutability": "mutable",
                        "name": "success",
                        "nameLocation": "7254:7:12",
                        "nodeType": "VariableDeclaration",
                        "scope": 1774,
                        "src": "7249:12:12",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 1745,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "7249:4:12",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1748,
                        "mutability": "mutable",
                        "name": "returndata",
                        "nameLocation": "7284:10:12",
                        "nodeType": "VariableDeclaration",
                        "scope": 1774,
                        "src": "7271:23:12",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 1747,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "7271:5:12",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 1750,
                        "mutability": "mutable",
                        "name": "errorMessage",
                        "nameLocation": "7318:12:12",
                        "nodeType": "VariableDeclaration",
                        "scope": 1774,
                        "src": "7304:26:12",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 1749,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "7304:6:12",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7239:97:12"
                  },
                  "returnParameters": {
                    "id": 1754,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1753,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 1774,
                        "src": "7360:12:12",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 1752,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "7360:5:12",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7359:14:12"
                  },
                  "scope": 1775,
                  "src": "7214:692:12",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 1776,
              "src": "179:7729:12",
              "usedErrors": []
            }
          ],
          "src": "86:7823:12"
        },
        "id": 12
      },
      "@openzeppelin/contracts/utils/Context.sol": {
        "ast": {
          "absolutePath": "@openzeppelin/contracts/utils/Context.sol",
          "exportedSymbols": {
            "Context": [
              1797
            ]
          },
          "id": 1798,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 1777,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "86:23:13"
            },
            {
              "abstract": true,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 1778,
                "nodeType": "StructuredDocumentation",
                "src": "111:496:13",
                "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": 1797,
              "linearizedBaseContracts": [
                1797
              ],
              "name": "Context",
              "nameLocation": "626:7:13",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "body": {
                    "id": 1786,
                    "nodeType": "Block",
                    "src": "702:34:13",
                    "statements": [
                      {
                        "expression": {
                          "expression": {
                            "id": 1783,
                            "name": "msg",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": -15,
                            "src": "719:3:13",
                            "typeDescriptions": {
                              "typeIdentifier": "t_magic_message",
                              "typeString": "msg"
                            }
                          },
                          "id": 1784,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "sender",
                          "nodeType": "MemberAccess",
                          "src": "719:10:13",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "functionReturnParameters": 1782,
                        "id": 1785,
                        "nodeType": "Return",
                        "src": "712:17:13"
                      }
                    ]
                  },
                  "id": 1787,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_msgSender",
                  "nameLocation": "649:10:13",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1779,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "659:2:13"
                  },
                  "returnParameters": {
                    "id": 1782,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1781,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 1787,
                        "src": "693:7:13",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 1780,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "693:7:13",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "692:9:13"
                  },
                  "scope": 1797,
                  "src": "640:96:13",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 1795,
                    "nodeType": "Block",
                    "src": "809:32:13",
                    "statements": [
                      {
                        "expression": {
                          "expression": {
                            "id": 1792,
                            "name": "msg",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": -15,
                            "src": "826:3:13",
                            "typeDescriptions": {
                              "typeIdentifier": "t_magic_message",
                              "typeString": "msg"
                            }
                          },
                          "id": 1793,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "data",
                          "nodeType": "MemberAccess",
                          "src": "826:8:13",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_calldata_ptr",
                            "typeString": "bytes calldata"
                          }
                        },
                        "functionReturnParameters": 1791,
                        "id": 1794,
                        "nodeType": "Return",
                        "src": "819:15:13"
                      }
                    ]
                  },
                  "id": 1796,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_msgData",
                  "nameLocation": "751:8:13",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1788,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "759:2:13"
                  },
                  "returnParameters": {
                    "id": 1791,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1790,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 1796,
                        "src": "793:14:13",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_calldata_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 1789,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "793:5:13",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "792:16:13"
                  },
                  "scope": 1797,
                  "src": "742:99:13",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "internal"
                }
              ],
              "scope": 1798,
              "src": "608:235:13",
              "usedErrors": []
            }
          ],
          "src": "86:758:13"
        },
        "id": 13
      },
      "@openzeppelin/contracts/utils/Counters.sol": {
        "ast": {
          "absolutePath": "@openzeppelin/contracts/utils/Counters.sol",
          "exportedSymbols": {
            "Counters": [
              1871
            ]
          },
          "id": 1872,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 1799,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "87:23:14"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "library",
              "documentation": {
                "id": 1800,
                "nodeType": "StructuredDocumentation",
                "src": "112:311:14",
                "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": 1871,
              "linearizedBaseContracts": [
                1871
              ],
              "name": "Counters",
              "nameLocation": "432:8:14",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "canonicalName": "Counters.Counter",
                  "id": 1803,
                  "members": [
                    {
                      "constant": false,
                      "id": 1802,
                      "mutability": "mutable",
                      "name": "_value",
                      "nameLocation": "794:6:14",
                      "nodeType": "VariableDeclaration",
                      "scope": 1803,
                      "src": "786:14:14",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint256",
                        "typeString": "uint256"
                      },
                      "typeName": {
                        "id": 1801,
                        "name": "uint256",
                        "nodeType": "ElementaryTypeName",
                        "src": "786:7:14",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        }
                      },
                      "visibility": "internal"
                    }
                  ],
                  "name": "Counter",
                  "nameLocation": "454:7:14",
                  "nodeType": "StructDefinition",
                  "scope": 1871,
                  "src": "447:374:14",
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 1814,
                    "nodeType": "Block",
                    "src": "901:38:14",
                    "statements": [
                      {
                        "expression": {
                          "expression": {
                            "id": 1811,
                            "name": "counter",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1806,
                            "src": "918:7:14",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Counter_$1803_storage_ptr",
                              "typeString": "struct Counters.Counter storage pointer"
                            }
                          },
                          "id": 1812,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "_value",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 1802,
                          "src": "918:14:14",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 1810,
                        "id": 1813,
                        "nodeType": "Return",
                        "src": "911:21:14"
                      }
                    ]
                  },
                  "id": 1815,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "current",
                  "nameLocation": "836:7:14",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1807,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1806,
                        "mutability": "mutable",
                        "name": "counter",
                        "nameLocation": "860:7:14",
                        "nodeType": "VariableDeclaration",
                        "scope": 1815,
                        "src": "844:23:14",
                        "stateVariable": false,
                        "storageLocation": "storage",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Counter_$1803_storage_ptr",
                          "typeString": "struct Counters.Counter"
                        },
                        "typeName": {
                          "id": 1805,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 1804,
                            "name": "Counter",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 1803,
                            "src": "844:7:14"
                          },
                          "referencedDeclaration": 1803,
                          "src": "844:7:14",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Counter_$1803_storage_ptr",
                            "typeString": "struct Counters.Counter"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "843:25:14"
                  },
                  "returnParameters": {
                    "id": 1810,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1809,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 1815,
                        "src": "892:7:14",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1808,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "892:7:14",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "891:9:14"
                  },
                  "scope": 1871,
                  "src": "827:112:14",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 1828,
                    "nodeType": "Block",
                    "src": "998:70:14",
                    "statements": [
                      {
                        "id": 1827,
                        "nodeType": "UncheckedBlock",
                        "src": "1008:54:14",
                        "statements": [
                          {
                            "expression": {
                              "id": 1825,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftHandSide": {
                                "expression": {
                                  "id": 1821,
                                  "name": "counter",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1818,
                                  "src": "1032:7:14",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Counter_$1803_storage_ptr",
                                    "typeString": "struct Counters.Counter storage pointer"
                                  }
                                },
                                "id": 1823,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": true,
                                "memberName": "_value",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 1802,
                                "src": "1032:14:14",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "Assignment",
                              "operator": "+=",
                              "rightHandSide": {
                                "hexValue": "31",
                                "id": 1824,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "1050:1:14",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_1_by_1",
                                  "typeString": "int_const 1"
                                },
                                "value": "1"
                              },
                              "src": "1032:19:14",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "id": 1826,
                            "nodeType": "ExpressionStatement",
                            "src": "1032:19:14"
                          }
                        ]
                      }
                    ]
                  },
                  "id": 1829,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "increment",
                  "nameLocation": "954:9:14",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1819,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1818,
                        "mutability": "mutable",
                        "name": "counter",
                        "nameLocation": "980:7:14",
                        "nodeType": "VariableDeclaration",
                        "scope": 1829,
                        "src": "964:23:14",
                        "stateVariable": false,
                        "storageLocation": "storage",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Counter_$1803_storage_ptr",
                          "typeString": "struct Counters.Counter"
                        },
                        "typeName": {
                          "id": 1817,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 1816,
                            "name": "Counter",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 1803,
                            "src": "964:7:14"
                          },
                          "referencedDeclaration": 1803,
                          "src": "964:7:14",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Counter_$1803_storage_ptr",
                            "typeString": "struct Counters.Counter"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "963:25:14"
                  },
                  "returnParameters": {
                    "id": 1820,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "998:0:14"
                  },
                  "scope": 1871,
                  "src": "945:123:14",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 1856,
                    "nodeType": "Block",
                    "src": "1127:176:14",
                    "statements": [
                      {
                        "assignments": [
                          1836
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 1836,
                            "mutability": "mutable",
                            "name": "value",
                            "nameLocation": "1145:5:14",
                            "nodeType": "VariableDeclaration",
                            "scope": 1856,
                            "src": "1137:13:14",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 1835,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "1137:7:14",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 1839,
                        "initialValue": {
                          "expression": {
                            "id": 1837,
                            "name": "counter",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1832,
                            "src": "1153:7:14",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Counter_$1803_storage_ptr",
                              "typeString": "struct Counters.Counter storage pointer"
                            }
                          },
                          "id": 1838,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "_value",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 1802,
                          "src": "1153:14:14",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1137:30:14"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 1843,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 1841,
                                "name": "value",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1836,
                                "src": "1185:5:14",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">",
                              "rightExpression": {
                                "hexValue": "30",
                                "id": 1842,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "1193:1:14",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "src": "1185:9:14",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "436f756e7465723a2064656372656d656e74206f766572666c6f77",
                              "id": 1844,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1196:29:14",
                              "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": 1840,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1177:7:14",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 1845,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1177:49:14",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 1846,
                        "nodeType": "ExpressionStatement",
                        "src": "1177:49:14"
                      },
                      {
                        "id": 1855,
                        "nodeType": "UncheckedBlock",
                        "src": "1236:61:14",
                        "statements": [
                          {
                            "expression": {
                              "id": 1853,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftHandSide": {
                                "expression": {
                                  "id": 1847,
                                  "name": "counter",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1832,
                                  "src": "1260:7:14",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Counter_$1803_storage_ptr",
                                    "typeString": "struct Counters.Counter storage pointer"
                                  }
                                },
                                "id": 1849,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": true,
                                "memberName": "_value",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 1802,
                                "src": "1260:14:14",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "Assignment",
                              "operator": "=",
                              "rightHandSide": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 1852,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 1850,
                                  "name": "value",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1836,
                                  "src": "1277:5:14",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "-",
                                "rightExpression": {
                                  "hexValue": "31",
                                  "id": 1851,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "1285:1:14",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_1_by_1",
                                    "typeString": "int_const 1"
                                  },
                                  "value": "1"
                                },
                                "src": "1277:9:14",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "1260:26:14",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "id": 1854,
                            "nodeType": "ExpressionStatement",
                            "src": "1260:26:14"
                          }
                        ]
                      }
                    ]
                  },
                  "id": 1857,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "decrement",
                  "nameLocation": "1083:9:14",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1833,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1832,
                        "mutability": "mutable",
                        "name": "counter",
                        "nameLocation": "1109:7:14",
                        "nodeType": "VariableDeclaration",
                        "scope": 1857,
                        "src": "1093:23:14",
                        "stateVariable": false,
                        "storageLocation": "storage",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Counter_$1803_storage_ptr",
                          "typeString": "struct Counters.Counter"
                        },
                        "typeName": {
                          "id": 1831,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 1830,
                            "name": "Counter",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 1803,
                            "src": "1093:7:14"
                          },
                          "referencedDeclaration": 1803,
                          "src": "1093:7:14",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Counter_$1803_storage_ptr",
                            "typeString": "struct Counters.Counter"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1092:25:14"
                  },
                  "returnParameters": {
                    "id": 1834,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1127:0:14"
                  },
                  "scope": 1871,
                  "src": "1074:229:14",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 1869,
                    "nodeType": "Block",
                    "src": "1358:35:14",
                    "statements": [
                      {
                        "expression": {
                          "id": 1867,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "expression": {
                              "id": 1863,
                              "name": "counter",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1860,
                              "src": "1368:7:14",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Counter_$1803_storage_ptr",
                                "typeString": "struct Counters.Counter storage pointer"
                              }
                            },
                            "id": 1865,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "memberName": "_value",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 1802,
                            "src": "1368:14:14",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "hexValue": "30",
                            "id": 1866,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "1385:1:14",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "1368:18:14",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 1868,
                        "nodeType": "ExpressionStatement",
                        "src": "1368:18:14"
                      }
                    ]
                  },
                  "id": 1870,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "reset",
                  "nameLocation": "1318:5:14",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1861,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1860,
                        "mutability": "mutable",
                        "name": "counter",
                        "nameLocation": "1340:7:14",
                        "nodeType": "VariableDeclaration",
                        "scope": 1870,
                        "src": "1324:23:14",
                        "stateVariable": false,
                        "storageLocation": "storage",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Counter_$1803_storage_ptr",
                          "typeString": "struct Counters.Counter"
                        },
                        "typeName": {
                          "id": 1859,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 1858,
                            "name": "Counter",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 1803,
                            "src": "1324:7:14"
                          },
                          "referencedDeclaration": 1803,
                          "src": "1324:7:14",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Counter_$1803_storage_ptr",
                            "typeString": "struct Counters.Counter"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1323:25:14"
                  },
                  "returnParameters": {
                    "id": 1862,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1358:0:14"
                  },
                  "scope": 1871,
                  "src": "1309:84:14",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 1872,
              "src": "424:971:14",
              "usedErrors": []
            }
          ],
          "src": "87:1309:14"
        },
        "id": 14
      },
      "@openzeppelin/contracts/utils/Strings.sol": {
        "ast": {
          "absolutePath": "@openzeppelin/contracts/utils/Strings.sol",
          "exportedSymbols": {
            "Strings": [
              2074
            ]
          },
          "id": 2075,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 1873,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "86:23:15"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "library",
              "documentation": {
                "id": 1874,
                "nodeType": "StructuredDocumentation",
                "src": "111:34:15",
                "text": " @dev String operations."
              },
              "fullyImplemented": true,
              "id": 2074,
              "linearizedBaseContracts": [
                2074
              ],
              "name": "Strings",
              "nameLocation": "154:7:15",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "constant": true,
                  "id": 1877,
                  "mutability": "constant",
                  "name": "_HEX_SYMBOLS",
                  "nameLocation": "193:12:15",
                  "nodeType": "VariableDeclaration",
                  "scope": 2074,
                  "src": "168:58:15",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes16",
                    "typeString": "bytes16"
                  },
                  "typeName": {
                    "id": 1875,
                    "name": "bytes16",
                    "nodeType": "ElementaryTypeName",
                    "src": "168:7:15",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes16",
                      "typeString": "bytes16"
                    }
                  },
                  "value": {
                    "hexValue": "30313233343536373839616263646566",
                    "id": 1876,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "string",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "208:18:15",
                    "typeDescriptions": {
                      "typeIdentifier": "t_stringliteral_cb29997ed99ead0db59ce4d12b7d3723198c827273e5796737c926d78019c39f",
                      "typeString": "literal_string \"0123456789abcdef\""
                    },
                    "value": "0123456789abcdef"
                  },
                  "visibility": "private"
                },
                {
                  "body": {
                    "id": 1955,
                    "nodeType": "Block",
                    "src": "399:632:15",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 1887,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 1885,
                            "name": "value",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1880,
                            "src": "601:5:15",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 1886,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "610:1:15",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "601:10:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 1891,
                        "nodeType": "IfStatement",
                        "src": "597:51:15",
                        "trueBody": {
                          "id": 1890,
                          "nodeType": "Block",
                          "src": "613:35:15",
                          "statements": [
                            {
                              "expression": {
                                "hexValue": "30",
                                "id": 1888,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "string",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "634:3:15",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_stringliteral_044852b2a670ade5407e78fb2863c51de9fcb96542a07186fe3aeda6bb8a116d",
                                  "typeString": "literal_string \"0\""
                                },
                                "value": "0"
                              },
                              "functionReturnParameters": 1884,
                              "id": 1889,
                              "nodeType": "Return",
                              "src": "627:10:15"
                            }
                          ]
                        }
                      },
                      {
                        "assignments": [
                          1893
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 1893,
                            "mutability": "mutable",
                            "name": "temp",
                            "nameLocation": "665:4:15",
                            "nodeType": "VariableDeclaration",
                            "scope": 1955,
                            "src": "657:12:15",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 1892,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "657:7:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 1895,
                        "initialValue": {
                          "id": 1894,
                          "name": "value",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 1880,
                          "src": "672:5:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "657:20:15"
                      },
                      {
                        "assignments": [
                          1897
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 1897,
                            "mutability": "mutable",
                            "name": "digits",
                            "nameLocation": "695:6:15",
                            "nodeType": "VariableDeclaration",
                            "scope": 1955,
                            "src": "687:14:15",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 1896,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "687:7:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 1898,
                        "nodeType": "VariableDeclarationStatement",
                        "src": "687:14:15"
                      },
                      {
                        "body": {
                          "id": 1909,
                          "nodeType": "Block",
                          "src": "729:57:15",
                          "statements": [
                            {
                              "expression": {
                                "id": 1903,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "UnaryOperation",
                                "operator": "++",
                                "prefix": false,
                                "src": "743:8:15",
                                "subExpression": {
                                  "id": 1902,
                                  "name": "digits",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1897,
                                  "src": "743:6:15",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 1904,
                              "nodeType": "ExpressionStatement",
                              "src": "743:8:15"
                            },
                            {
                              "expression": {
                                "id": 1907,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 1905,
                                  "name": "temp",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1893,
                                  "src": "765:4:15",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "/=",
                                "rightHandSide": {
                                  "hexValue": "3130",
                                  "id": 1906,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "773:2:15",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_10_by_1",
                                    "typeString": "int_const 10"
                                  },
                                  "value": "10"
                                },
                                "src": "765:10:15",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 1908,
                              "nodeType": "ExpressionStatement",
                              "src": "765:10:15"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 1901,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 1899,
                            "name": "temp",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1893,
                            "src": "718:4:15",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "!=",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 1900,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "726:1:15",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "718:9:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 1910,
                        "nodeType": "WhileStatement",
                        "src": "711:75:15"
                      },
                      {
                        "assignments": [
                          1912
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 1912,
                            "mutability": "mutable",
                            "name": "buffer",
                            "nameLocation": "808:6:15",
                            "nodeType": "VariableDeclaration",
                            "scope": 1955,
                            "src": "795:19:15",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes_memory_ptr",
                              "typeString": "bytes"
                            },
                            "typeName": {
                              "id": 1911,
                              "name": "bytes",
                              "nodeType": "ElementaryTypeName",
                              "src": "795:5:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_storage_ptr",
                                "typeString": "bytes"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 1917,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 1915,
                              "name": "digits",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1897,
                              "src": "827:6:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 1914,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "817:9:15",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_objectcreation_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$",
                              "typeString": "function (uint256) pure returns (bytes memory)"
                            },
                            "typeName": {
                              "id": 1913,
                              "name": "bytes",
                              "nodeType": "ElementaryTypeName",
                              "src": "821:5:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_storage_ptr",
                                "typeString": "bytes"
                              }
                            }
                          },
                          "id": 1916,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "817:17:15",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_memory_ptr",
                            "typeString": "bytes memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "795:39:15"
                      },
                      {
                        "body": {
                          "id": 1948,
                          "nodeType": "Block",
                          "src": "863:131:15",
                          "statements": [
                            {
                              "expression": {
                                "id": 1923,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 1921,
                                  "name": "digits",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1897,
                                  "src": "877:6:15",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "-=",
                                "rightHandSide": {
                                  "hexValue": "31",
                                  "id": 1922,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "887:1:15",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_1_by_1",
                                    "typeString": "int_const 1"
                                  },
                                  "value": "1"
                                },
                                "src": "877:11:15",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 1924,
                              "nodeType": "ExpressionStatement",
                              "src": "877:11:15"
                            },
                            {
                              "expression": {
                                "id": 1942,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "baseExpression": {
                                    "id": 1925,
                                    "name": "buffer",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 1912,
                                    "src": "902:6:15",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bytes_memory_ptr",
                                      "typeString": "bytes memory"
                                    }
                                  },
                                  "id": 1927,
                                  "indexExpression": {
                                    "id": 1926,
                                    "name": "digits",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 1897,
                                    "src": "909:6:15",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": true,
                                  "nodeType": "IndexAccess",
                                  "src": "902:14:15",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes1",
                                    "typeString": "bytes1"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "arguments": [
                                    {
                                      "arguments": [
                                        {
                                          "commonType": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          },
                                          "id": 1939,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "leftExpression": {
                                            "hexValue": "3438",
                                            "id": 1932,
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": true,
                                            "kind": "number",
                                            "lValueRequested": false,
                                            "nodeType": "Literal",
                                            "src": "932:2:15",
                                            "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": 1937,
                                                "isConstant": false,
                                                "isLValue": false,
                                                "isPure": false,
                                                "lValueRequested": false,
                                                "leftExpression": {
                                                  "id": 1935,
                                                  "name": "value",
                                                  "nodeType": "Identifier",
                                                  "overloadedDeclarations": [],
                                                  "referencedDeclaration": 1880,
                                                  "src": "945:5:15",
                                                  "typeDescriptions": {
                                                    "typeIdentifier": "t_uint256",
                                                    "typeString": "uint256"
                                                  }
                                                },
                                                "nodeType": "BinaryOperation",
                                                "operator": "%",
                                                "rightExpression": {
                                                  "hexValue": "3130",
                                                  "id": 1936,
                                                  "isConstant": false,
                                                  "isLValue": false,
                                                  "isPure": true,
                                                  "kind": "number",
                                                  "lValueRequested": false,
                                                  "nodeType": "Literal",
                                                  "src": "953:2:15",
                                                  "typeDescriptions": {
                                                    "typeIdentifier": "t_rational_10_by_1",
                                                    "typeString": "int_const 10"
                                                  },
                                                  "value": "10"
                                                },
                                                "src": "945:10:15",
                                                "typeDescriptions": {
                                                  "typeIdentifier": "t_uint256",
                                                  "typeString": "uint256"
                                                }
                                              }
                                            ],
                                            "expression": {
                                              "argumentTypes": [
                                                {
                                                  "typeIdentifier": "t_uint256",
                                                  "typeString": "uint256"
                                                }
                                              ],
                                              "id": 1934,
                                              "isConstant": false,
                                              "isLValue": false,
                                              "isPure": true,
                                              "lValueRequested": false,
                                              "nodeType": "ElementaryTypeNameExpression",
                                              "src": "937:7:15",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_type$_t_uint256_$",
                                                "typeString": "type(uint256)"
                                              },
                                              "typeName": {
                                                "id": 1933,
                                                "name": "uint256",
                                                "nodeType": "ElementaryTypeName",
                                                "src": "937:7:15",
                                                "typeDescriptions": {}
                                              }
                                            },
                                            "id": 1938,
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": false,
                                            "kind": "typeConversion",
                                            "lValueRequested": false,
                                            "names": [],
                                            "nodeType": "FunctionCall",
                                            "src": "937:19:15",
                                            "tryCall": false,
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            }
                                          },
                                          "src": "932:24:15",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        ],
                                        "id": 1931,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "926:5:15",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_uint8_$",
                                          "typeString": "type(uint8)"
                                        },
                                        "typeName": {
                                          "id": 1930,
                                          "name": "uint8",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "926:5:15",
                                          "typeDescriptions": {}
                                        }
                                      },
                                      "id": 1940,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "typeConversion",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "926:31:15",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint8",
                                        "typeString": "uint8"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_uint8",
                                        "typeString": "uint8"
                                      }
                                    ],
                                    "id": 1929,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "ElementaryTypeNameExpression",
                                    "src": "919:6:15",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_bytes1_$",
                                      "typeString": "type(bytes1)"
                                    },
                                    "typeName": {
                                      "id": 1928,
                                      "name": "bytes1",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "919:6:15",
                                      "typeDescriptions": {}
                                    }
                                  },
                                  "id": 1941,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "typeConversion",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "919:39:15",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes1",
                                    "typeString": "bytes1"
                                  }
                                },
                                "src": "902:56:15",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bytes1",
                                  "typeString": "bytes1"
                                }
                              },
                              "id": 1943,
                              "nodeType": "ExpressionStatement",
                              "src": "902:56:15"
                            },
                            {
                              "expression": {
                                "id": 1946,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 1944,
                                  "name": "value",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1880,
                                  "src": "972:5:15",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "/=",
                                "rightHandSide": {
                                  "hexValue": "3130",
                                  "id": 1945,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "981:2:15",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_10_by_1",
                                    "typeString": "int_const 10"
                                  },
                                  "value": "10"
                                },
                                "src": "972:11:15",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 1947,
                              "nodeType": "ExpressionStatement",
                              "src": "972:11:15"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 1920,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 1918,
                            "name": "value",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1880,
                            "src": "851:5:15",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "!=",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 1919,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "860:1:15",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "851:10:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 1949,
                        "nodeType": "WhileStatement",
                        "src": "844:150:15"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 1952,
                              "name": "buffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1912,
                              "src": "1017:6:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "id": 1951,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "1010:6:15",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_string_storage_ptr_$",
                              "typeString": "type(string storage pointer)"
                            },
                            "typeName": {
                              "id": 1950,
                              "name": "string",
                              "nodeType": "ElementaryTypeName",
                              "src": "1010:6:15",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 1953,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1010:14:15",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_memory_ptr",
                            "typeString": "string memory"
                          }
                        },
                        "functionReturnParameters": 1884,
                        "id": 1954,
                        "nodeType": "Return",
                        "src": "1003:21:15"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1878,
                    "nodeType": "StructuredDocumentation",
                    "src": "233:90:15",
                    "text": " @dev Converts a `uint256` to its ASCII `string` decimal representation."
                  },
                  "id": 1956,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toString",
                  "nameLocation": "337:8:15",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1881,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1880,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "354:5:15",
                        "nodeType": "VariableDeclaration",
                        "scope": 1956,
                        "src": "346:13:15",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1879,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "346:7:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "345:15:15"
                  },
                  "returnParameters": {
                    "id": 1884,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1883,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 1956,
                        "src": "384:13:15",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 1882,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "384:6:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "383:15:15"
                  },
                  "scope": 2074,
                  "src": "328:703:15",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 1996,
                    "nodeType": "Block",
                    "src": "1210:255:15",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 1966,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 1964,
                            "name": "value",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1959,
                            "src": "1224:5:15",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 1965,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "1233:1:15",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "1224:10:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 1970,
                        "nodeType": "IfStatement",
                        "src": "1220:54:15",
                        "trueBody": {
                          "id": 1969,
                          "nodeType": "Block",
                          "src": "1236:38:15",
                          "statements": [
                            {
                              "expression": {
                                "hexValue": "30783030",
                                "id": 1967,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "string",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "1257:6:15",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_stringliteral_27489e20a0060b723a1748bdff5e44570ee9fae64141728105692eac6031e8a4",
                                  "typeString": "literal_string \"0x00\""
                                },
                                "value": "0x00"
                              },
                              "functionReturnParameters": 1963,
                              "id": 1968,
                              "nodeType": "Return",
                              "src": "1250:13:15"
                            }
                          ]
                        }
                      },
                      {
                        "assignments": [
                          1972
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 1972,
                            "mutability": "mutable",
                            "name": "temp",
                            "nameLocation": "1291:4:15",
                            "nodeType": "VariableDeclaration",
                            "scope": 1996,
                            "src": "1283:12:15",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 1971,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "1283:7:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 1974,
                        "initialValue": {
                          "id": 1973,
                          "name": "value",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 1959,
                          "src": "1298:5:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1283:20:15"
                      },
                      {
                        "assignments": [
                          1976
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 1976,
                            "mutability": "mutable",
                            "name": "length",
                            "nameLocation": "1321:6:15",
                            "nodeType": "VariableDeclaration",
                            "scope": 1996,
                            "src": "1313:14:15",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 1975,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "1313:7:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 1978,
                        "initialValue": {
                          "hexValue": "30",
                          "id": 1977,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "number",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "1330:1:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_rational_0_by_1",
                            "typeString": "int_const 0"
                          },
                          "value": "0"
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1313:18:15"
                      },
                      {
                        "body": {
                          "id": 1989,
                          "nodeType": "Block",
                          "src": "1359:57:15",
                          "statements": [
                            {
                              "expression": {
                                "id": 1983,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "UnaryOperation",
                                "operator": "++",
                                "prefix": false,
                                "src": "1373:8:15",
                                "subExpression": {
                                  "id": 1982,
                                  "name": "length",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1976,
                                  "src": "1373:6:15",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 1984,
                              "nodeType": "ExpressionStatement",
                              "src": "1373:8:15"
                            },
                            {
                              "expression": {
                                "id": 1987,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 1985,
                                  "name": "temp",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 1972,
                                  "src": "1395:4:15",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": ">>=",
                                "rightHandSide": {
                                  "hexValue": "38",
                                  "id": 1986,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "1404:1:15",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_8_by_1",
                                    "typeString": "int_const 8"
                                  },
                                  "value": "8"
                                },
                                "src": "1395:10:15",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 1988,
                              "nodeType": "ExpressionStatement",
                              "src": "1395:10:15"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 1981,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 1979,
                            "name": "temp",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 1972,
                            "src": "1348:4:15",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "!=",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 1980,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "1356:1:15",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "1348:9:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 1990,
                        "nodeType": "WhileStatement",
                        "src": "1341:75:15"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 1992,
                              "name": "value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1959,
                              "src": "1444:5:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 1993,
                              "name": "length",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1976,
                              "src": "1451:6:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 1991,
                            "name": "toHexString",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              1997,
                              2073
                            ],
                            "referencedDeclaration": 2073,
                            "src": "1432:11:15",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_string_memory_ptr_$",
                              "typeString": "function (uint256,uint256) pure returns (string memory)"
                            }
                          },
                          "id": 1994,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1432:26:15",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_memory_ptr",
                            "typeString": "string memory"
                          }
                        },
                        "functionReturnParameters": 1963,
                        "id": 1995,
                        "nodeType": "Return",
                        "src": "1425:33:15"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1957,
                    "nodeType": "StructuredDocumentation",
                    "src": "1037:94:15",
                    "text": " @dev Converts a `uint256` to its ASCII `string` hexadecimal representation."
                  },
                  "id": 1997,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toHexString",
                  "nameLocation": "1145:11:15",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 1960,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1959,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "1165:5:15",
                        "nodeType": "VariableDeclaration",
                        "scope": 1997,
                        "src": "1157:13:15",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1958,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1157:7:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1156:15:15"
                  },
                  "returnParameters": {
                    "id": 1963,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 1962,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 1997,
                        "src": "1195:13:15",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 1961,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "1195:6:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1194:15:15"
                  },
                  "scope": 2074,
                  "src": "1136:329:15",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2072,
                    "nodeType": "Block",
                    "src": "1678:351:15",
                    "statements": [
                      {
                        "assignments": [
                          2008
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 2008,
                            "mutability": "mutable",
                            "name": "buffer",
                            "nameLocation": "1701:6:15",
                            "nodeType": "VariableDeclaration",
                            "scope": 2072,
                            "src": "1688:19:15",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes_memory_ptr",
                              "typeString": "bytes"
                            },
                            "typeName": {
                              "id": 2007,
                              "name": "bytes",
                              "nodeType": "ElementaryTypeName",
                              "src": "1688:5:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_storage_ptr",
                                "typeString": "bytes"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 2017,
                        "initialValue": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 2015,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 2013,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "hexValue": "32",
                                  "id": 2011,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "1720:1:15",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_2_by_1",
                                    "typeString": "int_const 2"
                                  },
                                  "value": "2"
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "*",
                                "rightExpression": {
                                  "id": 2012,
                                  "name": "length",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2002,
                                  "src": "1724:6:15",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "1720:10:15",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "+",
                              "rightExpression": {
                                "hexValue": "32",
                                "id": 2014,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "1733:1:15",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_2_by_1",
                                  "typeString": "int_const 2"
                                },
                                "value": "2"
                              },
                              "src": "1720:14:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 2010,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "1710:9:15",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_objectcreation_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$",
                              "typeString": "function (uint256) pure returns (bytes memory)"
                            },
                            "typeName": {
                              "id": 2009,
                              "name": "bytes",
                              "nodeType": "ElementaryTypeName",
                              "src": "1714:5:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_storage_ptr",
                                "typeString": "bytes"
                              }
                            }
                          },
                          "id": 2016,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1710:25:15",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_memory_ptr",
                            "typeString": "bytes memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1688:47:15"
                      },
                      {
                        "expression": {
                          "id": 2022,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "id": 2018,
                              "name": "buffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2008,
                              "src": "1745:6:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            },
                            "id": 2020,
                            "indexExpression": {
                              "hexValue": "30",
                              "id": 2019,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1752:1:15",
                              "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:15",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes1",
                              "typeString": "bytes1"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "hexValue": "30",
                            "id": 2021,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "string",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "1757:3:15",
                            "typeDescriptions": {
                              "typeIdentifier": "t_stringliteral_044852b2a670ade5407e78fb2863c51de9fcb96542a07186fe3aeda6bb8a116d",
                              "typeString": "literal_string \"0\""
                            },
                            "value": "0"
                          },
                          "src": "1745:15:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes1",
                            "typeString": "bytes1"
                          }
                        },
                        "id": 2023,
                        "nodeType": "ExpressionStatement",
                        "src": "1745:15:15"
                      },
                      {
                        "expression": {
                          "id": 2028,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "id": 2024,
                              "name": "buffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2008,
                              "src": "1770:6:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            },
                            "id": 2026,
                            "indexExpression": {
                              "hexValue": "31",
                              "id": 2025,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1777:1:15",
                              "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:15",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes1",
                              "typeString": "bytes1"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "hexValue": "78",
                            "id": 2027,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "string",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "1782:3:15",
                            "typeDescriptions": {
                              "typeIdentifier": "t_stringliteral_7521d1cadbcfa91eec65aa16715b94ffc1c9654ba57ea2ef1a2127bca1127a83",
                              "typeString": "literal_string \"x\""
                            },
                            "value": "x"
                          },
                          "src": "1770:15:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes1",
                            "typeString": "bytes1"
                          }
                        },
                        "id": 2029,
                        "nodeType": "ExpressionStatement",
                        "src": "1770:15:15"
                      },
                      {
                        "body": {
                          "id": 2058,
                          "nodeType": "Block",
                          "src": "1840:87:15",
                          "statements": [
                            {
                              "expression": {
                                "id": 2052,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "baseExpression": {
                                    "id": 2044,
                                    "name": "buffer",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 2008,
                                    "src": "1854:6:15",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bytes_memory_ptr",
                                      "typeString": "bytes memory"
                                    }
                                  },
                                  "id": 2046,
                                  "indexExpression": {
                                    "id": 2045,
                                    "name": "i",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 2031,
                                    "src": "1861:1:15",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": true,
                                  "nodeType": "IndexAccess",
                                  "src": "1854:9:15",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes1",
                                    "typeString": "bytes1"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "baseExpression": {
                                    "id": 2047,
                                    "name": "_HEX_SYMBOLS",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 1877,
                                    "src": "1866:12:15",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bytes16",
                                      "typeString": "bytes16"
                                    }
                                  },
                                  "id": 2051,
                                  "indexExpression": {
                                    "commonType": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    },
                                    "id": 2050,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "leftExpression": {
                                      "id": 2048,
                                      "name": "value",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 2000,
                                      "src": "1879:5:15",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "nodeType": "BinaryOperation",
                                    "operator": "&",
                                    "rightExpression": {
                                      "hexValue": "307866",
                                      "id": 2049,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "kind": "number",
                                      "lValueRequested": false,
                                      "nodeType": "Literal",
                                      "src": "1887:3:15",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_rational_15_by_1",
                                        "typeString": "int_const 15"
                                      },
                                      "value": "0xf"
                                    },
                                    "src": "1879:11:15",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "IndexAccess",
                                  "src": "1866:25:15",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes1",
                                    "typeString": "bytes1"
                                  }
                                },
                                "src": "1854:37:15",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bytes1",
                                  "typeString": "bytes1"
                                }
                              },
                              "id": 2053,
                              "nodeType": "ExpressionStatement",
                              "src": "1854:37:15"
                            },
                            {
                              "expression": {
                                "id": 2056,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 2054,
                                  "name": "value",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2000,
                                  "src": "1905:5:15",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": ">>=",
                                "rightHandSide": {
                                  "hexValue": "34",
                                  "id": 2055,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "1915:1:15",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_4_by_1",
                                    "typeString": "int_const 4"
                                  },
                                  "value": "4"
                                },
                                "src": "1905:11:15",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 2057,
                              "nodeType": "ExpressionStatement",
                              "src": "1905:11:15"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 2040,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 2038,
                            "name": "i",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 2031,
                            "src": "1828:1:15",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": ">",
                          "rightExpression": {
                            "hexValue": "31",
                            "id": 2039,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "1832:1:15",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_1_by_1",
                              "typeString": "int_const 1"
                            },
                            "value": "1"
                          },
                          "src": "1828:5:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 2059,
                        "initializationExpression": {
                          "assignments": [
                            2031
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 2031,
                              "mutability": "mutable",
                              "name": "i",
                              "nameLocation": "1808:1:15",
                              "nodeType": "VariableDeclaration",
                              "scope": 2059,
                              "src": "1800:9:15",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "typeName": {
                                "id": 2030,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "1800:7:15",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 2037,
                          "initialValue": {
                            "commonType": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "id": 2036,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 2034,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "hexValue": "32",
                                "id": 2032,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "1812:1:15",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_2_by_1",
                                  "typeString": "int_const 2"
                                },
                                "value": "2"
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "*",
                              "rightExpression": {
                                "id": 2033,
                                "name": "length",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2002,
                                "src": "1816:6:15",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "1812:10:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "+",
                            "rightExpression": {
                              "hexValue": "31",
                              "id": 2035,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1825:1:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_1_by_1",
                                "typeString": "int_const 1"
                              },
                              "value": "1"
                            },
                            "src": "1812:14:15",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "1800:26:15"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 2042,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "--",
                            "prefix": true,
                            "src": "1835:3:15",
                            "subExpression": {
                              "id": 2041,
                              "name": "i",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2031,
                              "src": "1837:1:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 2043,
                          "nodeType": "ExpressionStatement",
                          "src": "1835:3:15"
                        },
                        "nodeType": "ForStatement",
                        "src": "1795:132:15"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 2063,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 2061,
                                "name": "value",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2000,
                                "src": "1944:5:15",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "==",
                              "rightExpression": {
                                "hexValue": "30",
                                "id": 2062,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "1953:1:15",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "src": "1944:10:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "537472696e67733a20686578206c656e67746820696e73756666696369656e74",
                              "id": 2064,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1956:34:15",
                              "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": 2060,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1936:7:15",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 2065,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1936:55:15",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 2066,
                        "nodeType": "ExpressionStatement",
                        "src": "1936:55:15"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 2069,
                              "name": "buffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2008,
                              "src": "2015:6:15",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "id": 2068,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "2008:6:15",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_string_storage_ptr_$",
                              "typeString": "type(string storage pointer)"
                            },
                            "typeName": {
                              "id": 2067,
                              "name": "string",
                              "nodeType": "ElementaryTypeName",
                              "src": "2008:6:15",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 2070,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2008:14:15",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_memory_ptr",
                            "typeString": "string memory"
                          }
                        },
                        "functionReturnParameters": 2006,
                        "id": 2071,
                        "nodeType": "Return",
                        "src": "2001:21:15"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 1998,
                    "nodeType": "StructuredDocumentation",
                    "src": "1471:112:15",
                    "text": " @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length."
                  },
                  "id": 2073,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toHexString",
                  "nameLocation": "1597:11:15",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2003,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2000,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "1617:5:15",
                        "nodeType": "VariableDeclaration",
                        "scope": 2073,
                        "src": "1609:13:15",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 1999,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1609:7:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2002,
                        "mutability": "mutable",
                        "name": "length",
                        "nameLocation": "1632:6:15",
                        "nodeType": "VariableDeclaration",
                        "scope": 2073,
                        "src": "1624:14:15",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 2001,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1624:7:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1608:31:15"
                  },
                  "returnParameters": {
                    "id": 2006,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2005,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2073,
                        "src": "1663:13:15",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 2004,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "1663:6:15",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1662:15:15"
                  },
                  "scope": 2074,
                  "src": "1588:441:15",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 2075,
              "src": "146:1885:15",
              "usedErrors": []
            }
          ],
          "src": "86:1946:15"
        },
        "id": 15
      },
      "@openzeppelin/contracts/utils/cryptography/ECDSA.sol": {
        "ast": {
          "absolutePath": "@openzeppelin/contracts/utils/cryptography/ECDSA.sol",
          "exportedSymbols": {
            "ECDSA": [
              2464
            ],
            "Strings": [
              2074
            ]
          },
          "id": 2465,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 2076,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "97:23:16"
            },
            {
              "absolutePath": "@openzeppelin/contracts/utils/Strings.sol",
              "file": "../Strings.sol",
              "id": 2077,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 2465,
              "sourceUnit": 2075,
              "src": "122:24:16",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "library",
              "documentation": {
                "id": 2078,
                "nodeType": "StructuredDocumentation",
                "src": "148:205:16",
                "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": 2464,
              "linearizedBaseContracts": [
                2464
              ],
              "name": "ECDSA",
              "nameLocation": "362:5:16",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "canonicalName": "ECDSA.RecoverError",
                  "id": 2084,
                  "members": [
                    {
                      "id": 2079,
                      "name": "NoError",
                      "nameLocation": "402:7:16",
                      "nodeType": "EnumValue",
                      "src": "402:7:16"
                    },
                    {
                      "id": 2080,
                      "name": "InvalidSignature",
                      "nameLocation": "419:16:16",
                      "nodeType": "EnumValue",
                      "src": "419:16:16"
                    },
                    {
                      "id": 2081,
                      "name": "InvalidSignatureLength",
                      "nameLocation": "445:22:16",
                      "nodeType": "EnumValue",
                      "src": "445:22:16"
                    },
                    {
                      "id": 2082,
                      "name": "InvalidSignatureS",
                      "nameLocation": "477:17:16",
                      "nodeType": "EnumValue",
                      "src": "477:17:16"
                    },
                    {
                      "id": 2083,
                      "name": "InvalidSignatureV",
                      "nameLocation": "504:17:16",
                      "nodeType": "EnumValue",
                      "src": "504:17:16"
                    }
                  ],
                  "name": "RecoverError",
                  "nameLocation": "379:12:16",
                  "nodeType": "EnumDefinition",
                  "src": "374:153:16"
                },
                {
                  "body": {
                    "id": 2137,
                    "nodeType": "Block",
                    "src": "587:577:16",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_enum$_RecoverError_$2084",
                            "typeString": "enum ECDSA.RecoverError"
                          },
                          "id": 2093,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 2090,
                            "name": "error",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 2087,
                            "src": "601:5:16",
                            "typeDescriptions": {
                              "typeIdentifier": "t_enum$_RecoverError_$2084",
                              "typeString": "enum ECDSA.RecoverError"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "expression": {
                              "id": 2091,
                              "name": "RecoverError",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2084,
                              "src": "610:12:16",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_enum$_RecoverError_$2084_$",
                                "typeString": "type(enum ECDSA.RecoverError)"
                              }
                            },
                            "id": 2092,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "memberName": "NoError",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 2079,
                            "src": "610:20:16",
                            "typeDescriptions": {
                              "typeIdentifier": "t_enum$_RecoverError_$2084",
                              "typeString": "enum ECDSA.RecoverError"
                            }
                          },
                          "src": "601:29:16",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "falseBody": {
                          "condition": {
                            "commonType": {
                              "typeIdentifier": "t_enum$_RecoverError_$2084",
                              "typeString": "enum ECDSA.RecoverError"
                            },
                            "id": 2099,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 2096,
                              "name": "error",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2087,
                              "src": "697:5:16",
                              "typeDescriptions": {
                                "typeIdentifier": "t_enum$_RecoverError_$2084",
                                "typeString": "enum ECDSA.RecoverError"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "==",
                            "rightExpression": {
                              "expression": {
                                "id": 2097,
                                "name": "RecoverError",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2084,
                                "src": "706:12:16",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_enum$_RecoverError_$2084_$",
                                  "typeString": "type(enum ECDSA.RecoverError)"
                                }
                              },
                              "id": 2098,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "memberName": "InvalidSignature",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 2080,
                              "src": "706:29:16",
                              "typeDescriptions": {
                                "typeIdentifier": "t_enum$_RecoverError_$2084",
                                "typeString": "enum ECDSA.RecoverError"
                              }
                            },
                            "src": "697:38:16",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "falseBody": {
                            "condition": {
                              "commonType": {
                                "typeIdentifier": "t_enum$_RecoverError_$2084",
                                "typeString": "enum ECDSA.RecoverError"
                              },
                              "id": 2108,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 2105,
                                "name": "error",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2087,
                                "src": "806:5:16",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_enum$_RecoverError_$2084",
                                  "typeString": "enum ECDSA.RecoverError"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "==",
                              "rightExpression": {
                                "expression": {
                                  "id": 2106,
                                  "name": "RecoverError",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2084,
                                  "src": "815:12:16",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_enum$_RecoverError_$2084_$",
                                    "typeString": "type(enum ECDSA.RecoverError)"
                                  }
                                },
                                "id": 2107,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "InvalidSignatureLength",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 2081,
                                "src": "815:35:16",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_enum$_RecoverError_$2084",
                                  "typeString": "enum ECDSA.RecoverError"
                                }
                              },
                              "src": "806:44:16",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            "falseBody": {
                              "condition": {
                                "commonType": {
                                  "typeIdentifier": "t_enum$_RecoverError_$2084",
                                  "typeString": "enum ECDSA.RecoverError"
                                },
                                "id": 2117,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 2114,
                                  "name": "error",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2087,
                                  "src": "928:5:16",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_enum$_RecoverError_$2084",
                                    "typeString": "enum ECDSA.RecoverError"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "==",
                                "rightExpression": {
                                  "expression": {
                                    "id": 2115,
                                    "name": "RecoverError",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 2084,
                                    "src": "937:12:16",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_enum$_RecoverError_$2084_$",
                                      "typeString": "type(enum ECDSA.RecoverError)"
                                    }
                                  },
                                  "id": 2116,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "memberName": "InvalidSignatureS",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 2082,
                                  "src": "937:30:16",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_enum$_RecoverError_$2084",
                                    "typeString": "enum ECDSA.RecoverError"
                                  }
                                },
                                "src": "928:39:16",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "falseBody": {
                                "condition": {
                                  "commonType": {
                                    "typeIdentifier": "t_enum$_RecoverError_$2084",
                                    "typeString": "enum ECDSA.RecoverError"
                                  },
                                  "id": 2126,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "id": 2123,
                                    "name": "error",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 2087,
                                    "src": "1048:5:16",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_enum$_RecoverError_$2084",
                                      "typeString": "enum ECDSA.RecoverError"
                                    }
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": "==",
                                  "rightExpression": {
                                    "expression": {
                                      "id": 2124,
                                      "name": "RecoverError",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 2084,
                                      "src": "1057:12:16",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_enum$_RecoverError_$2084_$",
                                        "typeString": "type(enum ECDSA.RecoverError)"
                                      }
                                    },
                                    "id": 2125,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "memberName": "InvalidSignatureV",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 2083,
                                    "src": "1057:30:16",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_enum$_RecoverError_$2084",
                                      "typeString": "enum ECDSA.RecoverError"
                                    }
                                  },
                                  "src": "1048:39:16",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bool",
                                    "typeString": "bool"
                                  }
                                },
                                "id": 2132,
                                "nodeType": "IfStatement",
                                "src": "1044:114:16",
                                "trueBody": {
                                  "id": 2131,
                                  "nodeType": "Block",
                                  "src": "1089:69:16",
                                  "statements": [
                                    {
                                      "expression": {
                                        "arguments": [
                                          {
                                            "hexValue": "45434453413a20696e76616c6964207369676e6174757265202776272076616c7565",
                                            "id": 2128,
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": true,
                                            "kind": "string",
                                            "lValueRequested": false,
                                            "nodeType": "Literal",
                                            "src": "1110:36:16",
                                            "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": 2127,
                                          "name": "revert",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [
                                            -19,
                                            -19
                                          ],
                                          "referencedDeclaration": -19,
                                          "src": "1103:6:16",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_function_revert_pure$_t_string_memory_ptr_$returns$__$",
                                            "typeString": "function (string memory) pure"
                                          }
                                        },
                                        "id": 2129,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "kind": "functionCall",
                                        "lValueRequested": false,
                                        "names": [],
                                        "nodeType": "FunctionCall",
                                        "src": "1103:44:16",
                                        "tryCall": false,
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_tuple$__$",
                                          "typeString": "tuple()"
                                        }
                                      },
                                      "id": 2130,
                                      "nodeType": "ExpressionStatement",
                                      "src": "1103:44:16"
                                    }
                                  ]
                                }
                              },
                              "id": 2133,
                              "nodeType": "IfStatement",
                              "src": "924:234:16",
                              "trueBody": {
                                "id": 2122,
                                "nodeType": "Block",
                                "src": "969:69:16",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "hexValue": "45434453413a20696e76616c6964207369676e6174757265202773272076616c7565",
                                          "id": 2119,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": true,
                                          "kind": "string",
                                          "lValueRequested": false,
                                          "nodeType": "Literal",
                                          "src": "990:36:16",
                                          "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": 2118,
                                        "name": "revert",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [
                                          -19,
                                          -19
                                        ],
                                        "referencedDeclaration": -19,
                                        "src": "983:6:16",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_function_revert_pure$_t_string_memory_ptr_$returns$__$",
                                          "typeString": "function (string memory) pure"
                                        }
                                      },
                                      "id": 2120,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "functionCall",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "983:44:16",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_tuple$__$",
                                        "typeString": "tuple()"
                                      }
                                    },
                                    "id": 2121,
                                    "nodeType": "ExpressionStatement",
                                    "src": "983:44:16"
                                  }
                                ]
                              }
                            },
                            "id": 2134,
                            "nodeType": "IfStatement",
                            "src": "802:356:16",
                            "trueBody": {
                              "id": 2113,
                              "nodeType": "Block",
                              "src": "852:66:16",
                              "statements": [
                                {
                                  "expression": {
                                    "arguments": [
                                      {
                                        "hexValue": "45434453413a20696e76616c6964207369676e6174757265206c656e677468",
                                        "id": 2110,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "kind": "string",
                                        "lValueRequested": false,
                                        "nodeType": "Literal",
                                        "src": "873:33:16",
                                        "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": 2109,
                                      "name": "revert",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [
                                        -19,
                                        -19
                                      ],
                                      "referencedDeclaration": -19,
                                      "src": "866:6:16",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_function_revert_pure$_t_string_memory_ptr_$returns$__$",
                                        "typeString": "function (string memory) pure"
                                      }
                                    },
                                    "id": 2111,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "kind": "functionCall",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "866:41:16",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_tuple$__$",
                                      "typeString": "tuple()"
                                    }
                                  },
                                  "id": 2112,
                                  "nodeType": "ExpressionStatement",
                                  "src": "866:41:16"
                                }
                              ]
                            }
                          },
                          "id": 2135,
                          "nodeType": "IfStatement",
                          "src": "693:465:16",
                          "trueBody": {
                            "id": 2104,
                            "nodeType": "Block",
                            "src": "737:59:16",
                            "statements": [
                              {
                                "expression": {
                                  "arguments": [
                                    {
                                      "hexValue": "45434453413a20696e76616c6964207369676e6174757265",
                                      "id": 2101,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "kind": "string",
                                      "lValueRequested": false,
                                      "nodeType": "Literal",
                                      "src": "758:26:16",
                                      "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": 2100,
                                    "name": "revert",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [
                                      -19,
                                      -19
                                    ],
                                    "referencedDeclaration": -19,
                                    "src": "751:6:16",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_revert_pure$_t_string_memory_ptr_$returns$__$",
                                      "typeString": "function (string memory) pure"
                                    }
                                  },
                                  "id": 2102,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "751:34:16",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_tuple$__$",
                                    "typeString": "tuple()"
                                  }
                                },
                                "id": 2103,
                                "nodeType": "ExpressionStatement",
                                "src": "751:34:16"
                              }
                            ]
                          }
                        },
                        "id": 2136,
                        "nodeType": "IfStatement",
                        "src": "597:561:16",
                        "trueBody": {
                          "id": 2095,
                          "nodeType": "Block",
                          "src": "632:55:16",
                          "statements": [
                            {
                              "functionReturnParameters": 2089,
                              "id": 2094,
                              "nodeType": "Return",
                              "src": "646:7:16"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "id": 2138,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_throwError",
                  "nameLocation": "542:11:16",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2088,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2087,
                        "mutability": "mutable",
                        "name": "error",
                        "nameLocation": "567:5:16",
                        "nodeType": "VariableDeclaration",
                        "scope": 2138,
                        "src": "554:18:16",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_enum$_RecoverError_$2084",
                          "typeString": "enum ECDSA.RecoverError"
                        },
                        "typeName": {
                          "id": 2086,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 2085,
                            "name": "RecoverError",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 2084,
                            "src": "554:12:16"
                          },
                          "referencedDeclaration": 2084,
                          "src": "554:12:16",
                          "typeDescriptions": {
                            "typeIdentifier": "t_enum$_RecoverError_$2084",
                            "typeString": "enum ECDSA.RecoverError"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "553:20:16"
                  },
                  "returnParameters": {
                    "id": 2089,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "587:0:16"
                  },
                  "scope": 2464,
                  "src": "533:631:16",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "private"
                },
                {
                  "body": {
                    "id": 2202,
                    "nodeType": "Block",
                    "src": "2332:1175:16",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 2154,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 2151,
                              "name": "signature",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2143,
                              "src": "2539:9:16",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            },
                            "id": 2152,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "length",
                            "nodeType": "MemberAccess",
                            "src": "2539:16:16",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "3635",
                            "id": 2153,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "2559:2:16",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_65_by_1",
                              "typeString": "int_const 65"
                            },
                            "value": "65"
                          },
                          "src": "2539:22:16",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "falseBody": {
                          "condition": {
                            "commonType": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "id": 2176,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "expression": {
                                "id": 2173,
                                "name": "signature",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2143,
                                "src": "3021:9:16",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bytes_memory_ptr",
                                  "typeString": "bytes memory"
                                }
                              },
                              "id": 2174,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "length",
                              "nodeType": "MemberAccess",
                              "src": "3021:16:16",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "==",
                            "rightExpression": {
                              "hexValue": "3634",
                              "id": 2175,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "3041:2:16",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_64_by_1",
                                "typeString": "int_const 64"
                              },
                              "value": "64"
                            },
                            "src": "3021:22:16",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "falseBody": {
                            "id": 2199,
                            "nodeType": "Block",
                            "src": "3420:81:16",
                            "statements": [
                              {
                                "expression": {
                                  "components": [
                                    {
                                      "arguments": [
                                        {
                                          "hexValue": "30",
                                          "id": 2193,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": true,
                                          "kind": "number",
                                          "lValueRequested": false,
                                          "nodeType": "Literal",
                                          "src": "3450:1:16",
                                          "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": 2192,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "3442:7:16",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_address_$",
                                          "typeString": "type(address)"
                                        },
                                        "typeName": {
                                          "id": 2191,
                                          "name": "address",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "3442:7:16",
                                          "typeDescriptions": {}
                                        }
                                      },
                                      "id": 2194,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "kind": "typeConversion",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "3442:10:16",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_address",
                                        "typeString": "address"
                                      }
                                    },
                                    {
                                      "expression": {
                                        "id": 2195,
                                        "name": "RecoverError",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 2084,
                                        "src": "3454:12:16",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_enum$_RecoverError_$2084_$",
                                          "typeString": "type(enum ECDSA.RecoverError)"
                                        }
                                      },
                                      "id": 2196,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "memberName": "InvalidSignatureLength",
                                      "nodeType": "MemberAccess",
                                      "referencedDeclaration": 2081,
                                      "src": "3454:35:16",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_enum$_RecoverError_$2084",
                                        "typeString": "enum ECDSA.RecoverError"
                                      }
                                    }
                                  ],
                                  "id": 2197,
                                  "isConstant": false,
                                  "isInlineArray": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "TupleExpression",
                                  "src": "3441:49:16",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_tuple$_t_address_$_t_enum$_RecoverError_$2084_$",
                                    "typeString": "tuple(address,enum ECDSA.RecoverError)"
                                  }
                                },
                                "functionReturnParameters": 2150,
                                "id": 2198,
                                "nodeType": "Return",
                                "src": "3434:56:16"
                              }
                            ]
                          },
                          "id": 2200,
                          "nodeType": "IfStatement",
                          "src": "3017:484:16",
                          "trueBody": {
                            "id": 2190,
                            "nodeType": "Block",
                            "src": "3045:369:16",
                            "statements": [
                              {
                                "assignments": [
                                  2178
                                ],
                                "declarations": [
                                  {
                                    "constant": false,
                                    "id": 2178,
                                    "mutability": "mutable",
                                    "name": "r",
                                    "nameLocation": "3067:1:16",
                                    "nodeType": "VariableDeclaration",
                                    "scope": 2190,
                                    "src": "3059:9:16",
                                    "stateVariable": false,
                                    "storageLocation": "default",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bytes32",
                                      "typeString": "bytes32"
                                    },
                                    "typeName": {
                                      "id": 2177,
                                      "name": "bytes32",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "3059:7:16",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_bytes32",
                                        "typeString": "bytes32"
                                      }
                                    },
                                    "visibility": "internal"
                                  }
                                ],
                                "id": 2179,
                                "nodeType": "VariableDeclarationStatement",
                                "src": "3059:9:16"
                              },
                              {
                                "assignments": [
                                  2181
                                ],
                                "declarations": [
                                  {
                                    "constant": false,
                                    "id": 2181,
                                    "mutability": "mutable",
                                    "name": "vs",
                                    "nameLocation": "3090:2:16",
                                    "nodeType": "VariableDeclaration",
                                    "scope": 2190,
                                    "src": "3082:10:16",
                                    "stateVariable": false,
                                    "storageLocation": "default",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bytes32",
                                      "typeString": "bytes32"
                                    },
                                    "typeName": {
                                      "id": 2180,
                                      "name": "bytes32",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "3082:7:16",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_bytes32",
                                        "typeString": "bytes32"
                                      }
                                    },
                                    "visibility": "internal"
                                  }
                                ],
                                "id": 2182,
                                "nodeType": "VariableDeclarationStatement",
                                "src": "3082:10:16"
                              },
                              {
                                "AST": {
                                  "nodeType": "YulBlock",
                                  "src": "3246:114:16",
                                  "statements": [
                                    {
                                      "nodeType": "YulAssignment",
                                      "src": "3264:32:16",
                                      "value": {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "signature",
                                                "nodeType": "YulIdentifier",
                                                "src": "3279:9:16"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "3290:4:16",
                                                "type": "",
                                                "value": "0x20"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "3275:3:16"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "3275:20:16"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "3269:5:16"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3269:27:16"
                                      },
                                      "variableNames": [
                                        {
                                          "name": "r",
                                          "nodeType": "YulIdentifier",
                                          "src": "3264:1:16"
                                        }
                                      ]
                                    },
                                    {
                                      "nodeType": "YulAssignment",
                                      "src": "3313:33:16",
                                      "value": {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "name": "signature",
                                                "nodeType": "YulIdentifier",
                                                "src": "3329:9:16"
                                              },
                                              {
                                                "kind": "number",
                                                "nodeType": "YulLiteral",
                                                "src": "3340:4:16",
                                                "type": "",
                                                "value": "0x40"
                                              }
                                            ],
                                            "functionName": {
                                              "name": "add",
                                              "nodeType": "YulIdentifier",
                                              "src": "3325:3:16"
                                            },
                                            "nodeType": "YulFunctionCall",
                                            "src": "3325:20:16"
                                          }
                                        ],
                                        "functionName": {
                                          "name": "mload",
                                          "nodeType": "YulIdentifier",
                                          "src": "3319:5:16"
                                        },
                                        "nodeType": "YulFunctionCall",
                                        "src": "3319:27:16"
                                      },
                                      "variableNames": [
                                        {
                                          "name": "vs",
                                          "nodeType": "YulIdentifier",
                                          "src": "3313:2:16"
                                        }
                                      ]
                                    }
                                  ]
                                },
                                "evmVersion": "berlin",
                                "externalReferences": [
                                  {
                                    "declaration": 2178,
                                    "isOffset": false,
                                    "isSlot": false,
                                    "src": "3264:1:16",
                                    "valueSize": 1
                                  },
                                  {
                                    "declaration": 2143,
                                    "isOffset": false,
                                    "isSlot": false,
                                    "src": "3279:9:16",
                                    "valueSize": 1
                                  },
                                  {
                                    "declaration": 2143,
                                    "isOffset": false,
                                    "isSlot": false,
                                    "src": "3329:9:16",
                                    "valueSize": 1
                                  },
                                  {
                                    "declaration": 2181,
                                    "isOffset": false,
                                    "isSlot": false,
                                    "src": "3313:2:16",
                                    "valueSize": 1
                                  }
                                ],
                                "id": 2183,
                                "nodeType": "InlineAssembly",
                                "src": "3237:123:16"
                              },
                              {
                                "expression": {
                                  "arguments": [
                                    {
                                      "id": 2185,
                                      "name": "hash",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 2141,
                                      "src": "3391:4:16",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_bytes32",
                                        "typeString": "bytes32"
                                      }
                                    },
                                    {
                                      "id": 2186,
                                      "name": "r",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 2178,
                                      "src": "3397:1:16",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_bytes32",
                                        "typeString": "bytes32"
                                      }
                                    },
                                    {
                                      "id": 2187,
                                      "name": "vs",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 2181,
                                      "src": "3400:2:16",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_bytes32",
                                        "typeString": "bytes32"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_bytes32",
                                        "typeString": "bytes32"
                                      },
                                      {
                                        "typeIdentifier": "t_bytes32",
                                        "typeString": "bytes32"
                                      },
                                      {
                                        "typeIdentifier": "t_bytes32",
                                        "typeString": "bytes32"
                                      }
                                    ],
                                    "id": 2184,
                                    "name": "tryRecover",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [
                                      2203,
                                      2260,
                                      2371
                                    ],
                                    "referencedDeclaration": 2260,
                                    "src": "3380:10:16",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_pure$_t_bytes32_$_t_bytes32_$_t_bytes32_$returns$_t_address_$_t_enum$_RecoverError_$2084_$",
                                      "typeString": "function (bytes32,bytes32,bytes32) pure returns (address,enum ECDSA.RecoverError)"
                                    }
                                  },
                                  "id": 2188,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "3380:23:16",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_tuple$_t_address_$_t_enum$_RecoverError_$2084_$",
                                    "typeString": "tuple(address,enum ECDSA.RecoverError)"
                                  }
                                },
                                "functionReturnParameters": 2150,
                                "id": 2189,
                                "nodeType": "Return",
                                "src": "3373:30:16"
                              }
                            ]
                          }
                        },
                        "id": 2201,
                        "nodeType": "IfStatement",
                        "src": "2535:966:16",
                        "trueBody": {
                          "id": 2172,
                          "nodeType": "Block",
                          "src": "2563:448:16",
                          "statements": [
                            {
                              "assignments": [
                                2156
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 2156,
                                  "mutability": "mutable",
                                  "name": "r",
                                  "nameLocation": "2585:1:16",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 2172,
                                  "src": "2577:9:16",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes32",
                                    "typeString": "bytes32"
                                  },
                                  "typeName": {
                                    "id": 2155,
                                    "name": "bytes32",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "2577:7:16",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bytes32",
                                      "typeString": "bytes32"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 2157,
                              "nodeType": "VariableDeclarationStatement",
                              "src": "2577:9:16"
                            },
                            {
                              "assignments": [
                                2159
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 2159,
                                  "mutability": "mutable",
                                  "name": "s",
                                  "nameLocation": "2608:1:16",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 2172,
                                  "src": "2600:9:16",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes32",
                                    "typeString": "bytes32"
                                  },
                                  "typeName": {
                                    "id": 2158,
                                    "name": "bytes32",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "2600:7:16",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bytes32",
                                      "typeString": "bytes32"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 2160,
                              "nodeType": "VariableDeclarationStatement",
                              "src": "2600:9:16"
                            },
                            {
                              "assignments": [
                                2162
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 2162,
                                  "mutability": "mutable",
                                  "name": "v",
                                  "nameLocation": "2629:1:16",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 2172,
                                  "src": "2623:7:16",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint8",
                                    "typeString": "uint8"
                                  },
                                  "typeName": {
                                    "id": 2161,
                                    "name": "uint8",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "2623:5:16",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint8",
                                      "typeString": "uint8"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 2163,
                              "nodeType": "VariableDeclarationStatement",
                              "src": "2623:7:16"
                            },
                            {
                              "AST": {
                                "nodeType": "YulBlock",
                                "src": "2784:171:16",
                                "statements": [
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "2802:32:16",
                                    "value": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "signature",
                                              "nodeType": "YulIdentifier",
                                              "src": "2817:9:16"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "2828:4:16",
                                              "type": "",
                                              "value": "0x20"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "2813:3:16"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "2813:20:16"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mload",
                                        "nodeType": "YulIdentifier",
                                        "src": "2807:5:16"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2807:27:16"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "r",
                                        "nodeType": "YulIdentifier",
                                        "src": "2802:1:16"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "2851:32:16",
                                    "value": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "name": "signature",
                                              "nodeType": "YulIdentifier",
                                              "src": "2866:9:16"
                                            },
                                            {
                                              "kind": "number",
                                              "nodeType": "YulLiteral",
                                              "src": "2877:4:16",
                                              "type": "",
                                              "value": "0x40"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "add",
                                            "nodeType": "YulIdentifier",
                                            "src": "2862:3:16"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "2862:20:16"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "mload",
                                        "nodeType": "YulIdentifier",
                                        "src": "2856:5:16"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2856:27:16"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "s",
                                        "nodeType": "YulIdentifier",
                                        "src": "2851:1:16"
                                      }
                                    ]
                                  },
                                  {
                                    "nodeType": "YulAssignment",
                                    "src": "2900:41:16",
                                    "value": {
                                      "arguments": [
                                        {
                                          "kind": "number",
                                          "nodeType": "YulLiteral",
                                          "src": "2910:1:16",
                                          "type": "",
                                          "value": "0"
                                        },
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "name": "signature",
                                                  "nodeType": "YulIdentifier",
                                                  "src": "2923:9:16"
                                                },
                                                {
                                                  "kind": "number",
                                                  "nodeType": "YulLiteral",
                                                  "src": "2934:4:16",
                                                  "type": "",
                                                  "value": "0x60"
                                                }
                                              ],
                                              "functionName": {
                                                "name": "add",
                                                "nodeType": "YulIdentifier",
                                                "src": "2919:3:16"
                                              },
                                              "nodeType": "YulFunctionCall",
                                              "src": "2919:20:16"
                                            }
                                          ],
                                          "functionName": {
                                            "name": "mload",
                                            "nodeType": "YulIdentifier",
                                            "src": "2913:5:16"
                                          },
                                          "nodeType": "YulFunctionCall",
                                          "src": "2913:27:16"
                                        }
                                      ],
                                      "functionName": {
                                        "name": "byte",
                                        "nodeType": "YulIdentifier",
                                        "src": "2905:4:16"
                                      },
                                      "nodeType": "YulFunctionCall",
                                      "src": "2905:36:16"
                                    },
                                    "variableNames": [
                                      {
                                        "name": "v",
                                        "nodeType": "YulIdentifier",
                                        "src": "2900:1:16"
                                      }
                                    ]
                                  }
                                ]
                              },
                              "evmVersion": "berlin",
                              "externalReferences": [
                                {
                                  "declaration": 2156,
                                  "isOffset": false,
                                  "isSlot": false,
                                  "src": "2802:1:16",
                                  "valueSize": 1
                                },
                                {
                                  "declaration": 2159,
                                  "isOffset": false,
                                  "isSlot": false,
                                  "src": "2851:1:16",
                                  "valueSize": 1
                                },
                                {
                                  "declaration": 2143,
                                  "isOffset": false,
                                  "isSlot": false,
                                  "src": "2817:9:16",
                                  "valueSize": 1
                                },
                                {
                                  "declaration": 2143,
                                  "isOffset": false,
                                  "isSlot": false,
                                  "src": "2866:9:16",
                                  "valueSize": 1
                                },
                                {
                                  "declaration": 2143,
                                  "isOffset": false,
                                  "isSlot": false,
                                  "src": "2923:9:16",
                                  "valueSize": 1
                                },
                                {
                                  "declaration": 2162,
                                  "isOffset": false,
                                  "isSlot": false,
                                  "src": "2900:1:16",
                                  "valueSize": 1
                                }
                              ],
                              "id": 2164,
                              "nodeType": "InlineAssembly",
                              "src": "2775:180:16"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "id": 2166,
                                    "name": "hash",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 2141,
                                    "src": "2986:4:16",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bytes32",
                                      "typeString": "bytes32"
                                    }
                                  },
                                  {
                                    "id": 2167,
                                    "name": "v",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 2162,
                                    "src": "2992:1:16",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint8",
                                      "typeString": "uint8"
                                    }
                                  },
                                  {
                                    "id": 2168,
                                    "name": "r",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 2156,
                                    "src": "2995:1:16",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bytes32",
                                      "typeString": "bytes32"
                                    }
                                  },
                                  {
                                    "id": 2169,
                                    "name": "s",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 2159,
                                    "src": "2998:1:16",
                                    "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": 2165,
                                  "name": "tryRecover",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [
                                    2203,
                                    2260,
                                    2371
                                  ],
                                  "referencedDeclaration": 2371,
                                  "src": "2975:10:16",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_pure$_t_bytes32_$_t_uint8_$_t_bytes32_$_t_bytes32_$returns$_t_address_$_t_enum$_RecoverError_$2084_$",
                                    "typeString": "function (bytes32,uint8,bytes32,bytes32) pure returns (address,enum ECDSA.RecoverError)"
                                  }
                                },
                                "id": 2170,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "2975:25:16",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$_t_address_$_t_enum$_RecoverError_$2084_$",
                                  "typeString": "tuple(address,enum ECDSA.RecoverError)"
                                }
                              },
                              "functionReturnParameters": 2150,
                              "id": 2171,
                              "nodeType": "Return",
                              "src": "2968:32:16"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2139,
                    "nodeType": "StructuredDocumentation",
                    "src": "1170:1053:16",
                    "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": 2203,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "tryRecover",
                  "nameLocation": "2237:10:16",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2144,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2141,
                        "mutability": "mutable",
                        "name": "hash",
                        "nameLocation": "2256:4:16",
                        "nodeType": "VariableDeclaration",
                        "scope": 2203,
                        "src": "2248:12:16",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2140,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2248:7:16",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2143,
                        "mutability": "mutable",
                        "name": "signature",
                        "nameLocation": "2275:9:16",
                        "nodeType": "VariableDeclaration",
                        "scope": 2203,
                        "src": "2262:22:16",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 2142,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "2262:5:16",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2247:38:16"
                  },
                  "returnParameters": {
                    "id": 2150,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2146,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2203,
                        "src": "2309:7:16",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 2145,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2309:7:16",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2149,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2203,
                        "src": "2318:12:16",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_enum$_RecoverError_$2084",
                          "typeString": "enum ECDSA.RecoverError"
                        },
                        "typeName": {
                          "id": 2148,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 2147,
                            "name": "RecoverError",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 2084,
                            "src": "2318:12:16"
                          },
                          "referencedDeclaration": 2084,
                          "src": "2318:12:16",
                          "typeDescriptions": {
                            "typeIdentifier": "t_enum$_RecoverError_$2084",
                            "typeString": "enum ECDSA.RecoverError"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2308:23:16"
                  },
                  "scope": 2464,
                  "src": "2228:1279:16",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2229,
                    "nodeType": "Block",
                    "src": "4380:140:16",
                    "statements": [
                      {
                        "assignments": [
                          2214,
                          2217
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 2214,
                            "mutability": "mutable",
                            "name": "recovered",
                            "nameLocation": "4399:9:16",
                            "nodeType": "VariableDeclaration",
                            "scope": 2229,
                            "src": "4391:17:16",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            },
                            "typeName": {
                              "id": 2213,
                              "name": "address",
                              "nodeType": "ElementaryTypeName",
                              "src": "4391:7:16",
                              "stateMutability": "nonpayable",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 2217,
                            "mutability": "mutable",
                            "name": "error",
                            "nameLocation": "4423:5:16",
                            "nodeType": "VariableDeclaration",
                            "scope": 2229,
                            "src": "4410:18:16",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_enum$_RecoverError_$2084",
                              "typeString": "enum ECDSA.RecoverError"
                            },
                            "typeName": {
                              "id": 2216,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 2215,
                                "name": "RecoverError",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 2084,
                                "src": "4410:12:16"
                              },
                              "referencedDeclaration": 2084,
                              "src": "4410:12:16",
                              "typeDescriptions": {
                                "typeIdentifier": "t_enum$_RecoverError_$2084",
                                "typeString": "enum ECDSA.RecoverError"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 2222,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 2219,
                              "name": "hash",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2206,
                              "src": "4443:4:16",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            {
                              "id": 2220,
                              "name": "signature",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2208,
                              "src": "4449:9:16",
                              "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": 2218,
                            "name": "tryRecover",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              2203,
                              2260,
                              2371
                            ],
                            "referencedDeclaration": 2203,
                            "src": "4432:10:16",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_bytes32_$_t_bytes_memory_ptr_$returns$_t_address_$_t_enum$_RecoverError_$2084_$",
                              "typeString": "function (bytes32,bytes memory) pure returns (address,enum ECDSA.RecoverError)"
                            }
                          },
                          "id": 2221,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4432:27:16",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_address_$_t_enum$_RecoverError_$2084_$",
                            "typeString": "tuple(address,enum ECDSA.RecoverError)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4390:69:16"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 2224,
                              "name": "error",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2217,
                              "src": "4481:5:16",
                              "typeDescriptions": {
                                "typeIdentifier": "t_enum$_RecoverError_$2084",
                                "typeString": "enum ECDSA.RecoverError"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_enum$_RecoverError_$2084",
                                "typeString": "enum ECDSA.RecoverError"
                              }
                            ],
                            "id": 2223,
                            "name": "_throwError",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 2138,
                            "src": "4469:11:16",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_enum$_RecoverError_$2084_$returns$__$",
                              "typeString": "function (enum ECDSA.RecoverError) pure"
                            }
                          },
                          "id": 2225,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4469:18:16",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 2226,
                        "nodeType": "ExpressionStatement",
                        "src": "4469:18:16"
                      },
                      {
                        "expression": {
                          "id": 2227,
                          "name": "recovered",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 2214,
                          "src": "4504:9:16",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "functionReturnParameters": 2212,
                        "id": 2228,
                        "nodeType": "Return",
                        "src": "4497:16:16"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2204,
                    "nodeType": "StructuredDocumentation",
                    "src": "3513:775:16",
                    "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": 2230,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "recover",
                  "nameLocation": "4302:7:16",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2209,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2206,
                        "mutability": "mutable",
                        "name": "hash",
                        "nameLocation": "4318:4:16",
                        "nodeType": "VariableDeclaration",
                        "scope": 2230,
                        "src": "4310:12:16",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2205,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4310:7:16",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2208,
                        "mutability": "mutable",
                        "name": "signature",
                        "nameLocation": "4337:9:16",
                        "nodeType": "VariableDeclaration",
                        "scope": 2230,
                        "src": "4324:22:16",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 2207,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "4324:5:16",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4309:38:16"
                  },
                  "returnParameters": {
                    "id": 2212,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2211,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2230,
                        "src": "4371:7:16",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 2210,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4371:7:16",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4370:9:16"
                  },
                  "scope": 2464,
                  "src": "4293:227:16",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2259,
                    "nodeType": "Block",
                    "src": "4907:246:16",
                    "statements": [
                      {
                        "assignments": [
                          2246
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 2246,
                            "mutability": "mutable",
                            "name": "s",
                            "nameLocation": "4925:1:16",
                            "nodeType": "VariableDeclaration",
                            "scope": 2259,
                            "src": "4917:9:16",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes32",
                              "typeString": "bytes32"
                            },
                            "typeName": {
                              "id": 2245,
                              "name": "bytes32",
                              "nodeType": "ElementaryTypeName",
                              "src": "4917:7:16",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 2247,
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4917:9:16"
                      },
                      {
                        "assignments": [
                          2249
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 2249,
                            "mutability": "mutable",
                            "name": "v",
                            "nameLocation": "4942:1:16",
                            "nodeType": "VariableDeclaration",
                            "scope": 2259,
                            "src": "4936:7:16",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            },
                            "typeName": {
                              "id": 2248,
                              "name": "uint8",
                              "nodeType": "ElementaryTypeName",
                              "src": "4936:5:16",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 2250,
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4936:7:16"
                      },
                      {
                        "AST": {
                          "nodeType": "YulBlock",
                          "src": "4962:143:16",
                          "statements": [
                            {
                              "nodeType": "YulAssignment",
                              "src": "4976:80:16",
                              "value": {
                                "arguments": [
                                  {
                                    "name": "vs",
                                    "nodeType": "YulIdentifier",
                                    "src": "4985:2:16"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "4989:66:16",
                                    "type": "",
                                    "value": "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
                                  }
                                ],
                                "functionName": {
                                  "name": "and",
                                  "nodeType": "YulIdentifier",
                                  "src": "4981:3:16"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "4981:75:16"
                              },
                              "variableNames": [
                                {
                                  "name": "s",
                                  "nodeType": "YulIdentifier",
                                  "src": "4976:1:16"
                                }
                              ]
                            },
                            {
                              "nodeType": "YulAssignment",
                              "src": "5069:26:16",
                              "value": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "kind": "number",
                                        "nodeType": "YulLiteral",
                                        "src": "5082:3:16",
                                        "type": "",
                                        "value": "255"
                                      },
                                      {
                                        "name": "vs",
                                        "nodeType": "YulIdentifier",
                                        "src": "5087:2:16"
                                      }
                                    ],
                                    "functionName": {
                                      "name": "shr",
                                      "nodeType": "YulIdentifier",
                                      "src": "5078:3:16"
                                    },
                                    "nodeType": "YulFunctionCall",
                                    "src": "5078:12:16"
                                  },
                                  {
                                    "kind": "number",
                                    "nodeType": "YulLiteral",
                                    "src": "5092:2:16",
                                    "type": "",
                                    "value": "27"
                                  }
                                ],
                                "functionName": {
                                  "name": "add",
                                  "nodeType": "YulIdentifier",
                                  "src": "5074:3:16"
                                },
                                "nodeType": "YulFunctionCall",
                                "src": "5074:21:16"
                              },
                              "variableNames": [
                                {
                                  "name": "v",
                                  "nodeType": "YulIdentifier",
                                  "src": "5069:1:16"
                                }
                              ]
                            }
                          ]
                        },
                        "evmVersion": "berlin",
                        "externalReferences": [
                          {
                            "declaration": 2246,
                            "isOffset": false,
                            "isSlot": false,
                            "src": "4976:1:16",
                            "valueSize": 1
                          },
                          {
                            "declaration": 2249,
                            "isOffset": false,
                            "isSlot": false,
                            "src": "5069:1:16",
                            "valueSize": 1
                          },
                          {
                            "declaration": 2237,
                            "isOffset": false,
                            "isSlot": false,
                            "src": "4985:2:16",
                            "valueSize": 1
                          },
                          {
                            "declaration": 2237,
                            "isOffset": false,
                            "isSlot": false,
                            "src": "5087:2:16",
                            "valueSize": 1
                          }
                        ],
                        "id": 2251,
                        "nodeType": "InlineAssembly",
                        "src": "4953:152:16"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 2253,
                              "name": "hash",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2233,
                              "src": "5132:4:16",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            {
                              "id": 2254,
                              "name": "v",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2249,
                              "src": "5138:1:16",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            {
                              "id": 2255,
                              "name": "r",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2235,
                              "src": "5141:1:16",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            {
                              "id": 2256,
                              "name": "s",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2246,
                              "src": "5144:1:16",
                              "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": 2252,
                            "name": "tryRecover",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              2203,
                              2260,
                              2371
                            ],
                            "referencedDeclaration": 2371,
                            "src": "5121:10:16",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_bytes32_$_t_uint8_$_t_bytes32_$_t_bytes32_$returns$_t_address_$_t_enum$_RecoverError_$2084_$",
                              "typeString": "function (bytes32,uint8,bytes32,bytes32) pure returns (address,enum ECDSA.RecoverError)"
                            }
                          },
                          "id": 2257,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5121:25:16",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_address_$_t_enum$_RecoverError_$2084_$",
                            "typeString": "tuple(address,enum ECDSA.RecoverError)"
                          }
                        },
                        "functionReturnParameters": 2244,
                        "id": 2258,
                        "nodeType": "Return",
                        "src": "5114:32:16"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2231,
                    "nodeType": "StructuredDocumentation",
                    "src": "4526:243:16",
                    "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": 2260,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "tryRecover",
                  "nameLocation": "4783:10:16",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2238,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2233,
                        "mutability": "mutable",
                        "name": "hash",
                        "nameLocation": "4811:4:16",
                        "nodeType": "VariableDeclaration",
                        "scope": 2260,
                        "src": "4803:12:16",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2232,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4803:7:16",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2235,
                        "mutability": "mutable",
                        "name": "r",
                        "nameLocation": "4833:1:16",
                        "nodeType": "VariableDeclaration",
                        "scope": 2260,
                        "src": "4825:9:16",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2234,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4825:7:16",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2237,
                        "mutability": "mutable",
                        "name": "vs",
                        "nameLocation": "4852:2:16",
                        "nodeType": "VariableDeclaration",
                        "scope": 2260,
                        "src": "4844:10:16",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2236,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4844:7:16",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4793:67:16"
                  },
                  "returnParameters": {
                    "id": 2244,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2240,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2260,
                        "src": "4884:7:16",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 2239,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4884:7:16",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2243,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2260,
                        "src": "4893:12:16",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_enum$_RecoverError_$2084",
                          "typeString": "enum ECDSA.RecoverError"
                        },
                        "typeName": {
                          "id": 2242,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 2241,
                            "name": "RecoverError",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 2084,
                            "src": "4893:12:16"
                          },
                          "referencedDeclaration": 2084,
                          "src": "4893:12:16",
                          "typeDescriptions": {
                            "typeIdentifier": "t_enum$_RecoverError_$2084",
                            "typeString": "enum ECDSA.RecoverError"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4883:23:16"
                  },
                  "scope": 2464,
                  "src": "4774:379:16",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2289,
                    "nodeType": "Block",
                    "src": "5434:136:16",
                    "statements": [
                      {
                        "assignments": [
                          2273,
                          2276
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 2273,
                            "mutability": "mutable",
                            "name": "recovered",
                            "nameLocation": "5453:9:16",
                            "nodeType": "VariableDeclaration",
                            "scope": 2289,
                            "src": "5445:17:16",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            },
                            "typeName": {
                              "id": 2272,
                              "name": "address",
                              "nodeType": "ElementaryTypeName",
                              "src": "5445:7:16",
                              "stateMutability": "nonpayable",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 2276,
                            "mutability": "mutable",
                            "name": "error",
                            "nameLocation": "5477:5:16",
                            "nodeType": "VariableDeclaration",
                            "scope": 2289,
                            "src": "5464:18:16",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_enum$_RecoverError_$2084",
                              "typeString": "enum ECDSA.RecoverError"
                            },
                            "typeName": {
                              "id": 2275,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 2274,
                                "name": "RecoverError",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 2084,
                                "src": "5464:12:16"
                              },
                              "referencedDeclaration": 2084,
                              "src": "5464:12:16",
                              "typeDescriptions": {
                                "typeIdentifier": "t_enum$_RecoverError_$2084",
                                "typeString": "enum ECDSA.RecoverError"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 2282,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 2278,
                              "name": "hash",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2263,
                              "src": "5497:4:16",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            {
                              "id": 2279,
                              "name": "r",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2265,
                              "src": "5503:1:16",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            {
                              "id": 2280,
                              "name": "vs",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2267,
                              "src": "5506:2:16",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              },
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              },
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            ],
                            "id": 2277,
                            "name": "tryRecover",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              2203,
                              2260,
                              2371
                            ],
                            "referencedDeclaration": 2260,
                            "src": "5486:10:16",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_bytes32_$_t_bytes32_$_t_bytes32_$returns$_t_address_$_t_enum$_RecoverError_$2084_$",
                              "typeString": "function (bytes32,bytes32,bytes32) pure returns (address,enum ECDSA.RecoverError)"
                            }
                          },
                          "id": 2281,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5486:23:16",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_address_$_t_enum$_RecoverError_$2084_$",
                            "typeString": "tuple(address,enum ECDSA.RecoverError)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "5444:65:16"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 2284,
                              "name": "error",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2276,
                              "src": "5531:5:16",
                              "typeDescriptions": {
                                "typeIdentifier": "t_enum$_RecoverError_$2084",
                                "typeString": "enum ECDSA.RecoverError"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_enum$_RecoverError_$2084",
                                "typeString": "enum ECDSA.RecoverError"
                              }
                            ],
                            "id": 2283,
                            "name": "_throwError",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 2138,
                            "src": "5519:11:16",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_enum$_RecoverError_$2084_$returns$__$",
                              "typeString": "function (enum ECDSA.RecoverError) pure"
                            }
                          },
                          "id": 2285,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5519:18:16",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 2286,
                        "nodeType": "ExpressionStatement",
                        "src": "5519:18:16"
                      },
                      {
                        "expression": {
                          "id": 2287,
                          "name": "recovered",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 2273,
                          "src": "5554:9:16",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "functionReturnParameters": 2271,
                        "id": 2288,
                        "nodeType": "Return",
                        "src": "5547:16:16"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2261,
                    "nodeType": "StructuredDocumentation",
                    "src": "5159:154:16",
                    "text": " @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.\n _Available since v4.2._"
                  },
                  "id": 2290,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "recover",
                  "nameLocation": "5327:7:16",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2268,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2263,
                        "mutability": "mutable",
                        "name": "hash",
                        "nameLocation": "5352:4:16",
                        "nodeType": "VariableDeclaration",
                        "scope": 2290,
                        "src": "5344:12:16",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2262,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "5344:7:16",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2265,
                        "mutability": "mutable",
                        "name": "r",
                        "nameLocation": "5374:1:16",
                        "nodeType": "VariableDeclaration",
                        "scope": 2290,
                        "src": "5366:9:16",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2264,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "5366:7:16",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2267,
                        "mutability": "mutable",
                        "name": "vs",
                        "nameLocation": "5393:2:16",
                        "nodeType": "VariableDeclaration",
                        "scope": 2290,
                        "src": "5385:10:16",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2266,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "5385:7:16",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5334:67:16"
                  },
                  "returnParameters": {
                    "id": 2271,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2270,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2290,
                        "src": "5425:7:16",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 2269,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5425:7:16",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5424:9:16"
                  },
                  "scope": 2464,
                  "src": "5318:252:16",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2370,
                    "nodeType": "Block",
                    "src": "5893:1454:16",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 2312,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "arguments": [
                              {
                                "id": 2309,
                                "name": "s",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2299,
                                "src": "6789:1:16",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bytes32",
                                  "typeString": "bytes32"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_bytes32",
                                  "typeString": "bytes32"
                                }
                              ],
                              "id": 2308,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "nodeType": "ElementaryTypeNameExpression",
                              "src": "6781:7:16",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_uint256_$",
                                "typeString": "type(uint256)"
                              },
                              "typeName": {
                                "id": 2307,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "6781:7:16",
                                "typeDescriptions": {}
                              }
                            },
                            "id": 2310,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "typeConversion",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "6781:10:16",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": ">",
                          "rightExpression": {
                            "hexValue": "307837464646464646464646464646464646464646464646464646464646464646463544353736453733353741343530314444464539324634363638314232304130",
                            "id": 2311,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "6794:66:16",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_57896044618658097711785492504343953926418782139537452191302581570759080747168_by_1",
                              "typeString": "int_const 5789...(69 digits omitted)...7168"
                            },
                            "value": "0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0"
                          },
                          "src": "6781:79:16",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 2322,
                        "nodeType": "IfStatement",
                        "src": "6777:161:16",
                        "trueBody": {
                          "id": 2321,
                          "nodeType": "Block",
                          "src": "6862:76:16",
                          "statements": [
                            {
                              "expression": {
                                "components": [
                                  {
                                    "arguments": [
                                      {
                                        "hexValue": "30",
                                        "id": 2315,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "kind": "number",
                                        "lValueRequested": false,
                                        "nodeType": "Literal",
                                        "src": "6892:1:16",
                                        "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": 2314,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "6884:7:16",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_address_$",
                                        "typeString": "type(address)"
                                      },
                                      "typeName": {
                                        "id": 2313,
                                        "name": "address",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "6884:7:16",
                                        "typeDescriptions": {}
                                      }
                                    },
                                    "id": 2316,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "typeConversion",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "6884:10:16",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "expression": {
                                      "id": 2317,
                                      "name": "RecoverError",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 2084,
                                      "src": "6896:12:16",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_enum$_RecoverError_$2084_$",
                                        "typeString": "type(enum ECDSA.RecoverError)"
                                      }
                                    },
                                    "id": 2318,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "memberName": "InvalidSignatureS",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 2082,
                                    "src": "6896:30:16",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_enum$_RecoverError_$2084",
                                      "typeString": "enum ECDSA.RecoverError"
                                    }
                                  }
                                ],
                                "id": 2319,
                                "isConstant": false,
                                "isInlineArray": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "TupleExpression",
                                "src": "6883:44:16",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$_t_address_$_t_enum$_RecoverError_$2084_$",
                                  "typeString": "tuple(address,enum ECDSA.RecoverError)"
                                }
                              },
                              "functionReturnParameters": 2306,
                              "id": 2320,
                              "nodeType": "Return",
                              "src": "6876:51:16"
                            }
                          ]
                        }
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "id": 2329,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            },
                            "id": 2325,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 2323,
                              "name": "v",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2295,
                              "src": "6951:1:16",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "!=",
                            "rightExpression": {
                              "hexValue": "3237",
                              "id": 2324,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "6956:2:16",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_27_by_1",
                                "typeString": "int_const 27"
                              },
                              "value": "27"
                            },
                            "src": "6951:7:16",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "&&",
                          "rightExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            },
                            "id": 2328,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 2326,
                              "name": "v",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2295,
                              "src": "6962:1:16",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "!=",
                            "rightExpression": {
                              "hexValue": "3238",
                              "id": 2327,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "6967:2:16",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_28_by_1",
                                "typeString": "int_const 28"
                              },
                              "value": "28"
                            },
                            "src": "6962:7:16",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "src": "6951:18:16",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 2339,
                        "nodeType": "IfStatement",
                        "src": "6947:100:16",
                        "trueBody": {
                          "id": 2338,
                          "nodeType": "Block",
                          "src": "6971:76:16",
                          "statements": [
                            {
                              "expression": {
                                "components": [
                                  {
                                    "arguments": [
                                      {
                                        "hexValue": "30",
                                        "id": 2332,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "kind": "number",
                                        "lValueRequested": false,
                                        "nodeType": "Literal",
                                        "src": "7001:1:16",
                                        "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": 2331,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "6993:7:16",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_address_$",
                                        "typeString": "type(address)"
                                      },
                                      "typeName": {
                                        "id": 2330,
                                        "name": "address",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "6993:7:16",
                                        "typeDescriptions": {}
                                      }
                                    },
                                    "id": 2333,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "typeConversion",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "6993:10:16",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "expression": {
                                      "id": 2334,
                                      "name": "RecoverError",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 2084,
                                      "src": "7005:12:16",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_enum$_RecoverError_$2084_$",
                                        "typeString": "type(enum ECDSA.RecoverError)"
                                      }
                                    },
                                    "id": 2335,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "memberName": "InvalidSignatureV",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 2083,
                                    "src": "7005:30:16",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_enum$_RecoverError_$2084",
                                      "typeString": "enum ECDSA.RecoverError"
                                    }
                                  }
                                ],
                                "id": 2336,
                                "isConstant": false,
                                "isInlineArray": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "TupleExpression",
                                "src": "6992:44:16",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$_t_address_$_t_enum$_RecoverError_$2084_$",
                                  "typeString": "tuple(address,enum ECDSA.RecoverError)"
                                }
                              },
                              "functionReturnParameters": 2306,
                              "id": 2337,
                              "nodeType": "Return",
                              "src": "6985:51:16"
                            }
                          ]
                        }
                      },
                      {
                        "assignments": [
                          2341
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 2341,
                            "mutability": "mutable",
                            "name": "signer",
                            "nameLocation": "7149:6:16",
                            "nodeType": "VariableDeclaration",
                            "scope": 2370,
                            "src": "7141:14:16",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            },
                            "typeName": {
                              "id": 2340,
                              "name": "address",
                              "nodeType": "ElementaryTypeName",
                              "src": "7141:7:16",
                              "stateMutability": "nonpayable",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 2348,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 2343,
                              "name": "hash",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2293,
                              "src": "7168:4:16",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            {
                              "id": 2344,
                              "name": "v",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2295,
                              "src": "7174:1:16",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            {
                              "id": 2345,
                              "name": "r",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2297,
                              "src": "7177:1:16",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            {
                              "id": 2346,
                              "name": "s",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2299,
                              "src": "7180:1:16",
                              "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": 2342,
                            "name": "ecrecover",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": -6,
                            "src": "7158:9:16",
                            "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": 2347,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7158:24:16",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7141:41:16"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          },
                          "id": 2354,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 2349,
                            "name": "signer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 2341,
                            "src": "7196:6:16",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "arguments": [
                              {
                                "hexValue": "30",
                                "id": 2352,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "7214:1:16",
                                "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": 2351,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "nodeType": "ElementaryTypeNameExpression",
                              "src": "7206:7:16",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_address_$",
                                "typeString": "type(address)"
                              },
                              "typeName": {
                                "id": 2350,
                                "name": "address",
                                "nodeType": "ElementaryTypeName",
                                "src": "7206:7:16",
                                "typeDescriptions": {}
                              }
                            },
                            "id": 2353,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "typeConversion",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "7206:10:16",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "7196:20:16",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 2364,
                        "nodeType": "IfStatement",
                        "src": "7192:101:16",
                        "trueBody": {
                          "id": 2363,
                          "nodeType": "Block",
                          "src": "7218:75:16",
                          "statements": [
                            {
                              "expression": {
                                "components": [
                                  {
                                    "arguments": [
                                      {
                                        "hexValue": "30",
                                        "id": 2357,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "kind": "number",
                                        "lValueRequested": false,
                                        "nodeType": "Literal",
                                        "src": "7248:1:16",
                                        "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": 2356,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "7240:7:16",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_address_$",
                                        "typeString": "type(address)"
                                      },
                                      "typeName": {
                                        "id": 2355,
                                        "name": "address",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "7240:7:16",
                                        "typeDescriptions": {}
                                      }
                                    },
                                    "id": 2358,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "typeConversion",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "7240:10:16",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "expression": {
                                      "id": 2359,
                                      "name": "RecoverError",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 2084,
                                      "src": "7252:12:16",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_enum$_RecoverError_$2084_$",
                                        "typeString": "type(enum ECDSA.RecoverError)"
                                      }
                                    },
                                    "id": 2360,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "memberName": "InvalidSignature",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 2080,
                                    "src": "7252:29:16",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_enum$_RecoverError_$2084",
                                      "typeString": "enum ECDSA.RecoverError"
                                    }
                                  }
                                ],
                                "id": 2361,
                                "isConstant": false,
                                "isInlineArray": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "TupleExpression",
                                "src": "7239:43:16",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$_t_address_$_t_enum$_RecoverError_$2084_$",
                                  "typeString": "tuple(address,enum ECDSA.RecoverError)"
                                }
                              },
                              "functionReturnParameters": 2306,
                              "id": 2362,
                              "nodeType": "Return",
                              "src": "7232:50:16"
                            }
                          ]
                        }
                      },
                      {
                        "expression": {
                          "components": [
                            {
                              "id": 2365,
                              "name": "signer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2341,
                              "src": "7311:6:16",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "expression": {
                                "id": 2366,
                                "name": "RecoverError",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2084,
                                "src": "7319:12:16",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_enum$_RecoverError_$2084_$",
                                  "typeString": "type(enum ECDSA.RecoverError)"
                                }
                              },
                              "id": 2367,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "memberName": "NoError",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 2079,
                              "src": "7319:20:16",
                              "typeDescriptions": {
                                "typeIdentifier": "t_enum$_RecoverError_$2084",
                                "typeString": "enum ECDSA.RecoverError"
                              }
                            }
                          ],
                          "id": 2368,
                          "isConstant": false,
                          "isInlineArray": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "TupleExpression",
                          "src": "7310:30:16",
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_address_$_t_enum$_RecoverError_$2084_$",
                            "typeString": "tuple(address,enum ECDSA.RecoverError)"
                          }
                        },
                        "functionReturnParameters": 2306,
                        "id": 2369,
                        "nodeType": "Return",
                        "src": "7303:37:16"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2291,
                    "nodeType": "StructuredDocumentation",
                    "src": "5576:163:16",
                    "text": " @dev Overload of {ECDSA-tryRecover} that receives the `v`,\n `r` and `s` signature fields separately.\n _Available since v4.3._"
                  },
                  "id": 2371,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "tryRecover",
                  "nameLocation": "5753:10:16",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2300,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2293,
                        "mutability": "mutable",
                        "name": "hash",
                        "nameLocation": "5781:4:16",
                        "nodeType": "VariableDeclaration",
                        "scope": 2371,
                        "src": "5773:12:16",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2292,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "5773:7:16",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2295,
                        "mutability": "mutable",
                        "name": "v",
                        "nameLocation": "5801:1:16",
                        "nodeType": "VariableDeclaration",
                        "scope": 2371,
                        "src": "5795:7:16",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 2294,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "5795:5:16",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2297,
                        "mutability": "mutable",
                        "name": "r",
                        "nameLocation": "5820:1:16",
                        "nodeType": "VariableDeclaration",
                        "scope": 2371,
                        "src": "5812:9:16",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2296,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "5812:7:16",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2299,
                        "mutability": "mutable",
                        "name": "s",
                        "nameLocation": "5839:1:16",
                        "nodeType": "VariableDeclaration",
                        "scope": 2371,
                        "src": "5831:9:16",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2298,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "5831:7:16",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5763:83:16"
                  },
                  "returnParameters": {
                    "id": 2306,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2302,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2371,
                        "src": "5870:7:16",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 2301,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5870:7:16",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2305,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2371,
                        "src": "5879:12:16",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_enum$_RecoverError_$2084",
                          "typeString": "enum ECDSA.RecoverError"
                        },
                        "typeName": {
                          "id": 2304,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 2303,
                            "name": "RecoverError",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 2084,
                            "src": "5879:12:16"
                          },
                          "referencedDeclaration": 2084,
                          "src": "5879:12:16",
                          "typeDescriptions": {
                            "typeIdentifier": "t_enum$_RecoverError_$2084",
                            "typeString": "enum ECDSA.RecoverError"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5869:23:16"
                  },
                  "scope": 2464,
                  "src": "5744:1603:16",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2403,
                    "nodeType": "Block",
                    "src": "7612:138:16",
                    "statements": [
                      {
                        "assignments": [
                          2386,
                          2389
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 2386,
                            "mutability": "mutable",
                            "name": "recovered",
                            "nameLocation": "7631:9:16",
                            "nodeType": "VariableDeclaration",
                            "scope": 2403,
                            "src": "7623:17:16",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            },
                            "typeName": {
                              "id": 2385,
                              "name": "address",
                              "nodeType": "ElementaryTypeName",
                              "src": "7623:7:16",
                              "stateMutability": "nonpayable",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 2389,
                            "mutability": "mutable",
                            "name": "error",
                            "nameLocation": "7655:5:16",
                            "nodeType": "VariableDeclaration",
                            "scope": 2403,
                            "src": "7642:18:16",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_enum$_RecoverError_$2084",
                              "typeString": "enum ECDSA.RecoverError"
                            },
                            "typeName": {
                              "id": 2388,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 2387,
                                "name": "RecoverError",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 2084,
                                "src": "7642:12:16"
                              },
                              "referencedDeclaration": 2084,
                              "src": "7642:12:16",
                              "typeDescriptions": {
                                "typeIdentifier": "t_enum$_RecoverError_$2084",
                                "typeString": "enum ECDSA.RecoverError"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 2396,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 2391,
                              "name": "hash",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2374,
                              "src": "7675:4:16",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            {
                              "id": 2392,
                              "name": "v",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2376,
                              "src": "7681:1:16",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            {
                              "id": 2393,
                              "name": "r",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2378,
                              "src": "7684:1:16",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            {
                              "id": 2394,
                              "name": "s",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2380,
                              "src": "7687:1:16",
                              "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": 2390,
                            "name": "tryRecover",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              2203,
                              2260,
                              2371
                            ],
                            "referencedDeclaration": 2371,
                            "src": "7664:10:16",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_bytes32_$_t_uint8_$_t_bytes32_$_t_bytes32_$returns$_t_address_$_t_enum$_RecoverError_$2084_$",
                              "typeString": "function (bytes32,uint8,bytes32,bytes32) pure returns (address,enum ECDSA.RecoverError)"
                            }
                          },
                          "id": 2395,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7664:25:16",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_address_$_t_enum$_RecoverError_$2084_$",
                            "typeString": "tuple(address,enum ECDSA.RecoverError)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7622:67:16"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 2398,
                              "name": "error",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2389,
                              "src": "7711:5:16",
                              "typeDescriptions": {
                                "typeIdentifier": "t_enum$_RecoverError_$2084",
                                "typeString": "enum ECDSA.RecoverError"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_enum$_RecoverError_$2084",
                                "typeString": "enum ECDSA.RecoverError"
                              }
                            ],
                            "id": 2397,
                            "name": "_throwError",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 2138,
                            "src": "7699:11:16",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_enum$_RecoverError_$2084_$returns$__$",
                              "typeString": "function (enum ECDSA.RecoverError) pure"
                            }
                          },
                          "id": 2399,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7699:18:16",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 2400,
                        "nodeType": "ExpressionStatement",
                        "src": "7699:18:16"
                      },
                      {
                        "expression": {
                          "id": 2401,
                          "name": "recovered",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 2386,
                          "src": "7734:9:16",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "functionReturnParameters": 2384,
                        "id": 2402,
                        "nodeType": "Return",
                        "src": "7727:16:16"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2372,
                    "nodeType": "StructuredDocumentation",
                    "src": "7353:122:16",
                    "text": " @dev Overload of {ECDSA-recover} that receives the `v`,\n `r` and `s` signature fields separately."
                  },
                  "id": 2404,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "recover",
                  "nameLocation": "7489:7:16",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2381,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2374,
                        "mutability": "mutable",
                        "name": "hash",
                        "nameLocation": "7514:4:16",
                        "nodeType": "VariableDeclaration",
                        "scope": 2404,
                        "src": "7506:12:16",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2373,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "7506:7:16",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2376,
                        "mutability": "mutable",
                        "name": "v",
                        "nameLocation": "7534:1:16",
                        "nodeType": "VariableDeclaration",
                        "scope": 2404,
                        "src": "7528:7:16",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 2375,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "7528:5:16",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2378,
                        "mutability": "mutable",
                        "name": "r",
                        "nameLocation": "7553:1:16",
                        "nodeType": "VariableDeclaration",
                        "scope": 2404,
                        "src": "7545:9:16",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2377,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "7545:7:16",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2380,
                        "mutability": "mutable",
                        "name": "s",
                        "nameLocation": "7572:1:16",
                        "nodeType": "VariableDeclaration",
                        "scope": 2404,
                        "src": "7564:9:16",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2379,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "7564:7:16",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7496:83:16"
                  },
                  "returnParameters": {
                    "id": 2384,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2383,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2404,
                        "src": "7603:7:16",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 2382,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "7603:7:16",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7602:9:16"
                  },
                  "scope": 2464,
                  "src": "7480:270:16",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2420,
                    "nodeType": "Block",
                    "src": "8118:187:16",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "hexValue": "19457468657265756d205369676e6564204d6573736167653a0a3332",
                                  "id": 2415,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "string",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "8256:34:16",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_stringliteral_178a2411ab6fbc1ba11064408972259c558d0e82fd48b0aba3ad81d14f065e73",
                                    "typeString": "literal_string hex\"19457468657265756d205369676e6564204d6573736167653a0a3332\""
                                  },
                                  "value": "\u0019Ethereum Signed Message:\n32"
                                },
                                {
                                  "id": 2416,
                                  "name": "hash",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2407,
                                  "src": "8292:4:16",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes32",
                                    "typeString": "bytes32"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_stringliteral_178a2411ab6fbc1ba11064408972259c558d0e82fd48b0aba3ad81d14f065e73",
                                    "typeString": "literal_string hex\"19457468657265756d205369676e6564204d6573736167653a0a3332\""
                                  },
                                  {
                                    "typeIdentifier": "t_bytes32",
                                    "typeString": "bytes32"
                                  }
                                ],
                                "expression": {
                                  "id": 2413,
                                  "name": "abi",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -1,
                                  "src": "8239:3:16",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_abi",
                                    "typeString": "abi"
                                  }
                                },
                                "id": 2414,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "encodePacked",
                                "nodeType": "MemberAccess",
                                "src": "8239:16:16",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$",
                                  "typeString": "function () pure returns (bytes memory)"
                                }
                              },
                              "id": 2417,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "8239:58:16",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "id": 2412,
                            "name": "keccak256",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": -8,
                            "src": "8229:9:16",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$",
                              "typeString": "function (bytes memory) pure returns (bytes32)"
                            }
                          },
                          "id": 2418,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8229:69:16",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "functionReturnParameters": 2411,
                        "id": 2419,
                        "nodeType": "Return",
                        "src": "8222:76:16"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2405,
                    "nodeType": "StructuredDocumentation",
                    "src": "7756:279:16",
                    "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": 2421,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toEthSignedMessageHash",
                  "nameLocation": "8049:22:16",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2408,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2407,
                        "mutability": "mutable",
                        "name": "hash",
                        "nameLocation": "8080:4:16",
                        "nodeType": "VariableDeclaration",
                        "scope": 2421,
                        "src": "8072:12:16",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2406,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "8072:7:16",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8071:14:16"
                  },
                  "returnParameters": {
                    "id": 2411,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2410,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2421,
                        "src": "8109:7:16",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2409,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "8109:7:16",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8108:9:16"
                  },
                  "scope": 2464,
                  "src": "8040:265:16",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2442,
                    "nodeType": "Block",
                    "src": "8670:116:16",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "hexValue": "19457468657265756d205369676e6564204d6573736167653a0a",
                                  "id": 2432,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "string",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "8714:32:16",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_stringliteral_9af2d9c228f6cfddaa6d1e5b94e0bce4ab16bd9a472a2b7fbfd74ebff4c720b4",
                                    "typeString": "literal_string hex\"19457468657265756d205369676e6564204d6573736167653a0a\""
                                  },
                                  "value": "\u0019Ethereum Signed Message:\n"
                                },
                                {
                                  "arguments": [
                                    {
                                      "expression": {
                                        "id": 2435,
                                        "name": "s",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 2424,
                                        "src": "8765:1:16",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_bytes_memory_ptr",
                                          "typeString": "bytes memory"
                                        }
                                      },
                                      "id": 2436,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "memberName": "length",
                                      "nodeType": "MemberAccess",
                                      "src": "8765:8:16",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    ],
                                    "expression": {
                                      "id": 2433,
                                      "name": "Strings",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 2074,
                                      "src": "8748:7:16",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_contract$_Strings_$2074_$",
                                        "typeString": "type(library Strings)"
                                      }
                                    },
                                    "id": 2434,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "toString",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 1956,
                                    "src": "8748:16:16",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_pure$_t_uint256_$returns$_t_string_memory_ptr_$",
                                      "typeString": "function (uint256) pure returns (string memory)"
                                    }
                                  },
                                  "id": 2437,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "8748:26:16",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_string_memory_ptr",
                                    "typeString": "string memory"
                                  }
                                },
                                {
                                  "id": 2438,
                                  "name": "s",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2424,
                                  "src": "8776:1:16",
                                  "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": 2430,
                                  "name": "abi",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -1,
                                  "src": "8697:3:16",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_abi",
                                    "typeString": "abi"
                                  }
                                },
                                "id": 2431,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "encodePacked",
                                "nodeType": "MemberAccess",
                                "src": "8697:16:16",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$",
                                  "typeString": "function () pure returns (bytes memory)"
                                }
                              },
                              "id": 2439,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "8697:81:16",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "id": 2429,
                            "name": "keccak256",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": -8,
                            "src": "8687:9:16",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$",
                              "typeString": "function (bytes memory) pure returns (bytes32)"
                            }
                          },
                          "id": 2440,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8687:92:16",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "functionReturnParameters": 2428,
                        "id": 2441,
                        "nodeType": "Return",
                        "src": "8680:99:16"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2422,
                    "nodeType": "StructuredDocumentation",
                    "src": "8311:274:16",
                    "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": 2443,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toEthSignedMessageHash",
                  "nameLocation": "8599:22:16",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2425,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2424,
                        "mutability": "mutable",
                        "name": "s",
                        "nameLocation": "8635:1:16",
                        "nodeType": "VariableDeclaration",
                        "scope": 2443,
                        "src": "8622:14:16",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 2423,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "8622:5:16",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8621:16:16"
                  },
                  "returnParameters": {
                    "id": 2428,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2427,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2443,
                        "src": "8661:7:16",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2426,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "8661:7:16",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8660:9:16"
                  },
                  "scope": 2464,
                  "src": "8590:196:16",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2462,
                    "nodeType": "Block",
                    "src": "9227:92:16",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "hexValue": "1901",
                                  "id": 2456,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "string",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "9271:10:16",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_stringliteral_301a50b291d33ce1e8e9064e3f6a6c51d902ec22892b50d58abf6357c6a45541",
                                    "typeString": "literal_string hex\"1901\""
                                  },
                                  "value": "\u0019\u0001"
                                },
                                {
                                  "id": 2457,
                                  "name": "domainSeparator",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2446,
                                  "src": "9283:15:16",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes32",
                                    "typeString": "bytes32"
                                  }
                                },
                                {
                                  "id": 2458,
                                  "name": "structHash",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2448,
                                  "src": "9300:10:16",
                                  "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": 2454,
                                  "name": "abi",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -1,
                                  "src": "9254:3:16",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_abi",
                                    "typeString": "abi"
                                  }
                                },
                                "id": 2455,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "encodePacked",
                                "nodeType": "MemberAccess",
                                "src": "9254:16:16",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$",
                                  "typeString": "function () pure returns (bytes memory)"
                                }
                              },
                              "id": 2459,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "9254:57:16",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "id": 2453,
                            "name": "keccak256",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": -8,
                            "src": "9244:9:16",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$",
                              "typeString": "function (bytes memory) pure returns (bytes32)"
                            }
                          },
                          "id": 2460,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9244:68:16",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "functionReturnParameters": 2452,
                        "id": 2461,
                        "nodeType": "Return",
                        "src": "9237:75:16"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2444,
                    "nodeType": "StructuredDocumentation",
                    "src": "8792:328:16",
                    "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": 2463,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toTypedDataHash",
                  "nameLocation": "9134:15:16",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2449,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2446,
                        "mutability": "mutable",
                        "name": "domainSeparator",
                        "nameLocation": "9158:15:16",
                        "nodeType": "VariableDeclaration",
                        "scope": 2463,
                        "src": "9150:23:16",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2445,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "9150:7:16",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2448,
                        "mutability": "mutable",
                        "name": "structHash",
                        "nameLocation": "9183:10:16",
                        "nodeType": "VariableDeclaration",
                        "scope": 2463,
                        "src": "9175:18:16",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2447,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "9175:7:16",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9149:45:16"
                  },
                  "returnParameters": {
                    "id": 2452,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2451,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2463,
                        "src": "9218:7:16",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2450,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "9218:7:16",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9217:9:16"
                  },
                  "scope": 2464,
                  "src": "9125:194:16",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 2465,
              "src": "354:8967:16",
              "usedErrors": []
            }
          ],
          "src": "97:9225:16"
        },
        "id": 16
      },
      "@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol": {
        "ast": {
          "absolutePath": "@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol",
          "exportedSymbols": {
            "ECDSA": [
              2464
            ],
            "EIP712": [
              2618
            ],
            "Strings": [
              2074
            ]
          },
          "id": 2619,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 2466,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "104:23:17"
            },
            {
              "absolutePath": "@openzeppelin/contracts/utils/cryptography/ECDSA.sol",
              "file": "./ECDSA.sol",
              "id": 2467,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 2619,
              "sourceUnit": 2465,
              "src": "129:21:17",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": true,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 2468,
                "nodeType": "StructuredDocumentation",
                "src": "152:1142:17",
                "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": 2618,
              "linearizedBaseContracts": [
                2618
              ],
              "name": "EIP712",
              "nameLocation": "1313:6:17",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "constant": false,
                  "id": 2470,
                  "mutability": "immutable",
                  "name": "_CACHED_DOMAIN_SEPARATOR",
                  "nameLocation": "1589:24:17",
                  "nodeType": "VariableDeclaration",
                  "scope": 2618,
                  "src": "1563:50:17",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 2469,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "1563:7:17",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "id": 2472,
                  "mutability": "immutable",
                  "name": "_CACHED_CHAIN_ID",
                  "nameLocation": "1645:16:17",
                  "nodeType": "VariableDeclaration",
                  "scope": 2618,
                  "src": "1619:42:17",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 2471,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "1619:7:17",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "id": 2474,
                  "mutability": "immutable",
                  "name": "_CACHED_THIS",
                  "nameLocation": "1693:12:17",
                  "nodeType": "VariableDeclaration",
                  "scope": 2618,
                  "src": "1667:38:17",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 2473,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "1667:7:17",
                    "stateMutability": "nonpayable",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "id": 2476,
                  "mutability": "immutable",
                  "name": "_HASHED_NAME",
                  "nameLocation": "1738:12:17",
                  "nodeType": "VariableDeclaration",
                  "scope": 2618,
                  "src": "1712:38:17",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 2475,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "1712:7:17",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "id": 2478,
                  "mutability": "immutable",
                  "name": "_HASHED_VERSION",
                  "nameLocation": "1782:15:17",
                  "nodeType": "VariableDeclaration",
                  "scope": 2618,
                  "src": "1756:41:17",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 2477,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "1756:7:17",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "id": 2480,
                  "mutability": "immutable",
                  "name": "_TYPE_HASH",
                  "nameLocation": "1829:10:17",
                  "nodeType": "VariableDeclaration",
                  "scope": 2618,
                  "src": "1803:36:17",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 2479,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "1803:7:17",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "body": {
                    "id": 2544,
                    "nodeType": "Block",
                    "src": "2510:547:17",
                    "statements": [
                      {
                        "assignments": [
                          2489
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 2489,
                            "mutability": "mutable",
                            "name": "hashedName",
                            "nameLocation": "2528:10:17",
                            "nodeType": "VariableDeclaration",
                            "scope": 2544,
                            "src": "2520:18:17",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes32",
                              "typeString": "bytes32"
                            },
                            "typeName": {
                              "id": 2488,
                              "name": "bytes32",
                              "nodeType": "ElementaryTypeName",
                              "src": "2520:7:17",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 2496,
                        "initialValue": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 2493,
                                  "name": "name",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2483,
                                  "src": "2557:4:17",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_string_memory_ptr",
                                    "typeString": "string memory"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_string_memory_ptr",
                                    "typeString": "string memory"
                                  }
                                ],
                                "id": 2492,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "2551:5:17",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_bytes_storage_ptr_$",
                                  "typeString": "type(bytes storage pointer)"
                                },
                                "typeName": {
                                  "id": 2491,
                                  "name": "bytes",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "2551:5:17",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 2494,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "2551:11:17",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "id": 2490,
                            "name": "keccak256",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": -8,
                            "src": "2541:9:17",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$",
                              "typeString": "function (bytes memory) pure returns (bytes32)"
                            }
                          },
                          "id": 2495,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2541:22:17",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2520:43:17"
                      },
                      {
                        "assignments": [
                          2498
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 2498,
                            "mutability": "mutable",
                            "name": "hashedVersion",
                            "nameLocation": "2581:13:17",
                            "nodeType": "VariableDeclaration",
                            "scope": 2544,
                            "src": "2573:21:17",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes32",
                              "typeString": "bytes32"
                            },
                            "typeName": {
                              "id": 2497,
                              "name": "bytes32",
                              "nodeType": "ElementaryTypeName",
                              "src": "2573:7:17",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 2505,
                        "initialValue": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 2502,
                                  "name": "version",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2485,
                                  "src": "2613:7:17",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_string_memory_ptr",
                                    "typeString": "string memory"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_string_memory_ptr",
                                    "typeString": "string memory"
                                  }
                                ],
                                "id": 2501,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "2607:5:17",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_bytes_storage_ptr_$",
                                  "typeString": "type(bytes storage pointer)"
                                },
                                "typeName": {
                                  "id": 2500,
                                  "name": "bytes",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "2607:5:17",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 2503,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "2607:14:17",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "id": 2499,
                            "name": "keccak256",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": -8,
                            "src": "2597:9:17",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$",
                              "typeString": "function (bytes memory) pure returns (bytes32)"
                            }
                          },
                          "id": 2504,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2597:25:17",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2573:49:17"
                      },
                      {
                        "assignments": [
                          2507
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 2507,
                            "mutability": "mutable",
                            "name": "typeHash",
                            "nameLocation": "2640:8:17",
                            "nodeType": "VariableDeclaration",
                            "scope": 2544,
                            "src": "2632:16:17",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes32",
                              "typeString": "bytes32"
                            },
                            "typeName": {
                              "id": 2506,
                              "name": "bytes32",
                              "nodeType": "ElementaryTypeName",
                              "src": "2632:7:17",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 2511,
                        "initialValue": {
                          "arguments": [
                            {
                              "hexValue": "454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c75696e7432353620636861696e49642c6164647265737320766572696679696e67436f6e747261637429",
                              "id": 2509,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2674:84:17",
                              "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": 2508,
                            "name": "keccak256",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": -8,
                            "src": "2651:9:17",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$",
                              "typeString": "function (bytes memory) pure returns (bytes32)"
                            }
                          },
                          "id": 2510,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2651:117:17",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2632:136:17"
                      },
                      {
                        "expression": {
                          "id": 2514,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 2512,
                            "name": "_HASHED_NAME",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 2476,
                            "src": "2778:12:17",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes32",
                              "typeString": "bytes32"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 2513,
                            "name": "hashedName",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 2489,
                            "src": "2793:10:17",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes32",
                              "typeString": "bytes32"
                            }
                          },
                          "src": "2778:25:17",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "id": 2515,
                        "nodeType": "ExpressionStatement",
                        "src": "2778:25:17"
                      },
                      {
                        "expression": {
                          "id": 2518,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 2516,
                            "name": "_HASHED_VERSION",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 2478,
                            "src": "2813:15:17",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes32",
                              "typeString": "bytes32"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 2517,
                            "name": "hashedVersion",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 2498,
                            "src": "2831:13:17",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes32",
                              "typeString": "bytes32"
                            }
                          },
                          "src": "2813:31:17",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "id": 2519,
                        "nodeType": "ExpressionStatement",
                        "src": "2813:31:17"
                      },
                      {
                        "expression": {
                          "id": 2523,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 2520,
                            "name": "_CACHED_CHAIN_ID",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 2472,
                            "src": "2854:16:17",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "expression": {
                              "id": 2521,
                              "name": "block",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": -4,
                              "src": "2873:5:17",
                              "typeDescriptions": {
                                "typeIdentifier": "t_magic_block",
                                "typeString": "block"
                              }
                            },
                            "id": 2522,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "chainid",
                            "nodeType": "MemberAccess",
                            "src": "2873:13:17",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "2854:32:17",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 2524,
                        "nodeType": "ExpressionStatement",
                        "src": "2854:32:17"
                      },
                      {
                        "expression": {
                          "id": 2531,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 2525,
                            "name": "_CACHED_DOMAIN_SEPARATOR",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 2470,
                            "src": "2896:24:17",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes32",
                              "typeString": "bytes32"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "id": 2527,
                                "name": "typeHash",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2507,
                                "src": "2945:8:17",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bytes32",
                                  "typeString": "bytes32"
                                }
                              },
                              {
                                "id": 2528,
                                "name": "hashedName",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2489,
                                "src": "2955:10:17",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bytes32",
                                  "typeString": "bytes32"
                                }
                              },
                              {
                                "id": 2529,
                                "name": "hashedVersion",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2498,
                                "src": "2967:13:17",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bytes32",
                                  "typeString": "bytes32"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_bytes32",
                                  "typeString": "bytes32"
                                },
                                {
                                  "typeIdentifier": "t_bytes32",
                                  "typeString": "bytes32"
                                },
                                {
                                  "typeIdentifier": "t_bytes32",
                                  "typeString": "bytes32"
                                }
                              ],
                              "id": 2526,
                              "name": "_buildDomainSeparator",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2601,
                              "src": "2923:21:17",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_view$_t_bytes32_$_t_bytes32_$_t_bytes32_$returns$_t_bytes32_$",
                                "typeString": "function (bytes32,bytes32,bytes32) view returns (bytes32)"
                              }
                            },
                            "id": 2530,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "2923:58:17",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes32",
                              "typeString": "bytes32"
                            }
                          },
                          "src": "2896:85:17",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "id": 2532,
                        "nodeType": "ExpressionStatement",
                        "src": "2896:85:17"
                      },
                      {
                        "expression": {
                          "id": 2538,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 2533,
                            "name": "_CACHED_THIS",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 2474,
                            "src": "2991:12:17",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "id": 2536,
                                "name": "this",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -28,
                                "src": "3014:4:17",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_contract$_EIP712_$2618",
                                  "typeString": "contract EIP712"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_contract$_EIP712_$2618",
                                  "typeString": "contract EIP712"
                                }
                              ],
                              "id": 2535,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "nodeType": "ElementaryTypeNameExpression",
                              "src": "3006:7:17",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_address_$",
                                "typeString": "type(address)"
                              },
                              "typeName": {
                                "id": 2534,
                                "name": "address",
                                "nodeType": "ElementaryTypeName",
                                "src": "3006:7:17",
                                "typeDescriptions": {}
                              }
                            },
                            "id": 2537,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "typeConversion",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "3006:13:17",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "2991:28:17",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "id": 2539,
                        "nodeType": "ExpressionStatement",
                        "src": "2991:28:17"
                      },
                      {
                        "expression": {
                          "id": 2542,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 2540,
                            "name": "_TYPE_HASH",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 2480,
                            "src": "3029:10:17",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes32",
                              "typeString": "bytes32"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 2541,
                            "name": "typeHash",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 2507,
                            "src": "3042:8:17",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes32",
                              "typeString": "bytes32"
                            }
                          },
                          "src": "3029:21:17",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "id": 2543,
                        "nodeType": "ExpressionStatement",
                        "src": "3029:21:17"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2481,
                    "nodeType": "StructuredDocumentation",
                    "src": "1891:559:17",
                    "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": 2545,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2486,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2483,
                        "mutability": "mutable",
                        "name": "name",
                        "nameLocation": "2481:4:17",
                        "nodeType": "VariableDeclaration",
                        "scope": 2545,
                        "src": "2467:18:17",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 2482,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "2467:6:17",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2485,
                        "mutability": "mutable",
                        "name": "version",
                        "nameLocation": "2501:7:17",
                        "nodeType": "VariableDeclaration",
                        "scope": 2545,
                        "src": "2487:21:17",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 2484,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "2487:6:17",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2466:43:17"
                  },
                  "returnParameters": {
                    "id": 2487,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2510:0:17"
                  },
                  "scope": 2618,
                  "src": "2455:602:17",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2573,
                    "nodeType": "Block",
                    "src": "3205:246:17",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "id": 2561,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "commonType": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            },
                            "id": 2556,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "arguments": [
                                {
                                  "id": 2553,
                                  "name": "this",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -28,
                                  "src": "3227:4:17",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_EIP712_$2618",
                                    "typeString": "contract EIP712"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_EIP712_$2618",
                                    "typeString": "contract EIP712"
                                  }
                                ],
                                "id": 2552,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "3219:7:17",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 2551,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "3219:7:17",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 2554,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "3219:13:17",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "==",
                            "rightExpression": {
                              "id": 2555,
                              "name": "_CACHED_THIS",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2474,
                              "src": "3236:12:17",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "src": "3219:29:17",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "&&",
                          "rightExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "id": 2560,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "expression": {
                                "id": 2557,
                                "name": "block",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -4,
                                "src": "3252:5:17",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_block",
                                  "typeString": "block"
                                }
                              },
                              "id": 2558,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "chainid",
                              "nodeType": "MemberAccess",
                              "src": "3252:13:17",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "==",
                            "rightExpression": {
                              "id": 2559,
                              "name": "_CACHED_CHAIN_ID",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2472,
                              "src": "3269:16:17",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "src": "3252:33:17",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "src": "3219:66:17",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "falseBody": {
                          "id": 2571,
                          "nodeType": "Block",
                          "src": "3349:96:17",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "id": 2566,
                                    "name": "_TYPE_HASH",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 2480,
                                    "src": "3392:10:17",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bytes32",
                                      "typeString": "bytes32"
                                    }
                                  },
                                  {
                                    "id": 2567,
                                    "name": "_HASHED_NAME",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 2476,
                                    "src": "3404:12:17",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bytes32",
                                      "typeString": "bytes32"
                                    }
                                  },
                                  {
                                    "id": 2568,
                                    "name": "_HASHED_VERSION",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 2478,
                                    "src": "3418:15:17",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bytes32",
                                      "typeString": "bytes32"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_bytes32",
                                      "typeString": "bytes32"
                                    },
                                    {
                                      "typeIdentifier": "t_bytes32",
                                      "typeString": "bytes32"
                                    },
                                    {
                                      "typeIdentifier": "t_bytes32",
                                      "typeString": "bytes32"
                                    }
                                  ],
                                  "id": 2565,
                                  "name": "_buildDomainSeparator",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2601,
                                  "src": "3370:21:17",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_view$_t_bytes32_$_t_bytes32_$_t_bytes32_$returns$_t_bytes32_$",
                                    "typeString": "function (bytes32,bytes32,bytes32) view returns (bytes32)"
                                  }
                                },
                                "id": 2569,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "3370:64:17",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bytes32",
                                  "typeString": "bytes32"
                                }
                              },
                              "functionReturnParameters": 2550,
                              "id": 2570,
                              "nodeType": "Return",
                              "src": "3363:71:17"
                            }
                          ]
                        },
                        "id": 2572,
                        "nodeType": "IfStatement",
                        "src": "3215:230:17",
                        "trueBody": {
                          "id": 2564,
                          "nodeType": "Block",
                          "src": "3287:56:17",
                          "statements": [
                            {
                              "expression": {
                                "id": 2562,
                                "name": "_CACHED_DOMAIN_SEPARATOR",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2470,
                                "src": "3308:24:17",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bytes32",
                                  "typeString": "bytes32"
                                }
                              },
                              "functionReturnParameters": 2550,
                              "id": 2563,
                              "nodeType": "Return",
                              "src": "3301:31:17"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2546,
                    "nodeType": "StructuredDocumentation",
                    "src": "3063:75:17",
                    "text": " @dev Returns the domain separator for the current chain."
                  },
                  "id": 2574,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_domainSeparatorV4",
                  "nameLocation": "3152:18:17",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2547,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3170:2:17"
                  },
                  "returnParameters": {
                    "id": 2550,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2549,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2574,
                        "src": "3196:7:17",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2548,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "3196:7:17",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3195:9:17"
                  },
                  "scope": 2618,
                  "src": "3143:308:17",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2600,
                    "nodeType": "Block",
                    "src": "3606:108:17",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 2588,
                                  "name": "typeHash",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2576,
                                  "src": "3644:8:17",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes32",
                                    "typeString": "bytes32"
                                  }
                                },
                                {
                                  "id": 2589,
                                  "name": "nameHash",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2578,
                                  "src": "3654:8:17",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes32",
                                    "typeString": "bytes32"
                                  }
                                },
                                {
                                  "id": 2590,
                                  "name": "versionHash",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2580,
                                  "src": "3664:11:17",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes32",
                                    "typeString": "bytes32"
                                  }
                                },
                                {
                                  "expression": {
                                    "id": 2591,
                                    "name": "block",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -4,
                                    "src": "3677:5:17",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_block",
                                      "typeString": "block"
                                    }
                                  },
                                  "id": 2592,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "chainid",
                                  "nodeType": "MemberAccess",
                                  "src": "3677:13:17",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                {
                                  "arguments": [
                                    {
                                      "id": 2595,
                                      "name": "this",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -28,
                                      "src": "3700:4:17",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_contract$_EIP712_$2618",
                                        "typeString": "contract EIP712"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_contract$_EIP712_$2618",
                                        "typeString": "contract EIP712"
                                      }
                                    ],
                                    "id": 2594,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "ElementaryTypeNameExpression",
                                    "src": "3692:7:17",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_address_$",
                                      "typeString": "type(address)"
                                    },
                                    "typeName": {
                                      "id": 2593,
                                      "name": "address",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "3692:7:17",
                                      "typeDescriptions": {}
                                    }
                                  },
                                  "id": 2596,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "typeConversion",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "3692:13:17",
                                  "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": 2586,
                                  "name": "abi",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -1,
                                  "src": "3633:3:17",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_abi",
                                    "typeString": "abi"
                                  }
                                },
                                "id": 2587,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "encode",
                                "nodeType": "MemberAccess",
                                "src": "3633:10:17",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$",
                                  "typeString": "function () pure returns (bytes memory)"
                                }
                              },
                              "id": 2597,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "3633:73:17",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "id": 2585,
                            "name": "keccak256",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": -8,
                            "src": "3623:9:17",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$",
                              "typeString": "function (bytes memory) pure returns (bytes32)"
                            }
                          },
                          "id": 2598,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3623:84:17",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "functionReturnParameters": 2584,
                        "id": 2599,
                        "nodeType": "Return",
                        "src": "3616:91:17"
                      }
                    ]
                  },
                  "id": 2601,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_buildDomainSeparator",
                  "nameLocation": "3466:21:17",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2581,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2576,
                        "mutability": "mutable",
                        "name": "typeHash",
                        "nameLocation": "3505:8:17",
                        "nodeType": "VariableDeclaration",
                        "scope": 2601,
                        "src": "3497:16:17",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2575,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "3497:7:17",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2578,
                        "mutability": "mutable",
                        "name": "nameHash",
                        "nameLocation": "3531:8:17",
                        "nodeType": "VariableDeclaration",
                        "scope": 2601,
                        "src": "3523:16:17",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2577,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "3523:7:17",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2580,
                        "mutability": "mutable",
                        "name": "versionHash",
                        "nameLocation": "3557:11:17",
                        "nodeType": "VariableDeclaration",
                        "scope": 2601,
                        "src": "3549:19:17",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2579,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "3549:7:17",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3487:87:17"
                  },
                  "returnParameters": {
                    "id": 2584,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2583,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2601,
                        "src": "3597:7:17",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2582,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "3597:7:17",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3596:9:17"
                  },
                  "scope": 2618,
                  "src": "3457:257:17",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "private"
                },
                {
                  "body": {
                    "id": 2616,
                    "nodeType": "Block",
                    "src": "4425:79:17",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "id": 2611,
                                "name": "_domainSeparatorV4",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2574,
                                "src": "4464:18:17",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$__$returns$_t_bytes32_$",
                                  "typeString": "function () view returns (bytes32)"
                                }
                              },
                              "id": 2612,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "4464:20:17",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            {
                              "id": 2613,
                              "name": "structHash",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2604,
                              "src": "4486:10:17",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              },
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            ],
                            "expression": {
                              "id": 2609,
                              "name": "ECDSA",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2464,
                              "src": "4442:5:17",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_ECDSA_$2464_$",
                                "typeString": "type(library ECDSA)"
                              }
                            },
                            "id": 2610,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "toTypedDataHash",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 2463,
                            "src": "4442:21:17",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_bytes32_$_t_bytes32_$returns$_t_bytes32_$",
                              "typeString": "function (bytes32,bytes32) pure returns (bytes32)"
                            }
                          },
                          "id": 2614,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4442:55:17",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "functionReturnParameters": 2608,
                        "id": 2615,
                        "nodeType": "Return",
                        "src": "4435:62:17"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2602,
                    "nodeType": "StructuredDocumentation",
                    "src": "3720:614:17",
                    "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": 2617,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_hashTypedDataV4",
                  "nameLocation": "4348:16:17",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2605,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2604,
                        "mutability": "mutable",
                        "name": "structHash",
                        "nameLocation": "4373:10:17",
                        "nodeType": "VariableDeclaration",
                        "scope": 2617,
                        "src": "4365:18:17",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2603,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4365:7:17",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4364:20:17"
                  },
                  "returnParameters": {
                    "id": 2608,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2607,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2617,
                        "src": "4416:7:17",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 2606,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4416:7:17",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4415:9:17"
                  },
                  "scope": 2618,
                  "src": "4339:165:17",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "internal"
                }
              ],
              "scope": 2619,
              "src": "1295:3211:17",
              "usedErrors": []
            }
          ],
          "src": "104:4403:17"
        },
        "id": 17
      },
      "@openzeppelin/contracts/utils/introspection/ERC165Checker.sol": {
        "ast": {
          "absolutePath": "@openzeppelin/contracts/utils/introspection/ERC165Checker.sol",
          "exportedSymbols": {
            "ERC165Checker": [
              2820
            ],
            "IERC165": [
              2832
            ]
          },
          "id": 2821,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 2620,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "106:23:18"
            },
            {
              "absolutePath": "@openzeppelin/contracts/utils/introspection/IERC165.sol",
              "file": "./IERC165.sol",
              "id": 2621,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 2821,
              "sourceUnit": 2833,
              "src": "131:23:18",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "library",
              "documentation": {
                "id": 2622,
                "nodeType": "StructuredDocumentation",
                "src": "156:277:18",
                "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": 2820,
              "linearizedBaseContracts": [
                2820
              ],
              "name": "ERC165Checker",
              "nameLocation": "442:13:18",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "constant": true,
                  "id": 2625,
                  "mutability": "constant",
                  "name": "_INTERFACE_ID_INVALID",
                  "nameLocation": "560:21:18",
                  "nodeType": "VariableDeclaration",
                  "scope": 2820,
                  "src": "536:58:18",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes4",
                    "typeString": "bytes4"
                  },
                  "typeName": {
                    "id": 2623,
                    "name": "bytes4",
                    "nodeType": "ElementaryTypeName",
                    "src": "536:6:18",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes4",
                      "typeString": "bytes4"
                    }
                  },
                  "value": {
                    "hexValue": "30786666666666666666",
                    "id": 2624,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "number",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "584:10:18",
                    "typeDescriptions": {
                      "typeIdentifier": "t_rational_4294967295_by_1",
                      "typeString": "int_const 4294967295"
                    },
                    "value": "0xffffffff"
                  },
                  "visibility": "private"
                },
                {
                  "body": {
                    "id": 2647,
                    "nodeType": "Block",
                    "src": "759:341:18",
                    "statements": [
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "id": 2645,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "arguments": [
                              {
                                "id": 2634,
                                "name": "account",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2628,
                                "src": "985:7:18",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              {
                                "expression": {
                                  "arguments": [
                                    {
                                      "id": 2636,
                                      "name": "IERC165",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 2832,
                                      "src": "999:7:18",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_contract$_IERC165_$2832_$",
                                        "typeString": "type(contract IERC165)"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_type$_t_contract$_IERC165_$2832_$",
                                        "typeString": "type(contract IERC165)"
                                      }
                                    ],
                                    "id": 2635,
                                    "name": "type",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -27,
                                    "src": "994:4:18",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                      "typeString": "function () pure"
                                    }
                                  },
                                  "id": 2637,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "994:13:18",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_meta_type_t_contract$_IERC165_$2832",
                                    "typeString": "type(contract IERC165)"
                                  }
                                },
                                "id": 2638,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "interfaceId",
                                "nodeType": "MemberAccess",
                                "src": "994:25:18",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bytes4",
                                  "typeString": "bytes4"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                },
                                {
                                  "typeIdentifier": "t_bytes4",
                                  "typeString": "bytes4"
                                }
                              ],
                              "id": 2633,
                              "name": "_supportsERC165Interface",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2819,
                              "src": "960:24:18",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_view$_t_address_$_t_bytes4_$returns$_t_bool_$",
                                "typeString": "function (address,bytes4) view returns (bool)"
                              }
                            },
                            "id": 2639,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "960:60:18",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "&&",
                          "rightExpression": {
                            "id": 2644,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "!",
                            "prefix": true,
                            "src": "1036:57:18",
                            "subExpression": {
                              "arguments": [
                                {
                                  "id": 2641,
                                  "name": "account",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2628,
                                  "src": "1062:7:18",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "id": 2642,
                                  "name": "_INTERFACE_ID_INVALID",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2625,
                                  "src": "1071:21:18",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes4",
                                    "typeString": "bytes4"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  {
                                    "typeIdentifier": "t_bytes4",
                                    "typeString": "bytes4"
                                  }
                                ],
                                "id": 2640,
                                "name": "_supportsERC165Interface",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2819,
                                "src": "1037:24:18",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$_t_address_$_t_bytes4_$returns$_t_bool_$",
                                  "typeString": "function (address,bytes4) view returns (bool)"
                                }
                              },
                              "id": 2643,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "1037:56:18",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "src": "960:133:18",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 2632,
                        "id": 2646,
                        "nodeType": "Return",
                        "src": "941:152:18"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2626,
                    "nodeType": "StructuredDocumentation",
                    "src": "601:83:18",
                    "text": " @dev Returns true if `account` supports the {IERC165} interface,"
                  },
                  "id": 2648,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "supportsERC165",
                  "nameLocation": "698:14:18",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2629,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2628,
                        "mutability": "mutable",
                        "name": "account",
                        "nameLocation": "721:7:18",
                        "nodeType": "VariableDeclaration",
                        "scope": 2648,
                        "src": "713:15:18",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 2627,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "713:7:18",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "712:17:18"
                  },
                  "returnParameters": {
                    "id": 2632,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2631,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2648,
                        "src": "753:4:18",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 2630,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "753:4:18",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "752:6:18"
                  },
                  "scope": 2820,
                  "src": "689:411:18",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2667,
                    "nodeType": "Block",
                    "src": "1411:181:18",
                    "statements": [
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "id": 2665,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "arguments": [
                              {
                                "id": 2659,
                                "name": "account",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2651,
                                "src": "1527:7:18",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              ],
                              "id": 2658,
                              "name": "supportsERC165",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2648,
                              "src": "1512:14:18",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_view$_t_address_$returns$_t_bool_$",
                                "typeString": "function (address) view returns (bool)"
                              }
                            },
                            "id": 2660,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "1512:23:18",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "&&",
                          "rightExpression": {
                            "arguments": [
                              {
                                "id": 2662,
                                "name": "account",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2651,
                                "src": "1564:7:18",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              {
                                "id": 2663,
                                "name": "interfaceId",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2653,
                                "src": "1573:11:18",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bytes4",
                                  "typeString": "bytes4"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                },
                                {
                                  "typeIdentifier": "t_bytes4",
                                  "typeString": "bytes4"
                                }
                              ],
                              "id": 2661,
                              "name": "_supportsERC165Interface",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2819,
                              "src": "1539:24:18",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_view$_t_address_$_t_bytes4_$returns$_t_bool_$",
                                "typeString": "function (address,bytes4) view returns (bool)"
                              }
                            },
                            "id": 2664,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "1539:46:18",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "src": "1512:73:18",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 2657,
                        "id": 2666,
                        "nodeType": "Return",
                        "src": "1505:80:18"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2649,
                    "nodeType": "StructuredDocumentation",
                    "src": "1106:207:18",
                    "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": 2668,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "supportsInterface",
                  "nameLocation": "1327:17:18",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2654,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2651,
                        "mutability": "mutable",
                        "name": "account",
                        "nameLocation": "1353:7:18",
                        "nodeType": "VariableDeclaration",
                        "scope": 2668,
                        "src": "1345:15:18",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 2650,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1345:7:18",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2653,
                        "mutability": "mutable",
                        "name": "interfaceId",
                        "nameLocation": "1369:11:18",
                        "nodeType": "VariableDeclaration",
                        "scope": 2668,
                        "src": "1362:18:18",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes4",
                          "typeString": "bytes4"
                        },
                        "typeName": {
                          "id": 2652,
                          "name": "bytes4",
                          "nodeType": "ElementaryTypeName",
                          "src": "1362:6:18",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes4",
                            "typeString": "bytes4"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1344:37:18"
                  },
                  "returnParameters": {
                    "id": 2657,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2656,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2668,
                        "src": "1405:4:18",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 2655,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "1405:4:18",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1404:6:18"
                  },
                  "scope": 2820,
                  "src": "1318:274:18",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2723,
                    "nodeType": "Block",
                    "src": "2122:552:18",
                    "statements": [
                      {
                        "assignments": [
                          2684
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 2684,
                            "mutability": "mutable",
                            "name": "interfaceIdsSupported",
                            "nameLocation": "2245:21:18",
                            "nodeType": "VariableDeclaration",
                            "scope": 2723,
                            "src": "2231:35:18",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_bool_$dyn_memory_ptr",
                              "typeString": "bool[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 2682,
                                "name": "bool",
                                "nodeType": "ElementaryTypeName",
                                "src": "2231:4:18",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "id": 2683,
                              "nodeType": "ArrayTypeName",
                              "src": "2231:6:18",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_bool_$dyn_storage_ptr",
                                "typeString": "bool[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 2691,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 2688,
                                "name": "interfaceIds",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2674,
                                "src": "2280:12:18",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_bytes4_$dyn_memory_ptr",
                                  "typeString": "bytes4[] memory"
                                }
                              },
                              "id": 2689,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "length",
                              "nodeType": "MemberAccess",
                              "src": "2280:19:18",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 2687,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "2269:10:18",
                            "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": 2685,
                                "name": "bool",
                                "nodeType": "ElementaryTypeName",
                                "src": "2273:4:18",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "id": 2686,
                              "nodeType": "ArrayTypeName",
                              "src": "2273:6:18",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_bool_$dyn_storage_ptr",
                                "typeString": "bool[]"
                              }
                            }
                          },
                          "id": 2690,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2269:31:18",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_bool_$dyn_memory_ptr",
                            "typeString": "bool[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2231:69:18"
                      },
                      {
                        "condition": {
                          "arguments": [
                            {
                              "id": 2693,
                              "name": "account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2671,
                              "src": "2372:7:18",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 2692,
                            "name": "supportsERC165",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 2648,
                            "src": "2357:14:18",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_address_$returns$_t_bool_$",
                              "typeString": "function (address) view returns (bool)"
                            }
                          },
                          "id": 2694,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2357:23:18",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 2720,
                        "nodeType": "IfStatement",
                        "src": "2353:276:18",
                        "trueBody": {
                          "id": 2719,
                          "nodeType": "Block",
                          "src": "2382:247:18",
                          "statements": [
                            {
                              "body": {
                                "id": 2717,
                                "nodeType": "Block",
                                "src": "2509:110:18",
                                "statements": [
                                  {
                                    "expression": {
                                      "id": 2715,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftHandSide": {
                                        "baseExpression": {
                                          "id": 2706,
                                          "name": "interfaceIdsSupported",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 2684,
                                          "src": "2527:21:18",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_array$_t_bool_$dyn_memory_ptr",
                                            "typeString": "bool[] memory"
                                          }
                                        },
                                        "id": 2708,
                                        "indexExpression": {
                                          "id": 2707,
                                          "name": "i",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 2696,
                                          "src": "2549:1:18",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "isConstant": false,
                                        "isLValue": true,
                                        "isPure": false,
                                        "lValueRequested": true,
                                        "nodeType": "IndexAccess",
                                        "src": "2527:24:18",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_bool",
                                          "typeString": "bool"
                                        }
                                      },
                                      "nodeType": "Assignment",
                                      "operator": "=",
                                      "rightHandSide": {
                                        "arguments": [
                                          {
                                            "id": 2710,
                                            "name": "account",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 2671,
                                            "src": "2579:7:18",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_address",
                                              "typeString": "address"
                                            }
                                          },
                                          {
                                            "baseExpression": {
                                              "id": 2711,
                                              "name": "interfaceIds",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 2674,
                                              "src": "2588:12:18",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_array$_t_bytes4_$dyn_memory_ptr",
                                                "typeString": "bytes4[] memory"
                                              }
                                            },
                                            "id": 2713,
                                            "indexExpression": {
                                              "id": 2712,
                                              "name": "i",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 2696,
                                              "src": "2601:1:18",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_uint256",
                                                "typeString": "uint256"
                                              }
                                            },
                                            "isConstant": false,
                                            "isLValue": true,
                                            "isPure": false,
                                            "lValueRequested": false,
                                            "nodeType": "IndexAccess",
                                            "src": "2588:15:18",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_bytes4",
                                              "typeString": "bytes4"
                                            }
                                          }
                                        ],
                                        "expression": {
                                          "argumentTypes": [
                                            {
                                              "typeIdentifier": "t_address",
                                              "typeString": "address"
                                            },
                                            {
                                              "typeIdentifier": "t_bytes4",
                                              "typeString": "bytes4"
                                            }
                                          ],
                                          "id": 2709,
                                          "name": "_supportsERC165Interface",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 2819,
                                          "src": "2554:24:18",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_function_internal_view$_t_address_$_t_bytes4_$returns$_t_bool_$",
                                            "typeString": "function (address,bytes4) view returns (bool)"
                                          }
                                        },
                                        "id": 2714,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "kind": "functionCall",
                                        "lValueRequested": false,
                                        "names": [],
                                        "nodeType": "FunctionCall",
                                        "src": "2554:50:18",
                                        "tryCall": false,
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_bool",
                                          "typeString": "bool"
                                        }
                                      },
                                      "src": "2527:77:18",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_bool",
                                        "typeString": "bool"
                                      }
                                    },
                                    "id": 2716,
                                    "nodeType": "ExpressionStatement",
                                    "src": "2527:77:18"
                                  }
                                ]
                              },
                              "condition": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 2702,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 2699,
                                  "name": "i",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2696,
                                  "src": "2479:1:18",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "<",
                                "rightExpression": {
                                  "expression": {
                                    "id": 2700,
                                    "name": "interfaceIds",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 2674,
                                    "src": "2483:12:18",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_bytes4_$dyn_memory_ptr",
                                      "typeString": "bytes4[] memory"
                                    }
                                  },
                                  "id": 2701,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "length",
                                  "nodeType": "MemberAccess",
                                  "src": "2483:19:18",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "2479:23:18",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "id": 2718,
                              "initializationExpression": {
                                "assignments": [
                                  2696
                                ],
                                "declarations": [
                                  {
                                    "constant": false,
                                    "id": 2696,
                                    "mutability": "mutable",
                                    "name": "i",
                                    "nameLocation": "2472:1:18",
                                    "nodeType": "VariableDeclaration",
                                    "scope": 2718,
                                    "src": "2464:9:18",
                                    "stateVariable": false,
                                    "storageLocation": "default",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    },
                                    "typeName": {
                                      "id": 2695,
                                      "name": "uint256",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "2464:7:18",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "visibility": "internal"
                                  }
                                ],
                                "id": 2698,
                                "initialValue": {
                                  "hexValue": "30",
                                  "id": 2697,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "2476:1:18",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                },
                                "nodeType": "VariableDeclarationStatement",
                                "src": "2464:13:18"
                              },
                              "loopExpression": {
                                "expression": {
                                  "id": 2704,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "UnaryOperation",
                                  "operator": "++",
                                  "prefix": false,
                                  "src": "2504:3:18",
                                  "subExpression": {
                                    "id": 2703,
                                    "name": "i",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 2696,
                                    "src": "2504:1:18",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "id": 2705,
                                "nodeType": "ExpressionStatement",
                                "src": "2504:3:18"
                              },
                              "nodeType": "ForStatement",
                              "src": "2459:160:18"
                            }
                          ]
                        }
                      },
                      {
                        "expression": {
                          "id": 2721,
                          "name": "interfaceIdsSupported",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 2684,
                          "src": "2646:21:18",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_bool_$dyn_memory_ptr",
                            "typeString": "bool[] memory"
                          }
                        },
                        "functionReturnParameters": 2679,
                        "id": 2722,
                        "nodeType": "Return",
                        "src": "2639:28:18"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2669,
                    "nodeType": "StructuredDocumentation",
                    "src": "1598:374:18",
                    "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": 2724,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getSupportedInterfaces",
                  "nameLocation": "1986:22:18",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2675,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2671,
                        "mutability": "mutable",
                        "name": "account",
                        "nameLocation": "2017:7:18",
                        "nodeType": "VariableDeclaration",
                        "scope": 2724,
                        "src": "2009:15:18",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 2670,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2009:7:18",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2674,
                        "mutability": "mutable",
                        "name": "interfaceIds",
                        "nameLocation": "2042:12:18",
                        "nodeType": "VariableDeclaration",
                        "scope": 2724,
                        "src": "2026:28:18",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_bytes4_$dyn_memory_ptr",
                          "typeString": "bytes4[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 2672,
                            "name": "bytes4",
                            "nodeType": "ElementaryTypeName",
                            "src": "2026:6:18",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes4",
                              "typeString": "bytes4"
                            }
                          },
                          "id": 2673,
                          "nodeType": "ArrayTypeName",
                          "src": "2026:8:18",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_bytes4_$dyn_storage_ptr",
                            "typeString": "bytes4[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2008:47:18"
                  },
                  "returnParameters": {
                    "id": 2679,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2678,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2724,
                        "src": "2103:13:18",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_bool_$dyn_memory_ptr",
                          "typeString": "bool[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 2676,
                            "name": "bool",
                            "nodeType": "ElementaryTypeName",
                            "src": "2103:4:18",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "id": 2677,
                          "nodeType": "ArrayTypeName",
                          "src": "2103:6:18",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_bool_$dyn_storage_ptr",
                            "typeString": "bool[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2102:15:18"
                  },
                  "scope": 2820,
                  "src": "1977:697:18",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2769,
                    "nodeType": "Block",
                    "src": "3116:429:18",
                    "statements": [
                      {
                        "condition": {
                          "id": 2738,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "UnaryOperation",
                          "operator": "!",
                          "prefix": true,
                          "src": "3172:24:18",
                          "subExpression": {
                            "arguments": [
                              {
                                "id": 2736,
                                "name": "account",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2727,
                                "src": "3188:7:18",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              ],
                              "id": 2735,
                              "name": "supportsERC165",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2648,
                              "src": "3173:14:18",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_view$_t_address_$returns$_t_bool_$",
                                "typeString": "function (address) view returns (bool)"
                              }
                            },
                            "id": 2737,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "3173:23:18",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 2742,
                        "nodeType": "IfStatement",
                        "src": "3168:67:18",
                        "trueBody": {
                          "id": 2741,
                          "nodeType": "Block",
                          "src": "3198:37:18",
                          "statements": [
                            {
                              "expression": {
                                "hexValue": "66616c7365",
                                "id": 2739,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "bool",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "3219:5:18",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                },
                                "value": "false"
                              },
                              "functionReturnParameters": 2734,
                              "id": 2740,
                              "nodeType": "Return",
                              "src": "3212:12:18"
                            }
                          ]
                        }
                      },
                      {
                        "body": {
                          "id": 2765,
                          "nodeType": "Block",
                          "src": "3355:126:18",
                          "statements": [
                            {
                              "condition": {
                                "id": 2760,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "UnaryOperation",
                                "operator": "!",
                                "prefix": true,
                                "src": "3373:51:18",
                                "subExpression": {
                                  "arguments": [
                                    {
                                      "id": 2755,
                                      "name": "account",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 2727,
                                      "src": "3399:7:18",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_address",
                                        "typeString": "address"
                                      }
                                    },
                                    {
                                      "baseExpression": {
                                        "id": 2756,
                                        "name": "interfaceIds",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 2730,
                                        "src": "3408:12:18",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_array$_t_bytes4_$dyn_memory_ptr",
                                          "typeString": "bytes4[] memory"
                                        }
                                      },
                                      "id": 2758,
                                      "indexExpression": {
                                        "id": 2757,
                                        "name": "i",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 2744,
                                        "src": "3421:1:18",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "nodeType": "IndexAccess",
                                      "src": "3408:15:18",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_bytes4",
                                        "typeString": "bytes4"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_address",
                                        "typeString": "address"
                                      },
                                      {
                                        "typeIdentifier": "t_bytes4",
                                        "typeString": "bytes4"
                                      }
                                    ],
                                    "id": 2754,
                                    "name": "_supportsERC165Interface",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 2819,
                                    "src": "3374:24:18",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_view$_t_address_$_t_bytes4_$returns$_t_bool_$",
                                      "typeString": "function (address,bytes4) view returns (bool)"
                                    }
                                  },
                                  "id": 2759,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "3374:50:18",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bool",
                                    "typeString": "bool"
                                  }
                                },
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "id": 2764,
                              "nodeType": "IfStatement",
                              "src": "3369:102:18",
                              "trueBody": {
                                "id": 2763,
                                "nodeType": "Block",
                                "src": "3426:45:18",
                                "statements": [
                                  {
                                    "expression": {
                                      "hexValue": "66616c7365",
                                      "id": 2761,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "kind": "bool",
                                      "lValueRequested": false,
                                      "nodeType": "Literal",
                                      "src": "3451:5:18",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_bool",
                                        "typeString": "bool"
                                      },
                                      "value": "false"
                                    },
                                    "functionReturnParameters": 2734,
                                    "id": 2762,
                                    "nodeType": "Return",
                                    "src": "3444:12:18"
                                  }
                                ]
                              }
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 2750,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 2747,
                            "name": "i",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 2744,
                            "src": "3325:1:18",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "expression": {
                              "id": 2748,
                              "name": "interfaceIds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2730,
                              "src": "3329:12:18",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_bytes4_$dyn_memory_ptr",
                                "typeString": "bytes4[] memory"
                              }
                            },
                            "id": 2749,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "length",
                            "nodeType": "MemberAccess",
                            "src": "3329:19:18",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "3325:23:18",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 2766,
                        "initializationExpression": {
                          "assignments": [
                            2744
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 2744,
                              "mutability": "mutable",
                              "name": "i",
                              "nameLocation": "3318:1:18",
                              "nodeType": "VariableDeclaration",
                              "scope": 2766,
                              "src": "3310:9:18",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "typeName": {
                                "id": 2743,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "3310:7:18",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 2746,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 2745,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "3322:1:18",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "3310:13:18"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 2752,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "3350:3:18",
                            "subExpression": {
                              "id": 2751,
                              "name": "i",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2744,
                              "src": "3350:1:18",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 2753,
                          "nodeType": "ExpressionStatement",
                          "src": "3350:3:18"
                        },
                        "nodeType": "ForStatement",
                        "src": "3305:176:18"
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 2767,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "3534:4:18",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 2734,
                        "id": 2768,
                        "nodeType": "Return",
                        "src": "3527:11:18"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2725,
                    "nodeType": "StructuredDocumentation",
                    "src": "2680:324:18",
                    "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": 2770,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "supportsAllInterfaces",
                  "nameLocation": "3018:21:18",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2731,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2727,
                        "mutability": "mutable",
                        "name": "account",
                        "nameLocation": "3048:7:18",
                        "nodeType": "VariableDeclaration",
                        "scope": 2770,
                        "src": "3040:15:18",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 2726,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3040:7:18",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2730,
                        "mutability": "mutable",
                        "name": "interfaceIds",
                        "nameLocation": "3073:12:18",
                        "nodeType": "VariableDeclaration",
                        "scope": 2770,
                        "src": "3057:28:18",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_bytes4_$dyn_memory_ptr",
                          "typeString": "bytes4[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 2728,
                            "name": "bytes4",
                            "nodeType": "ElementaryTypeName",
                            "src": "3057:6:18",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes4",
                              "typeString": "bytes4"
                            }
                          },
                          "id": 2729,
                          "nodeType": "ArrayTypeName",
                          "src": "3057:8:18",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_bytes4_$dyn_storage_ptr",
                            "typeString": "bytes4[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3039:47:18"
                  },
                  "returnParameters": {
                    "id": 2734,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2733,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2770,
                        "src": "3110:4:18",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 2732,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "3110:4:18",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3109:6:18"
                  },
                  "scope": 2820,
                  "src": "3009:536:18",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2818,
                    "nodeType": "Block",
                    "src": "4307:310:18",
                    "statements": [
                      {
                        "assignments": [
                          2781
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 2781,
                            "mutability": "mutable",
                            "name": "encodedParams",
                            "nameLocation": "4330:13:18",
                            "nodeType": "VariableDeclaration",
                            "scope": 2818,
                            "src": "4317:26:18",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes_memory_ptr",
                              "typeString": "bytes"
                            },
                            "typeName": {
                              "id": 2780,
                              "name": "bytes",
                              "nodeType": "ElementaryTypeName",
                              "src": "4317:5:18",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_storage_ptr",
                                "typeString": "bytes"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 2789,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "expression": {
                                  "id": 2784,
                                  "name": "IERC165",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 2832,
                                  "src": "4369:7:18",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_contract$_IERC165_$2832_$",
                                    "typeString": "type(contract IERC165)"
                                  }
                                },
                                "id": 2785,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "supportsInterface",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 2831,
                                "src": "4369:25:18",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_declaration_view$_t_bytes4_$returns$_t_bool_$",
                                  "typeString": "function IERC165.supportsInterface(bytes4) view returns (bool)"
                                }
                              },
                              "id": 2786,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "memberName": "selector",
                              "nodeType": "MemberAccess",
                              "src": "4369:34:18",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes4",
                                "typeString": "bytes4"
                              }
                            },
                            {
                              "id": 2787,
                              "name": "interfaceId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2775,
                              "src": "4405:11:18",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes4",
                                "typeString": "bytes4"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes4",
                                "typeString": "bytes4"
                              },
                              {
                                "typeIdentifier": "t_bytes4",
                                "typeString": "bytes4"
                              }
                            ],
                            "expression": {
                              "id": 2782,
                              "name": "abi",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": -1,
                              "src": "4346:3:18",
                              "typeDescriptions": {
                                "typeIdentifier": "t_magic_abi",
                                "typeString": "abi"
                              }
                            },
                            "id": 2783,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "memberName": "encodeWithSelector",
                            "nodeType": "MemberAccess",
                            "src": "4346:22:18",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_abiencodewithselector_pure$_t_bytes4_$returns$_t_bytes_memory_ptr_$",
                              "typeString": "function (bytes4) pure returns (bytes memory)"
                            }
                          },
                          "id": 2788,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4346:71:18",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_memory_ptr",
                            "typeString": "bytes memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4317:100:18"
                      },
                      {
                        "assignments": [
                          2791,
                          2793
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 2791,
                            "mutability": "mutable",
                            "name": "success",
                            "nameLocation": "4433:7:18",
                            "nodeType": "VariableDeclaration",
                            "scope": 2818,
                            "src": "4428:12:18",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            },
                            "typeName": {
                              "id": 2790,
                              "name": "bool",
                              "nodeType": "ElementaryTypeName",
                              "src": "4428:4:18",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 2793,
                            "mutability": "mutable",
                            "name": "result",
                            "nameLocation": "4455:6:18",
                            "nodeType": "VariableDeclaration",
                            "scope": 2818,
                            "src": "4442:19:18",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes_memory_ptr",
                              "typeString": "bytes"
                            },
                            "typeName": {
                              "id": 2792,
                              "name": "bytes",
                              "nodeType": "ElementaryTypeName",
                              "src": "4442:5:18",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_storage_ptr",
                                "typeString": "bytes"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 2800,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 2798,
                              "name": "encodedParams",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2781,
                              "src": "4496:13:18",
                              "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": 2794,
                                "name": "account",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2773,
                                "src": "4465:7:18",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "id": 2795,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "staticcall",
                              "nodeType": "MemberAccess",
                              "src": "4465:18:18",
                              "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": 2797,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "names": [
                              "gas"
                            ],
                            "nodeType": "FunctionCallOptions",
                            "options": [
                              {
                                "hexValue": "3330303030",
                                "id": 2796,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "4489:5:18",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_30000_by_1",
                                  "typeString": "int_const 30000"
                                },
                                "value": "30000"
                              }
                            ],
                            "src": "4465:30:18",
                            "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": 2799,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4465:45:18",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_bool_$_t_bytes_memory_ptr_$",
                            "typeString": "tuple(bool,bytes memory)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4427:83:18"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 2804,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 2801,
                              "name": "result",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2793,
                              "src": "4524:6:18",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            },
                            "id": 2802,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "length",
                            "nodeType": "MemberAccess",
                            "src": "4524:13:18",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "hexValue": "3332",
                            "id": 2803,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "4540:2:18",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_32_by_1",
                              "typeString": "int_const 32"
                            },
                            "value": "32"
                          },
                          "src": "4524:18:18",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 2807,
                        "nodeType": "IfStatement",
                        "src": "4520:36:18",
                        "trueBody": {
                          "expression": {
                            "hexValue": "66616c7365",
                            "id": 2805,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "bool",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "4551:5:18",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            },
                            "value": "false"
                          },
                          "functionReturnParameters": 2779,
                          "id": 2806,
                          "nodeType": "Return",
                          "src": "4544:12:18"
                        }
                      },
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "id": 2816,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 2808,
                            "name": "success",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 2791,
                            "src": "4573:7:18",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "&&",
                          "rightExpression": {
                            "arguments": [
                              {
                                "id": 2811,
                                "name": "result",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2793,
                                "src": "4595:6:18",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bytes_memory_ptr",
                                  "typeString": "bytes memory"
                                }
                              },
                              {
                                "components": [
                                  {
                                    "id": 2813,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "ElementaryTypeNameExpression",
                                    "src": "4604:4:18",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_bool_$",
                                      "typeString": "type(bool)"
                                    },
                                    "typeName": {
                                      "id": 2812,
                                      "name": "bool",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "4604:4:18",
                                      "typeDescriptions": {}
                                    }
                                  }
                                ],
                                "id": 2814,
                                "isConstant": false,
                                "isInlineArray": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "TupleExpression",
                                "src": "4603:6:18",
                                "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": 2809,
                                "name": "abi",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -1,
                                "src": "4584:3:18",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_abi",
                                  "typeString": "abi"
                                }
                              },
                              "id": 2810,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "memberName": "decode",
                              "nodeType": "MemberAccess",
                              "src": "4584:10:18",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_abidecode_pure$__$returns$__$",
                                "typeString": "function () pure"
                              }
                            },
                            "id": 2815,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "4584:26:18",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "src": "4573:37:18",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 2779,
                        "id": 2817,
                        "nodeType": "Return",
                        "src": "4566:44:18"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2771,
                    "nodeType": "StructuredDocumentation",
                    "src": "3551:652:18",
                    "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": 2819,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_supportsERC165Interface",
                  "nameLocation": "4217:24:18",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2776,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2773,
                        "mutability": "mutable",
                        "name": "account",
                        "nameLocation": "4250:7:18",
                        "nodeType": "VariableDeclaration",
                        "scope": 2819,
                        "src": "4242:15:18",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 2772,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4242:7:18",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 2775,
                        "mutability": "mutable",
                        "name": "interfaceId",
                        "nameLocation": "4266:11:18",
                        "nodeType": "VariableDeclaration",
                        "scope": 2819,
                        "src": "4259:18:18",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes4",
                          "typeString": "bytes4"
                        },
                        "typeName": {
                          "id": 2774,
                          "name": "bytes4",
                          "nodeType": "ElementaryTypeName",
                          "src": "4259:6:18",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes4",
                            "typeString": "bytes4"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4241:37:18"
                  },
                  "returnParameters": {
                    "id": 2779,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2778,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2819,
                        "src": "4301:4:18",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 2777,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "4301:4:18",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4300:6:18"
                  },
                  "scope": 2820,
                  "src": "4208:409:18",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "private"
                }
              ],
              "scope": 2821,
              "src": "434:4185:18",
              "usedErrors": []
            }
          ],
          "src": "106:4514:18"
        },
        "id": 18
      },
      "@openzeppelin/contracts/utils/introspection/IERC165.sol": {
        "ast": {
          "absolutePath": "@openzeppelin/contracts/utils/introspection/IERC165.sol",
          "exportedSymbols": {
            "IERC165": [
              2832
            ]
          },
          "id": 2833,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 2822,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "100:23:19"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "documentation": {
                "id": 2823,
                "nodeType": "StructuredDocumentation",
                "src": "125:279:19",
                "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": 2832,
              "linearizedBaseContracts": [
                2832
              ],
              "name": "IERC165",
              "nameLocation": "415:7:19",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "documentation": {
                    "id": 2824,
                    "nodeType": "StructuredDocumentation",
                    "src": "429:340:19",
                    "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": 2831,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "supportsInterface",
                  "nameLocation": "783:17:19",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2827,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2826,
                        "mutability": "mutable",
                        "name": "interfaceId",
                        "nameLocation": "808:11:19",
                        "nodeType": "VariableDeclaration",
                        "scope": 2831,
                        "src": "801:18:19",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes4",
                          "typeString": "bytes4"
                        },
                        "typeName": {
                          "id": 2825,
                          "name": "bytes4",
                          "nodeType": "ElementaryTypeName",
                          "src": "801:6:19",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes4",
                            "typeString": "bytes4"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "800:20:19"
                  },
                  "returnParameters": {
                    "id": 2830,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2829,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2831,
                        "src": "844:4:19",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 2828,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "844:4:19",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "843:6:19"
                  },
                  "scope": 2832,
                  "src": "774:76:19",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 2833,
              "src": "405:447:19",
              "usedErrors": []
            }
          ],
          "src": "100:753:19"
        },
        "id": 19
      },
      "@openzeppelin/contracts/utils/math/SafeCast.sol": {
        "ast": {
          "absolutePath": "@openzeppelin/contracts/utils/math/SafeCast.sol",
          "exportedSymbols": {
            "SafeCast": [
              3225
            ]
          },
          "id": 3226,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 2834,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "92:23:20"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "library",
              "documentation": {
                "id": 2835,
                "nodeType": "StructuredDocumentation",
                "src": "117:709:20",
                "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": 3225,
              "linearizedBaseContracts": [
                3225
              ],
              "name": "SafeCast",
              "nameLocation": "835:8:20",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "body": {
                    "id": 2859,
                    "nodeType": "Block",
                    "src": "1201:126:20",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 2850,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 2844,
                                "name": "value",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2838,
                                "src": "1219:5:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "expression": {
                                  "arguments": [
                                    {
                                      "id": 2847,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "1233:7:20",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_uint224_$",
                                        "typeString": "type(uint224)"
                                      },
                                      "typeName": {
                                        "id": 2846,
                                        "name": "uint224",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "1233:7:20",
                                        "typeDescriptions": {}
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_type$_t_uint224_$",
                                        "typeString": "type(uint224)"
                                      }
                                    ],
                                    "id": 2845,
                                    "name": "type",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -27,
                                    "src": "1228:4:20",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                      "typeString": "function () pure"
                                    }
                                  },
                                  "id": 2848,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "1228:13:20",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_meta_type_t_uint224",
                                    "typeString": "type(uint224)"
                                  }
                                },
                                "id": 2849,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "max",
                                "nodeType": "MemberAccess",
                                "src": "1228:17:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                }
                              },
                              "src": "1219:26:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e203232342062697473",
                              "id": 2851,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1247:41:20",
                              "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": 2843,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1211:7:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 2852,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1211:78:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 2853,
                        "nodeType": "ExpressionStatement",
                        "src": "1211:78:20"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 2856,
                              "name": "value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2838,
                              "src": "1314:5:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 2855,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "1306:7:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint224_$",
                              "typeString": "type(uint224)"
                            },
                            "typeName": {
                              "id": 2854,
                              "name": "uint224",
                              "nodeType": "ElementaryTypeName",
                              "src": "1306:7:20",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 2857,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1306:14:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "functionReturnParameters": 2842,
                        "id": 2858,
                        "nodeType": "Return",
                        "src": "1299:21:20"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2836,
                    "nodeType": "StructuredDocumentation",
                    "src": "850:280:20",
                    "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": 2860,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toUint224",
                  "nameLocation": "1144:9:20",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2839,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2838,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "1162:5:20",
                        "nodeType": "VariableDeclaration",
                        "scope": 2860,
                        "src": "1154:13:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 2837,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1154:7:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1153:15:20"
                  },
                  "returnParameters": {
                    "id": 2842,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2841,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2860,
                        "src": "1192:7:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        },
                        "typeName": {
                          "id": 2840,
                          "name": "uint224",
                          "nodeType": "ElementaryTypeName",
                          "src": "1192:7:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1191:9:20"
                  },
                  "scope": 3225,
                  "src": "1135:192:20",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2884,
                    "nodeType": "Block",
                    "src": "1684:126:20",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 2875,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 2869,
                                "name": "value",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2863,
                                "src": "1702:5:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "expression": {
                                  "arguments": [
                                    {
                                      "id": 2872,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "1716:7:20",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_uint128_$",
                                        "typeString": "type(uint128)"
                                      },
                                      "typeName": {
                                        "id": 2871,
                                        "name": "uint128",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "1716:7:20",
                                        "typeDescriptions": {}
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_type$_t_uint128_$",
                                        "typeString": "type(uint128)"
                                      }
                                    ],
                                    "id": 2870,
                                    "name": "type",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -27,
                                    "src": "1711:4:20",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                      "typeString": "function () pure"
                                    }
                                  },
                                  "id": 2873,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "1711:13:20",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_meta_type_t_uint128",
                                    "typeString": "type(uint128)"
                                  }
                                },
                                "id": 2874,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "max",
                                "nodeType": "MemberAccess",
                                "src": "1711:17:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint128",
                                  "typeString": "uint128"
                                }
                              },
                              "src": "1702:26:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e203132382062697473",
                              "id": 2876,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1730:41:20",
                              "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": 2868,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1694:7:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 2877,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1694:78:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 2878,
                        "nodeType": "ExpressionStatement",
                        "src": "1694:78:20"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 2881,
                              "name": "value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2863,
                              "src": "1797:5:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 2880,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "1789:7:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint128_$",
                              "typeString": "type(uint128)"
                            },
                            "typeName": {
                              "id": 2879,
                              "name": "uint128",
                              "nodeType": "ElementaryTypeName",
                              "src": "1789:7:20",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 2882,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1789:14:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint128",
                            "typeString": "uint128"
                          }
                        },
                        "functionReturnParameters": 2867,
                        "id": 2883,
                        "nodeType": "Return",
                        "src": "1782:21:20"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2861,
                    "nodeType": "StructuredDocumentation",
                    "src": "1333:280:20",
                    "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": 2885,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toUint128",
                  "nameLocation": "1627:9:20",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2864,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2863,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "1645:5:20",
                        "nodeType": "VariableDeclaration",
                        "scope": 2885,
                        "src": "1637:13:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 2862,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1637:7:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1636:15:20"
                  },
                  "returnParameters": {
                    "id": 2867,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2866,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2885,
                        "src": "1675:7:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint128",
                          "typeString": "uint128"
                        },
                        "typeName": {
                          "id": 2865,
                          "name": "uint128",
                          "nodeType": "ElementaryTypeName",
                          "src": "1675:7:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint128",
                            "typeString": "uint128"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1674:9:20"
                  },
                  "scope": 3225,
                  "src": "1618:192:20",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2909,
                    "nodeType": "Block",
                    "src": "2161:123:20",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 2900,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 2894,
                                "name": "value",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2888,
                                "src": "2179:5:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "expression": {
                                  "arguments": [
                                    {
                                      "id": 2897,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "2193:6:20",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_uint96_$",
                                        "typeString": "type(uint96)"
                                      },
                                      "typeName": {
                                        "id": 2896,
                                        "name": "uint96",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "2193:6:20",
                                        "typeDescriptions": {}
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_type$_t_uint96_$",
                                        "typeString": "type(uint96)"
                                      }
                                    ],
                                    "id": 2895,
                                    "name": "type",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -27,
                                    "src": "2188:4:20",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                      "typeString": "function () pure"
                                    }
                                  },
                                  "id": 2898,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "2188:12:20",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_meta_type_t_uint96",
                                    "typeString": "type(uint96)"
                                  }
                                },
                                "id": 2899,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "max",
                                "nodeType": "MemberAccess",
                                "src": "2188:16:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint96",
                                  "typeString": "uint96"
                                }
                              },
                              "src": "2179:25:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e2039362062697473",
                              "id": 2901,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2206:40:20",
                              "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": 2893,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2171:7:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 2902,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2171:76:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 2903,
                        "nodeType": "ExpressionStatement",
                        "src": "2171:76:20"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 2906,
                              "name": "value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2888,
                              "src": "2271:5:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 2905,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "2264:6:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint96_$",
                              "typeString": "type(uint96)"
                            },
                            "typeName": {
                              "id": 2904,
                              "name": "uint96",
                              "nodeType": "ElementaryTypeName",
                              "src": "2264:6:20",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 2907,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2264:13:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint96",
                            "typeString": "uint96"
                          }
                        },
                        "functionReturnParameters": 2892,
                        "id": 2908,
                        "nodeType": "Return",
                        "src": "2257:20:20"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2886,
                    "nodeType": "StructuredDocumentation",
                    "src": "1816:276:20",
                    "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": 2910,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toUint96",
                  "nameLocation": "2106:8:20",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2889,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2888,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "2123:5:20",
                        "nodeType": "VariableDeclaration",
                        "scope": 2910,
                        "src": "2115:13:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 2887,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2115:7:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2114:15:20"
                  },
                  "returnParameters": {
                    "id": 2892,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2891,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2910,
                        "src": "2153:6:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint96",
                          "typeString": "uint96"
                        },
                        "typeName": {
                          "id": 2890,
                          "name": "uint96",
                          "nodeType": "ElementaryTypeName",
                          "src": "2153:6:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint96",
                            "typeString": "uint96"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2152:8:20"
                  },
                  "scope": 3225,
                  "src": "2097:187:20",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2934,
                    "nodeType": "Block",
                    "src": "2635:123:20",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 2925,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 2919,
                                "name": "value",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2913,
                                "src": "2653:5:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "expression": {
                                  "arguments": [
                                    {
                                      "id": 2922,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "2667:6:20",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_uint64_$",
                                        "typeString": "type(uint64)"
                                      },
                                      "typeName": {
                                        "id": 2921,
                                        "name": "uint64",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "2667:6:20",
                                        "typeDescriptions": {}
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_type$_t_uint64_$",
                                        "typeString": "type(uint64)"
                                      }
                                    ],
                                    "id": 2920,
                                    "name": "type",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -27,
                                    "src": "2662:4:20",
                                    "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": "2662:12:20",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_meta_type_t_uint64",
                                    "typeString": "type(uint64)"
                                  }
                                },
                                "id": 2924,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "max",
                                "nodeType": "MemberAccess",
                                "src": "2662:16:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                }
                              },
                              "src": "2653:25:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e2036342062697473",
                              "id": 2926,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2680:40:20",
                              "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": 2918,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2645:7:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 2927,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2645:76:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 2928,
                        "nodeType": "ExpressionStatement",
                        "src": "2645:76:20"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 2931,
                              "name": "value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2913,
                              "src": "2745:5:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 2930,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "2738:6:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint64_$",
                              "typeString": "type(uint64)"
                            },
                            "typeName": {
                              "id": 2929,
                              "name": "uint64",
                              "nodeType": "ElementaryTypeName",
                              "src": "2738:6:20",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 2932,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2738:13:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "functionReturnParameters": 2917,
                        "id": 2933,
                        "nodeType": "Return",
                        "src": "2731:20:20"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2911,
                    "nodeType": "StructuredDocumentation",
                    "src": "2290:276:20",
                    "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": 2935,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toUint64",
                  "nameLocation": "2580:8:20",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2914,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2913,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "2597:5:20",
                        "nodeType": "VariableDeclaration",
                        "scope": 2935,
                        "src": "2589:13:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 2912,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2589:7:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2588:15:20"
                  },
                  "returnParameters": {
                    "id": 2917,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2916,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2935,
                        "src": "2627:6:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 2915,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "2627:6:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2626:8:20"
                  },
                  "scope": 3225,
                  "src": "2571:187:20",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2959,
                    "nodeType": "Block",
                    "src": "3109:123:20",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 2950,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 2944,
                                "name": "value",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2938,
                                "src": "3127:5:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "expression": {
                                  "arguments": [
                                    {
                                      "id": 2947,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "3141:6:20",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_uint32_$",
                                        "typeString": "type(uint32)"
                                      },
                                      "typeName": {
                                        "id": 2946,
                                        "name": "uint32",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "3141:6:20",
                                        "typeDescriptions": {}
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_type$_t_uint32_$",
                                        "typeString": "type(uint32)"
                                      }
                                    ],
                                    "id": 2945,
                                    "name": "type",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -27,
                                    "src": "3136:4:20",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                      "typeString": "function () pure"
                                    }
                                  },
                                  "id": 2948,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "3136:12:20",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_meta_type_t_uint32",
                                    "typeString": "type(uint32)"
                                  }
                                },
                                "id": 2949,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "max",
                                "nodeType": "MemberAccess",
                                "src": "3136:16:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "src": "3127:25:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e2033322062697473",
                              "id": 2951,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "3154:40:20",
                              "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": 2943,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "3119:7:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 2952,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3119:76:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 2953,
                        "nodeType": "ExpressionStatement",
                        "src": "3119:76:20"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 2956,
                              "name": "value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2938,
                              "src": "3219:5:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 2955,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "3212:6:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint32_$",
                              "typeString": "type(uint32)"
                            },
                            "typeName": {
                              "id": 2954,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "3212:6:20",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 2957,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3212:13:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "functionReturnParameters": 2942,
                        "id": 2958,
                        "nodeType": "Return",
                        "src": "3205:20:20"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2936,
                    "nodeType": "StructuredDocumentation",
                    "src": "2764:276:20",
                    "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": 2960,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toUint32",
                  "nameLocation": "3054:8:20",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2939,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2938,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "3071:5:20",
                        "nodeType": "VariableDeclaration",
                        "scope": 2960,
                        "src": "3063:13:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 2937,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3063:7:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3062:15:20"
                  },
                  "returnParameters": {
                    "id": 2942,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2941,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2960,
                        "src": "3101:6:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 2940,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "3101:6:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3100:8:20"
                  },
                  "scope": 3225,
                  "src": "3045:187:20",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 2984,
                    "nodeType": "Block",
                    "src": "3583:123:20",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 2975,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 2969,
                                "name": "value",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2963,
                                "src": "3601:5:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "expression": {
                                  "arguments": [
                                    {
                                      "id": 2972,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "3615:6:20",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_uint16_$",
                                        "typeString": "type(uint16)"
                                      },
                                      "typeName": {
                                        "id": 2971,
                                        "name": "uint16",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "3615:6:20",
                                        "typeDescriptions": {}
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_type$_t_uint16_$",
                                        "typeString": "type(uint16)"
                                      }
                                    ],
                                    "id": 2970,
                                    "name": "type",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -27,
                                    "src": "3610:4:20",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                      "typeString": "function () pure"
                                    }
                                  },
                                  "id": 2973,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "3610:12:20",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_meta_type_t_uint16",
                                    "typeString": "type(uint16)"
                                  }
                                },
                                "id": 2974,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "max",
                                "nodeType": "MemberAccess",
                                "src": "3610:16:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint16",
                                  "typeString": "uint16"
                                }
                              },
                              "src": "3601:25:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e2031362062697473",
                              "id": 2976,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "3628:40:20",
                              "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": 2968,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "3593:7:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 2977,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3593:76:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 2978,
                        "nodeType": "ExpressionStatement",
                        "src": "3593:76:20"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 2981,
                              "name": "value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2963,
                              "src": "3693:5:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 2980,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "3686:6:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint16_$",
                              "typeString": "type(uint16)"
                            },
                            "typeName": {
                              "id": 2979,
                              "name": "uint16",
                              "nodeType": "ElementaryTypeName",
                              "src": "3686:6:20",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 2982,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3686:13:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint16",
                            "typeString": "uint16"
                          }
                        },
                        "functionReturnParameters": 2967,
                        "id": 2983,
                        "nodeType": "Return",
                        "src": "3679:20:20"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2961,
                    "nodeType": "StructuredDocumentation",
                    "src": "3238:276:20",
                    "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": 2985,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toUint16",
                  "nameLocation": "3528:8:20",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2964,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2963,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "3545:5:20",
                        "nodeType": "VariableDeclaration",
                        "scope": 2985,
                        "src": "3537:13:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 2962,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3537:7:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3536:15:20"
                  },
                  "returnParameters": {
                    "id": 2967,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2966,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 2985,
                        "src": "3575:6:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint16",
                          "typeString": "uint16"
                        },
                        "typeName": {
                          "id": 2965,
                          "name": "uint16",
                          "nodeType": "ElementaryTypeName",
                          "src": "3575:6:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint16",
                            "typeString": "uint16"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3574:8:20"
                  },
                  "scope": 3225,
                  "src": "3519:187:20",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 3009,
                    "nodeType": "Block",
                    "src": "4052:120:20",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 3000,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 2994,
                                "name": "value",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 2988,
                                "src": "4070:5:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "expression": {
                                  "arguments": [
                                    {
                                      "id": 2997,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "4084:5:20",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_uint8_$",
                                        "typeString": "type(uint8)"
                                      },
                                      "typeName": {
                                        "id": 2996,
                                        "name": "uint8",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "4084:5:20",
                                        "typeDescriptions": {}
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_type$_t_uint8_$",
                                        "typeString": "type(uint8)"
                                      }
                                    ],
                                    "id": 2995,
                                    "name": "type",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -27,
                                    "src": "4079:4:20",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                      "typeString": "function () pure"
                                    }
                                  },
                                  "id": 2998,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "4079:11:20",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_meta_type_t_uint8",
                                    "typeString": "type(uint8)"
                                  }
                                },
                                "id": 2999,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "max",
                                "nodeType": "MemberAccess",
                                "src": "4079:15:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                }
                              },
                              "src": "4070:24:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e20382062697473",
                              "id": 3001,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "4096:39:20",
                              "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": 2993,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "4062:7:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 3002,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4062:74:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3003,
                        "nodeType": "ExpressionStatement",
                        "src": "4062:74:20"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 3006,
                              "name": "value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2988,
                              "src": "4159:5:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 3005,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "4153:5:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint8_$",
                              "typeString": "type(uint8)"
                            },
                            "typeName": {
                              "id": 3004,
                              "name": "uint8",
                              "nodeType": "ElementaryTypeName",
                              "src": "4153:5:20",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 3007,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4153:12:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "functionReturnParameters": 2992,
                        "id": 3008,
                        "nodeType": "Return",
                        "src": "4146:19:20"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 2986,
                    "nodeType": "StructuredDocumentation",
                    "src": "3712:273:20",
                    "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": 3010,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toUint8",
                  "nameLocation": "3999:7:20",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 2989,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2988,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "4015:5:20",
                        "nodeType": "VariableDeclaration",
                        "scope": 3010,
                        "src": "4007:13:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 2987,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4007:7:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4006:15:20"
                  },
                  "returnParameters": {
                    "id": 2992,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 2991,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3010,
                        "src": "4045:5:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 2990,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "4045:5:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4044:7:20"
                  },
                  "scope": 3225,
                  "src": "3990:182:20",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 3030,
                    "nodeType": "Block",
                    "src": "4408:103:20",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_int256",
                                "typeString": "int256"
                              },
                              "id": 3021,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 3019,
                                "name": "value",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3013,
                                "src": "4426:5:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_int256",
                                  "typeString": "int256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">=",
                              "rightExpression": {
                                "hexValue": "30",
                                "id": 3020,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "4435:1:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "src": "4426:10:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "53616665436173743a2076616c7565206d75737420626520706f736974697665",
                              "id": 3022,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "4438:34:20",
                              "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": 3018,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "4418:7:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 3023,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4418:55:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3024,
                        "nodeType": "ExpressionStatement",
                        "src": "4418:55:20"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 3027,
                              "name": "value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3013,
                              "src": "4498:5:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_int256",
                                "typeString": "int256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_int256",
                                "typeString": "int256"
                              }
                            ],
                            "id": 3026,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "4490:7:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint256_$",
                              "typeString": "type(uint256)"
                            },
                            "typeName": {
                              "id": 3025,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "4490:7:20",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 3028,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4490:14:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 3017,
                        "id": 3029,
                        "nodeType": "Return",
                        "src": "4483:21:20"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3011,
                    "nodeType": "StructuredDocumentation",
                    "src": "4178:160:20",
                    "text": " @dev Converts a signed int256 into an unsigned uint256.\n Requirements:\n - input must be greater than or equal to 0."
                  },
                  "id": 3031,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toUint256",
                  "nameLocation": "4352:9:20",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3014,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3013,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "4369:5:20",
                        "nodeType": "VariableDeclaration",
                        "scope": 3031,
                        "src": "4362:12:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_int256",
                          "typeString": "int256"
                        },
                        "typeName": {
                          "id": 3012,
                          "name": "int256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4362:6:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_int256",
                            "typeString": "int256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4361:14:20"
                  },
                  "returnParameters": {
                    "id": 3017,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3016,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3031,
                        "src": "4399:7:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3015,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4399:7:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4398:9:20"
                  },
                  "scope": 3225,
                  "src": "4343:168:20",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 3063,
                    "nodeType": "Block",
                    "src": "4935:153:20",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              "id": 3054,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_int256",
                                  "typeString": "int256"
                                },
                                "id": 3046,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 3040,
                                  "name": "value",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 3034,
                                  "src": "4953:5:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int256",
                                    "typeString": "int256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": ">=",
                                "rightExpression": {
                                  "expression": {
                                    "arguments": [
                                      {
                                        "id": 3043,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "4967:6:20",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_int128_$",
                                          "typeString": "type(int128)"
                                        },
                                        "typeName": {
                                          "id": 3042,
                                          "name": "int128",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "4967:6:20",
                                          "typeDescriptions": {}
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_type$_t_int128_$",
                                          "typeString": "type(int128)"
                                        }
                                      ],
                                      "id": 3041,
                                      "name": "type",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -27,
                                      "src": "4962:4:20",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                        "typeString": "function () pure"
                                      }
                                    },
                                    "id": 3044,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "functionCall",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "4962:12:20",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_meta_type_t_int128",
                                      "typeString": "type(int128)"
                                    }
                                  },
                                  "id": 3045,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "memberName": "min",
                                  "nodeType": "MemberAccess",
                                  "src": "4962:16:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int128",
                                    "typeString": "int128"
                                  }
                                },
                                "src": "4953:25:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "&&",
                              "rightExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_int256",
                                  "typeString": "int256"
                                },
                                "id": 3053,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 3047,
                                  "name": "value",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 3034,
                                  "src": "4982:5:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int256",
                                    "typeString": "int256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "<=",
                                "rightExpression": {
                                  "expression": {
                                    "arguments": [
                                      {
                                        "id": 3050,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "4996:6:20",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_int128_$",
                                          "typeString": "type(int128)"
                                        },
                                        "typeName": {
                                          "id": 3049,
                                          "name": "int128",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "4996:6:20",
                                          "typeDescriptions": {}
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_type$_t_int128_$",
                                          "typeString": "type(int128)"
                                        }
                                      ],
                                      "id": 3048,
                                      "name": "type",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -27,
                                      "src": "4991:4:20",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                        "typeString": "function () pure"
                                      }
                                    },
                                    "id": 3051,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "functionCall",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "4991:12:20",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_meta_type_t_int128",
                                      "typeString": "type(int128)"
                                    }
                                  },
                                  "id": 3052,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "memberName": "max",
                                  "nodeType": "MemberAccess",
                                  "src": "4991:16:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int128",
                                    "typeString": "int128"
                                  }
                                },
                                "src": "4982:25:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "src": "4953:54:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e203132382062697473",
                              "id": 3055,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "5009:41:20",
                              "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": 3039,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "4945:7:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 3056,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4945:106:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3057,
                        "nodeType": "ExpressionStatement",
                        "src": "4945:106:20"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 3060,
                              "name": "value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3034,
                              "src": "5075:5:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_int256",
                                "typeString": "int256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_int256",
                                "typeString": "int256"
                              }
                            ],
                            "id": 3059,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "5068:6:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_int128_$",
                              "typeString": "type(int128)"
                            },
                            "typeName": {
                              "id": 3058,
                              "name": "int128",
                              "nodeType": "ElementaryTypeName",
                              "src": "5068:6:20",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 3061,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5068:13:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_int128",
                            "typeString": "int128"
                          }
                        },
                        "functionReturnParameters": 3038,
                        "id": 3062,
                        "nodeType": "Return",
                        "src": "5061:20:20"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3032,
                    "nodeType": "StructuredDocumentation",
                    "src": "4517:350:20",
                    "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": 3064,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toInt128",
                  "nameLocation": "4881:8:20",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3035,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3034,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "4897:5:20",
                        "nodeType": "VariableDeclaration",
                        "scope": 3064,
                        "src": "4890:12:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_int256",
                          "typeString": "int256"
                        },
                        "typeName": {
                          "id": 3033,
                          "name": "int256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4890:6:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_int256",
                            "typeString": "int256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4889:14:20"
                  },
                  "returnParameters": {
                    "id": 3038,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3037,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3064,
                        "src": "4927:6:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_int128",
                          "typeString": "int128"
                        },
                        "typeName": {
                          "id": 3036,
                          "name": "int128",
                          "nodeType": "ElementaryTypeName",
                          "src": "4927:6:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_int128",
                            "typeString": "int128"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4926:8:20"
                  },
                  "scope": 3225,
                  "src": "4872:216:20",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 3096,
                    "nodeType": "Block",
                    "src": "5505:149:20",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              "id": 3087,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_int256",
                                  "typeString": "int256"
                                },
                                "id": 3079,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 3073,
                                  "name": "value",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 3067,
                                  "src": "5523:5:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int256",
                                    "typeString": "int256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": ">=",
                                "rightExpression": {
                                  "expression": {
                                    "arguments": [
                                      {
                                        "id": 3076,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "5537:5:20",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_int64_$",
                                          "typeString": "type(int64)"
                                        },
                                        "typeName": {
                                          "id": 3075,
                                          "name": "int64",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "5537:5:20",
                                          "typeDescriptions": {}
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_type$_t_int64_$",
                                          "typeString": "type(int64)"
                                        }
                                      ],
                                      "id": 3074,
                                      "name": "type",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -27,
                                      "src": "5532:4:20",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                        "typeString": "function () pure"
                                      }
                                    },
                                    "id": 3077,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "functionCall",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "5532:11:20",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_meta_type_t_int64",
                                      "typeString": "type(int64)"
                                    }
                                  },
                                  "id": 3078,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "memberName": "min",
                                  "nodeType": "MemberAccess",
                                  "src": "5532:15:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int64",
                                    "typeString": "int64"
                                  }
                                },
                                "src": "5523:24:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "&&",
                              "rightExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_int256",
                                  "typeString": "int256"
                                },
                                "id": 3086,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 3080,
                                  "name": "value",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 3067,
                                  "src": "5551:5:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int256",
                                    "typeString": "int256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "<=",
                                "rightExpression": {
                                  "expression": {
                                    "arguments": [
                                      {
                                        "id": 3083,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "5565:5:20",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_int64_$",
                                          "typeString": "type(int64)"
                                        },
                                        "typeName": {
                                          "id": 3082,
                                          "name": "int64",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "5565:5:20",
                                          "typeDescriptions": {}
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_type$_t_int64_$",
                                          "typeString": "type(int64)"
                                        }
                                      ],
                                      "id": 3081,
                                      "name": "type",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -27,
                                      "src": "5560:4:20",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                        "typeString": "function () pure"
                                      }
                                    },
                                    "id": 3084,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "functionCall",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "5560:11:20",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_meta_type_t_int64",
                                      "typeString": "type(int64)"
                                    }
                                  },
                                  "id": 3085,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "memberName": "max",
                                  "nodeType": "MemberAccess",
                                  "src": "5560:15:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int64",
                                    "typeString": "int64"
                                  }
                                },
                                "src": "5551:24:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "src": "5523:52:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e2036342062697473",
                              "id": 3088,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "5577:40:20",
                              "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": 3072,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "5515:7:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 3089,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5515:103:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3090,
                        "nodeType": "ExpressionStatement",
                        "src": "5515:103:20"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 3093,
                              "name": "value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3067,
                              "src": "5641:5:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_int256",
                                "typeString": "int256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_int256",
                                "typeString": "int256"
                              }
                            ],
                            "id": 3092,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "5635:5:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_int64_$",
                              "typeString": "type(int64)"
                            },
                            "typeName": {
                              "id": 3091,
                              "name": "int64",
                              "nodeType": "ElementaryTypeName",
                              "src": "5635:5:20",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 3094,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5635:12:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_int64",
                            "typeString": "int64"
                          }
                        },
                        "functionReturnParameters": 3071,
                        "id": 3095,
                        "nodeType": "Return",
                        "src": "5628:19:20"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3065,
                    "nodeType": "StructuredDocumentation",
                    "src": "5094:345:20",
                    "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": 3097,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toInt64",
                  "nameLocation": "5453:7:20",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3068,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3067,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "5468:5:20",
                        "nodeType": "VariableDeclaration",
                        "scope": 3097,
                        "src": "5461:12:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_int256",
                          "typeString": "int256"
                        },
                        "typeName": {
                          "id": 3066,
                          "name": "int256",
                          "nodeType": "ElementaryTypeName",
                          "src": "5461:6:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_int256",
                            "typeString": "int256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5460:14:20"
                  },
                  "returnParameters": {
                    "id": 3071,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3070,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3097,
                        "src": "5498:5:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_int64",
                          "typeString": "int64"
                        },
                        "typeName": {
                          "id": 3069,
                          "name": "int64",
                          "nodeType": "ElementaryTypeName",
                          "src": "5498:5:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_int64",
                            "typeString": "int64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5497:7:20"
                  },
                  "scope": 3225,
                  "src": "5444:210:20",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 3129,
                    "nodeType": "Block",
                    "src": "6071:149:20",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              "id": 3120,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_int256",
                                  "typeString": "int256"
                                },
                                "id": 3112,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 3106,
                                  "name": "value",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 3100,
                                  "src": "6089:5:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int256",
                                    "typeString": "int256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": ">=",
                                "rightExpression": {
                                  "expression": {
                                    "arguments": [
                                      {
                                        "id": 3109,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "6103:5:20",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_int32_$",
                                          "typeString": "type(int32)"
                                        },
                                        "typeName": {
                                          "id": 3108,
                                          "name": "int32",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "6103:5:20",
                                          "typeDescriptions": {}
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_type$_t_int32_$",
                                          "typeString": "type(int32)"
                                        }
                                      ],
                                      "id": 3107,
                                      "name": "type",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -27,
                                      "src": "6098:4:20",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                        "typeString": "function () pure"
                                      }
                                    },
                                    "id": 3110,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "functionCall",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "6098:11:20",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_meta_type_t_int32",
                                      "typeString": "type(int32)"
                                    }
                                  },
                                  "id": 3111,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "memberName": "min",
                                  "nodeType": "MemberAccess",
                                  "src": "6098:15:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int32",
                                    "typeString": "int32"
                                  }
                                },
                                "src": "6089:24:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "&&",
                              "rightExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_int256",
                                  "typeString": "int256"
                                },
                                "id": 3119,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 3113,
                                  "name": "value",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 3100,
                                  "src": "6117:5:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int256",
                                    "typeString": "int256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "<=",
                                "rightExpression": {
                                  "expression": {
                                    "arguments": [
                                      {
                                        "id": 3116,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "6131:5:20",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_int32_$",
                                          "typeString": "type(int32)"
                                        },
                                        "typeName": {
                                          "id": 3115,
                                          "name": "int32",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "6131:5:20",
                                          "typeDescriptions": {}
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_type$_t_int32_$",
                                          "typeString": "type(int32)"
                                        }
                                      ],
                                      "id": 3114,
                                      "name": "type",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -27,
                                      "src": "6126:4:20",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                        "typeString": "function () pure"
                                      }
                                    },
                                    "id": 3117,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "functionCall",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "6126:11:20",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_meta_type_t_int32",
                                      "typeString": "type(int32)"
                                    }
                                  },
                                  "id": 3118,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "memberName": "max",
                                  "nodeType": "MemberAccess",
                                  "src": "6126:15:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int32",
                                    "typeString": "int32"
                                  }
                                },
                                "src": "6117:24:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "src": "6089:52:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e2033322062697473",
                              "id": 3121,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "6143:40:20",
                              "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": 3105,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "6081:7:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 3122,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6081:103:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3123,
                        "nodeType": "ExpressionStatement",
                        "src": "6081:103:20"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 3126,
                              "name": "value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3100,
                              "src": "6207:5:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_int256",
                                "typeString": "int256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_int256",
                                "typeString": "int256"
                              }
                            ],
                            "id": 3125,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "6201:5:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_int32_$",
                              "typeString": "type(int32)"
                            },
                            "typeName": {
                              "id": 3124,
                              "name": "int32",
                              "nodeType": "ElementaryTypeName",
                              "src": "6201:5:20",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 3127,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6201:12:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_int32",
                            "typeString": "int32"
                          }
                        },
                        "functionReturnParameters": 3104,
                        "id": 3128,
                        "nodeType": "Return",
                        "src": "6194:19:20"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3098,
                    "nodeType": "StructuredDocumentation",
                    "src": "5660:345:20",
                    "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": 3130,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toInt32",
                  "nameLocation": "6019:7:20",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3101,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3100,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "6034:5:20",
                        "nodeType": "VariableDeclaration",
                        "scope": 3130,
                        "src": "6027:12:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_int256",
                          "typeString": "int256"
                        },
                        "typeName": {
                          "id": 3099,
                          "name": "int256",
                          "nodeType": "ElementaryTypeName",
                          "src": "6027:6:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_int256",
                            "typeString": "int256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6026:14:20"
                  },
                  "returnParameters": {
                    "id": 3104,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3103,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3130,
                        "src": "6064:5:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_int32",
                          "typeString": "int32"
                        },
                        "typeName": {
                          "id": 3102,
                          "name": "int32",
                          "nodeType": "ElementaryTypeName",
                          "src": "6064:5:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_int32",
                            "typeString": "int32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6063:7:20"
                  },
                  "scope": 3225,
                  "src": "6010:210:20",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 3162,
                    "nodeType": "Block",
                    "src": "6637:149:20",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              "id": 3153,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_int256",
                                  "typeString": "int256"
                                },
                                "id": 3145,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 3139,
                                  "name": "value",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 3133,
                                  "src": "6655:5:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int256",
                                    "typeString": "int256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": ">=",
                                "rightExpression": {
                                  "expression": {
                                    "arguments": [
                                      {
                                        "id": 3142,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "6669:5:20",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_int16_$",
                                          "typeString": "type(int16)"
                                        },
                                        "typeName": {
                                          "id": 3141,
                                          "name": "int16",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "6669:5:20",
                                          "typeDescriptions": {}
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_type$_t_int16_$",
                                          "typeString": "type(int16)"
                                        }
                                      ],
                                      "id": 3140,
                                      "name": "type",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -27,
                                      "src": "6664:4:20",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                        "typeString": "function () pure"
                                      }
                                    },
                                    "id": 3143,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "functionCall",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "6664:11:20",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_meta_type_t_int16",
                                      "typeString": "type(int16)"
                                    }
                                  },
                                  "id": 3144,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "memberName": "min",
                                  "nodeType": "MemberAccess",
                                  "src": "6664:15:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int16",
                                    "typeString": "int16"
                                  }
                                },
                                "src": "6655:24:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "&&",
                              "rightExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_int256",
                                  "typeString": "int256"
                                },
                                "id": 3152,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 3146,
                                  "name": "value",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 3133,
                                  "src": "6683:5:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int256",
                                    "typeString": "int256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "<=",
                                "rightExpression": {
                                  "expression": {
                                    "arguments": [
                                      {
                                        "id": 3149,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "6697:5:20",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_int16_$",
                                          "typeString": "type(int16)"
                                        },
                                        "typeName": {
                                          "id": 3148,
                                          "name": "int16",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "6697:5:20",
                                          "typeDescriptions": {}
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_type$_t_int16_$",
                                          "typeString": "type(int16)"
                                        }
                                      ],
                                      "id": 3147,
                                      "name": "type",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -27,
                                      "src": "6692:4:20",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                        "typeString": "function () pure"
                                      }
                                    },
                                    "id": 3150,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "functionCall",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "6692:11:20",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_meta_type_t_int16",
                                      "typeString": "type(int16)"
                                    }
                                  },
                                  "id": 3151,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "memberName": "max",
                                  "nodeType": "MemberAccess",
                                  "src": "6692:15:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int16",
                                    "typeString": "int16"
                                  }
                                },
                                "src": "6683:24:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "src": "6655:52:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e2031362062697473",
                              "id": 3154,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "6709:40:20",
                              "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": 3138,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "6647:7:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 3155,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6647:103:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3156,
                        "nodeType": "ExpressionStatement",
                        "src": "6647:103:20"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 3159,
                              "name": "value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3133,
                              "src": "6773:5:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_int256",
                                "typeString": "int256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_int256",
                                "typeString": "int256"
                              }
                            ],
                            "id": 3158,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "6767:5:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_int16_$",
                              "typeString": "type(int16)"
                            },
                            "typeName": {
                              "id": 3157,
                              "name": "int16",
                              "nodeType": "ElementaryTypeName",
                              "src": "6767:5:20",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 3160,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6767:12:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_int16",
                            "typeString": "int16"
                          }
                        },
                        "functionReturnParameters": 3137,
                        "id": 3161,
                        "nodeType": "Return",
                        "src": "6760:19:20"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3131,
                    "nodeType": "StructuredDocumentation",
                    "src": "6226:345:20",
                    "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": 3163,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toInt16",
                  "nameLocation": "6585:7:20",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3134,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3133,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "6600:5:20",
                        "nodeType": "VariableDeclaration",
                        "scope": 3163,
                        "src": "6593:12:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_int256",
                          "typeString": "int256"
                        },
                        "typeName": {
                          "id": 3132,
                          "name": "int256",
                          "nodeType": "ElementaryTypeName",
                          "src": "6593:6:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_int256",
                            "typeString": "int256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6592:14:20"
                  },
                  "returnParameters": {
                    "id": 3137,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3136,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3163,
                        "src": "6630:5:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_int16",
                          "typeString": "int16"
                        },
                        "typeName": {
                          "id": 3135,
                          "name": "int16",
                          "nodeType": "ElementaryTypeName",
                          "src": "6630:5:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_int16",
                            "typeString": "int16"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6629:7:20"
                  },
                  "scope": 3225,
                  "src": "6576:210:20",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 3195,
                    "nodeType": "Block",
                    "src": "7197:145:20",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              "id": 3186,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_int256",
                                  "typeString": "int256"
                                },
                                "id": 3178,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 3172,
                                  "name": "value",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 3166,
                                  "src": "7215:5:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int256",
                                    "typeString": "int256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": ">=",
                                "rightExpression": {
                                  "expression": {
                                    "arguments": [
                                      {
                                        "id": 3175,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "7229:4:20",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_int8_$",
                                          "typeString": "type(int8)"
                                        },
                                        "typeName": {
                                          "id": 3174,
                                          "name": "int8",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "7229:4:20",
                                          "typeDescriptions": {}
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_type$_t_int8_$",
                                          "typeString": "type(int8)"
                                        }
                                      ],
                                      "id": 3173,
                                      "name": "type",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -27,
                                      "src": "7224:4:20",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                        "typeString": "function () pure"
                                      }
                                    },
                                    "id": 3176,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "functionCall",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "7224:10:20",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_meta_type_t_int8",
                                      "typeString": "type(int8)"
                                    }
                                  },
                                  "id": 3177,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "memberName": "min",
                                  "nodeType": "MemberAccess",
                                  "src": "7224:14:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int8",
                                    "typeString": "int8"
                                  }
                                },
                                "src": "7215:23:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "&&",
                              "rightExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_int256",
                                  "typeString": "int256"
                                },
                                "id": 3185,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 3179,
                                  "name": "value",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 3166,
                                  "src": "7242:5:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int256",
                                    "typeString": "int256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "<=",
                                "rightExpression": {
                                  "expression": {
                                    "arguments": [
                                      {
                                        "id": 3182,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "7256:4:20",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_int8_$",
                                          "typeString": "type(int8)"
                                        },
                                        "typeName": {
                                          "id": 3181,
                                          "name": "int8",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "7256:4:20",
                                          "typeDescriptions": {}
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_type$_t_int8_$",
                                          "typeString": "type(int8)"
                                        }
                                      ],
                                      "id": 3180,
                                      "name": "type",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -27,
                                      "src": "7251:4:20",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                        "typeString": "function () pure"
                                      }
                                    },
                                    "id": 3183,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "functionCall",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "7251:10:20",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_meta_type_t_int8",
                                      "typeString": "type(int8)"
                                    }
                                  },
                                  "id": 3184,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "memberName": "max",
                                  "nodeType": "MemberAccess",
                                  "src": "7251:14:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_int8",
                                    "typeString": "int8"
                                  }
                                },
                                "src": "7242:23:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "src": "7215:50:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e20382062697473",
                              "id": 3187,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "7267:39:20",
                              "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": 3171,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "7207:7:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 3188,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7207:100:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3189,
                        "nodeType": "ExpressionStatement",
                        "src": "7207:100:20"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 3192,
                              "name": "value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3166,
                              "src": "7329:5:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_int256",
                                "typeString": "int256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_int256",
                                "typeString": "int256"
                              }
                            ],
                            "id": 3191,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "7324:4:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_int8_$",
                              "typeString": "type(int8)"
                            },
                            "typeName": {
                              "id": 3190,
                              "name": "int8",
                              "nodeType": "ElementaryTypeName",
                              "src": "7324:4:20",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 3193,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7324:11:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_int8",
                            "typeString": "int8"
                          }
                        },
                        "functionReturnParameters": 3170,
                        "id": 3194,
                        "nodeType": "Return",
                        "src": "7317:18:20"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3164,
                    "nodeType": "StructuredDocumentation",
                    "src": "6792:341:20",
                    "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": 3196,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toInt8",
                  "nameLocation": "7147:6:20",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3167,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3166,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "7161:5:20",
                        "nodeType": "VariableDeclaration",
                        "scope": 3196,
                        "src": "7154:12:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_int256",
                          "typeString": "int256"
                        },
                        "typeName": {
                          "id": 3165,
                          "name": "int256",
                          "nodeType": "ElementaryTypeName",
                          "src": "7154:6:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_int256",
                            "typeString": "int256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7153:14:20"
                  },
                  "returnParameters": {
                    "id": 3170,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3169,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3196,
                        "src": "7191:4:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_int8",
                          "typeString": "int8"
                        },
                        "typeName": {
                          "id": 3168,
                          "name": "int8",
                          "nodeType": "ElementaryTypeName",
                          "src": "7191:4:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_int8",
                            "typeString": "int8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7190:6:20"
                  },
                  "scope": 3225,
                  "src": "7138:204:20",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 3223,
                    "nodeType": "Block",
                    "src": "7582:233:20",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 3214,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 3205,
                                "name": "value",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3199,
                                "src": "7699:5:20",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "id": 3210,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": true,
                                          "lValueRequested": false,
                                          "nodeType": "ElementaryTypeNameExpression",
                                          "src": "7721:6:20",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_type$_t_int256_$",
                                            "typeString": "type(int256)"
                                          },
                                          "typeName": {
                                            "id": 3209,
                                            "name": "int256",
                                            "nodeType": "ElementaryTypeName",
                                            "src": "7721:6:20",
                                            "typeDescriptions": {}
                                          }
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_type$_t_int256_$",
                                            "typeString": "type(int256)"
                                          }
                                        ],
                                        "id": 3208,
                                        "name": "type",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": -27,
                                        "src": "7716:4:20",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                          "typeString": "function () pure"
                                        }
                                      },
                                      "id": 3211,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "kind": "functionCall",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "7716:12:20",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_magic_meta_type_t_int256",
                                        "typeString": "type(int256)"
                                      }
                                    },
                                    "id": 3212,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "memberName": "max",
                                    "nodeType": "MemberAccess",
                                    "src": "7716:16:20",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_int256",
                                      "typeString": "int256"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_int256",
                                      "typeString": "int256"
                                    }
                                  ],
                                  "id": 3207,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "7708:7:20",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_uint256_$",
                                    "typeString": "type(uint256)"
                                  },
                                  "typeName": {
                                    "id": 3206,
                                    "name": "uint256",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "7708:7:20",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 3213,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "7708:25:20",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "7699:34:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e20616e20696e74323536",
                              "id": 3215,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "7735:42:20",
                              "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": 3204,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "7691:7:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 3216,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7691:87:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 3217,
                        "nodeType": "ExpressionStatement",
                        "src": "7691:87:20"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 3220,
                              "name": "value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 3199,
                              "src": "7802:5:20",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 3219,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "7795:6:20",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_int256_$",
                              "typeString": "type(int256)"
                            },
                            "typeName": {
                              "id": 3218,
                              "name": "int256",
                              "nodeType": "ElementaryTypeName",
                              "src": "7795:6:20",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 3221,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7795:13:20",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_int256",
                            "typeString": "int256"
                          }
                        },
                        "functionReturnParameters": 3203,
                        "id": 3222,
                        "nodeType": "Return",
                        "src": "7788:20:20"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3197,
                    "nodeType": "StructuredDocumentation",
                    "src": "7348:165:20",
                    "text": " @dev Converts an unsigned uint256 into a signed int256.\n Requirements:\n - input must be less than or equal to maxInt256."
                  },
                  "id": 3224,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toInt256",
                  "nameLocation": "7527:8:20",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3200,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3199,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "7544:5:20",
                        "nodeType": "VariableDeclaration",
                        "scope": 3224,
                        "src": "7536:13:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3198,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "7536:7:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7535:15:20"
                  },
                  "returnParameters": {
                    "id": 3203,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3202,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3224,
                        "src": "7574:6:20",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_int256",
                          "typeString": "int256"
                        },
                        "typeName": {
                          "id": 3201,
                          "name": "int256",
                          "nodeType": "ElementaryTypeName",
                          "src": "7574:6:20",
                          "typeDescriptions": {
                            "typeIdentifier": "t_int256",
                            "typeString": "int256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7573:8:20"
                  },
                  "scope": 3225,
                  "src": "7518:297:20",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 3226,
              "src": "827:6990:20",
              "usedErrors": []
            }
          ],
          "src": "92:7726:20"
        },
        "id": 20
      },
      "@openzeppelin/contracts/utils/math/SafeMath.sol": {
        "ast": {
          "absolutePath": "@openzeppelin/contracts/utils/math/SafeMath.sol",
          "exportedSymbols": {
            "SafeMath": [
              3537
            ]
          },
          "id": 3538,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 3227,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "92:23:21"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "library",
              "documentation": {
                "id": 3228,
                "nodeType": "StructuredDocumentation",
                "src": "270:196:21",
                "text": " @dev Wrappers over Solidity's arithmetic operations.\n NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler\n now has built in overflow checking."
              },
              "fullyImplemented": true,
              "id": 3537,
              "linearizedBaseContracts": [
                3537
              ],
              "name": "SafeMath",
              "nameLocation": "475:8:21",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "body": {
                    "id": 3259,
                    "nodeType": "Block",
                    "src": "702:140:21",
                    "statements": [
                      {
                        "id": 3258,
                        "nodeType": "UncheckedBlock",
                        "src": "712:124:21",
                        "statements": [
                          {
                            "assignments": [
                              3241
                            ],
                            "declarations": [
                              {
                                "constant": false,
                                "id": 3241,
                                "mutability": "mutable",
                                "name": "c",
                                "nameLocation": "744:1:21",
                                "nodeType": "VariableDeclaration",
                                "scope": 3258,
                                "src": "736:9:21",
                                "stateVariable": false,
                                "storageLocation": "default",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "typeName": {
                                  "id": 3240,
                                  "name": "uint256",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "736:7:21",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "visibility": "internal"
                              }
                            ],
                            "id": 3245,
                            "initialValue": {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 3244,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 3242,
                                "name": "a",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3231,
                                "src": "748:1:21",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "+",
                              "rightExpression": {
                                "id": 3243,
                                "name": "b",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3233,
                                "src": "752:1:21",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "748:5:21",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "nodeType": "VariableDeclarationStatement",
                            "src": "736:17:21"
                          },
                          {
                            "condition": {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 3248,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 3246,
                                "name": "c",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3241,
                                "src": "771:1:21",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<",
                              "rightExpression": {
                                "id": 3247,
                                "name": "a",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3231,
                                "src": "775:1:21",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "771:5:21",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            "id": 3253,
                            "nodeType": "IfStatement",
                            "src": "767:28:21",
                            "trueBody": {
                              "expression": {
                                "components": [
                                  {
                                    "hexValue": "66616c7365",
                                    "id": 3249,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "bool",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "786:5:21",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bool",
                                      "typeString": "bool"
                                    },
                                    "value": "false"
                                  },
                                  {
                                    "hexValue": "30",
                                    "id": 3250,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "793:1:21",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "id": 3251,
                                "isConstant": false,
                                "isInlineArray": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "TupleExpression",
                                "src": "785:10:21",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$_t_bool_$_t_rational_0_by_1_$",
                                  "typeString": "tuple(bool,int_const 0)"
                                }
                              },
                              "functionReturnParameters": 3239,
                              "id": 3252,
                              "nodeType": "Return",
                              "src": "778:17:21"
                            }
                          },
                          {
                            "expression": {
                              "components": [
                                {
                                  "hexValue": "74727565",
                                  "id": 3254,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "bool",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "817:4:21",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bool",
                                    "typeString": "bool"
                                  },
                                  "value": "true"
                                },
                                {
                                  "id": 3255,
                                  "name": "c",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 3241,
                                  "src": "823:1:21",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "id": 3256,
                              "isConstant": false,
                              "isInlineArray": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "nodeType": "TupleExpression",
                              "src": "816:9:21",
                              "typeDescriptions": {
                                "typeIdentifier": "t_tuple$_t_bool_$_t_uint256_$",
                                "typeString": "tuple(bool,uint256)"
                              }
                            },
                            "functionReturnParameters": 3239,
                            "id": 3257,
                            "nodeType": "Return",
                            "src": "809:16:21"
                          }
                        ]
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3229,
                    "nodeType": "StructuredDocumentation",
                    "src": "490:131:21",
                    "text": " @dev Returns the addition of two unsigned integers, with an overflow flag.\n _Available since v3.4._"
                  },
                  "id": 3260,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "tryAdd",
                  "nameLocation": "635:6:21",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3234,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3231,
                        "mutability": "mutable",
                        "name": "a",
                        "nameLocation": "650:1:21",
                        "nodeType": "VariableDeclaration",
                        "scope": 3260,
                        "src": "642:9:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3230,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "642:7:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3233,
                        "mutability": "mutable",
                        "name": "b",
                        "nameLocation": "661:1:21",
                        "nodeType": "VariableDeclaration",
                        "scope": 3260,
                        "src": "653:9:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3232,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "653:7:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "641:22:21"
                  },
                  "returnParameters": {
                    "id": 3239,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3236,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3260,
                        "src": "687:4:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 3235,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "687:4:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3238,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3260,
                        "src": "693:7:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3237,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "693:7:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "686:15:21"
                  },
                  "scope": 3537,
                  "src": "626:216:21",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 3287,
                    "nodeType": "Block",
                    "src": "1064:113:21",
                    "statements": [
                      {
                        "id": 3286,
                        "nodeType": "UncheckedBlock",
                        "src": "1074:97:21",
                        "statements": [
                          {
                            "condition": {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 3274,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 3272,
                                "name": "b",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3265,
                                "src": "1102:1:21",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">",
                              "rightExpression": {
                                "id": 3273,
                                "name": "a",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3263,
                                "src": "1106:1:21",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "1102:5:21",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            "id": 3279,
                            "nodeType": "IfStatement",
                            "src": "1098:28:21",
                            "trueBody": {
                              "expression": {
                                "components": [
                                  {
                                    "hexValue": "66616c7365",
                                    "id": 3275,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "bool",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "1117:5:21",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bool",
                                      "typeString": "bool"
                                    },
                                    "value": "false"
                                  },
                                  {
                                    "hexValue": "30",
                                    "id": 3276,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "1124:1:21",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "id": 3277,
                                "isConstant": false,
                                "isInlineArray": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "TupleExpression",
                                "src": "1116:10:21",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$_t_bool_$_t_rational_0_by_1_$",
                                  "typeString": "tuple(bool,int_const 0)"
                                }
                              },
                              "functionReturnParameters": 3271,
                              "id": 3278,
                              "nodeType": "Return",
                              "src": "1109:17:21"
                            }
                          },
                          {
                            "expression": {
                              "components": [
                                {
                                  "hexValue": "74727565",
                                  "id": 3280,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "bool",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "1148:4:21",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bool",
                                    "typeString": "bool"
                                  },
                                  "value": "true"
                                },
                                {
                                  "commonType": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "id": 3283,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "id": 3281,
                                    "name": "a",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 3263,
                                    "src": "1154:1:21",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": "-",
                                  "rightExpression": {
                                    "id": 3282,
                                    "name": "b",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 3265,
                                    "src": "1158:1:21",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "src": "1154:5:21",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "id": 3284,
                              "isConstant": false,
                              "isInlineArray": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "nodeType": "TupleExpression",
                              "src": "1147:13:21",
                              "typeDescriptions": {
                                "typeIdentifier": "t_tuple$_t_bool_$_t_uint256_$",
                                "typeString": "tuple(bool,uint256)"
                              }
                            },
                            "functionReturnParameters": 3271,
                            "id": 3285,
                            "nodeType": "Return",
                            "src": "1140:20:21"
                          }
                        ]
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3261,
                    "nodeType": "StructuredDocumentation",
                    "src": "848:135:21",
                    "text": " @dev Returns the substraction of two unsigned integers, with an overflow flag.\n _Available since v3.4._"
                  },
                  "id": 3288,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "trySub",
                  "nameLocation": "997:6:21",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3266,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3263,
                        "mutability": "mutable",
                        "name": "a",
                        "nameLocation": "1012:1:21",
                        "nodeType": "VariableDeclaration",
                        "scope": 3288,
                        "src": "1004:9:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3262,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1004:7:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3265,
                        "mutability": "mutable",
                        "name": "b",
                        "nameLocation": "1023:1:21",
                        "nodeType": "VariableDeclaration",
                        "scope": 3288,
                        "src": "1015:9:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3264,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1015:7:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1003:22:21"
                  },
                  "returnParameters": {
                    "id": 3271,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3268,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3288,
                        "src": "1049:4:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 3267,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "1049:4:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3270,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3288,
                        "src": "1055:7:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3269,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1055:7:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1048:15:21"
                  },
                  "scope": 3537,
                  "src": "988:189:21",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 3329,
                    "nodeType": "Block",
                    "src": "1401:417:21",
                    "statements": [
                      {
                        "id": 3328,
                        "nodeType": "UncheckedBlock",
                        "src": "1411:401:21",
                        "statements": [
                          {
                            "condition": {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 3302,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 3300,
                                "name": "a",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3291,
                                "src": "1669:1:21",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "==",
                              "rightExpression": {
                                "hexValue": "30",
                                "id": 3301,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "1674:1:21",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "src": "1669:6:21",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            "id": 3307,
                            "nodeType": "IfStatement",
                            "src": "1665:28:21",
                            "trueBody": {
                              "expression": {
                                "components": [
                                  {
                                    "hexValue": "74727565",
                                    "id": 3303,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "bool",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "1685:4:21",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bool",
                                      "typeString": "bool"
                                    },
                                    "value": "true"
                                  },
                                  {
                                    "hexValue": "30",
                                    "id": 3304,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "1691:1:21",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "id": 3305,
                                "isConstant": false,
                                "isInlineArray": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "TupleExpression",
                                "src": "1684:9:21",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$_t_bool_$_t_rational_0_by_1_$",
                                  "typeString": "tuple(bool,int_const 0)"
                                }
                              },
                              "functionReturnParameters": 3299,
                              "id": 3306,
                              "nodeType": "Return",
                              "src": "1677:16:21"
                            }
                          },
                          {
                            "assignments": [
                              3309
                            ],
                            "declarations": [
                              {
                                "constant": false,
                                "id": 3309,
                                "mutability": "mutable",
                                "name": "c",
                                "nameLocation": "1715:1:21",
                                "nodeType": "VariableDeclaration",
                                "scope": 3328,
                                "src": "1707:9:21",
                                "stateVariable": false,
                                "storageLocation": "default",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "typeName": {
                                  "id": 3308,
                                  "name": "uint256",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "1707:7:21",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "visibility": "internal"
                              }
                            ],
                            "id": 3313,
                            "initialValue": {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 3312,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 3310,
                                "name": "a",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3291,
                                "src": "1719:1:21",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "*",
                              "rightExpression": {
                                "id": 3311,
                                "name": "b",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3293,
                                "src": "1723:1:21",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "1719:5:21",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "nodeType": "VariableDeclarationStatement",
                            "src": "1707:17:21"
                          },
                          {
                            "condition": {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 3318,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 3316,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 3314,
                                  "name": "c",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 3309,
                                  "src": "1742:1:21",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "/",
                                "rightExpression": {
                                  "id": 3315,
                                  "name": "a",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 3291,
                                  "src": "1746:1:21",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "1742:5:21",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "id": 3317,
                                "name": "b",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3293,
                                "src": "1751:1:21",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "1742:10:21",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            "id": 3323,
                            "nodeType": "IfStatement",
                            "src": "1738:33:21",
                            "trueBody": {
                              "expression": {
                                "components": [
                                  {
                                    "hexValue": "66616c7365",
                                    "id": 3319,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "bool",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "1762:5:21",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bool",
                                      "typeString": "bool"
                                    },
                                    "value": "false"
                                  },
                                  {
                                    "hexValue": "30",
                                    "id": 3320,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "1769:1:21",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "id": 3321,
                                "isConstant": false,
                                "isInlineArray": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "TupleExpression",
                                "src": "1761:10:21",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$_t_bool_$_t_rational_0_by_1_$",
                                  "typeString": "tuple(bool,int_const 0)"
                                }
                              },
                              "functionReturnParameters": 3299,
                              "id": 3322,
                              "nodeType": "Return",
                              "src": "1754:17:21"
                            }
                          },
                          {
                            "expression": {
                              "components": [
                                {
                                  "hexValue": "74727565",
                                  "id": 3324,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "bool",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "1793:4:21",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bool",
                                    "typeString": "bool"
                                  },
                                  "value": "true"
                                },
                                {
                                  "id": 3325,
                                  "name": "c",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 3309,
                                  "src": "1799:1:21",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "id": 3326,
                              "isConstant": false,
                              "isInlineArray": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "nodeType": "TupleExpression",
                              "src": "1792:9:21",
                              "typeDescriptions": {
                                "typeIdentifier": "t_tuple$_t_bool_$_t_uint256_$",
                                "typeString": "tuple(bool,uint256)"
                              }
                            },
                            "functionReturnParameters": 3299,
                            "id": 3327,
                            "nodeType": "Return",
                            "src": "1785:16:21"
                          }
                        ]
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3289,
                    "nodeType": "StructuredDocumentation",
                    "src": "1183:137:21",
                    "text": " @dev Returns the multiplication of two unsigned integers, with an overflow flag.\n _Available since v3.4._"
                  },
                  "id": 3330,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "tryMul",
                  "nameLocation": "1334:6:21",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3294,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3291,
                        "mutability": "mutable",
                        "name": "a",
                        "nameLocation": "1349:1:21",
                        "nodeType": "VariableDeclaration",
                        "scope": 3330,
                        "src": "1341:9:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3290,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1341:7:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3293,
                        "mutability": "mutable",
                        "name": "b",
                        "nameLocation": "1360:1:21",
                        "nodeType": "VariableDeclaration",
                        "scope": 3330,
                        "src": "1352:9:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3292,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1352:7:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1340:22:21"
                  },
                  "returnParameters": {
                    "id": 3299,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3296,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3330,
                        "src": "1386:4:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 3295,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "1386:4:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3298,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3330,
                        "src": "1392:7:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3297,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1392:7:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1385:15:21"
                  },
                  "scope": 3537,
                  "src": "1325:493:21",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 3357,
                    "nodeType": "Block",
                    "src": "2043:114:21",
                    "statements": [
                      {
                        "id": 3356,
                        "nodeType": "UncheckedBlock",
                        "src": "2053:98:21",
                        "statements": [
                          {
                            "condition": {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 3344,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 3342,
                                "name": "b",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3335,
                                "src": "2081:1:21",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "==",
                              "rightExpression": {
                                "hexValue": "30",
                                "id": 3343,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "2086:1:21",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "src": "2081:6:21",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            "id": 3349,
                            "nodeType": "IfStatement",
                            "src": "2077:29:21",
                            "trueBody": {
                              "expression": {
                                "components": [
                                  {
                                    "hexValue": "66616c7365",
                                    "id": 3345,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "bool",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "2097:5:21",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bool",
                                      "typeString": "bool"
                                    },
                                    "value": "false"
                                  },
                                  {
                                    "hexValue": "30",
                                    "id": 3346,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "2104:1:21",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "id": 3347,
                                "isConstant": false,
                                "isInlineArray": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "TupleExpression",
                                "src": "2096:10:21",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$_t_bool_$_t_rational_0_by_1_$",
                                  "typeString": "tuple(bool,int_const 0)"
                                }
                              },
                              "functionReturnParameters": 3341,
                              "id": 3348,
                              "nodeType": "Return",
                              "src": "2089:17:21"
                            }
                          },
                          {
                            "expression": {
                              "components": [
                                {
                                  "hexValue": "74727565",
                                  "id": 3350,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "bool",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "2128:4:21",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bool",
                                    "typeString": "bool"
                                  },
                                  "value": "true"
                                },
                                {
                                  "commonType": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "id": 3353,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "id": 3351,
                                    "name": "a",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 3333,
                                    "src": "2134:1:21",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": "/",
                                  "rightExpression": {
                                    "id": 3352,
                                    "name": "b",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 3335,
                                    "src": "2138:1:21",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "src": "2134:5:21",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "id": 3354,
                              "isConstant": false,
                              "isInlineArray": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "nodeType": "TupleExpression",
                              "src": "2127:13:21",
                              "typeDescriptions": {
                                "typeIdentifier": "t_tuple$_t_bool_$_t_uint256_$",
                                "typeString": "tuple(bool,uint256)"
                              }
                            },
                            "functionReturnParameters": 3341,
                            "id": 3355,
                            "nodeType": "Return",
                            "src": "2120:20:21"
                          }
                        ]
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3331,
                    "nodeType": "StructuredDocumentation",
                    "src": "1824:138:21",
                    "text": " @dev Returns the division of two unsigned integers, with a division by zero flag.\n _Available since v3.4._"
                  },
                  "id": 3358,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "tryDiv",
                  "nameLocation": "1976:6:21",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3336,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3333,
                        "mutability": "mutable",
                        "name": "a",
                        "nameLocation": "1991:1:21",
                        "nodeType": "VariableDeclaration",
                        "scope": 3358,
                        "src": "1983:9:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3332,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1983:7:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3335,
                        "mutability": "mutable",
                        "name": "b",
                        "nameLocation": "2002:1:21",
                        "nodeType": "VariableDeclaration",
                        "scope": 3358,
                        "src": "1994:9:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3334,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1994:7:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1982:22:21"
                  },
                  "returnParameters": {
                    "id": 3341,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3338,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3358,
                        "src": "2028:4:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 3337,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "2028:4:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3340,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3358,
                        "src": "2034:7:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3339,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2034:7:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2027:15:21"
                  },
                  "scope": 3537,
                  "src": "1967:190:21",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 3385,
                    "nodeType": "Block",
                    "src": "2392:114:21",
                    "statements": [
                      {
                        "id": 3384,
                        "nodeType": "UncheckedBlock",
                        "src": "2402:98:21",
                        "statements": [
                          {
                            "condition": {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 3372,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 3370,
                                "name": "b",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3363,
                                "src": "2430:1:21",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "==",
                              "rightExpression": {
                                "hexValue": "30",
                                "id": 3371,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "2435:1:21",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "src": "2430:6:21",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            "id": 3377,
                            "nodeType": "IfStatement",
                            "src": "2426:29:21",
                            "trueBody": {
                              "expression": {
                                "components": [
                                  {
                                    "hexValue": "66616c7365",
                                    "id": 3373,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "bool",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "2446:5:21",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bool",
                                      "typeString": "bool"
                                    },
                                    "value": "false"
                                  },
                                  {
                                    "hexValue": "30",
                                    "id": 3374,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "2453:1:21",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  }
                                ],
                                "id": 3375,
                                "isConstant": false,
                                "isInlineArray": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "TupleExpression",
                                "src": "2445:10:21",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$_t_bool_$_t_rational_0_by_1_$",
                                  "typeString": "tuple(bool,int_const 0)"
                                }
                              },
                              "functionReturnParameters": 3369,
                              "id": 3376,
                              "nodeType": "Return",
                              "src": "2438:17:21"
                            }
                          },
                          {
                            "expression": {
                              "components": [
                                {
                                  "hexValue": "74727565",
                                  "id": 3378,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "bool",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "2477:4:21",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bool",
                                    "typeString": "bool"
                                  },
                                  "value": "true"
                                },
                                {
                                  "commonType": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "id": 3381,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "id": 3379,
                                    "name": "a",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 3361,
                                    "src": "2483:1:21",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": "%",
                                  "rightExpression": {
                                    "id": 3380,
                                    "name": "b",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 3363,
                                    "src": "2487:1:21",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "src": "2483:5:21",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "id": 3382,
                              "isConstant": false,
                              "isInlineArray": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "nodeType": "TupleExpression",
                              "src": "2476:13:21",
                              "typeDescriptions": {
                                "typeIdentifier": "t_tuple$_t_bool_$_t_uint256_$",
                                "typeString": "tuple(bool,uint256)"
                              }
                            },
                            "functionReturnParameters": 3369,
                            "id": 3383,
                            "nodeType": "Return",
                            "src": "2469:20:21"
                          }
                        ]
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3359,
                    "nodeType": "StructuredDocumentation",
                    "src": "2163:148:21",
                    "text": " @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.\n _Available since v3.4._"
                  },
                  "id": 3386,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "tryMod",
                  "nameLocation": "2325:6:21",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3364,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3361,
                        "mutability": "mutable",
                        "name": "a",
                        "nameLocation": "2340:1:21",
                        "nodeType": "VariableDeclaration",
                        "scope": 3386,
                        "src": "2332:9:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3360,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2332:7:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3363,
                        "mutability": "mutable",
                        "name": "b",
                        "nameLocation": "2351:1:21",
                        "nodeType": "VariableDeclaration",
                        "scope": 3386,
                        "src": "2343:9:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3362,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2343:7:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2331:22:21"
                  },
                  "returnParameters": {
                    "id": 3369,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3366,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3386,
                        "src": "2377:4:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 3365,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "2377:4:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3368,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3386,
                        "src": "2383:7:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3367,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2383:7:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2376:15:21"
                  },
                  "scope": 3537,
                  "src": "2316:190:21",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 3400,
                    "nodeType": "Block",
                    "src": "2808:29:21",
                    "statements": [
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 3398,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 3396,
                            "name": "a",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3389,
                            "src": "2825:1:21",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "+",
                          "rightExpression": {
                            "id": 3397,
                            "name": "b",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3391,
                            "src": "2829:1:21",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "2825:5:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 3395,
                        "id": 3399,
                        "nodeType": "Return",
                        "src": "2818:12:21"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3387,
                    "nodeType": "StructuredDocumentation",
                    "src": "2512:224:21",
                    "text": " @dev Returns the addition of two unsigned integers, reverting on\n overflow.\n Counterpart to Solidity's `+` operator.\n Requirements:\n - Addition cannot overflow."
                  },
                  "id": 3401,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "add",
                  "nameLocation": "2750:3:21",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3392,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3389,
                        "mutability": "mutable",
                        "name": "a",
                        "nameLocation": "2762:1:21",
                        "nodeType": "VariableDeclaration",
                        "scope": 3401,
                        "src": "2754:9:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3388,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2754:7:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3391,
                        "mutability": "mutable",
                        "name": "b",
                        "nameLocation": "2773:1:21",
                        "nodeType": "VariableDeclaration",
                        "scope": 3401,
                        "src": "2765:9:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3390,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2765:7:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2753:22:21"
                  },
                  "returnParameters": {
                    "id": 3395,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3394,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3401,
                        "src": "2799:7:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3393,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2799:7:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2798:9:21"
                  },
                  "scope": 3537,
                  "src": "2741:96:21",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 3415,
                    "nodeType": "Block",
                    "src": "3175:29:21",
                    "statements": [
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 3413,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 3411,
                            "name": "a",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3404,
                            "src": "3192:1:21",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "-",
                          "rightExpression": {
                            "id": 3412,
                            "name": "b",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3406,
                            "src": "3196:1:21",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "3192:5:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 3410,
                        "id": 3414,
                        "nodeType": "Return",
                        "src": "3185:12:21"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3402,
                    "nodeType": "StructuredDocumentation",
                    "src": "2843:260:21",
                    "text": " @dev Returns the subtraction of two unsigned integers, reverting on\n overflow (when the result is negative).\n Counterpart to Solidity's `-` operator.\n Requirements:\n - Subtraction cannot overflow."
                  },
                  "id": 3416,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "sub",
                  "nameLocation": "3117:3:21",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3407,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3404,
                        "mutability": "mutable",
                        "name": "a",
                        "nameLocation": "3129:1:21",
                        "nodeType": "VariableDeclaration",
                        "scope": 3416,
                        "src": "3121:9:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3403,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3121:7:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3406,
                        "mutability": "mutable",
                        "name": "b",
                        "nameLocation": "3140:1:21",
                        "nodeType": "VariableDeclaration",
                        "scope": 3416,
                        "src": "3132:9:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3405,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3132:7:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3120:22:21"
                  },
                  "returnParameters": {
                    "id": 3410,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3409,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3416,
                        "src": "3166:7:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3408,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3166:7:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3165:9:21"
                  },
                  "scope": 3537,
                  "src": "3108:96:21",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 3430,
                    "nodeType": "Block",
                    "src": "3518:29:21",
                    "statements": [
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 3428,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 3426,
                            "name": "a",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3419,
                            "src": "3535:1:21",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "*",
                          "rightExpression": {
                            "id": 3427,
                            "name": "b",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3421,
                            "src": "3539:1:21",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "3535:5:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 3425,
                        "id": 3429,
                        "nodeType": "Return",
                        "src": "3528:12:21"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3417,
                    "nodeType": "StructuredDocumentation",
                    "src": "3210:236:21",
                    "text": " @dev Returns the multiplication of two unsigned integers, reverting on\n overflow.\n Counterpart to Solidity's `*` operator.\n Requirements:\n - Multiplication cannot overflow."
                  },
                  "id": 3431,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "mul",
                  "nameLocation": "3460:3:21",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3422,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3419,
                        "mutability": "mutable",
                        "name": "a",
                        "nameLocation": "3472:1:21",
                        "nodeType": "VariableDeclaration",
                        "scope": 3431,
                        "src": "3464:9:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3418,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3464:7:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3421,
                        "mutability": "mutable",
                        "name": "b",
                        "nameLocation": "3483:1:21",
                        "nodeType": "VariableDeclaration",
                        "scope": 3431,
                        "src": "3475:9:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3420,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3475:7:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3463:22:21"
                  },
                  "returnParameters": {
                    "id": 3425,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3424,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3431,
                        "src": "3509:7:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3423,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3509:7:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3508:9:21"
                  },
                  "scope": 3537,
                  "src": "3451:96:21",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 3445,
                    "nodeType": "Block",
                    "src": "3903:29:21",
                    "statements": [
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 3443,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 3441,
                            "name": "a",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3434,
                            "src": "3920:1:21",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "/",
                          "rightExpression": {
                            "id": 3442,
                            "name": "b",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3436,
                            "src": "3924:1:21",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "3920:5:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 3440,
                        "id": 3444,
                        "nodeType": "Return",
                        "src": "3913:12:21"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3432,
                    "nodeType": "StructuredDocumentation",
                    "src": "3553:278:21",
                    "text": " @dev Returns the integer division of two unsigned integers, reverting on\n division by zero. The result is rounded towards zero.\n Counterpart to Solidity's `/` operator.\n Requirements:\n - The divisor cannot be zero."
                  },
                  "id": 3446,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "div",
                  "nameLocation": "3845:3:21",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3437,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3434,
                        "mutability": "mutable",
                        "name": "a",
                        "nameLocation": "3857:1:21",
                        "nodeType": "VariableDeclaration",
                        "scope": 3446,
                        "src": "3849:9:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3433,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3849:7:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3436,
                        "mutability": "mutable",
                        "name": "b",
                        "nameLocation": "3868:1:21",
                        "nodeType": "VariableDeclaration",
                        "scope": 3446,
                        "src": "3860:9:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3435,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3860:7:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3848:22:21"
                  },
                  "returnParameters": {
                    "id": 3440,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3439,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3446,
                        "src": "3894:7:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3438,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3894:7:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3893:9:21"
                  },
                  "scope": 3537,
                  "src": "3836:96:21",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 3460,
                    "nodeType": "Block",
                    "src": "4452:29:21",
                    "statements": [
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 3458,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 3456,
                            "name": "a",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3449,
                            "src": "4469:1:21",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "%",
                          "rightExpression": {
                            "id": 3457,
                            "name": "b",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3451,
                            "src": "4473:1:21",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "4469:5:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 3455,
                        "id": 3459,
                        "nodeType": "Return",
                        "src": "4462:12:21"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3447,
                    "nodeType": "StructuredDocumentation",
                    "src": "3938:442:21",
                    "text": " @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),\n reverting when dividing by zero.\n Counterpart to Solidity's `%` operator. This function uses a `revert`\n opcode (which leaves remaining gas untouched) while Solidity uses an\n invalid opcode to revert (consuming all remaining gas).\n Requirements:\n - The divisor cannot be zero."
                  },
                  "id": 3461,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "mod",
                  "nameLocation": "4394:3:21",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3452,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3449,
                        "mutability": "mutable",
                        "name": "a",
                        "nameLocation": "4406:1:21",
                        "nodeType": "VariableDeclaration",
                        "scope": 3461,
                        "src": "4398:9:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3448,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4398:7:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3451,
                        "mutability": "mutable",
                        "name": "b",
                        "nameLocation": "4417:1:21",
                        "nodeType": "VariableDeclaration",
                        "scope": 3461,
                        "src": "4409:9:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3450,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4409:7:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4397:22:21"
                  },
                  "returnParameters": {
                    "id": 3455,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3454,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3461,
                        "src": "4443:7:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3453,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4443:7:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4442:9:21"
                  },
                  "scope": 3537,
                  "src": "4385:96:21",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 3485,
                    "nodeType": "Block",
                    "src": "5070:106:21",
                    "statements": [
                      {
                        "id": 3484,
                        "nodeType": "UncheckedBlock",
                        "src": "5080:90:21",
                        "statements": [
                          {
                            "expression": {
                              "arguments": [
                                {
                                  "commonType": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "id": 3476,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "id": 3474,
                                    "name": "b",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 3466,
                                    "src": "5112:1:21",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": "<=",
                                  "rightExpression": {
                                    "id": 3475,
                                    "name": "a",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 3464,
                                    "src": "5117:1:21",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "src": "5112:6:21",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bool",
                                    "typeString": "bool"
                                  }
                                },
                                {
                                  "id": 3477,
                                  "name": "errorMessage",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 3468,
                                  "src": "5120:12:21",
                                  "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": 3473,
                                "name": "require",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [
                                  -18,
                                  -18
                                ],
                                "referencedDeclaration": -18,
                                "src": "5104:7:21",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                                  "typeString": "function (bool,string memory) pure"
                                }
                              },
                              "id": 3478,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "5104:29:21",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_tuple$__$",
                                "typeString": "tuple()"
                              }
                            },
                            "id": 3479,
                            "nodeType": "ExpressionStatement",
                            "src": "5104:29:21"
                          },
                          {
                            "expression": {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 3482,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 3480,
                                "name": "a",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3464,
                                "src": "5154:1:21",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "-",
                              "rightExpression": {
                                "id": 3481,
                                "name": "b",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3466,
                                "src": "5158:1:21",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "5154:5:21",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "functionReturnParameters": 3472,
                            "id": 3483,
                            "nodeType": "Return",
                            "src": "5147:12:21"
                          }
                        ]
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3462,
                    "nodeType": "StructuredDocumentation",
                    "src": "4487:453:21",
                    "text": " @dev Returns the subtraction of two unsigned integers, reverting with custom message on\n overflow (when the result is negative).\n CAUTION: This function is deprecated because it requires allocating memory for the error\n message unnecessarily. For custom revert reasons use {trySub}.\n Counterpart to Solidity's `-` operator.\n Requirements:\n - Subtraction cannot overflow."
                  },
                  "id": 3486,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "sub",
                  "nameLocation": "4954:3:21",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3469,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3464,
                        "mutability": "mutable",
                        "name": "a",
                        "nameLocation": "4975:1:21",
                        "nodeType": "VariableDeclaration",
                        "scope": 3486,
                        "src": "4967:9:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3463,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4967:7:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3466,
                        "mutability": "mutable",
                        "name": "b",
                        "nameLocation": "4994:1:21",
                        "nodeType": "VariableDeclaration",
                        "scope": 3486,
                        "src": "4986:9:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3465,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4986:7:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3468,
                        "mutability": "mutable",
                        "name": "errorMessage",
                        "nameLocation": "5019:12:21",
                        "nodeType": "VariableDeclaration",
                        "scope": 3486,
                        "src": "5005:26:21",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 3467,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "5005:6:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4957:80:21"
                  },
                  "returnParameters": {
                    "id": 3472,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3471,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3486,
                        "src": "5061:7:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3470,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "5061:7:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5060:9:21"
                  },
                  "scope": 3537,
                  "src": "4945:231:21",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 3510,
                    "nodeType": "Block",
                    "src": "5785:105:21",
                    "statements": [
                      {
                        "id": 3509,
                        "nodeType": "UncheckedBlock",
                        "src": "5795:89:21",
                        "statements": [
                          {
                            "expression": {
                              "arguments": [
                                {
                                  "commonType": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "id": 3501,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "id": 3499,
                                    "name": "b",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 3491,
                                    "src": "5827:1:21",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": ">",
                                  "rightExpression": {
                                    "hexValue": "30",
                                    "id": 3500,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "5831:1:21",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  },
                                  "src": "5827:5:21",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bool",
                                    "typeString": "bool"
                                  }
                                },
                                {
                                  "id": 3502,
                                  "name": "errorMessage",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 3493,
                                  "src": "5834:12:21",
                                  "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": 3498,
                                "name": "require",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [
                                  -18,
                                  -18
                                ],
                                "referencedDeclaration": -18,
                                "src": "5819:7:21",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                                  "typeString": "function (bool,string memory) pure"
                                }
                              },
                              "id": 3503,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "5819:28:21",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_tuple$__$",
                                "typeString": "tuple()"
                              }
                            },
                            "id": 3504,
                            "nodeType": "ExpressionStatement",
                            "src": "5819:28:21"
                          },
                          {
                            "expression": {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 3507,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 3505,
                                "name": "a",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3489,
                                "src": "5868:1:21",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "/",
                              "rightExpression": {
                                "id": 3506,
                                "name": "b",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3491,
                                "src": "5872:1:21",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "5868:5:21",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "functionReturnParameters": 3497,
                            "id": 3508,
                            "nodeType": "Return",
                            "src": "5861:12:21"
                          }
                        ]
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3487,
                    "nodeType": "StructuredDocumentation",
                    "src": "5182:473:21",
                    "text": " @dev Returns the integer division of two unsigned integers, reverting with custom message on\n division by zero. The result is rounded towards zero.\n Counterpart to Solidity's `/` operator. Note: this function uses a\n `revert` opcode (which leaves remaining gas untouched) while Solidity\n uses an invalid opcode to revert (consuming all remaining gas).\n Requirements:\n - The divisor cannot be zero."
                  },
                  "id": 3511,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "div",
                  "nameLocation": "5669:3:21",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3494,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3489,
                        "mutability": "mutable",
                        "name": "a",
                        "nameLocation": "5690:1:21",
                        "nodeType": "VariableDeclaration",
                        "scope": 3511,
                        "src": "5682:9:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3488,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "5682:7:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3491,
                        "mutability": "mutable",
                        "name": "b",
                        "nameLocation": "5709:1:21",
                        "nodeType": "VariableDeclaration",
                        "scope": 3511,
                        "src": "5701:9:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3490,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "5701:7:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3493,
                        "mutability": "mutable",
                        "name": "errorMessage",
                        "nameLocation": "5734:12:21",
                        "nodeType": "VariableDeclaration",
                        "scope": 3511,
                        "src": "5720:26:21",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 3492,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "5720:6:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5672:80:21"
                  },
                  "returnParameters": {
                    "id": 3497,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3496,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3511,
                        "src": "5776:7:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3495,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "5776:7:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5775:9:21"
                  },
                  "scope": 3537,
                  "src": "5660:230:21",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 3535,
                    "nodeType": "Block",
                    "src": "6661:105:21",
                    "statements": [
                      {
                        "id": 3534,
                        "nodeType": "UncheckedBlock",
                        "src": "6671:89:21",
                        "statements": [
                          {
                            "expression": {
                              "arguments": [
                                {
                                  "commonType": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "id": 3526,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "id": 3524,
                                    "name": "b",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 3516,
                                    "src": "6703:1:21",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": ">",
                                  "rightExpression": {
                                    "hexValue": "30",
                                    "id": 3525,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "6707:1:21",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  },
                                  "src": "6703:5:21",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bool",
                                    "typeString": "bool"
                                  }
                                },
                                {
                                  "id": 3527,
                                  "name": "errorMessage",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 3518,
                                  "src": "6710:12:21",
                                  "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": 3523,
                                "name": "require",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [
                                  -18,
                                  -18
                                ],
                                "referencedDeclaration": -18,
                                "src": "6695:7:21",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                                  "typeString": "function (bool,string memory) pure"
                                }
                              },
                              "id": 3528,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "6695:28:21",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_tuple$__$",
                                "typeString": "tuple()"
                              }
                            },
                            "id": 3529,
                            "nodeType": "ExpressionStatement",
                            "src": "6695:28:21"
                          },
                          {
                            "expression": {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 3532,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 3530,
                                "name": "a",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3514,
                                "src": "6744:1:21",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "%",
                              "rightExpression": {
                                "id": 3531,
                                "name": "b",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 3516,
                                "src": "6748:1:21",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "6744:5:21",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "functionReturnParameters": 3522,
                            "id": 3533,
                            "nodeType": "Return",
                            "src": "6737:12:21"
                          }
                        ]
                      }
                    ]
                  },
                  "documentation": {
                    "id": 3512,
                    "nodeType": "StructuredDocumentation",
                    "src": "5896:635:21",
                    "text": " @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),\n reverting with custom message when dividing by zero.\n CAUTION: This function is deprecated because it requires allocating memory for the error\n message unnecessarily. For custom revert reasons use {tryMod}.\n Counterpart to Solidity's `%` operator. This function uses a `revert`\n opcode (which leaves remaining gas untouched) while Solidity uses an\n invalid opcode to revert (consuming all remaining gas).\n Requirements:\n - The divisor cannot be zero."
                  },
                  "id": 3536,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "mod",
                  "nameLocation": "6545:3:21",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3519,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3514,
                        "mutability": "mutable",
                        "name": "a",
                        "nameLocation": "6566:1:21",
                        "nodeType": "VariableDeclaration",
                        "scope": 3536,
                        "src": "6558:9:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3513,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "6558:7:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3516,
                        "mutability": "mutable",
                        "name": "b",
                        "nameLocation": "6585:1:21",
                        "nodeType": "VariableDeclaration",
                        "scope": 3536,
                        "src": "6577:9:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3515,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "6577:7:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3518,
                        "mutability": "mutable",
                        "name": "errorMessage",
                        "nameLocation": "6610:12:21",
                        "nodeType": "VariableDeclaration",
                        "scope": 3536,
                        "src": "6596:26:21",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 3517,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "6596:6:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6548:80:21"
                  },
                  "returnParameters": {
                    "id": 3522,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3521,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3536,
                        "src": "6652:7:21",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3520,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "6652:7:21",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6651:9:21"
                  },
                  "scope": 3537,
                  "src": "6536:230:21",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 3538,
              "src": "467:6301:21",
              "usedErrors": []
            }
          ],
          "src": "92:6677:21"
        },
        "id": 21
      },
      "@pooltogether/aave-yield-source/contracts/external/aave/ATokenInterface.sol": {
        "ast": {
          "absolutePath": "@pooltogether/aave-yield-source/contracts/external/aave/ATokenInterface.sol",
          "exportedSymbols": {
            "ATokenInterface": [
              3549
            ],
            "IAToken": [
              3639
            ],
            "IERC20": [
              890
            ]
          },
          "id": 3550,
          "license": "agpl-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 3539,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "38:22:22"
            },
            {
              "absolutePath": "@pooltogether/aave-yield-source/contracts/external/aave/IAToken.sol",
              "file": "./IAToken.sol",
              "id": 3540,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 3550,
              "sourceUnit": 3640,
              "src": "62:23:22",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 3541,
                    "name": "IAToken",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 3639,
                    "src": "116:7:22"
                  },
                  "id": 3542,
                  "nodeType": "InheritanceSpecifier",
                  "src": "116:7:22"
                }
              ],
              "contractDependencies": [],
              "contractKind": "interface",
              "fullyImplemented": false,
              "id": 3549,
              "linearizedBaseContracts": [
                3549,
                3639,
                890
              ],
              "name": "ATokenInterface",
              "nameLocation": "97:15:22",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "documentation": {
                    "id": 3543,
                    "nodeType": "StructuredDocumentation",
                    "src": "128:101:22",
                    "text": " @dev Returns the address of the underlying asset of this aToken (E.g. WETH for aWETH)*"
                  },
                  "functionSelector": "b16a19de",
                  "id": 3548,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "UNDERLYING_ASSET_ADDRESS",
                  "nameLocation": "295:24:22",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3544,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "319:2:22"
                  },
                  "returnParameters": {
                    "id": 3547,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3546,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3548,
                        "src": "345:7:22",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3545,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "345:7:22",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "344:9:22"
                  },
                  "scope": 3549,
                  "src": "286:68:22",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 3550,
              "src": "87:269:22",
              "usedErrors": []
            }
          ],
          "src": "38:319:22"
        },
        "id": 22
      },
      "@pooltogether/aave-yield-source/contracts/external/aave/IAToken.sol": {
        "ast": {
          "absolutePath": "@pooltogether/aave-yield-source/contracts/external/aave/IAToken.sol",
          "exportedSymbols": {
            "IAToken": [
              3639
            ],
            "IERC20": [
              890
            ]
          },
          "id": 3640,
          "license": "agpl-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 3551,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:23"
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "id": 3553,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 3640,
              "sourceUnit": 891,
              "src": "61:70:23",
              "symbolAliases": [
                {
                  "foreign": {
                    "id": 3552,
                    "name": "IERC20",
                    "nodeType": "Identifier",
                    "overloadedDeclarations": [],
                    "src": "69:6:23",
                    "typeDescriptions": {}
                  },
                  "nameLocation": "-1:-1:-1"
                }
              ],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 3554,
                    "name": "IERC20",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 890,
                    "src": "154:6:23"
                  },
                  "id": 3555,
                  "nodeType": "InheritanceSpecifier",
                  "src": "154:6:23"
                }
              ],
              "contractDependencies": [],
              "contractKind": "interface",
              "fullyImplemented": false,
              "id": 3639,
              "linearizedBaseContracts": [
                3639,
                890
              ],
              "name": "IAToken",
              "nameLocation": "143:7:23",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 3556,
                    "nodeType": "StructuredDocumentation",
                    "src": "165:191:23",
                    "text": " @dev Emitted after the mint action\n @param from The address performing the mint\n @param value The amount being\n @param index The new liquidity index of the reserve*"
                  },
                  "id": 3564,
                  "name": "Mint",
                  "nameLocation": "365:4:23",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 3563,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3558,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "from",
                        "nameLocation": "386:4:23",
                        "nodeType": "VariableDeclaration",
                        "scope": 3564,
                        "src": "370:20:23",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3557,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "370:7:23",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3560,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "400:5:23",
                        "nodeType": "VariableDeclaration",
                        "scope": 3564,
                        "src": "392:13:23",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3559,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "392:7:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3562,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "index",
                        "nameLocation": "415:5:23",
                        "nodeType": "VariableDeclaration",
                        "scope": 3564,
                        "src": "407:13:23",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3561,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "407:7:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "369:52:23"
                  },
                  "src": "359:63:23"
                },
                {
                  "documentation": {
                    "id": 3565,
                    "nodeType": "StructuredDocumentation",
                    "src": "426:287:23",
                    "text": " @dev Mints `amount` aTokens to `user`\n @param user The address receiving the minted tokens\n @param amount The amount of tokens getting minted\n @param index The new liquidity index of the reserve\n @return `true` if the the previous balance of the user was 0"
                  },
                  "functionSelector": "156e29f6",
                  "id": 3576,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "mint",
                  "nameLocation": "725:4:23",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3572,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3567,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "743:4:23",
                        "nodeType": "VariableDeclaration",
                        "scope": 3576,
                        "src": "735:12:23",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3566,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "735:7:23",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3569,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "761:6:23",
                        "nodeType": "VariableDeclaration",
                        "scope": 3576,
                        "src": "753:14:23",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3568,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "753:7:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3571,
                        "mutability": "mutable",
                        "name": "index",
                        "nameLocation": "781:5:23",
                        "nodeType": "VariableDeclaration",
                        "scope": 3576,
                        "src": "773:13:23",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3570,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "773:7:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "729:61:23"
                  },
                  "returnParameters": {
                    "id": 3575,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3574,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3576,
                        "src": "809:4:23",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 3573,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "809:4:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "808:6:23"
                  },
                  "scope": 3639,
                  "src": "716:99:23",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 3577,
                    "nodeType": "StructuredDocumentation",
                    "src": "819:279:23",
                    "text": " @dev Emitted after aTokens are burned\n @param from The owner of the aTokens, getting them burned\n @param target The address that will receive the underlying\n @param value The amount being burned\n @param index The new liquidity index of the reserve*"
                  },
                  "id": 3587,
                  "name": "Burn",
                  "nameLocation": "1107:4:23",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 3586,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3579,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "from",
                        "nameLocation": "1128:4:23",
                        "nodeType": "VariableDeclaration",
                        "scope": 3587,
                        "src": "1112:20:23",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3578,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1112:7:23",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3581,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "target",
                        "nameLocation": "1150:6:23",
                        "nodeType": "VariableDeclaration",
                        "scope": 3587,
                        "src": "1134:22:23",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3580,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1134:7:23",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3583,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "1166:5:23",
                        "nodeType": "VariableDeclaration",
                        "scope": 3587,
                        "src": "1158:13:23",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3582,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1158:7:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3585,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "index",
                        "nameLocation": "1181:5:23",
                        "nodeType": "VariableDeclaration",
                        "scope": 3587,
                        "src": "1173:13:23",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3584,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1173:7:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1111:76:23"
                  },
                  "src": "1101:87:23"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 3588,
                    "nodeType": "StructuredDocumentation",
                    "src": "1192:249:23",
                    "text": " @dev Emitted during the transfer action\n @param from The user whose tokens are being transferred\n @param to The recipient\n @param value The amount being transferred\n @param index The new liquidity index of the reserve*"
                  },
                  "id": 3598,
                  "name": "BalanceTransfer",
                  "nameLocation": "1450:15:23",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 3597,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3590,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "from",
                        "nameLocation": "1482:4:23",
                        "nodeType": "VariableDeclaration",
                        "scope": 3598,
                        "src": "1466:20:23",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3589,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1466:7:23",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3592,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "1504:2:23",
                        "nodeType": "VariableDeclaration",
                        "scope": 3598,
                        "src": "1488:18:23",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3591,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1488:7:23",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3594,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "1516:5:23",
                        "nodeType": "VariableDeclaration",
                        "scope": 3598,
                        "src": "1508:13:23",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3593,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1508:7:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3596,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "index",
                        "nameLocation": "1531:5:23",
                        "nodeType": "VariableDeclaration",
                        "scope": 3598,
                        "src": "1523:13:23",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3595,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1523:7:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1465:72:23"
                  },
                  "src": "1444:94:23"
                },
                {
                  "documentation": {
                    "id": 3599,
                    "nodeType": "StructuredDocumentation",
                    "src": "1542:359:23",
                    "text": " @dev Burns aTokens from `user` and sends the equivalent amount of underlying to `receiverOfUnderlying`\n @param user The owner of the aTokens, getting them burned\n @param receiverOfUnderlying The address that will receive the underlying\n @param amount The amount being burned\n @param index The new liquidity index of the reserve*"
                  },
                  "functionSelector": "d7020d0a",
                  "id": 3610,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "burn",
                  "nameLocation": "1913:4:23",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3608,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3601,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "1931:4:23",
                        "nodeType": "VariableDeclaration",
                        "scope": 3610,
                        "src": "1923:12:23",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3600,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1923:7:23",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3603,
                        "mutability": "mutable",
                        "name": "receiverOfUnderlying",
                        "nameLocation": "1949:20:23",
                        "nodeType": "VariableDeclaration",
                        "scope": 3610,
                        "src": "1941:28:23",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3602,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1941:7:23",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3605,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "1983:6:23",
                        "nodeType": "VariableDeclaration",
                        "scope": 3610,
                        "src": "1975:14:23",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3604,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1975:7:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3607,
                        "mutability": "mutable",
                        "name": "index",
                        "nameLocation": "2003:5:23",
                        "nodeType": "VariableDeclaration",
                        "scope": 3610,
                        "src": "1995:13:23",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3606,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1995:7:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1917:95:23"
                  },
                  "returnParameters": {
                    "id": 3609,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2021:0:23"
                  },
                  "scope": 3639,
                  "src": "1904:118:23",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 3611,
                    "nodeType": "StructuredDocumentation",
                    "src": "2026:169:23",
                    "text": " @dev Mints aTokens to the reserve treasury\n @param amount The amount of tokens getting minted\n @param index The new liquidity index of the reserve"
                  },
                  "functionSelector": "7df5bd3b",
                  "id": 3618,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "mintToTreasury",
                  "nameLocation": "2207:14:23",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3616,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3613,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "2230:6:23",
                        "nodeType": "VariableDeclaration",
                        "scope": 3618,
                        "src": "2222:14:23",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3612,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2222:7:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3615,
                        "mutability": "mutable",
                        "name": "index",
                        "nameLocation": "2246:5:23",
                        "nodeType": "VariableDeclaration",
                        "scope": 3618,
                        "src": "2238:13:23",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3614,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2238:7:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2221:31:23"
                  },
                  "returnParameters": {
                    "id": 3617,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2261:0:23"
                  },
                  "scope": 3639,
                  "src": "2198:64:23",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 3619,
                    "nodeType": "StructuredDocumentation",
                    "src": "2266:291:23",
                    "text": " @dev Transfers aTokens in the event of a borrow being liquidated, in case the liquidators reclaims the aToken\n @param from The address getting liquidated, current owner of the aTokens\n @param to The recipient\n @param value The amount of tokens getting transferred*"
                  },
                  "functionSelector": "f866c319",
                  "id": 3628,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "transferOnLiquidation",
                  "nameLocation": "2569:21:23",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3626,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3621,
                        "mutability": "mutable",
                        "name": "from",
                        "nameLocation": "2604:4:23",
                        "nodeType": "VariableDeclaration",
                        "scope": 3628,
                        "src": "2596:12:23",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3620,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2596:7:23",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3623,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "2622:2:23",
                        "nodeType": "VariableDeclaration",
                        "scope": 3628,
                        "src": "2614:10:23",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3622,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2614:7:23",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3625,
                        "mutability": "mutable",
                        "name": "value",
                        "nameLocation": "2638:5:23",
                        "nodeType": "VariableDeclaration",
                        "scope": 3628,
                        "src": "2630:13:23",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3624,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2630:7:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2590:57:23"
                  },
                  "returnParameters": {
                    "id": 3627,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2656:0:23"
                  },
                  "scope": 3639,
                  "src": "2560:97:23",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 3629,
                    "nodeType": "StructuredDocumentation",
                    "src": "2661:284:23",
                    "text": " @dev Transfers the underlying asset to `target`. Used by the LendingPool to transfer\n assets in borrow(), withdraw() and flashLoan()\n @param user The recipient of the aTokens\n @param amount The amount getting transferred\n @return The amount transferred*"
                  },
                  "functionSelector": "4efecaa5",
                  "id": 3638,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "transferUnderlyingTo",
                  "nameLocation": "2957:20:23",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3634,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3631,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "2986:4:23",
                        "nodeType": "VariableDeclaration",
                        "scope": 3638,
                        "src": "2978:12:23",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3630,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2978:7:23",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3633,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "3000:6:23",
                        "nodeType": "VariableDeclaration",
                        "scope": 3638,
                        "src": "2992:14:23",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3632,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2992:7:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2977:30:23"
                  },
                  "returnParameters": {
                    "id": 3637,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3636,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3638,
                        "src": "3026:7:23",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3635,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3026:7:23",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3025:9:23"
                  },
                  "scope": 3639,
                  "src": "2948:87:23",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 3640,
              "src": "133:2904:23",
              "usedErrors": []
            }
          ],
          "src": "37:3001:23"
        },
        "id": 23
      },
      "@pooltogether/aave-yield-source/contracts/external/aave/IAaveIncentivesController.sol": {
        "ast": {
          "absolutePath": "@pooltogether/aave-yield-source/contracts/external/aave/IAaveIncentivesController.sol",
          "exportedSymbols": {
            "IAaveIncentivesController": [
              3785
            ]
          },
          "id": 3786,
          "license": "agpl-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 3641,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "38:22:24"
            },
            {
              "id": 3642,
              "literals": [
                "experimental",
                "ABIEncoderV2"
              ],
              "nodeType": "PragmaDirective",
              "src": "62:33:24"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "fullyImplemented": false,
              "id": 3785,
              "linearizedBaseContracts": [
                3785
              ],
              "name": "IAaveIncentivesController",
              "nameLocation": "107:25:24",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "anonymous": false,
                  "id": 3648,
                  "name": "RewardsAccrued",
                  "nameLocation": "143:14:24",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 3647,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3644,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "174:4:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 3648,
                        "src": "158:20:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3643,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "158:7:24",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3646,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "188:6:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 3648,
                        "src": "180:14:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3645,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "180:7:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "157:38:24"
                  },
                  "src": "137:59:24"
                },
                {
                  "anonymous": false,
                  "id": 3656,
                  "name": "RewardsClaimed",
                  "nameLocation": "206:14:24",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 3655,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3650,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "237:4:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 3656,
                        "src": "221:20:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3649,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "221:7:24",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3652,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "259:2:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 3656,
                        "src": "243:18:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3651,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "243:7:24",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3654,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "271:6:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 3656,
                        "src": "263:14:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3653,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "263:7:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "220:58:24"
                  },
                  "src": "200:79:24"
                },
                {
                  "anonymous": false,
                  "id": 3662,
                  "name": "ClaimerSet",
                  "nameLocation": "510:10:24",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 3661,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3658,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "537:4:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 3662,
                        "src": "521:20:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3657,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "521:7:24",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3660,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "claimer",
                        "nameLocation": "559:7:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 3662,
                        "src": "543:23:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3659,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "543:7:24",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "520:47:24"
                  },
                  "src": "504:64:24"
                },
                {
                  "functionSelector": "1652e7b7",
                  "id": 3673,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getAssetData",
                  "nameLocation": "827:12:24",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3665,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3664,
                        "mutability": "mutable",
                        "name": "asset",
                        "nameLocation": "848:5:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 3673,
                        "src": "840:13:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3663,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "840:7:24",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "839:15:24"
                  },
                  "returnParameters": {
                    "id": 3672,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3667,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3673,
                        "src": "897:7:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3666,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "897:7:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3669,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3673,
                        "src": "912:7:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3668,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "912:7:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3671,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3673,
                        "src": "927:7:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3670,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "927:7:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "889:51:24"
                  },
                  "scope": 3785,
                  "src": "818:123:24",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 3674,
                    "nodeType": "StructuredDocumentation",
                    "src": "945:179:24",
                    "text": " @dev Whitelists an address to claim the rewards on behalf of another address\n @param user The address of the user\n @param claimer The address of the claimer"
                  },
                  "functionSelector": "f5cf673b",
                  "id": 3681,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setClaimer",
                  "nameLocation": "1136:10:24",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3679,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3676,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "1155:4:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 3681,
                        "src": "1147:12:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3675,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1147:7:24",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3678,
                        "mutability": "mutable",
                        "name": "claimer",
                        "nameLocation": "1169:7:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 3681,
                        "src": "1161:15:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3677,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1161:7:24",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1146:31:24"
                  },
                  "returnParameters": {
                    "id": 3680,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1186:0:24"
                  },
                  "scope": 3785,
                  "src": "1127:60:24",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 3682,
                    "nodeType": "StructuredDocumentation",
                    "src": "1191:164:24",
                    "text": " @dev Returns the whitelisted claimer for a certain address (0x0 if not set)\n @param user The address of the user\n @return The claimer address"
                  },
                  "functionSelector": "74d945ec",
                  "id": 3689,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getClaimer",
                  "nameLocation": "1367:10:24",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3685,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3684,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "1386:4:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 3689,
                        "src": "1378:12:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3683,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1378:7:24",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1377:14:24"
                  },
                  "returnParameters": {
                    "id": 3688,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3687,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3689,
                        "src": "1415:7:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3686,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1415:7:24",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1414:9:24"
                  },
                  "scope": 3785,
                  "src": "1358:66:24",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 3690,
                    "nodeType": "StructuredDocumentation",
                    "src": "1428:171:24",
                    "text": " @dev Configure assets for a certain rewards emission\n @param assets The assets to incentivize\n @param emissionsPerSecond The emission for each asset"
                  },
                  "functionSelector": "79f171b2",
                  "id": 3699,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "configureAssets",
                  "nameLocation": "1611:15:24",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3697,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3693,
                        "mutability": "mutable",
                        "name": "assets",
                        "nameLocation": "1646:6:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 3699,
                        "src": "1627:25:24",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_address_$dyn_calldata_ptr",
                          "typeString": "address[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 3691,
                            "name": "address",
                            "nodeType": "ElementaryTypeName",
                            "src": "1627:7:24",
                            "stateMutability": "nonpayable",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "id": 3692,
                          "nodeType": "ArrayTypeName",
                          "src": "1627:9:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_address_$dyn_storage_ptr",
                            "typeString": "address[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3696,
                        "mutability": "mutable",
                        "name": "emissionsPerSecond",
                        "nameLocation": "1673:18:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 3699,
                        "src": "1654:37:24",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_calldata_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 3694,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "1654:7:24",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 3695,
                          "nodeType": "ArrayTypeName",
                          "src": "1654:9:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1626:66:24"
                  },
                  "returnParameters": {
                    "id": 3698,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1705:0:24"
                  },
                  "scope": 3785,
                  "src": "1602:104:24",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 3700,
                    "nodeType": "StructuredDocumentation",
                    "src": "1710:303:24",
                    "text": " @dev Called by the corresponding asset on any update that affects the rewards distribution\n @param asset The address of the user\n @param userBalance The balance of the user of the asset in the lending pool\n @param totalSupply The total supply of the asset in the lending pool*"
                  },
                  "functionSelector": "31873e2e",
                  "id": 3709,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "handleAction",
                  "nameLocation": "2025:12:24",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3707,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3702,
                        "mutability": "mutable",
                        "name": "asset",
                        "nameLocation": "2051:5:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 3709,
                        "src": "2043:13:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3701,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2043:7:24",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3704,
                        "mutability": "mutable",
                        "name": "userBalance",
                        "nameLocation": "2070:11:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 3709,
                        "src": "2062:19:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3703,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2062:7:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3706,
                        "mutability": "mutable",
                        "name": "totalSupply",
                        "nameLocation": "2095:11:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 3709,
                        "src": "2087:19:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3705,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2087:7:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2037:73:24"
                  },
                  "returnParameters": {
                    "id": 3708,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2119:0:24"
                  },
                  "scope": 3785,
                  "src": "2016:104:24",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 3710,
                    "nodeType": "StructuredDocumentation",
                    "src": "2124:161:24",
                    "text": " @dev Returns the total of rewards of an user, already accrued + not yet accrued\n @param user The address of the user\n @return The rewards*"
                  },
                  "functionSelector": "8b599f26",
                  "id": 3720,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getRewardsBalance",
                  "nameLocation": "2297:17:24",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3716,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3713,
                        "mutability": "mutable",
                        "name": "assets",
                        "nameLocation": "2334:6:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 3720,
                        "src": "2315:25:24",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_address_$dyn_calldata_ptr",
                          "typeString": "address[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 3711,
                            "name": "address",
                            "nodeType": "ElementaryTypeName",
                            "src": "2315:7:24",
                            "stateMutability": "nonpayable",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "id": 3712,
                          "nodeType": "ArrayTypeName",
                          "src": "2315:9:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_address_$dyn_storage_ptr",
                            "typeString": "address[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3715,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "2350:4:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 3720,
                        "src": "2342:12:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3714,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2342:7:24",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2314:41:24"
                  },
                  "returnParameters": {
                    "id": 3719,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3718,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3720,
                        "src": "2391:7:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3717,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2391:7:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2390:9:24"
                  },
                  "scope": 3785,
                  "src": "2288:112:24",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 3721,
                    "nodeType": "StructuredDocumentation",
                    "src": "2404:252:24",
                    "text": " @dev Claims reward for an user, on all the assets of the lending pool, accumulating the pending rewards\n @param amount Amount of rewards to claim\n @param to Address that will be receiving the rewards\n @return Rewards claimed*"
                  },
                  "functionSelector": "3111e7b3",
                  "id": 3733,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "claimRewards",
                  "nameLocation": "2668:12:24",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3729,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3724,
                        "mutability": "mutable",
                        "name": "assets",
                        "nameLocation": "2705:6:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 3733,
                        "src": "2686:25:24",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_address_$dyn_calldata_ptr",
                          "typeString": "address[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 3722,
                            "name": "address",
                            "nodeType": "ElementaryTypeName",
                            "src": "2686:7:24",
                            "stateMutability": "nonpayable",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "id": 3723,
                          "nodeType": "ArrayTypeName",
                          "src": "2686:9:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_address_$dyn_storage_ptr",
                            "typeString": "address[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3726,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "2725:6:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 3733,
                        "src": "2717:14:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3725,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2717:7:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3728,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "2745:2:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 3733,
                        "src": "2737:10:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3727,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2737:7:24",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2680:71:24"
                  },
                  "returnParameters": {
                    "id": 3732,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3731,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3733,
                        "src": "2770:7:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3730,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2770:7:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2769:9:24"
                  },
                  "scope": 3785,
                  "src": "2659:120:24",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 3734,
                    "nodeType": "StructuredDocumentation",
                    "src": "2783:418:24",
                    "text": " @dev Claims reward for an user on behalf, on all the assets of the lending pool, accumulating the pending rewards. The caller must\n be whitelisted via \"allowClaimOnBehalf\" function by the RewardsAdmin role manager\n @param amount Amount of rewards to claim\n @param user Address to check and claim rewards\n @param to Address that will be receiving the rewards\n @return Rewards claimed*"
                  },
                  "functionSelector": "6d34b96e",
                  "id": 3748,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "claimRewardsOnBehalf",
                  "nameLocation": "3213:20:24",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3744,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3737,
                        "mutability": "mutable",
                        "name": "assets",
                        "nameLocation": "3258:6:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 3748,
                        "src": "3239:25:24",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_address_$dyn_calldata_ptr",
                          "typeString": "address[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 3735,
                            "name": "address",
                            "nodeType": "ElementaryTypeName",
                            "src": "3239:7:24",
                            "stateMutability": "nonpayable",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "id": 3736,
                          "nodeType": "ArrayTypeName",
                          "src": "3239:9:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_address_$dyn_storage_ptr",
                            "typeString": "address[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3739,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "3278:6:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 3748,
                        "src": "3270:14:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3738,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3270:7:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3741,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "3298:4:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 3748,
                        "src": "3290:12:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3740,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3290:7:24",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3743,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "3316:2:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 3748,
                        "src": "3308:10:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3742,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3308:7:24",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3233:89:24"
                  },
                  "returnParameters": {
                    "id": 3747,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3746,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3748,
                        "src": "3341:7:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3745,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3341:7:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3340:9:24"
                  },
                  "scope": 3785,
                  "src": "3204:146:24",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 3749,
                    "nodeType": "StructuredDocumentation",
                    "src": "3354:142:24",
                    "text": " @dev returns the unclaimed rewards of the user\n @param user the address of the user\n @return the unclaimed user rewards"
                  },
                  "functionSelector": "198fa81e",
                  "id": 3756,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getUserUnclaimedRewards",
                  "nameLocation": "3508:23:24",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3752,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3751,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "3540:4:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 3756,
                        "src": "3532:12:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3750,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3532:7:24",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3531:14:24"
                  },
                  "returnParameters": {
                    "id": 3755,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3754,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3756,
                        "src": "3569:7:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3753,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3569:7:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3568:9:24"
                  },
                  "scope": 3785,
                  "src": "3499:79:24",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 3757,
                    "nodeType": "StructuredDocumentation",
                    "src": "3582:187:24",
                    "text": " @dev returns the unclaimed rewards of the user\n @param user the address of the user\n @param asset The asset to incentivize\n @return the user index for the asset"
                  },
                  "functionSelector": "3373ee4c",
                  "id": 3766,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getUserAssetData",
                  "nameLocation": "3781:16:24",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3762,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3759,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "3806:4:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 3766,
                        "src": "3798:12:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3758,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3798:7:24",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3761,
                        "mutability": "mutable",
                        "name": "asset",
                        "nameLocation": "3820:5:24",
                        "nodeType": "VariableDeclaration",
                        "scope": 3766,
                        "src": "3812:13:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3760,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3812:7:24",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3797:29:24"
                  },
                  "returnParameters": {
                    "id": 3765,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3764,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3766,
                        "src": "3850:7:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3763,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3850:7:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3849:9:24"
                  },
                  "scope": 3785,
                  "src": "3772:87:24",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 3767,
                    "nodeType": "StructuredDocumentation",
                    "src": "3863:104:24",
                    "text": " @dev for backward compatibility with previous implementation of the Incentives controller"
                  },
                  "functionSelector": "99248ea7",
                  "id": 3772,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "REWARD_TOKEN",
                  "nameLocation": "3979:12:24",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3768,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3991:2:24"
                  },
                  "returnParameters": {
                    "id": 3771,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3770,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3772,
                        "src": "4017:7:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3769,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4017:7:24",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4016:9:24"
                  },
                  "scope": 3785,
                  "src": "3970:56:24",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 3773,
                    "nodeType": "StructuredDocumentation",
                    "src": "4030:104:24",
                    "text": " @dev for backward compatibility with previous implementation of the Incentives controller"
                  },
                  "functionSelector": "aaf5eb68",
                  "id": 3778,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "PRECISION",
                  "nameLocation": "4146:9:24",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3774,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4155:2:24"
                  },
                  "returnParameters": {
                    "id": 3777,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3776,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3778,
                        "src": "4181:5:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 3775,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "4181:5:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4180:7:24"
                  },
                  "scope": 3785,
                  "src": "4137:51:24",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 3779,
                    "nodeType": "StructuredDocumentation",
                    "src": "4192:72:24",
                    "text": " @dev Gets the distribution end timestamp of the emissions"
                  },
                  "functionSelector": "919cd40f",
                  "id": 3784,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "DISTRIBUTION_END",
                  "nameLocation": "4276:16:24",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3780,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4292:2:24"
                  },
                  "returnParameters": {
                    "id": 3783,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3782,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3784,
                        "src": "4318:7:24",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3781,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4318:7:24",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4317:9:24"
                  },
                  "scope": 3785,
                  "src": "4267:60:24",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 3786,
              "src": "97:4232:24",
              "usedErrors": []
            }
          ],
          "src": "38:4292:24"
        },
        "id": 24
      },
      "@pooltogether/aave-yield-source/contracts/external/aave/ILendingPool.sol": {
        "ast": {
          "absolutePath": "@pooltogether/aave-yield-source/contracts/external/aave/ILendingPool.sol",
          "exportedSymbols": {
            "ILendingPool": [
              3812
            ]
          },
          "id": 3813,
          "license": "agpl-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 3787,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:25"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "fullyImplemented": false,
              "id": 3812,
              "linearizedBaseContracts": [
                3812
              ],
              "name": "ILendingPool",
              "nameLocation": "71:12:25",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "documentation": {
                    "id": 3788,
                    "nodeType": "StructuredDocumentation",
                    "src": "89:712:25",
                    "text": " @dev Deposits an `amount` of underlying asset into the reserve, receiving in return overlying aTokens.\n - E.g. User deposits 100 USDC and gets in return 100 aUSDC\n @param asset The address of the underlying asset to deposit\n @param amount The amount to be deposited\n @param onBehalfOf The address that will receive the aTokens, same as msg.sender if the user\n   wants to receive them on his own wallet, or a different address if the beneficiary of aTokens\n   is a different wallet\n @param referralCode Code used to register the integrator originating the operation, for potential rewards.\n   0 if the action is executed directly by the user, without any middle-man*"
                  },
                  "functionSelector": "e8eda9df",
                  "id": 3799,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "deposit",
                  "nameLocation": "813:7:25",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3797,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3790,
                        "mutability": "mutable",
                        "name": "asset",
                        "nameLocation": "834:5:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 3799,
                        "src": "826:13:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3789,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "826:7:25",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3792,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "853:6:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 3799,
                        "src": "845:14:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3791,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "845:7:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3794,
                        "mutability": "mutable",
                        "name": "onBehalfOf",
                        "nameLocation": "873:10:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 3799,
                        "src": "865:18:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3793,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "865:7:25",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3796,
                        "mutability": "mutable",
                        "name": "referralCode",
                        "nameLocation": "896:12:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 3799,
                        "src": "889:19:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint16",
                          "typeString": "uint16"
                        },
                        "typeName": {
                          "id": 3795,
                          "name": "uint16",
                          "nodeType": "ElementaryTypeName",
                          "src": "889:6:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint16",
                            "typeString": "uint16"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "820:92:25"
                  },
                  "returnParameters": {
                    "id": 3798,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "921:0:25"
                  },
                  "scope": 3812,
                  "src": "804:118:25",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 3800,
                    "nodeType": "StructuredDocumentation",
                    "src": "926:665:25",
                    "text": " @dev Withdraws an `amount` of underlying asset from the reserve, burning the equivalent aTokens owned\n E.g. User has 100 aUSDC, calls withdraw() and receives 100 USDC, burning the 100 aUSDC\n @param asset The address of the underlying asset to withdraw\n @param amount The underlying amount to be withdrawn\n   - Send the value type(uint256).max in order to withdraw the whole aToken balance\n @param to Address that will receive the underlying, same as msg.sender if the user\n   wants to receive it on his own wallet, or a different address if the beneficiary is a\n   different wallet\n @return The final amount withdrawn*"
                  },
                  "functionSelector": "69328dec",
                  "id": 3811,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "withdraw",
                  "nameLocation": "1603:8:25",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3807,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3802,
                        "mutability": "mutable",
                        "name": "asset",
                        "nameLocation": "1625:5:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 3811,
                        "src": "1617:13:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3801,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1617:7:25",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3804,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "1644:6:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 3811,
                        "src": "1636:14:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3803,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1636:7:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3806,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "1664:2:25",
                        "nodeType": "VariableDeclaration",
                        "scope": 3811,
                        "src": "1656:10:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3805,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1656:7:25",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1611:59:25"
                  },
                  "returnParameters": {
                    "id": 3810,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3809,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3811,
                        "src": "1689:7:25",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3808,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1689:7:25",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1688:9:25"
                  },
                  "scope": 3812,
                  "src": "1594:104:25",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 3813,
              "src": "61:1640:25",
              "usedErrors": []
            }
          ],
          "src": "37:1665:25"
        },
        "id": 25
      },
      "@pooltogether/aave-yield-source/contracts/external/aave/ILendingPoolAddressesProvider.sol": {
        "ast": {
          "absolutePath": "@pooltogether/aave-yield-source/contracts/external/aave/ILendingPoolAddressesProvider.sol",
          "exportedSymbols": {
            "ILendingPoolAddressesProvider": [
              3963
            ]
          },
          "id": 3964,
          "license": "agpl-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 3814,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:26"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "documentation": {
                "id": 3815,
                "nodeType": "StructuredDocumentation",
                "src": "61:311:26",
                "text": " @title LendingPoolAddressesProvider contract\n @dev Main registry of addresses part of or connected to the protocol, including permissioned roles\n - Acting also as factory of proxies and admin of those, so with right to change its implementations\n - Owned by the Aave Governance\n @author Aave*"
              },
              "fullyImplemented": false,
              "id": 3963,
              "linearizedBaseContracts": [
                3963
              ],
              "name": "ILendingPoolAddressesProvider",
              "nameLocation": "383:29:26",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "anonymous": false,
                  "id": 3819,
                  "name": "MarketIdSet",
                  "nameLocation": "423:11:26",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 3818,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3817,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "newMarketId",
                        "nameLocation": "442:11:26",
                        "nodeType": "VariableDeclaration",
                        "scope": 3819,
                        "src": "435:18:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 3816,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "435:6:26",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "434:20:26"
                  },
                  "src": "417:38:26"
                },
                {
                  "anonymous": false,
                  "id": 3823,
                  "name": "LendingPoolUpdated",
                  "nameLocation": "464:18:26",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 3822,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3821,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "newAddress",
                        "nameLocation": "499:10:26",
                        "nodeType": "VariableDeclaration",
                        "scope": 3823,
                        "src": "483:26:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3820,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "483:7:26",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "482:28:26"
                  },
                  "src": "458:53:26"
                },
                {
                  "anonymous": false,
                  "id": 3827,
                  "name": "ConfigurationAdminUpdated",
                  "nameLocation": "520:25:26",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 3826,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3825,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "newAddress",
                        "nameLocation": "562:10:26",
                        "nodeType": "VariableDeclaration",
                        "scope": 3827,
                        "src": "546:26:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3824,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "546:7:26",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "545:28:26"
                  },
                  "src": "514:60:26"
                },
                {
                  "anonymous": false,
                  "id": 3831,
                  "name": "EmergencyAdminUpdated",
                  "nameLocation": "583:21:26",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 3830,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3829,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "newAddress",
                        "nameLocation": "621:10:26",
                        "nodeType": "VariableDeclaration",
                        "scope": 3831,
                        "src": "605:26:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3828,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "605:7:26",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "604:28:26"
                  },
                  "src": "577:56:26"
                },
                {
                  "anonymous": false,
                  "id": 3835,
                  "name": "LendingPoolConfiguratorUpdated",
                  "nameLocation": "642:30:26",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 3834,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3833,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "newAddress",
                        "nameLocation": "689:10:26",
                        "nodeType": "VariableDeclaration",
                        "scope": 3835,
                        "src": "673:26:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3832,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "673:7:26",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "672:28:26"
                  },
                  "src": "636:65:26"
                },
                {
                  "anonymous": false,
                  "id": 3839,
                  "name": "LendingPoolCollateralManagerUpdated",
                  "nameLocation": "710:35:26",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 3838,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3837,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "newAddress",
                        "nameLocation": "762:10:26",
                        "nodeType": "VariableDeclaration",
                        "scope": 3839,
                        "src": "746:26:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3836,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "746:7:26",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "745:28:26"
                  },
                  "src": "704:70:26"
                },
                {
                  "anonymous": false,
                  "id": 3843,
                  "name": "PriceOracleUpdated",
                  "nameLocation": "783:18:26",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 3842,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3841,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "newAddress",
                        "nameLocation": "818:10:26",
                        "nodeType": "VariableDeclaration",
                        "scope": 3843,
                        "src": "802:26:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3840,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "802:7:26",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "801:28:26"
                  },
                  "src": "777:53:26"
                },
                {
                  "anonymous": false,
                  "id": 3847,
                  "name": "LendingRateOracleUpdated",
                  "nameLocation": "839:24:26",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 3846,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3845,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "newAddress",
                        "nameLocation": "880:10:26",
                        "nodeType": "VariableDeclaration",
                        "scope": 3847,
                        "src": "864:26:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3844,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "864:7:26",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "863:28:26"
                  },
                  "src": "833:59:26"
                },
                {
                  "anonymous": false,
                  "id": 3853,
                  "name": "ProxyCreated",
                  "nameLocation": "901:12:26",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 3852,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3849,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "id",
                        "nameLocation": "922:2:26",
                        "nodeType": "VariableDeclaration",
                        "scope": 3853,
                        "src": "914:10:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 3848,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "914:7:26",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3851,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "newAddress",
                        "nameLocation": "942:10:26",
                        "nodeType": "VariableDeclaration",
                        "scope": 3853,
                        "src": "926:26:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3850,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "926:7:26",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "913:40:26"
                  },
                  "src": "895:59:26"
                },
                {
                  "anonymous": false,
                  "id": 3861,
                  "name": "AddressSet",
                  "nameLocation": "963:10:26",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 3860,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3855,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "id",
                        "nameLocation": "982:2:26",
                        "nodeType": "VariableDeclaration",
                        "scope": 3861,
                        "src": "974:10:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 3854,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "974:7:26",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3857,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "newAddress",
                        "nameLocation": "1002:10:26",
                        "nodeType": "VariableDeclaration",
                        "scope": 3861,
                        "src": "986:26:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3856,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "986:7:26",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3859,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "hasProxy",
                        "nameLocation": "1019:8:26",
                        "nodeType": "VariableDeclaration",
                        "scope": 3861,
                        "src": "1014:13:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 3858,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "1014:4:26",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "973:55:26"
                  },
                  "src": "957:72:26"
                },
                {
                  "functionSelector": "568ef470",
                  "id": 3866,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getMarketId",
                  "nameLocation": "1042:11:26",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3862,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1053:2:26"
                  },
                  "returnParameters": {
                    "id": 3865,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3864,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3866,
                        "src": "1079:13:26",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 3863,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "1079:6:26",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1078:15:26"
                  },
                  "scope": 3963,
                  "src": "1033:61:26",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "functionSelector": "f67b1847",
                  "id": 3871,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setMarketId",
                  "nameLocation": "1107:11:26",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3869,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3868,
                        "mutability": "mutable",
                        "name": "marketId",
                        "nameLocation": "1135:8:26",
                        "nodeType": "VariableDeclaration",
                        "scope": 3871,
                        "src": "1119:24:26",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_calldata_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 3867,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "1119:6:26",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1118:26:26"
                  },
                  "returnParameters": {
                    "id": 3870,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1153:0:26"
                  },
                  "scope": 3963,
                  "src": "1098:56:26",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "functionSelector": "ca446dd9",
                  "id": 3878,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setAddress",
                  "nameLocation": "1167:10:26",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3876,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3873,
                        "mutability": "mutable",
                        "name": "id",
                        "nameLocation": "1186:2:26",
                        "nodeType": "VariableDeclaration",
                        "scope": 3878,
                        "src": "1178:10:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 3872,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1178:7:26",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3875,
                        "mutability": "mutable",
                        "name": "newAddress",
                        "nameLocation": "1198:10:26",
                        "nodeType": "VariableDeclaration",
                        "scope": 3878,
                        "src": "1190:18:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3874,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1190:7:26",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1177:32:26"
                  },
                  "returnParameters": {
                    "id": 3877,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1218:0:26"
                  },
                  "scope": 3963,
                  "src": "1158:61:26",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "functionSelector": "5dcc528c",
                  "id": 3885,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setAddressAsProxy",
                  "nameLocation": "1232:17:26",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3883,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3880,
                        "mutability": "mutable",
                        "name": "id",
                        "nameLocation": "1258:2:26",
                        "nodeType": "VariableDeclaration",
                        "scope": 3885,
                        "src": "1250:10:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 3879,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1250:7:26",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3882,
                        "mutability": "mutable",
                        "name": "impl",
                        "nameLocation": "1270:4:26",
                        "nodeType": "VariableDeclaration",
                        "scope": 3885,
                        "src": "1262:12:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3881,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1262:7:26",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1249:26:26"
                  },
                  "returnParameters": {
                    "id": 3884,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1284:0:26"
                  },
                  "scope": 3963,
                  "src": "1223:62:26",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "functionSelector": "21f8a721",
                  "id": 3892,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getAddress",
                  "nameLocation": "1298:10:26",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3888,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3887,
                        "mutability": "mutable",
                        "name": "id",
                        "nameLocation": "1317:2:26",
                        "nodeType": "VariableDeclaration",
                        "scope": 3892,
                        "src": "1309:10:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 3886,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1309:7:26",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1308:12:26"
                  },
                  "returnParameters": {
                    "id": 3891,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3890,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3892,
                        "src": "1344:7:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3889,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1344:7:26",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1343:9:26"
                  },
                  "scope": 3963,
                  "src": "1289:64:26",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "functionSelector": "0261bf8b",
                  "id": 3897,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getLendingPool",
                  "nameLocation": "1366:14:26",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3893,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1380:2:26"
                  },
                  "returnParameters": {
                    "id": 3896,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3895,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3897,
                        "src": "1406:7:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3894,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1406:7:26",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1405:9:26"
                  },
                  "scope": 3963,
                  "src": "1357:58:26",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "functionSelector": "5aef021f",
                  "id": 3902,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setLendingPoolImpl",
                  "nameLocation": "1428:18:26",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3900,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3899,
                        "mutability": "mutable",
                        "name": "pool",
                        "nameLocation": "1455:4:26",
                        "nodeType": "VariableDeclaration",
                        "scope": 3902,
                        "src": "1447:12:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3898,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1447:7:26",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1446:14:26"
                  },
                  "returnParameters": {
                    "id": 3901,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1469:0:26"
                  },
                  "scope": 3963,
                  "src": "1419:51:26",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "functionSelector": "85c858b1",
                  "id": 3907,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getLendingPoolConfigurator",
                  "nameLocation": "1483:26:26",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3903,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1509:2:26"
                  },
                  "returnParameters": {
                    "id": 3906,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3905,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3907,
                        "src": "1535:7:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3904,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1535:7:26",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1534:9:26"
                  },
                  "scope": 3963,
                  "src": "1474:70:26",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "functionSelector": "c12542df",
                  "id": 3912,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setLendingPoolConfiguratorImpl",
                  "nameLocation": "1557:30:26",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3910,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3909,
                        "mutability": "mutable",
                        "name": "configurator",
                        "nameLocation": "1596:12:26",
                        "nodeType": "VariableDeclaration",
                        "scope": 3912,
                        "src": "1588:20:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3908,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1588:7:26",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1587:22:26"
                  },
                  "returnParameters": {
                    "id": 3911,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1618:0:26"
                  },
                  "scope": 3963,
                  "src": "1548:71:26",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "functionSelector": "712d9171",
                  "id": 3917,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getLendingPoolCollateralManager",
                  "nameLocation": "1632:31:26",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3913,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1663:2:26"
                  },
                  "returnParameters": {
                    "id": 3916,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3915,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3917,
                        "src": "1689:7:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3914,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1689:7:26",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1688:9:26"
                  },
                  "scope": 3963,
                  "src": "1623:75:26",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "functionSelector": "398e5553",
                  "id": 3922,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setLendingPoolCollateralManager",
                  "nameLocation": "1711:31:26",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3920,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3919,
                        "mutability": "mutable",
                        "name": "manager",
                        "nameLocation": "1751:7:26",
                        "nodeType": "VariableDeclaration",
                        "scope": 3922,
                        "src": "1743:15:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3918,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1743:7:26",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1742:17:26"
                  },
                  "returnParameters": {
                    "id": 3921,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1768:0:26"
                  },
                  "scope": 3963,
                  "src": "1702:67:26",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "functionSelector": "aecda378",
                  "id": 3927,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPoolAdmin",
                  "nameLocation": "1782:12:26",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3923,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1794:2:26"
                  },
                  "returnParameters": {
                    "id": 3926,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3925,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3927,
                        "src": "1820:7:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3924,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1820:7:26",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1819:9:26"
                  },
                  "scope": 3963,
                  "src": "1773:56:26",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "functionSelector": "283d62ad",
                  "id": 3932,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setPoolAdmin",
                  "nameLocation": "1842:12:26",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3930,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3929,
                        "mutability": "mutable",
                        "name": "admin",
                        "nameLocation": "1863:5:26",
                        "nodeType": "VariableDeclaration",
                        "scope": 3932,
                        "src": "1855:13:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3928,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1855:7:26",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1854:15:26"
                  },
                  "returnParameters": {
                    "id": 3931,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1878:0:26"
                  },
                  "scope": 3963,
                  "src": "1833:46:26",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "functionSelector": "ddcaa9ea",
                  "id": 3937,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getEmergencyAdmin",
                  "nameLocation": "1892:17:26",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3933,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1909:2:26"
                  },
                  "returnParameters": {
                    "id": 3936,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3935,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3937,
                        "src": "1935:7:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3934,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1935:7:26",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1934:9:26"
                  },
                  "scope": 3963,
                  "src": "1883:61:26",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "functionSelector": "35da3394",
                  "id": 3942,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setEmergencyAdmin",
                  "nameLocation": "1957:17:26",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3940,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3939,
                        "mutability": "mutable",
                        "name": "admin",
                        "nameLocation": "1983:5:26",
                        "nodeType": "VariableDeclaration",
                        "scope": 3942,
                        "src": "1975:13:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3938,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1975:7:26",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1974:15:26"
                  },
                  "returnParameters": {
                    "id": 3941,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1998:0:26"
                  },
                  "scope": 3963,
                  "src": "1948:51:26",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "functionSelector": "fca513a8",
                  "id": 3947,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPriceOracle",
                  "nameLocation": "2012:14:26",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3943,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2026:2:26"
                  },
                  "returnParameters": {
                    "id": 3946,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3945,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3947,
                        "src": "2052:7:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3944,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2052:7:26",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2051:9:26"
                  },
                  "scope": 3963,
                  "src": "2003:58:26",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "functionSelector": "530e784f",
                  "id": 3952,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setPriceOracle",
                  "nameLocation": "2074:14:26",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3950,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3949,
                        "mutability": "mutable",
                        "name": "priceOracle",
                        "nameLocation": "2097:11:26",
                        "nodeType": "VariableDeclaration",
                        "scope": 3952,
                        "src": "2089:19:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3948,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2089:7:26",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2088:21:26"
                  },
                  "returnParameters": {
                    "id": 3951,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2118:0:26"
                  },
                  "scope": 3963,
                  "src": "2065:54:26",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "functionSelector": "3618abba",
                  "id": 3957,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getLendingRateOracle",
                  "nameLocation": "2132:20:26",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3953,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2152:2:26"
                  },
                  "returnParameters": {
                    "id": 3956,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3955,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3957,
                        "src": "2178:7:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3954,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2178:7:26",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2177:9:26"
                  },
                  "scope": 3963,
                  "src": "2123:64:26",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "functionSelector": "820d1274",
                  "id": 3962,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setLendingRateOracle",
                  "nameLocation": "2200:20:26",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3960,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3959,
                        "mutability": "mutable",
                        "name": "lendingRateOracle",
                        "nameLocation": "2229:17:26",
                        "nodeType": "VariableDeclaration",
                        "scope": 3962,
                        "src": "2221:25:26",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3958,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2221:7:26",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2220:27:26"
                  },
                  "returnParameters": {
                    "id": 3961,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2256:0:26"
                  },
                  "scope": 3963,
                  "src": "2191:66:26",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 3964,
              "src": "373:1886:26",
              "usedErrors": []
            }
          ],
          "src": "37:2223:26"
        },
        "id": 26
      },
      "@pooltogether/aave-yield-source/contracts/external/aave/ILendingPoolAddressesProviderRegistry.sol": {
        "ast": {
          "absolutePath": "@pooltogether/aave-yield-source/contracts/external/aave/ILendingPoolAddressesProviderRegistry.sol",
          "exportedSymbols": {
            "ILendingPoolAddressesProviderRegistry": [
              4000
            ]
          },
          "id": 4001,
          "license": "agpl-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 3965,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:27"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "documentation": {
                "id": 3966,
                "nodeType": "StructuredDocumentation",
                "src": "61:407:27",
                "text": " @title LendingPoolAddressesProviderRegistry contract\n @dev Main registry of LendingPoolAddressesProvider of multiple Aave protocol's markets\n - Used for indexing purposes of Aave protocol's markets\n - The id assigned to a LendingPoolAddressesProvider refers to the market it is connected with,\n   for example with `0` for the Aave main market and `1` for the next created\n @author Aave*"
              },
              "fullyImplemented": false,
              "id": 4000,
              "linearizedBaseContracts": [
                4000
              ],
              "name": "ILendingPoolAddressesProviderRegistry",
              "nameLocation": "479:37:27",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "anonymous": false,
                  "id": 3970,
                  "name": "AddressesProviderRegistered",
                  "nameLocation": "527:27:27",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 3969,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3968,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "newAddress",
                        "nameLocation": "571:10:27",
                        "nodeType": "VariableDeclaration",
                        "scope": 3970,
                        "src": "555:26:27",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3967,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "555:7:27",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "554:28:27"
                  },
                  "src": "521:62:27"
                },
                {
                  "anonymous": false,
                  "id": 3974,
                  "name": "AddressesProviderUnregistered",
                  "nameLocation": "592:29:27",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 3973,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3972,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "newAddress",
                        "nameLocation": "638:10:27",
                        "nodeType": "VariableDeclaration",
                        "scope": 3974,
                        "src": "622:26:27",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3971,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "622:7:27",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "621:28:27"
                  },
                  "src": "586:64:27"
                },
                {
                  "functionSelector": "365ccbbf",
                  "id": 3980,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getAddressesProvidersList",
                  "nameLocation": "663:25:27",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3975,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "688:2:27"
                  },
                  "returnParameters": {
                    "id": 3979,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3978,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3980,
                        "src": "714:16:27",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_address_$dyn_memory_ptr",
                          "typeString": "address[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 3976,
                            "name": "address",
                            "nodeType": "ElementaryTypeName",
                            "src": "714:7:27",
                            "stateMutability": "nonpayable",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "id": 3977,
                          "nodeType": "ArrayTypeName",
                          "src": "714:9:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_address_$dyn_storage_ptr",
                            "typeString": "address[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "713:18:27"
                  },
                  "scope": 4000,
                  "src": "654:78:27",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "functionSelector": "d0267be7",
                  "id": 3987,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getAddressesProviderIdByAddress",
                  "nameLocation": "745:31:27",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3983,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3982,
                        "mutability": "mutable",
                        "name": "addressesProvider",
                        "nameLocation": "785:17:27",
                        "nodeType": "VariableDeclaration",
                        "scope": 3987,
                        "src": "777:25:27",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3981,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "777:7:27",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "776:27:27"
                  },
                  "returnParameters": {
                    "id": 3986,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3985,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 3987,
                        "src": "839:7:27",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3984,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "839:7:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "838:9:27"
                  },
                  "scope": 4000,
                  "src": "736:112:27",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "functionSelector": "d258191e",
                  "id": 3994,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "registerAddressesProvider",
                  "nameLocation": "861:25:27",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3992,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3989,
                        "mutability": "mutable",
                        "name": "provider",
                        "nameLocation": "895:8:27",
                        "nodeType": "VariableDeclaration",
                        "scope": 3994,
                        "src": "887:16:27",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3988,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "887:7:27",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 3991,
                        "mutability": "mutable",
                        "name": "id",
                        "nameLocation": "913:2:27",
                        "nodeType": "VariableDeclaration",
                        "scope": 3994,
                        "src": "905:10:27",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 3990,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "905:7:27",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "886:30:27"
                  },
                  "returnParameters": {
                    "id": 3993,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "925:0:27"
                  },
                  "scope": 4000,
                  "src": "852:74:27",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "functionSelector": "0de26707",
                  "id": 3999,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "unregisterAddressesProvider",
                  "nameLocation": "939:27:27",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 3997,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 3996,
                        "mutability": "mutable",
                        "name": "provider",
                        "nameLocation": "975:8:27",
                        "nodeType": "VariableDeclaration",
                        "scope": 3999,
                        "src": "967:16:27",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 3995,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "967:7:27",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "966:18:27"
                  },
                  "returnParameters": {
                    "id": 3998,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "993:0:27"
                  },
                  "scope": 4000,
                  "src": "930:64:27",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 4001,
              "src": "469:527:27",
              "usedErrors": []
            }
          ],
          "src": "37:960:27"
        },
        "id": 27
      },
      "@pooltogether/aave-yield-source/contracts/external/aave/IProtocolYieldSource.sol": {
        "ast": {
          "absolutePath": "@pooltogether/aave-yield-source/contracts/external/aave/IProtocolYieldSource.sol",
          "exportedSymbols": {
            "IERC20": [
              890
            ],
            "IProtocolYieldSource": [
              4025
            ],
            "IYieldSource": [
              17542
            ]
          },
          "id": 4026,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 4002,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:28"
            },
            {
              "absolutePath": "@pooltogether/yield-source-interface/contracts/IYieldSource.sol",
              "file": "@pooltogether/yield-source-interface/contracts/IYieldSource.sol",
              "id": 4003,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 4026,
              "sourceUnit": 17543,
              "src": "61:73:28",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "id": 4004,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 4026,
              "sourceUnit": 891,
              "src": "135:56:28",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 4006,
                    "name": "IYieldSource",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 17542,
                    "src": "428:12:28"
                  },
                  "id": 4007,
                  "nodeType": "InheritanceSpecifier",
                  "src": "428:12:28"
                }
              ],
              "contractDependencies": [],
              "contractKind": "interface",
              "documentation": {
                "id": 4005,
                "nodeType": "StructuredDocumentation",
                "src": "193:201:28",
                "text": "@title The interface used for all Yield Sources for the PoolTogether protocol\n @dev There are two privileged roles: the owner and the asset manager.  The owner can configure the asset managers."
              },
              "fullyImplemented": false,
              "id": 4025,
              "linearizedBaseContracts": [
                4025,
                17542
              ],
              "name": "IProtocolYieldSource",
              "nameLocation": "404:20:28",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "documentation": {
                    "id": 4008,
                    "nodeType": "StructuredDocumentation",
                    "src": "445:402:28",
                    "text": "@notice Allows the owner to transfer ERC20 tokens held by this contract to the target address.\n @dev This function is callable by the owner or asset manager.\n This function should not be able to transfer any tokens that represent user deposits.\n @param token The ERC20 token to transfer\n @param to The recipient of the tokens\n @param amount The amount of tokens to transfer"
                  },
                  "functionSelector": "9db5dbe4",
                  "id": 4018,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "transferERC20",
                  "nameLocation": "859:13:28",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4016,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4011,
                        "mutability": "mutable",
                        "name": "token",
                        "nameLocation": "880:5:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 4018,
                        "src": "873:12:28",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$890",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 4010,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 4009,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 890,
                            "src": "873:6:28"
                          },
                          "referencedDeclaration": 890,
                          "src": "873:6:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$890",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4013,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "895:2:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 4018,
                        "src": "887:10:28",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 4012,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "887:7:28",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4015,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "907:6:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 4018,
                        "src": "899:14:28",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4014,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "899:7:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "872:42:28"
                  },
                  "returnParameters": {
                    "id": 4017,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "923:0:28"
                  },
                  "scope": 4025,
                  "src": "850:74:28",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 4019,
                    "nodeType": "StructuredDocumentation",
                    "src": "928:209:28",
                    "text": "@notice Allows someone to deposit into the yield source without receiving any shares.  The deposited token will be the same as token()\n This allows anyone to distribute tokens among the share holders."
                  },
                  "functionSelector": "b6cce5e2",
                  "id": 4024,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "sponsor",
                  "nameLocation": "1149:7:28",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4022,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4021,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "1165:6:28",
                        "nodeType": "VariableDeclaration",
                        "scope": 4024,
                        "src": "1157:14:28",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4020,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1157:7:28",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1156:16:28"
                  },
                  "returnParameters": {
                    "id": 4023,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1181:0:28"
                  },
                  "scope": 4025,
                  "src": "1140:42:28",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 4026,
              "src": "394:790:28",
              "usedErrors": []
            }
          ],
          "src": "37:1148:28"
        },
        "id": 28
      },
      "@pooltogether/aave-yield-source/contracts/yield-source/ATokenYieldSource.sol": {
        "ast": {
          "absolutePath": "@pooltogether/aave-yield-source/contracts/yield-source/ATokenYieldSource.sol",
          "exportedSymbols": {
            "ATokenInterface": [
              3549
            ],
            "ATokenYieldSource": [
              4807
            ],
            "Address": [
              1775
            ],
            "Context": [
              1797
            ],
            "ERC20": [
              812
            ],
            "FixedPoint": [
              4899
            ],
            "IAToken": [
              3639
            ],
            "IAaveIncentivesController": [
              3785
            ],
            "IERC20": [
              890
            ],
            "IERC20Metadata": [
              915
            ],
            "ILendingPool": [
              3812
            ],
            "ILendingPoolAddressesProvider": [
              3963
            ],
            "ILendingPoolAddressesProviderRegistry": [
              4000
            ],
            "IProtocolYieldSource": [
              4025
            ],
            "IYieldSource": [
              17542
            ],
            "Manageable": [
              5200
            ],
            "OpenZeppelinSafeMath_V3_3_0": [
              5095
            ],
            "Ownable": [
              5355
            ],
            "ReentrancyGuard": [
              266
            ],
            "SafeERC20": [
              1344
            ],
            "SafeMath": [
              3537
            ]
          },
          "id": 4808,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 4027,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:29"
            },
            {
              "absolutePath": "@openzeppelin/contracts/utils/math/SafeMath.sol",
              "file": "@openzeppelin/contracts/utils/math/SafeMath.sol",
              "id": 4028,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 4808,
              "sourceUnit": 3538,
              "src": "61:57:29",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/ERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/ERC20.sol",
              "id": 4029,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 4808,
              "sourceUnit": 813,
              "src": "119:55:29",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "id": 4030,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 4808,
              "sourceUnit": 891,
              "src": "175:56:29",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol",
              "id": 4031,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 4808,
              "sourceUnit": 1345,
              "src": "232:65:29",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/security/ReentrancyGuard.sol",
              "file": "@openzeppelin/contracts/security/ReentrancyGuard.sol",
              "id": 4032,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 4808,
              "sourceUnit": 267,
              "src": "298:62:29",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/fixed-point/contracts/FixedPoint.sol",
              "file": "@pooltogether/fixed-point/contracts/FixedPoint.sol",
              "id": 4033,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 4808,
              "sourceUnit": 4900,
              "src": "361:60:29",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/owner-manager-contracts/contracts/Manageable.sol",
              "file": "@pooltogether/owner-manager-contracts/contracts/Manageable.sol",
              "id": 4034,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 4808,
              "sourceUnit": 5201,
              "src": "422:72:29",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/aave-yield-source/contracts/external/aave/ILendingPool.sol",
              "file": "../external/aave/ILendingPool.sol",
              "id": 4035,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 4808,
              "sourceUnit": 3813,
              "src": "496:43:29",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/aave-yield-source/contracts/external/aave/ILendingPoolAddressesProvider.sol",
              "file": "../external/aave/ILendingPoolAddressesProvider.sol",
              "id": 4036,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 4808,
              "sourceUnit": 3964,
              "src": "540:60:29",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/aave-yield-source/contracts/external/aave/ILendingPoolAddressesProviderRegistry.sol",
              "file": "../external/aave/ILendingPoolAddressesProviderRegistry.sol",
              "id": 4037,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 4808,
              "sourceUnit": 4001,
              "src": "601:68:29",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/aave-yield-source/contracts/external/aave/ATokenInterface.sol",
              "file": "../external/aave/ATokenInterface.sol",
              "id": 4038,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 4808,
              "sourceUnit": 3550,
              "src": "670:46:29",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/aave-yield-source/contracts/external/aave/IAaveIncentivesController.sol",
              "file": "../external/aave/IAaveIncentivesController.sol",
              "id": 4039,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 4808,
              "sourceUnit": 3786,
              "src": "717:56:29",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/aave-yield-source/contracts/external/aave/IProtocolYieldSource.sol",
              "file": "../external/aave/IProtocolYieldSource.sol",
              "id": 4040,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 4808,
              "sourceUnit": 4026,
              "src": "774:51:29",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 4042,
                    "name": "ERC20",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 812,
                    "src": "1241:5:29"
                  },
                  "id": 4043,
                  "nodeType": "InheritanceSpecifier",
                  "src": "1241:5:29"
                },
                {
                  "baseName": {
                    "id": 4044,
                    "name": "IProtocolYieldSource",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 4025,
                    "src": "1248:20:29"
                  },
                  "id": 4045,
                  "nodeType": "InheritanceSpecifier",
                  "src": "1248:20:29"
                },
                {
                  "baseName": {
                    "id": 4046,
                    "name": "Manageable",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 5200,
                    "src": "1270:10:29"
                  },
                  "id": 4047,
                  "nodeType": "InheritanceSpecifier",
                  "src": "1270:10:29"
                },
                {
                  "baseName": {
                    "id": 4048,
                    "name": "ReentrancyGuard",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 266,
                    "src": "1282:15:29"
                  },
                  "id": 4049,
                  "nodeType": "InheritanceSpecifier",
                  "src": "1282:15:29"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 4041,
                "nodeType": "StructuredDocumentation",
                "src": "827:384:29",
                "text": "@title Aave Yield Source integration contract, implementing PoolTogether's generic yield source interface\n @dev This contract inherits from the ERC20 implementation to keep track of users deposits\n @dev This contract inherits AssetManager which extends OwnableUpgradable\n @notice Yield source for a PoolTogether prize pool that generates yield by depositing into Aave V2"
              },
              "fullyImplemented": true,
              "id": 4807,
              "linearizedBaseContracts": [
                4807,
                266,
                5200,
                5355,
                4025,
                17542,
                812,
                915,
                890,
                1797
              ],
              "name": "ATokenYieldSource",
              "nameLocation": "1220:17:29",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "id": 4052,
                  "libraryName": {
                    "id": 4050,
                    "name": "SafeMath",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 3537,
                    "src": "1308:8:29"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "1302:27:29",
                  "typeName": {
                    "id": 4051,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "1321:7:29",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  }
                },
                {
                  "id": 4056,
                  "libraryName": {
                    "id": 4053,
                    "name": "SafeERC20",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 1344,
                    "src": "1338:9:29"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "1332:27:29",
                  "typeName": {
                    "id": 4055,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 4054,
                      "name": "IERC20",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 890,
                      "src": "1352:6:29"
                    },
                    "referencedDeclaration": 890,
                    "src": "1352:6:29",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IERC20_$890",
                      "typeString": "contract IERC20"
                    }
                  }
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 4057,
                    "nodeType": "StructuredDocumentation",
                    "src": "1363:56:29",
                    "text": "@notice Emitted when the yield source is initialized"
                  },
                  "id": 4073,
                  "name": "ATokenYieldSourceInitialized",
                  "nameLocation": "1428:28:29",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 4072,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4060,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "aToken",
                        "nameLocation": "1478:6:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 4073,
                        "src": "1462:22:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IAToken_$3639",
                          "typeString": "contract IAToken"
                        },
                        "typeName": {
                          "id": 4059,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 4058,
                            "name": "IAToken",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 3639,
                            "src": "1462:7:29"
                          },
                          "referencedDeclaration": 3639,
                          "src": "1462:7:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IAToken_$3639",
                            "typeString": "contract IAToken"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4063,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "lendingPoolAddressesProviderRegistry",
                        "nameLocation": "1528:36:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 4073,
                        "src": "1490:74:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ILendingPoolAddressesProviderRegistry_$4000",
                          "typeString": "contract ILendingPoolAddressesProviderRegistry"
                        },
                        "typeName": {
                          "id": 4062,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 4061,
                            "name": "ILendingPoolAddressesProviderRegistry",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 4000,
                            "src": "1490:37:29"
                          },
                          "referencedDeclaration": 4000,
                          "src": "1490:37:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ILendingPoolAddressesProviderRegistry_$4000",
                            "typeString": "contract ILendingPoolAddressesProviderRegistry"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4065,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "decimals",
                        "nameLocation": "1576:8:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 4073,
                        "src": "1570:14:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 4064,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "1570:5:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4067,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "name",
                        "nameLocation": "1597:4:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 4073,
                        "src": "1590:11:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 4066,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "1590:6:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4069,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "symbol",
                        "nameLocation": "1614:6:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 4073,
                        "src": "1607:13:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 4068,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "1607:6:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4071,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "owner",
                        "nameLocation": "1634:5:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 4073,
                        "src": "1626:13:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 4070,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1626:7:29",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1456:187:29"
                  },
                  "src": "1422:222:29"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 4074,
                    "nodeType": "StructuredDocumentation",
                    "src": "1648:72:29",
                    "text": "@notice Emitted when asset tokens are redeemed from the yield source"
                  },
                  "id": 4082,
                  "name": "RedeemedToken",
                  "nameLocation": "1729:13:29",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 4081,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4076,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "from",
                        "nameLocation": "1764:4:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 4082,
                        "src": "1748:20:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 4075,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1748:7:29",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4078,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "shares",
                        "nameLocation": "1782:6:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 4082,
                        "src": "1774:14:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4077,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1774:7:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4080,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "1802:6:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 4082,
                        "src": "1794:14:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4079,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1794:7:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1742:70:29"
                  },
                  "src": "1723:90:29"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 4083,
                    "nodeType": "StructuredDocumentation",
                    "src": "1817:55:29",
                    "text": "@notice Emitted when Aave rewards have been claimed"
                  },
                  "id": 4091,
                  "name": "Claimed",
                  "nameLocation": "1881:7:29",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 4090,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4085,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "1910:4:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 4091,
                        "src": "1894:20:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 4084,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1894:7:29",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4087,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "1936:2:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 4091,
                        "src": "1920:18:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 4086,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1920:7:29",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4089,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "1952:6:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 4091,
                        "src": "1944:14:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4088,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1944:7:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1888:74:29"
                  },
                  "src": "1875:88:29"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 4092,
                    "nodeType": "StructuredDocumentation",
                    "src": "1967:70:29",
                    "text": "@notice Emitted when asset tokens are supplied to the yield source"
                  },
                  "id": 4102,
                  "name": "SuppliedTokenTo",
                  "nameLocation": "2046:15:29",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 4101,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4094,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "from",
                        "nameLocation": "2083:4:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 4102,
                        "src": "2067:20:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 4093,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2067:7:29",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4096,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "shares",
                        "nameLocation": "2101:6:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 4102,
                        "src": "2093:14:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4095,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2093:7:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4098,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "2121:6:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 4102,
                        "src": "2113:14:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4097,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2113:7:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4100,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "2149:2:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 4102,
                        "src": "2133:18:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 4099,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2133:7:29",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2061:94:29"
                  },
                  "src": "2040:116:29"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 4103,
                    "nodeType": "StructuredDocumentation",
                    "src": "2160:78:29",
                    "text": "@notice Emitted when asset tokens are supplied to sponsor the yield source"
                  },
                  "id": 4109,
                  "name": "Sponsored",
                  "nameLocation": "2247:9:29",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 4108,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4105,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "from",
                        "nameLocation": "2278:4:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 4109,
                        "src": "2262:20:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 4104,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2262:7:29",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4107,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "2296:6:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 4109,
                        "src": "2288:14:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4106,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2288:7:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2256:50:29"
                  },
                  "src": "2241:66:29"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 4110,
                    "nodeType": "StructuredDocumentation",
                    "src": "2311:106:29",
                    "text": "@notice Emitted when ERC20 tokens other than yield source's aToken are withdrawn from the yield source"
                  },
                  "id": 4121,
                  "name": "TransferredERC20",
                  "nameLocation": "2426:16:29",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 4120,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4112,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "from",
                        "nameLocation": "2464:4:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 4121,
                        "src": "2448:20:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 4111,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2448:7:29",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4114,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "2490:2:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 4121,
                        "src": "2474:18:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 4113,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2474:7:29",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4116,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "2506:6:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 4121,
                        "src": "2498:14:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4115,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2498:7:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4119,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "token",
                        "nameLocation": "2533:5:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 4121,
                        "src": "2518:20:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$890",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 4118,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 4117,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 890,
                            "src": "2518:6:29"
                          },
                          "referencedDeclaration": 890,
                          "src": "2518:6:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$890",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2442:100:29"
                  },
                  "src": "2420:123:29"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 4122,
                    "nodeType": "StructuredDocumentation",
                    "src": "2547:55:29",
                    "text": "@notice Interface for the yield-bearing Aave aToken"
                  },
                  "functionSelector": "a0c1f15e",
                  "id": 4125,
                  "mutability": "immutable",
                  "name": "aToken",
                  "nameLocation": "2638:6:29",
                  "nodeType": "VariableDeclaration",
                  "scope": 4807,
                  "src": "2605:39:29",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_ATokenInterface_$3549",
                    "typeString": "contract ATokenInterface"
                  },
                  "typeName": {
                    "id": 4124,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 4123,
                      "name": "ATokenInterface",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 3549,
                      "src": "2605:15:29"
                    },
                    "referencedDeclaration": 3549,
                    "src": "2605:15:29",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_ATokenInterface_$3549",
                      "typeString": "contract ATokenInterface"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 4126,
                    "nodeType": "StructuredDocumentation",
                    "src": "2649:51:29",
                    "text": "@notice Interface for Aave incentivesController"
                  },
                  "functionSelector": "af1df255",
                  "id": 4129,
                  "mutability": "immutable",
                  "name": "incentivesController",
                  "nameLocation": "2746:20:29",
                  "nodeType": "VariableDeclaration",
                  "scope": 4807,
                  "src": "2703:63:29",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IAaveIncentivesController_$3785",
                    "typeString": "contract IAaveIncentivesController"
                  },
                  "typeName": {
                    "id": 4128,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 4127,
                      "name": "IAaveIncentivesController",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 3785,
                      "src": "2703:25:29"
                    },
                    "referencedDeclaration": 3785,
                    "src": "2703:25:29",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IAaveIncentivesController_$3785",
                      "typeString": "contract IAaveIncentivesController"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 4130,
                    "nodeType": "StructuredDocumentation",
                    "src": "2771:67:29",
                    "text": "@notice Interface for Aave lendingPoolAddressesProviderRegistry"
                  },
                  "functionSelector": "873ba41e",
                  "id": 4133,
                  "mutability": "mutable",
                  "name": "lendingPoolAddressesProviderRegistry",
                  "nameLocation": "2886:36:29",
                  "nodeType": "VariableDeclaration",
                  "scope": 4807,
                  "src": "2841:81:29",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_ILendingPoolAddressesProviderRegistry_$4000",
                    "typeString": "contract ILendingPoolAddressesProviderRegistry"
                  },
                  "typeName": {
                    "id": 4132,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 4131,
                      "name": "ILendingPoolAddressesProviderRegistry",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 4000,
                      "src": "2841:37:29"
                    },
                    "referencedDeclaration": 4000,
                    "src": "2841:37:29",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_ILendingPoolAddressesProviderRegistry_$4000",
                      "typeString": "contract ILendingPoolAddressesProviderRegistry"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 4134,
                    "nodeType": "StructuredDocumentation",
                    "src": "2927:43:29",
                    "text": "@notice Underlying asset token address."
                  },
                  "id": 4136,
                  "mutability": "immutable",
                  "name": "_tokenAddress",
                  "nameLocation": "2999:13:29",
                  "nodeType": "VariableDeclaration",
                  "scope": 4807,
                  "src": "2973:39:29",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 4135,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "2973:7:29",
                    "stateMutability": "nonpayable",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 4137,
                    "nodeType": "StructuredDocumentation",
                    "src": "3017:33:29",
                    "text": "@notice ERC20 token decimals."
                  },
                  "id": 4139,
                  "mutability": "immutable",
                  "name": "__decimals",
                  "nameLocation": "3077:10:29",
                  "nodeType": "VariableDeclaration",
                  "scope": 4807,
                  "src": "3053:34:29",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint8",
                    "typeString": "uint8"
                  },
                  "typeName": {
                    "id": 4138,
                    "name": "uint8",
                    "nodeType": "ElementaryTypeName",
                    "src": "3053:5:29",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint8",
                      "typeString": "uint8"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": true,
                  "documentation": {
                    "id": 4140,
                    "nodeType": "StructuredDocumentation",
                    "src": "3092:152:29",
                    "text": "@dev Aave genesis market LendingPoolAddressesProvider's ID\n @dev This variable could evolve in the future if we decide to support other markets"
                  },
                  "id": 4146,
                  "mutability": "constant",
                  "name": "ADDRESSES_PROVIDER_ID",
                  "nameLocation": "3272:21:29",
                  "nodeType": "VariableDeclaration",
                  "scope": 4807,
                  "src": "3247:59:29",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 4141,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "3247:7:29",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": {
                    "arguments": [
                      {
                        "hexValue": "30",
                        "id": 4144,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": true,
                        "kind": "number",
                        "lValueRequested": false,
                        "nodeType": "Literal",
                        "src": "3304:1:29",
                        "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": 4143,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": true,
                      "lValueRequested": false,
                      "nodeType": "ElementaryTypeNameExpression",
                      "src": "3296:7:29",
                      "typeDescriptions": {
                        "typeIdentifier": "t_type$_t_uint256_$",
                        "typeString": "type(uint256)"
                      },
                      "typeName": {
                        "id": 4142,
                        "name": "uint256",
                        "nodeType": "ElementaryTypeName",
                        "src": "3296:7:29",
                        "typeDescriptions": {}
                      }
                    },
                    "id": 4145,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "typeConversion",
                    "lValueRequested": false,
                    "names": [],
                    "nodeType": "FunctionCall",
                    "src": "3296:10:29",
                    "tryCall": false,
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": true,
                  "documentation": {
                    "id": 4147,
                    "nodeType": "StructuredDocumentation",
                    "src": "3311:42:29",
                    "text": "@dev PoolTogether's Aave Referral Code"
                  },
                  "id": 4153,
                  "mutability": "constant",
                  "name": "REFERRAL_CODE",
                  "nameLocation": "3380:13:29",
                  "nodeType": "VariableDeclaration",
                  "scope": 4807,
                  "src": "3356:51:29",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint16",
                    "typeString": "uint16"
                  },
                  "typeName": {
                    "id": 4148,
                    "name": "uint16",
                    "nodeType": "ElementaryTypeName",
                    "src": "3356:6:29",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint16",
                      "typeString": "uint16"
                    }
                  },
                  "value": {
                    "arguments": [
                      {
                        "hexValue": "313838",
                        "id": 4151,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": true,
                        "kind": "number",
                        "lValueRequested": false,
                        "nodeType": "Literal",
                        "src": "3403:3:29",
                        "typeDescriptions": {
                          "typeIdentifier": "t_rational_188_by_1",
                          "typeString": "int_const 188"
                        },
                        "value": "188"
                      }
                    ],
                    "expression": {
                      "argumentTypes": [
                        {
                          "typeIdentifier": "t_rational_188_by_1",
                          "typeString": "int_const 188"
                        }
                      ],
                      "id": 4150,
                      "isConstant": false,
                      "isLValue": false,
                      "isPure": true,
                      "lValueRequested": false,
                      "nodeType": "ElementaryTypeNameExpression",
                      "src": "3396:6:29",
                      "typeDescriptions": {
                        "typeIdentifier": "t_type$_t_uint16_$",
                        "typeString": "type(uint16)"
                      },
                      "typeName": {
                        "id": 4149,
                        "name": "uint16",
                        "nodeType": "ElementaryTypeName",
                        "src": "3396:6:29",
                        "typeDescriptions": {}
                      }
                    },
                    "id": 4152,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "typeConversion",
                    "lValueRequested": false,
                    "names": [],
                    "nodeType": "FunctionCall",
                    "src": "3396:11:29",
                    "tryCall": false,
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint16",
                      "typeString": "uint16"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "body": {
                    "id": 4293,
                    "nodeType": "Block",
                    "src": "4285:1065:29",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 4192,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 4186,
                                    "name": "_aToken",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 4157,
                                    "src": "4307:7:29",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_ATokenInterface_$3549",
                                      "typeString": "contract ATokenInterface"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_ATokenInterface_$3549",
                                      "typeString": "contract ATokenInterface"
                                    }
                                  ],
                                  "id": 4185,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "4299:7:29",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 4184,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "4299:7:29",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 4187,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "4299:16:29",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 4190,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "4327:1:29",
                                    "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": 4189,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "4319:7:29",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 4188,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "4319:7:29",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 4191,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "4319:10:29",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "4299:30:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "41546f6b656e5969656c64536f757263652f61546f6b656e2d6e6f742d7a65726f2d61646472657373",
                              "id": 4193,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "4331:43:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_2b992e6c61293c4775dd812a5baf3b2f7a1cd955ddd0a3d8d4998f6b9cc5da44",
                                "typeString": "literal_string \"ATokenYieldSource/aToken-not-zero-address\""
                              },
                              "value": "ATokenYieldSource/aToken-not-zero-address"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_2b992e6c61293c4775dd812a5baf3b2f7a1cd955ddd0a3d8d4998f6b9cc5da44",
                                "typeString": "literal_string \"ATokenYieldSource/aToken-not-zero-address\""
                              }
                            ],
                            "id": 4183,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "4291:7:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 4194,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4291:84:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4195,
                        "nodeType": "ExpressionStatement",
                        "src": "4291:84:29"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 4205,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 4199,
                                    "name": "_incentivesController",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 4160,
                                    "src": "4397:21:29",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_IAaveIncentivesController_$3785",
                                      "typeString": "contract IAaveIncentivesController"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_IAaveIncentivesController_$3785",
                                      "typeString": "contract IAaveIncentivesController"
                                    }
                                  ],
                                  "id": 4198,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "4389:7:29",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 4197,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "4389:7:29",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 4200,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "4389:30:29",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 4203,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "4431:1:29",
                                    "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": 4202,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "4423:7:29",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 4201,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "4423:7:29",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 4204,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "4423:10:29",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "4389:44:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "41546f6b656e5969656c64536f757263652f696e63656e7469766573436f6e74726f6c6c65722d6e6f742d7a65726f2d61646472657373",
                              "id": 4206,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "4435:57:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_2e346efdb0fab8d40ba5586f8fdf8d9dbf79134348affa7e84a5640fe36bac6e",
                                "typeString": "literal_string \"ATokenYieldSource/incentivesController-not-zero-address\""
                              },
                              "value": "ATokenYieldSource/incentivesController-not-zero-address"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_2e346efdb0fab8d40ba5586f8fdf8d9dbf79134348affa7e84a5640fe36bac6e",
                                "typeString": "literal_string \"ATokenYieldSource/incentivesController-not-zero-address\""
                              }
                            ],
                            "id": 4196,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "4381:7:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 4207,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4381:112:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4208,
                        "nodeType": "ExpressionStatement",
                        "src": "4381:112:29"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 4218,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 4212,
                                    "name": "_lendingPoolAddressesProviderRegistry",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 4163,
                                    "src": "4515:37:29",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_ILendingPoolAddressesProviderRegistry_$4000",
                                      "typeString": "contract ILendingPoolAddressesProviderRegistry"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_ILendingPoolAddressesProviderRegistry_$4000",
                                      "typeString": "contract ILendingPoolAddressesProviderRegistry"
                                    }
                                  ],
                                  "id": 4211,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "4507:7:29",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 4210,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "4507:7:29",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 4213,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "4507:46:29",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 4216,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "4565:1:29",
                                    "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": 4215,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "4557:7:29",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 4214,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "4557:7:29",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 4217,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "4557:10:29",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "4507:60:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "41546f6b656e5969656c64536f757263652f6c656e64696e67506f6f6c52656769737472792d6e6f742d7a65726f2d61646472657373",
                              "id": 4219,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "4569:56:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_4f61776603d15f02546812e32d767874e039b7fc515c9a02144de1df487ec0c5",
                                "typeString": "literal_string \"ATokenYieldSource/lendingPoolRegistry-not-zero-address\""
                              },
                              "value": "ATokenYieldSource/lendingPoolRegistry-not-zero-address"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_4f61776603d15f02546812e32d767874e039b7fc515c9a02144de1df487ec0c5",
                                "typeString": "literal_string \"ATokenYieldSource/lendingPoolRegistry-not-zero-address\""
                              }
                            ],
                            "id": 4209,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "4499:7:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 4220,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4499:127:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4221,
                        "nodeType": "ExpressionStatement",
                        "src": "4499:127:29"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 4228,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 4223,
                                "name": "_owner",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 4171,
                                "src": "4640:6:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 4226,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "4658:1:29",
                                    "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": 4225,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "4650:7:29",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 4224,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "4650:7:29",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 4227,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "4650:10:29",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "4640:20:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "41546f6b656e5969656c64536f757263652f6f776e65722d6e6f742d7a65726f2d61646472657373",
                              "id": 4229,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "4662:42:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_3436cd3585bd0ff62d8f10d3f57d80ad638896d8287a008b2264e31604c967eb",
                                "typeString": "literal_string \"ATokenYieldSource/owner-not-zero-address\""
                              },
                              "value": "ATokenYieldSource/owner-not-zero-address"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_3436cd3585bd0ff62d8f10d3f57d80ad638896d8287a008b2264e31604c967eb",
                                "typeString": "literal_string \"ATokenYieldSource/owner-not-zero-address\""
                              }
                            ],
                            "id": 4222,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "4632:7:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 4230,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4632:73:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4231,
                        "nodeType": "ExpressionStatement",
                        "src": "4632:73:29"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              },
                              "id": 4235,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 4233,
                                "name": "_decimals",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 4165,
                                "src": "4719:9:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">",
                              "rightExpression": {
                                "hexValue": "30",
                                "id": 4234,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "4731:1:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "src": "4719:13:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "41546f6b656e5969656c64536f757263652f646563696d616c732d67742d7a65726f",
                              "id": 4236,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "4734:36:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_cc67c645e12c4f46b6e43477d167452c25b4e627212d442acf5952d80241aaa8",
                                "typeString": "literal_string \"ATokenYieldSource/decimals-gt-zero\""
                              },
                              "value": "ATokenYieldSource/decimals-gt-zero"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_cc67c645e12c4f46b6e43477d167452c25b4e627212d442acf5952d80241aaa8",
                                "typeString": "literal_string \"ATokenYieldSource/decimals-gt-zero\""
                              }
                            ],
                            "id": 4232,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "4711:7:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 4237,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4711:60:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4238,
                        "nodeType": "ExpressionStatement",
                        "src": "4711:60:29"
                      },
                      {
                        "expression": {
                          "id": 4241,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 4239,
                            "name": "aToken",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4125,
                            "src": "4778:6:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_ATokenInterface_$3549",
                              "typeString": "contract ATokenInterface"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 4240,
                            "name": "_aToken",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4157,
                            "src": "4787:7:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_ATokenInterface_$3549",
                              "typeString": "contract ATokenInterface"
                            }
                          },
                          "src": "4778:16:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ATokenInterface_$3549",
                            "typeString": "contract ATokenInterface"
                          }
                        },
                        "id": 4242,
                        "nodeType": "ExpressionStatement",
                        "src": "4778:16:29"
                      },
                      {
                        "expression": {
                          "id": 4245,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 4243,
                            "name": "incentivesController",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4129,
                            "src": "4800:20:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IAaveIncentivesController_$3785",
                              "typeString": "contract IAaveIncentivesController"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 4244,
                            "name": "_incentivesController",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4160,
                            "src": "4823:21:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IAaveIncentivesController_$3785",
                              "typeString": "contract IAaveIncentivesController"
                            }
                          },
                          "src": "4800:44:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IAaveIncentivesController_$3785",
                            "typeString": "contract IAaveIncentivesController"
                          }
                        },
                        "id": 4246,
                        "nodeType": "ExpressionStatement",
                        "src": "4800:44:29"
                      },
                      {
                        "expression": {
                          "id": 4249,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 4247,
                            "name": "lendingPoolAddressesProviderRegistry",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4133,
                            "src": "4850:36:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_ILendingPoolAddressesProviderRegistry_$4000",
                              "typeString": "contract ILendingPoolAddressesProviderRegistry"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 4248,
                            "name": "_lendingPoolAddressesProviderRegistry",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4163,
                            "src": "4889:37:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_ILendingPoolAddressesProviderRegistry_$4000",
                              "typeString": "contract ILendingPoolAddressesProviderRegistry"
                            }
                          },
                          "src": "4850:76:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ILendingPoolAddressesProviderRegistry_$4000",
                            "typeString": "contract ILendingPoolAddressesProviderRegistry"
                          }
                        },
                        "id": 4250,
                        "nodeType": "ExpressionStatement",
                        "src": "4850:76:29"
                      },
                      {
                        "expression": {
                          "id": 4253,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 4251,
                            "name": "__decimals",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4139,
                            "src": "4932:10:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 4252,
                            "name": "_decimals",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4165,
                            "src": "4945:9:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "src": "4932:22:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "id": 4254,
                        "nodeType": "ExpressionStatement",
                        "src": "4932:22:29"
                      },
                      {
                        "assignments": [
                          4256
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 4256,
                            "mutability": "mutable",
                            "name": "tokenAddress",
                            "nameLocation": "4969:12:29",
                            "nodeType": "VariableDeclaration",
                            "scope": 4293,
                            "src": "4961:20:29",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            },
                            "typeName": {
                              "id": 4255,
                              "name": "address",
                              "nodeType": "ElementaryTypeName",
                              "src": "4961:7:29",
                              "stateMutability": "nonpayable",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 4263,
                        "initialValue": {
                          "arguments": [
                            {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "expression": {
                                  "id": 4259,
                                  "name": "_aToken",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 4157,
                                  "src": "4992:7:29",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_ATokenInterface_$3549",
                                    "typeString": "contract ATokenInterface"
                                  }
                                },
                                "id": 4260,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "UNDERLYING_ASSET_ADDRESS",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 3548,
                                "src": "4992:32:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_external_view$__$returns$_t_address_$",
                                  "typeString": "function () view external returns (address)"
                                }
                              },
                              "id": 4261,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "4992:34:29",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 4258,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "4984:7:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_address_$",
                              "typeString": "type(address)"
                            },
                            "typeName": {
                              "id": 4257,
                              "name": "address",
                              "nodeType": "ElementaryTypeName",
                              "src": "4984:7:29",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 4262,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4984:43:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4961:66:29"
                      },
                      {
                        "expression": {
                          "id": 4266,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 4264,
                            "name": "_tokenAddress",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4136,
                            "src": "5033:13:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 4265,
                            "name": "tokenAddress",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4256,
                            "src": "5049:12:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "5033:28:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "id": 4267,
                        "nodeType": "ExpressionStatement",
                        "src": "5033:28:29"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "arguments": [],
                                  "expression": {
                                    "argumentTypes": [],
                                    "id": 4274,
                                    "name": "_lendingPool",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 4806,
                                    "src": "5144:12:29",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_view$__$returns$_t_contract$_ILendingPool_$3812_$",
                                      "typeString": "function () view returns (contract ILendingPool)"
                                    }
                                  },
                                  "id": 4275,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "5144:14:29",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_ILendingPool_$3812",
                                    "typeString": "contract ILendingPool"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_ILendingPool_$3812",
                                    "typeString": "contract ILendingPool"
                                  }
                                ],
                                "id": 4273,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "5136:7:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 4272,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "5136:7:29",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 4276,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "5136:23:29",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "id": 4279,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "ElementaryTypeNameExpression",
                                    "src": "5166:7:29",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_uint256_$",
                                      "typeString": "type(uint256)"
                                    },
                                    "typeName": {
                                      "id": 4278,
                                      "name": "uint256",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "5166:7:29",
                                      "typeDescriptions": {}
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_type$_t_uint256_$",
                                      "typeString": "type(uint256)"
                                    }
                                  ],
                                  "id": 4277,
                                  "name": "type",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -27,
                                  "src": "5161:4:29",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                    "typeString": "function () pure"
                                  }
                                },
                                "id": 4280,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "5161:13:29",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_meta_type_t_uint256",
                                  "typeString": "type(uint256)"
                                }
                              },
                              "id": 4281,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "memberName": "max",
                              "nodeType": "MemberAccess",
                              "src": "5161:17:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "arguments": [
                                {
                                  "id": 4269,
                                  "name": "tokenAddress",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 4256,
                                  "src": "5110:12:29",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                ],
                                "id": 4268,
                                "name": "IERC20",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 890,
                                "src": "5103:6:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_contract$_IERC20_$890_$",
                                  "typeString": "type(contract IERC20)"
                                }
                              },
                              "id": 4270,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "5103:20:29",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$890",
                                "typeString": "contract IERC20"
                              }
                            },
                            "id": 4271,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "safeApprove",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 1221,
                            "src": "5103:32:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20_$890_$_t_address_$_t_uint256_$returns$__$bound_to$_t_contract$_IERC20_$890_$",
                              "typeString": "function (contract IERC20,address,uint256)"
                            }
                          },
                          "id": 4282,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5103:76:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4283,
                        "nodeType": "ExpressionStatement",
                        "src": "5103:76:29"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 4285,
                              "name": "_aToken",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4157,
                              "src": "5228:7:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ATokenInterface_$3549",
                                "typeString": "contract ATokenInterface"
                              }
                            },
                            {
                              "id": 4286,
                              "name": "_lendingPoolAddressesProviderRegistry",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4163,
                              "src": "5243:37:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ILendingPoolAddressesProviderRegistry_$4000",
                                "typeString": "contract ILendingPoolAddressesProviderRegistry"
                              }
                            },
                            {
                              "id": 4287,
                              "name": "_decimals",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4165,
                              "src": "5288:9:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            {
                              "id": 4288,
                              "name": "_name",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4169,
                              "src": "5305:5:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_string_memory_ptr",
                                "typeString": "string memory"
                              }
                            },
                            {
                              "id": 4289,
                              "name": "_symbol",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4167,
                              "src": "5318:7:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_string_memory_ptr",
                                "typeString": "string memory"
                              }
                            },
                            {
                              "id": 4290,
                              "name": "_owner",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4171,
                              "src": "5333:6:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_ATokenInterface_$3549",
                                "typeString": "contract ATokenInterface"
                              },
                              {
                                "typeIdentifier": "t_contract$_ILendingPoolAddressesProviderRegistry_$4000",
                                "typeString": "contract ILendingPoolAddressesProviderRegistry"
                              },
                              {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              },
                              {
                                "typeIdentifier": "t_string_memory_ptr",
                                "typeString": "string memory"
                              },
                              {
                                "typeIdentifier": "t_string_memory_ptr",
                                "typeString": "string memory"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 4284,
                            "name": "ATokenYieldSourceInitialized",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4073,
                            "src": "5191:28:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_contract$_IAToken_$3639_$_t_contract$_ILendingPoolAddressesProviderRegistry_$4000_$_t_uint8_$_t_string_memory_ptr_$_t_string_memory_ptr_$_t_address_$returns$__$",
                              "typeString": "function (contract IAToken,contract ILendingPoolAddressesProviderRegistry,uint8,string memory,string memory,address)"
                            }
                          },
                          "id": 4291,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5191:154:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4292,
                        "nodeType": "EmitStatement",
                        "src": "5186:159:29"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4154,
                    "nodeType": "StructuredDocumentation",
                    "src": "3412:539:29",
                    "text": "@notice Initializes the yield source with Aave aToken\n @param _aToken Aave aToken address\n @param _incentivesController Aave incentivesController address\n @param _lendingPoolAddressesProviderRegistry Aave lendingPoolAddressesProviderRegistry address\n @param _decimals Number of decimals the shares (inhereted ERC20) will have. Set as same as underlying asset to ensure sane ExchangeRates\n @param _symbol Token symbol for the underlying shares ERC20\n @param _name Token name for the underlying shares ERC20"
                  },
                  "id": 4294,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 4174,
                          "name": "_owner",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 4171,
                          "src": "4235:6:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        }
                      ],
                      "id": 4175,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 4173,
                        "name": "Ownable",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5355,
                        "src": "4227:7:29"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "4227:15:29"
                    },
                    {
                      "arguments": [
                        {
                          "id": 4177,
                          "name": "_name",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 4169,
                          "src": "4249:5:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_memory_ptr",
                            "typeString": "string memory"
                          }
                        },
                        {
                          "id": 4178,
                          "name": "_symbol",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 4167,
                          "src": "4256:7:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_memory_ptr",
                            "typeString": "string memory"
                          }
                        }
                      ],
                      "id": 4179,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 4176,
                        "name": "ERC20",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 812,
                        "src": "4243:5:29"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "4243:21:29"
                    },
                    {
                      "arguments": [],
                      "id": 4181,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 4180,
                        "name": "ReentrancyGuard",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 266,
                        "src": "4265:15:29"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "4265:17:29"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4172,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4157,
                        "mutability": "mutable",
                        "name": "_aToken",
                        "nameLocation": "3988:7:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 4294,
                        "src": "3972:23:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ATokenInterface_$3549",
                          "typeString": "contract ATokenInterface"
                        },
                        "typeName": {
                          "id": 4156,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 4155,
                            "name": "ATokenInterface",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 3549,
                            "src": "3972:15:29"
                          },
                          "referencedDeclaration": 3549,
                          "src": "3972:15:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ATokenInterface_$3549",
                            "typeString": "contract ATokenInterface"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4160,
                        "mutability": "mutable",
                        "name": "_incentivesController",
                        "nameLocation": "4027:21:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 4294,
                        "src": "4001:47:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IAaveIncentivesController_$3785",
                          "typeString": "contract IAaveIncentivesController"
                        },
                        "typeName": {
                          "id": 4159,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 4158,
                            "name": "IAaveIncentivesController",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 3785,
                            "src": "4001:25:29"
                          },
                          "referencedDeclaration": 3785,
                          "src": "4001:25:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IAaveIncentivesController_$3785",
                            "typeString": "contract IAaveIncentivesController"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4163,
                        "mutability": "mutable",
                        "name": "_lendingPoolAddressesProviderRegistry",
                        "nameLocation": "4092:37:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 4294,
                        "src": "4054:75:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ILendingPoolAddressesProviderRegistry_$4000",
                          "typeString": "contract ILendingPoolAddressesProviderRegistry"
                        },
                        "typeName": {
                          "id": 4162,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 4161,
                            "name": "ILendingPoolAddressesProviderRegistry",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 4000,
                            "src": "4054:37:29"
                          },
                          "referencedDeclaration": 4000,
                          "src": "4054:37:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ILendingPoolAddressesProviderRegistry_$4000",
                            "typeString": "contract ILendingPoolAddressesProviderRegistry"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4165,
                        "mutability": "mutable",
                        "name": "_decimals",
                        "nameLocation": "4141:9:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 4294,
                        "src": "4135:15:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 4164,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "4135:5:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4167,
                        "mutability": "mutable",
                        "name": "_symbol",
                        "nameLocation": "4170:7:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 4294,
                        "src": "4156:21:29",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 4166,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "4156:6:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4169,
                        "mutability": "mutable",
                        "name": "_name",
                        "nameLocation": "4197:5:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 4294,
                        "src": "4183:19:29",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 4168,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "4183:6:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4171,
                        "mutability": "mutable",
                        "name": "_owner",
                        "nameLocation": "4216:6:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 4294,
                        "src": "4208:14:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 4170,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4208:7:29",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3966:260:29"
                  },
                  "returnParameters": {
                    "id": 4182,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4285:0:29"
                  },
                  "scope": 4807,
                  "src": "3954:1396:29",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    341
                  ],
                  "body": {
                    "id": 4303,
                    "nodeType": "Block",
                    "src": "5544:28:29",
                    "statements": [
                      {
                        "expression": {
                          "id": 4301,
                          "name": "__decimals",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 4139,
                          "src": "5557:10:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "functionReturnParameters": 4300,
                        "id": 4302,
                        "nodeType": "Return",
                        "src": "5550:17:29"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4295,
                    "nodeType": "StructuredDocumentation",
                    "src": "5354:130:29",
                    "text": "@notice Returns the number of decimals that the token repesenting yield source shares has\n @return The number of decimals"
                  },
                  "functionSelector": "313ce567",
                  "id": 4304,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "decimals",
                  "nameLocation": "5496:8:29",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 4297,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "5514:8:29"
                  },
                  "parameters": {
                    "id": 4296,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "5504:2:29"
                  },
                  "returnParameters": {
                    "id": 4300,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4299,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 4304,
                        "src": "5537:5:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 4298,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "5537:5:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5536:7:29"
                  },
                  "scope": 4807,
                  "src": "5487:85:29",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 4350,
                    "nodeType": "Block",
                    "src": "5846:306:29",
                    "statements": [
                      {
                        "assignments": [
                          4313
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 4313,
                            "mutability": "mutable",
                            "name": "_lendingPoolAddress",
                            "nameLocation": "5860:19:29",
                            "nodeType": "VariableDeclaration",
                            "scope": 4350,
                            "src": "5852:27:29",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            },
                            "typeName": {
                              "id": 4312,
                              "name": "address",
                              "nodeType": "ElementaryTypeName",
                              "src": "5852:7:29",
                              "stateMutability": "nonpayable",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 4319,
                        "initialValue": {
                          "arguments": [
                            {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "id": 4316,
                                "name": "_lendingPool",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 4806,
                                "src": "5890:12:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$__$returns$_t_contract$_ILendingPool_$3812_$",
                                  "typeString": "function () view returns (contract ILendingPool)"
                                }
                              },
                              "id": 4317,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "5890:14:29",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ILendingPool_$3812",
                                "typeString": "contract ILendingPool"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_ILendingPool_$3812",
                                "typeString": "contract ILendingPool"
                              }
                            ],
                            "id": 4315,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "5882:7:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_address_$",
                              "typeString": "type(address)"
                            },
                            "typeName": {
                              "id": 4314,
                              "name": "address",
                              "nodeType": "ElementaryTypeName",
                              "src": "5882:7:29",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 4318,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5882:23:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "5852:53:29"
                      },
                      {
                        "assignments": [
                          4322
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 4322,
                            "mutability": "mutable",
                            "name": "_underlyingAsset",
                            "nameLocation": "5918:16:29",
                            "nodeType": "VariableDeclaration",
                            "scope": 4350,
                            "src": "5911:23:29",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IERC20_$890",
                              "typeString": "contract IERC20"
                            },
                            "typeName": {
                              "id": 4321,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 4320,
                                "name": "IERC20",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 890,
                                "src": "5911:6:29"
                              },
                              "referencedDeclaration": 890,
                              "src": "5911:6:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$890",
                                "typeString": "contract IERC20"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 4326,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 4324,
                              "name": "_tokenAddress",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4136,
                              "src": "5944:13:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 4323,
                            "name": "IERC20",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 890,
                            "src": "5937:6:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_contract$_IERC20_$890_$",
                              "typeString": "type(contract IERC20)"
                            }
                          },
                          "id": 4325,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5937:21:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$890",
                            "typeString": "contract IERC20"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "5911:47:29"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 4330,
                              "name": "_lendingPoolAddress",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4313,
                              "src": "6011:19:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "arguments": [
                                    {
                                      "arguments": [
                                        {
                                          "id": 4341,
                                          "name": "this",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": -28,
                                          "src": "6095:4:29",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_contract$_ATokenYieldSource_$4807",
                                            "typeString": "contract ATokenYieldSource"
                                          }
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_contract$_ATokenYieldSource_$4807",
                                            "typeString": "contract ATokenYieldSource"
                                          }
                                        ],
                                        "id": 4340,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "6087:7:29",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_address_$",
                                          "typeString": "type(address)"
                                        },
                                        "typeName": {
                                          "id": 4339,
                                          "name": "address",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "6087:7:29",
                                          "typeDescriptions": {}
                                        }
                                      },
                                      "id": 4342,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "typeConversion",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "6087:13:29",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_address",
                                        "typeString": "address"
                                      }
                                    },
                                    {
                                      "id": 4343,
                                      "name": "_lendingPoolAddress",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 4313,
                                      "src": "6102:19:29",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_address",
                                        "typeString": "address"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_address",
                                        "typeString": "address"
                                      },
                                      {
                                        "typeIdentifier": "t_address",
                                        "typeString": "address"
                                      }
                                    ],
                                    "expression": {
                                      "id": 4337,
                                      "name": "_underlyingAsset",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 4322,
                                      "src": "6060:16:29",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_contract$_IERC20_$890",
                                        "typeString": "contract IERC20"
                                      }
                                    },
                                    "id": 4338,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "allowance",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 849,
                                    "src": "6060:26:29",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_external_view$_t_address_$_t_address_$returns$_t_uint256_$",
                                      "typeString": "function (address,address) view external returns (uint256)"
                                    }
                                  },
                                  "id": 4344,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "6060:62:29",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "expression": {
                                  "expression": {
                                    "arguments": [
                                      {
                                        "id": 4333,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "6043:7:29",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_uint256_$",
                                          "typeString": "type(uint256)"
                                        },
                                        "typeName": {
                                          "id": 4332,
                                          "name": "uint256",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "6043:7:29",
                                          "typeDescriptions": {}
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_type$_t_uint256_$",
                                          "typeString": "type(uint256)"
                                        }
                                      ],
                                      "id": 4331,
                                      "name": "type",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -27,
                                      "src": "6038:4:29",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                        "typeString": "function () pure"
                                      }
                                    },
                                    "id": 4334,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "functionCall",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "6038:13:29",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_meta_type_t_uint256",
                                      "typeString": "type(uint256)"
                                    }
                                  },
                                  "id": 4335,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "memberName": "max",
                                  "nodeType": "MemberAccess",
                                  "src": "6038:17:29",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "id": 4336,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "sub",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 3416,
                                "src": "6038:21:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$bound_to$_t_uint256_$",
                                  "typeString": "function (uint256,uint256) pure returns (uint256)"
                                }
                              },
                              "id": 4345,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "6038:85:29",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "id": 4327,
                              "name": "_underlyingAsset",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4322,
                              "src": "5965:16:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$890",
                                "typeString": "contract IERC20"
                              }
                            },
                            "id": 4329,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "safeIncreaseAllowance",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 1257,
                            "src": "5965:38:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20_$890_$_t_address_$_t_uint256_$returns$__$bound_to$_t_contract$_IERC20_$890_$",
                              "typeString": "function (contract IERC20,address,uint256)"
                            }
                          },
                          "id": 4346,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5965:164:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4347,
                        "nodeType": "ExpressionStatement",
                        "src": "5965:164:29"
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 4348,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "6143:4:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 4311,
                        "id": 4349,
                        "nodeType": "Return",
                        "src": "6136:11:29"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4305,
                    "nodeType": "StructuredDocumentation",
                    "src": "5576:205:29",
                    "text": "@notice Approve lending pool contract to spend max uint256 amount\n @dev Emergency function to re-approve max amount if approval amount dropped too low\n @return true if operation is successful"
                  },
                  "functionSelector": "daa4f975",
                  "id": 4351,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 4308,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 4307,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5341,
                        "src": "5821:9:29"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "5821:9:29"
                    }
                  ],
                  "name": "approveMaxAmount",
                  "nameLocation": "5793:16:29",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4306,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "5809:2:29"
                  },
                  "returnParameters": {
                    "id": 4311,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4310,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 4351,
                        "src": "5840:4:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 4309,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "5840:4:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5839:6:29"
                  },
                  "scope": 4807,
                  "src": "5784:368:29",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    17517
                  ],
                  "body": {
                    "id": 4360,
                    "nodeType": "Block",
                    "src": "6325:31:29",
                    "statements": [
                      {
                        "expression": {
                          "id": 4358,
                          "name": "_tokenAddress",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 4136,
                          "src": "6338:13:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "functionReturnParameters": 4357,
                        "id": 4359,
                        "nodeType": "Return",
                        "src": "6331:20:29"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4352,
                    "nodeType": "StructuredDocumentation",
                    "src": "6156:103:29",
                    "text": "@notice Returns the ERC20 asset token used for deposits\n @return The ERC20 asset token address"
                  },
                  "functionSelector": "c89039c5",
                  "id": 4361,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "depositToken",
                  "nameLocation": "6271:12:29",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 4354,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "6298:8:29"
                  },
                  "parameters": {
                    "id": 4353,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "6283:2:29"
                  },
                  "returnParameters": {
                    "id": 4357,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4356,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 4361,
                        "src": "6316:7:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 4355,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6316:7:29",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6315:9:29"
                  },
                  "scope": 4807,
                  "src": "6262:94:29",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    17525
                  ],
                  "body": {
                    "id": 4376,
                    "nodeType": "Block",
                    "src": "6624:49:29",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 4372,
                                  "name": "addr",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 4364,
                                  "src": "6662:4:29",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                ],
                                "id": 4371,
                                "name": "balanceOf",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 365,
                                "src": "6652:9:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$_t_address_$returns$_t_uint256_$",
                                  "typeString": "function (address) view returns (uint256)"
                                }
                              },
                              "id": 4373,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "6652:15:29",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 4370,
                            "name": "_sharesToToken",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4473,
                            "src": "6637:14:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_uint256_$returns$_t_uint256_$",
                              "typeString": "function (uint256) view returns (uint256)"
                            }
                          },
                          "id": 4374,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6637:31:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 4369,
                        "id": 4375,
                        "nodeType": "Return",
                        "src": "6630:38:29"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4362,
                    "nodeType": "StructuredDocumentation",
                    "src": "6360:182:29",
                    "text": "@notice Returns user total balance (in asset tokens). This includes the deposits and interest.\n @param addr User address\n @return The underlying balance of asset tokens"
                  },
                  "functionSelector": "b99152d0",
                  "id": 4377,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "balanceOfToken",
                  "nameLocation": "6554:14:29",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 4366,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "6592:8:29"
                  },
                  "parameters": {
                    "id": 4365,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4364,
                        "mutability": "mutable",
                        "name": "addr",
                        "nameLocation": "6577:4:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 4377,
                        "src": "6569:12:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 4363,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6569:7:29",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6568:14:29"
                  },
                  "returnParameters": {
                    "id": 4369,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4368,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 4377,
                        "src": "6615:7:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4367,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "6615:7:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6614:9:29"
                  },
                  "scope": 4807,
                  "src": "6545:128:29",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 4427,
                    "nodeType": "Block",
                    "src": "6927:451:29",
                    "statements": [
                      {
                        "assignments": [
                          4386
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 4386,
                            "mutability": "mutable",
                            "name": "_shares",
                            "nameLocation": "6941:7:29",
                            "nodeType": "VariableDeclaration",
                            "scope": 4427,
                            "src": "6933:15:29",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 4385,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "6933:7:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 4387,
                        "nodeType": "VariableDeclarationStatement",
                        "src": "6933:15:29"
                      },
                      {
                        "assignments": [
                          4389
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 4389,
                            "mutability": "mutable",
                            "name": "_totalSupply",
                            "nameLocation": "6962:12:29",
                            "nodeType": "VariableDeclaration",
                            "scope": 4427,
                            "src": "6954:20:29",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 4388,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "6954:7:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 4392,
                        "initialValue": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 4390,
                            "name": "totalSupply",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 351,
                            "src": "6977:11:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$__$returns$_t_uint256_$",
                              "typeString": "function () view returns (uint256)"
                            }
                          },
                          "id": 4391,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6977:13:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "6954:36:29"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 4395,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 4393,
                            "name": "_totalSupply",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4389,
                            "src": "7001:12:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 4394,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "7017:1:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "7001:17:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "falseBody": {
                          "id": 4423,
                          "nodeType": "Block",
                          "src": "7058:295:29",
                          "statements": [
                            {
                              "assignments": [
                                4402
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 4402,
                                  "mutability": "mutable",
                                  "name": "_exchangeMantissa",
                                  "nameLocation": "7172:17:29",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 4423,
                                  "src": "7164:25:29",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "typeName": {
                                    "id": 4401,
                                    "name": "uint256",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "7164:7:29",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 4414,
                              "initialValue": {
                                "arguments": [
                                  {
                                    "id": 4405,
                                    "name": "_totalSupply",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 4389,
                                    "src": "7221:12:29",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "id": 4410,
                                            "name": "this",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": -28,
                                            "src": "7260:4:29",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_contract$_ATokenYieldSource_$4807",
                                              "typeString": "contract ATokenYieldSource"
                                            }
                                          }
                                        ],
                                        "expression": {
                                          "argumentTypes": [
                                            {
                                              "typeIdentifier": "t_contract$_ATokenYieldSource_$4807",
                                              "typeString": "contract ATokenYieldSource"
                                            }
                                          ],
                                          "id": 4409,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": true,
                                          "lValueRequested": false,
                                          "nodeType": "ElementaryTypeNameExpression",
                                          "src": "7252:7:29",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_type$_t_address_$",
                                            "typeString": "type(address)"
                                          },
                                          "typeName": {
                                            "id": 4408,
                                            "name": "address",
                                            "nodeType": "ElementaryTypeName",
                                            "src": "7252:7:29",
                                            "typeDescriptions": {}
                                          }
                                        },
                                        "id": 4411,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "kind": "typeConversion",
                                        "lValueRequested": false,
                                        "names": [],
                                        "nodeType": "FunctionCall",
                                        "src": "7252:13:29",
                                        "tryCall": false,
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_address",
                                          "typeString": "address"
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_address",
                                          "typeString": "address"
                                        }
                                      ],
                                      "expression": {
                                        "id": 4406,
                                        "name": "aToken",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 4125,
                                        "src": "7235:6:29",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_contract$_ATokenInterface_$3549",
                                          "typeString": "contract ATokenInterface"
                                        }
                                      },
                                      "id": 4407,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "memberName": "balanceOf",
                                      "nodeType": "MemberAccess",
                                      "referencedDeclaration": 829,
                                      "src": "7235:16:29",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_function_external_view$_t_address_$returns$_t_uint256_$",
                                        "typeString": "function (address) view external returns (uint256)"
                                      }
                                    },
                                    "id": 4412,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "kind": "functionCall",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "7235:31:29",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    },
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  ],
                                  "expression": {
                                    "id": 4403,
                                    "name": "FixedPoint",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 4899,
                                    "src": "7192:10:29",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_contract$_FixedPoint_$4899_$",
                                      "typeString": "type(library FixedPoint)"
                                    }
                                  },
                                  "id": 4404,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "calculateMantissa",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 4844,
                                  "src": "7192:28:29",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$",
                                    "typeString": "function (uint256,uint256) pure returns (uint256)"
                                  }
                                },
                                "id": 4413,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "7192:75:29",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "7164:103:29"
                            },
                            {
                              "expression": {
                                "id": 4421,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 4415,
                                  "name": "_shares",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 4386,
                                  "src": "7275:7:29",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "arguments": [
                                    {
                                      "id": 4418,
                                      "name": "_tokens",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 4380,
                                      "src": "7319:7:29",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    {
                                      "id": 4419,
                                      "name": "_exchangeMantissa",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 4402,
                                      "src": "7328:17:29",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      },
                                      {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    ],
                                    "expression": {
                                      "id": 4416,
                                      "name": "FixedPoint",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 4899,
                                      "src": "7285:10:29",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_contract$_FixedPoint_$4899_$",
                                        "typeString": "type(library FixedPoint)"
                                      }
                                    },
                                    "id": 4417,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "multiplyUintByMantissa",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 4871,
                                    "src": "7285:33:29",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$",
                                      "typeString": "function (uint256,uint256) pure returns (uint256)"
                                    }
                                  },
                                  "id": 4420,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "7285:61:29",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "7275:71:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 4422,
                              "nodeType": "ExpressionStatement",
                              "src": "7275:71:29"
                            }
                          ]
                        },
                        "id": 4424,
                        "nodeType": "IfStatement",
                        "src": "6997:356:29",
                        "trueBody": {
                          "id": 4400,
                          "nodeType": "Block",
                          "src": "7020:32:29",
                          "statements": [
                            {
                              "expression": {
                                "id": 4398,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 4396,
                                  "name": "_shares",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 4386,
                                  "src": "7028:7:29",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "id": 4397,
                                  "name": "_tokens",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 4380,
                                  "src": "7038:7:29",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "7028:17:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 4399,
                              "nodeType": "ExpressionStatement",
                              "src": "7028:17:29"
                            }
                          ]
                        }
                      },
                      {
                        "expression": {
                          "id": 4425,
                          "name": "_shares",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 4386,
                          "src": "7366:7:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 4384,
                        "id": 4426,
                        "nodeType": "Return",
                        "src": "7359:14:29"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4378,
                    "nodeType": "StructuredDocumentation",
                    "src": "6677:174:29",
                    "text": "@notice Calculates the number of shares that should be mint or burned when a user deposit or withdraw\n @param _tokens Amount of tokens\n @return Number of shares"
                  },
                  "id": 4428,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_tokenToShares",
                  "nameLocation": "6863:14:29",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4381,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4380,
                        "mutability": "mutable",
                        "name": "_tokens",
                        "nameLocation": "6886:7:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 4428,
                        "src": "6878:15:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4379,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "6878:7:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6877:17:29"
                  },
                  "returnParameters": {
                    "id": 4384,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4383,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 4428,
                        "src": "6918:7:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4382,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "6918:7:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6917:9:29"
                  },
                  "scope": 4807,
                  "src": "6854:524:29",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 4472,
                    "nodeType": "Block",
                    "src": "7601:309:29",
                    "statements": [
                      {
                        "assignments": [
                          4437
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 4437,
                            "mutability": "mutable",
                            "name": "_tokens",
                            "nameLocation": "7615:7:29",
                            "nodeType": "VariableDeclaration",
                            "scope": 4472,
                            "src": "7607:15:29",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 4436,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "7607:7:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 4438,
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7607:15:29"
                      },
                      {
                        "assignments": [
                          4440
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 4440,
                            "mutability": "mutable",
                            "name": "_totalSupply",
                            "nameLocation": "7636:12:29",
                            "nodeType": "VariableDeclaration",
                            "scope": 4472,
                            "src": "7628:20:29",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 4439,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "7628:7:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 4443,
                        "initialValue": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 4441,
                            "name": "totalSupply",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 351,
                            "src": "7651:11:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$__$returns$_t_uint256_$",
                              "typeString": "function () view returns (uint256)"
                            }
                          },
                          "id": 4442,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7651:13:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7628:36:29"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 4446,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 4444,
                            "name": "_totalSupply",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4440,
                            "src": "7675:12:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 4445,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "7691:1:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "7675:17:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "falseBody": {
                          "id": 4468,
                          "nodeType": "Block",
                          "src": "7732:153:29",
                          "statements": [
                            {
                              "expression": {
                                "id": 4466,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 4452,
                                  "name": "_tokens",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 4437,
                                  "src": "7806:7:29",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "arguments": [
                                    {
                                      "id": 4464,
                                      "name": "_totalSupply",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 4440,
                                      "src": "7865:12:29",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    ],
                                    "expression": {
                                      "arguments": [
                                        {
                                          "arguments": [
                                            {
                                              "arguments": [
                                                {
                                                  "id": 4459,
                                                  "name": "this",
                                                  "nodeType": "Identifier",
                                                  "overloadedDeclarations": [],
                                                  "referencedDeclaration": -28,
                                                  "src": "7853:4:29",
                                                  "typeDescriptions": {
                                                    "typeIdentifier": "t_contract$_ATokenYieldSource_$4807",
                                                    "typeString": "contract ATokenYieldSource"
                                                  }
                                                }
                                              ],
                                              "expression": {
                                                "argumentTypes": [
                                                  {
                                                    "typeIdentifier": "t_contract$_ATokenYieldSource_$4807",
                                                    "typeString": "contract ATokenYieldSource"
                                                  }
                                                ],
                                                "id": 4458,
                                                "isConstant": false,
                                                "isLValue": false,
                                                "isPure": true,
                                                "lValueRequested": false,
                                                "nodeType": "ElementaryTypeNameExpression",
                                                "src": "7845:7:29",
                                                "typeDescriptions": {
                                                  "typeIdentifier": "t_type$_t_address_$",
                                                  "typeString": "type(address)"
                                                },
                                                "typeName": {
                                                  "id": 4457,
                                                  "name": "address",
                                                  "nodeType": "ElementaryTypeName",
                                                  "src": "7845:7:29",
                                                  "typeDescriptions": {}
                                                }
                                              },
                                              "id": 4460,
                                              "isConstant": false,
                                              "isLValue": false,
                                              "isPure": false,
                                              "kind": "typeConversion",
                                              "lValueRequested": false,
                                              "names": [],
                                              "nodeType": "FunctionCall",
                                              "src": "7845:13:29",
                                              "tryCall": false,
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_address",
                                                "typeString": "address"
                                              }
                                            }
                                          ],
                                          "expression": {
                                            "argumentTypes": [
                                              {
                                                "typeIdentifier": "t_address",
                                                "typeString": "address"
                                              }
                                            ],
                                            "expression": {
                                              "id": 4455,
                                              "name": "aToken",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 4125,
                                              "src": "7828:6:29",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_contract$_ATokenInterface_$3549",
                                                "typeString": "contract ATokenInterface"
                                              }
                                            },
                                            "id": 4456,
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": false,
                                            "lValueRequested": false,
                                            "memberName": "balanceOf",
                                            "nodeType": "MemberAccess",
                                            "referencedDeclaration": 829,
                                            "src": "7828:16:29",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_function_external_view$_t_address_$returns$_t_uint256_$",
                                              "typeString": "function (address) view external returns (uint256)"
                                            }
                                          },
                                          "id": 4461,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "kind": "functionCall",
                                          "lValueRequested": false,
                                          "names": [],
                                          "nodeType": "FunctionCall",
                                          "src": "7828:31:29",
                                          "tryCall": false,
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        ],
                                        "expression": {
                                          "id": 4453,
                                          "name": "_shares",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 4431,
                                          "src": "7816:7:29",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "id": 4454,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "memberName": "mul",
                                        "nodeType": "MemberAccess",
                                        "referencedDeclaration": 3431,
                                        "src": "7816:11:29",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$bound_to$_t_uint256_$",
                                          "typeString": "function (uint256,uint256) pure returns (uint256)"
                                        }
                                      },
                                      "id": 4462,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "functionCall",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "7816:44:29",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "id": 4463,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "div",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 3446,
                                    "src": "7816:48:29",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$bound_to$_t_uint256_$",
                                      "typeString": "function (uint256,uint256) pure returns (uint256)"
                                    }
                                  },
                                  "id": 4465,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "7816:62:29",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "7806:72:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 4467,
                              "nodeType": "ExpressionStatement",
                              "src": "7806:72:29"
                            }
                          ]
                        },
                        "id": 4469,
                        "nodeType": "IfStatement",
                        "src": "7671:214:29",
                        "trueBody": {
                          "id": 4451,
                          "nodeType": "Block",
                          "src": "7694:32:29",
                          "statements": [
                            {
                              "expression": {
                                "id": 4449,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 4447,
                                  "name": "_tokens",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 4437,
                                  "src": "7702:7:29",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "id": 4448,
                                  "name": "_shares",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 4431,
                                  "src": "7712:7:29",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "7702:17:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 4450,
                              "nodeType": "ExpressionStatement",
                              "src": "7702:17:29"
                            }
                          ]
                        }
                      },
                      {
                        "expression": {
                          "id": 4470,
                          "name": "_tokens",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 4437,
                          "src": "7898:7:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 4435,
                        "id": 4471,
                        "nodeType": "Return",
                        "src": "7891:14:29"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4429,
                    "nodeType": "StructuredDocumentation",
                    "src": "7382:143:29",
                    "text": "@notice Calculates the number of tokens a user has in the yield source\n @param _shares Amount of shares\n @return Number of tokens"
                  },
                  "id": 4473,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_sharesToToken",
                  "nameLocation": "7537:14:29",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4432,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4431,
                        "mutability": "mutable",
                        "name": "_shares",
                        "nameLocation": "7560:7:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 4473,
                        "src": "7552:15:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4430,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "7552:7:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7551:17:29"
                  },
                  "returnParameters": {
                    "id": 4435,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4434,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 4473,
                        "src": "7592:7:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4433,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "7592:7:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7591:9:29"
                  },
                  "scope": 4807,
                  "src": "7528:382:29",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 4486,
                    "nodeType": "Block",
                    "src": "8091:67:29",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 4482,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 4480,
                                "name": "_shares",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 4476,
                                "src": "8105:7:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">",
                              "rightExpression": {
                                "hexValue": "30",
                                "id": 4481,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "8115:1:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "src": "8105:11:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "41546f6b656e5969656c64536f757263652f7368617265732d67742d7a65726f",
                              "id": 4483,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "8118:34:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_1bf032026f7f3166eed41a0b22281ee2dc0f4865f7f0b8fa994d39075c59a36b",
                                "typeString": "literal_string \"ATokenYieldSource/shares-gt-zero\""
                              },
                              "value": "ATokenYieldSource/shares-gt-zero"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_1bf032026f7f3166eed41a0b22281ee2dc0f4865f7f0b8fa994d39075c59a36b",
                                "typeString": "literal_string \"ATokenYieldSource/shares-gt-zero\""
                              }
                            ],
                            "id": 4479,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "8097:7:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 4484,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8097:56:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4485,
                        "nodeType": "ExpressionStatement",
                        "src": "8097:56:29"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4474,
                    "nodeType": "StructuredDocumentation",
                    "src": "7914:113:29",
                    "text": "@notice Checks that the amount of shares is greater than zero.\n @param _shares Amount of shares to check"
                  },
                  "id": 4487,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_requireSharesGTZero",
                  "nameLocation": "8039:20:29",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4477,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4476,
                        "mutability": "mutable",
                        "name": "_shares",
                        "nameLocation": "8068:7:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 4487,
                        "src": "8060:15:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4475,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "8060:7:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8059:17:29"
                  },
                  "returnParameters": {
                    "id": 4478,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "8091:0:29"
                  },
                  "scope": 4807,
                  "src": "8030:128:29",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 4518,
                    "nodeType": "Block",
                    "src": "8325:173:29",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 4497,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "8370:3:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 4498,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "8370:10:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "id": 4501,
                                  "name": "this",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -28,
                                  "src": "8390:4:29",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_ATokenYieldSource_$4807",
                                    "typeString": "contract ATokenYieldSource"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_ATokenYieldSource_$4807",
                                    "typeString": "contract ATokenYieldSource"
                                  }
                                ],
                                "id": 4500,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "8382:7:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 4499,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "8382:7:29",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 4502,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "8382:13:29",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 4503,
                              "name": "mintAmount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4490,
                              "src": "8397:10:29",
                              "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": 4494,
                                  "name": "_tokenAddress",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 4136,
                                  "src": "8338:13:29",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                ],
                                "id": 4493,
                                "name": "IERC20",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 890,
                                "src": "8331:6:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_contract$_IERC20_$890_$",
                                  "typeString": "type(contract IERC20)"
                                }
                              },
                              "id": 4495,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "8331:21:29",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$890",
                                "typeString": "contract IERC20"
                              }
                            },
                            "id": 4496,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "safeTransferFrom",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 1177,
                            "src": "8331:38:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20_$890_$_t_address_$_t_address_$_t_uint256_$returns$__$bound_to$_t_contract$_IERC20_$890_$",
                              "typeString": "function (contract IERC20,address,address,uint256)"
                            }
                          },
                          "id": 4504,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8331:77:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4505,
                        "nodeType": "ExpressionStatement",
                        "src": "8331:77:29"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 4509,
                              "name": "_tokenAddress",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4136,
                              "src": "8437:13:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 4510,
                              "name": "mintAmount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4490,
                              "src": "8452:10:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "id": 4513,
                                  "name": "this",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -28,
                                  "src": "8472:4:29",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_ATokenYieldSource_$4807",
                                    "typeString": "contract ATokenYieldSource"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_ATokenYieldSource_$4807",
                                    "typeString": "contract ATokenYieldSource"
                                  }
                                ],
                                "id": 4512,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "8464:7:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 4511,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "8464:7:29",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 4514,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "8464:13:29",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 4515,
                              "name": "REFERRAL_CODE",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4153,
                              "src": "8479:13:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint16",
                                "typeString": "uint16"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint16",
                                "typeString": "uint16"
                              }
                            ],
                            "expression": {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "id": 4506,
                                "name": "_lendingPool",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 4806,
                                "src": "8414:12:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$__$returns$_t_contract$_ILendingPool_$3812_$",
                                  "typeString": "function () view returns (contract ILendingPool)"
                                }
                              },
                              "id": 4507,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "8414:14:29",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ILendingPool_$3812",
                                "typeString": "contract ILendingPool"
                              }
                            },
                            "id": 4508,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "deposit",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 3799,
                            "src": "8414:22:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_address_$_t_uint256_$_t_address_$_t_uint16_$returns$__$",
                              "typeString": "function (address,uint256,address,uint16) external"
                            }
                          },
                          "id": 4516,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8414:79:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4517,
                        "nodeType": "ExpressionStatement",
                        "src": "8414:79:29"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4488,
                    "nodeType": "StructuredDocumentation",
                    "src": "8162:107:29",
                    "text": "@notice Deposit asset tokens to Aave\n @param mintAmount The amount of asset tokens to be deposited"
                  },
                  "id": 4519,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_depositToAave",
                  "nameLocation": "8281:14:29",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4491,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4490,
                        "mutability": "mutable",
                        "name": "mintAmount",
                        "nameLocation": "8304:10:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 4519,
                        "src": "8296:18:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4489,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "8296:7:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8295:20:29"
                  },
                  "returnParameters": {
                    "id": 4492,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "8325:0:29"
                  },
                  "scope": 4807,
                  "src": "8272:226:29",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "baseFunctions": [
                    17533
                  ],
                  "body": {
                    "id": 4557,
                    "nodeType": "Block",
                    "src": "8952:207:29",
                    "statements": [
                      {
                        "assignments": [
                          4531
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 4531,
                            "mutability": "mutable",
                            "name": "shares",
                            "nameLocation": "8966:6:29",
                            "nodeType": "VariableDeclaration",
                            "scope": 4557,
                            "src": "8958:14:29",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 4530,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "8958:7:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 4535,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 4533,
                              "name": "mintAmount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4522,
                              "src": "8990:10:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 4532,
                            "name": "_tokenToShares",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4428,
                            "src": "8975:14:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_uint256_$returns$_t_uint256_$",
                              "typeString": "function (uint256) view returns (uint256)"
                            }
                          },
                          "id": 4534,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8975:26:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "8958:43:29"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 4537,
                              "name": "shares",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4531,
                              "src": "9028:6:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 4536,
                            "name": "_requireSharesGTZero",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4487,
                            "src": "9007:20:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint256_$returns$__$",
                              "typeString": "function (uint256) pure"
                            }
                          },
                          "id": 4538,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9007:28:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4539,
                        "nodeType": "ExpressionStatement",
                        "src": "9007:28:29"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 4541,
                              "name": "mintAmount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4522,
                              "src": "9057:10:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 4540,
                            "name": "_depositToAave",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4519,
                            "src": "9042:14:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_uint256_$returns$__$",
                              "typeString": "function (uint256)"
                            }
                          },
                          "id": 4542,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9042:26:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4543,
                        "nodeType": "ExpressionStatement",
                        "src": "9042:26:29"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 4545,
                              "name": "to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4524,
                              "src": "9080:2:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 4546,
                              "name": "shares",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4531,
                              "src": "9084:6:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 4544,
                            "name": "_mint",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 672,
                            "src": "9074:5:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256)"
                            }
                          },
                          "id": 4547,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9074:17:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4548,
                        "nodeType": "ExpressionStatement",
                        "src": "9074:17:29"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 4550,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "9119:3:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 4551,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "9119:10:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 4552,
                              "name": "shares",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4531,
                              "src": "9131:6:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 4553,
                              "name": "mintAmount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4522,
                              "src": "9139:10:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 4554,
                              "name": "to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4524,
                              "src": "9151:2:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 4549,
                            "name": "SuppliedTokenTo",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4102,
                            "src": "9103:15:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_uint256_$_t_uint256_$_t_address_$returns$__$",
                              "typeString": "function (address,uint256,uint256,address)"
                            }
                          },
                          "id": 4555,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9103:51:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4556,
                        "nodeType": "EmitStatement",
                        "src": "9098:56:29"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4520,
                    "nodeType": "StructuredDocumentation",
                    "src": "8502:361:29",
                    "text": "@notice Supplies asset tokens to the yield source\n @dev Shares corresponding to the number of tokens supplied are mint to the user's balance\n @dev Asset tokens are supplied to the yield source, then deposited into Aave\n @param mintAmount The amount of asset tokens to be supplied\n @param to The user whose balance will receive the tokens"
                  },
                  "functionSelector": "87a6eeef",
                  "id": 4558,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 4528,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 4527,
                        "name": "nonReentrant",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 265,
                        "src": "8939:12:29"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "8939:12:29"
                    }
                  ],
                  "name": "supplyTokenTo",
                  "nameLocation": "8875:13:29",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 4526,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "8930:8:29"
                  },
                  "parameters": {
                    "id": 4525,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4522,
                        "mutability": "mutable",
                        "name": "mintAmount",
                        "nameLocation": "8897:10:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 4558,
                        "src": "8889:18:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4521,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "8889:7:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4524,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "8917:2:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 4558,
                        "src": "8909:10:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 4523,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "8909:7:29",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8888:32:29"
                  },
                  "returnParameters": {
                    "id": 4529,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "8952:0:29"
                  },
                  "scope": 4807,
                  "src": "8866:293:29",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    17541
                  ],
                  "body": {
                    "id": 4647,
                    "nodeType": "Block",
                    "src": "9656:581:29",
                    "statements": [
                      {
                        "assignments": [
                          4570
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 4570,
                            "mutability": "mutable",
                            "name": "shares",
                            "nameLocation": "9670:6:29",
                            "nodeType": "VariableDeclaration",
                            "scope": 4647,
                            "src": "9662:14:29",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 4569,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "9662:7:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 4574,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 4572,
                              "name": "redeemAmount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4561,
                              "src": "9694:12:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 4571,
                            "name": "_tokenToShares",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4428,
                            "src": "9679:14:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_uint256_$returns$_t_uint256_$",
                              "typeString": "function (uint256) view returns (uint256)"
                            }
                          },
                          "id": 4573,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9679:28:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "9662:45:29"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 4576,
                              "name": "shares",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4570,
                              "src": "9734:6:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 4575,
                            "name": "_requireSharesGTZero",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4487,
                            "src": "9713:20:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint256_$returns$__$",
                              "typeString": "function (uint256) pure"
                            }
                          },
                          "id": 4577,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9713:28:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4578,
                        "nodeType": "ExpressionStatement",
                        "src": "9713:28:29"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 4580,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "9754:3:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 4581,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "9754:10:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 4582,
                              "name": "shares",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4570,
                              "src": "9766:6:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 4579,
                            "name": "_burn",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 744,
                            "src": "9748:5:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256)"
                            }
                          },
                          "id": 4583,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9748:25:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4584,
                        "nodeType": "ExpressionStatement",
                        "src": "9748:25:29"
                      },
                      {
                        "assignments": [
                          4587
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 4587,
                            "mutability": "mutable",
                            "name": "_depositToken",
                            "nameLocation": "9787:13:29",
                            "nodeType": "VariableDeclaration",
                            "scope": 4647,
                            "src": "9780:20:29",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IERC20_$890",
                              "typeString": "contract IERC20"
                            },
                            "typeName": {
                              "id": 4586,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 4585,
                                "name": "IERC20",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 890,
                                "src": "9780:6:29"
                              },
                              "referencedDeclaration": 890,
                              "src": "9780:6:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$890",
                                "typeString": "contract IERC20"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 4591,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 4589,
                              "name": "_tokenAddress",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4136,
                              "src": "9810:13:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 4588,
                            "name": "IERC20",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 890,
                            "src": "9803:6:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_contract$_IERC20_$890_$",
                              "typeString": "type(contract IERC20)"
                            }
                          },
                          "id": 4590,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9803:21:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$890",
                            "typeString": "contract IERC20"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "9780:44:29"
                      },
                      {
                        "assignments": [
                          4593
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 4593,
                            "mutability": "mutable",
                            "name": "beforeBalance",
                            "nameLocation": "9838:13:29",
                            "nodeType": "VariableDeclaration",
                            "scope": 4647,
                            "src": "9830:21:29",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 4592,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "9830:7:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 4601,
                        "initialValue": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 4598,
                                  "name": "this",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -28,
                                  "src": "9886:4:29",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_ATokenYieldSource_$4807",
                                    "typeString": "contract ATokenYieldSource"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_ATokenYieldSource_$4807",
                                    "typeString": "contract ATokenYieldSource"
                                  }
                                ],
                                "id": 4597,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "9878:7:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 4596,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "9878:7:29",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 4599,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "9878:13:29",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "expression": {
                              "id": 4594,
                              "name": "_depositToken",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4587,
                              "src": "9854:13:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$890",
                                "typeString": "contract IERC20"
                              }
                            },
                            "id": 4595,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "balanceOf",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 829,
                            "src": "9854:23:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$_t_address_$returns$_t_uint256_$",
                              "typeString": "function (address) view external returns (uint256)"
                            }
                          },
                          "id": 4600,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9854:38:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "9830:62:29"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 4605,
                              "name": "_tokenAddress",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4136,
                              "src": "9922:13:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 4606,
                              "name": "redeemAmount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4561,
                              "src": "9937:12:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "id": 4609,
                                  "name": "this",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -28,
                                  "src": "9959:4:29",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_ATokenYieldSource_$4807",
                                    "typeString": "contract ATokenYieldSource"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_ATokenYieldSource_$4807",
                                    "typeString": "contract ATokenYieldSource"
                                  }
                                ],
                                "id": 4608,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "9951:7:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 4607,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "9951:7:29",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 4610,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "9951:13:29",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "expression": {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "id": 4602,
                                "name": "_lendingPool",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 4806,
                                "src": "9898:12:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$__$returns$_t_contract$_ILendingPool_$3812_$",
                                  "typeString": "function () view returns (contract ILendingPool)"
                                }
                              },
                              "id": 4603,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "9898:14:29",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ILendingPool_$3812",
                                "typeString": "contract ILendingPool"
                              }
                            },
                            "id": 4604,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "withdraw",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 3811,
                            "src": "9898:23:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_address_$_t_uint256_$_t_address_$returns$_t_uint256_$",
                              "typeString": "function (address,uint256,address) external returns (uint256)"
                            }
                          },
                          "id": 4611,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9898:67:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 4612,
                        "nodeType": "ExpressionStatement",
                        "src": "9898:67:29"
                      },
                      {
                        "assignments": [
                          4614
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 4614,
                            "mutability": "mutable",
                            "name": "afterBalance",
                            "nameLocation": "9979:12:29",
                            "nodeType": "VariableDeclaration",
                            "scope": 4647,
                            "src": "9971:20:29",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 4613,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "9971:7:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 4622,
                        "initialValue": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 4619,
                                  "name": "this",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -28,
                                  "src": "10026:4:29",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_ATokenYieldSource_$4807",
                                    "typeString": "contract ATokenYieldSource"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_ATokenYieldSource_$4807",
                                    "typeString": "contract ATokenYieldSource"
                                  }
                                ],
                                "id": 4618,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "10018:7:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 4617,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "10018:7:29",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 4620,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "10018:13:29",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "expression": {
                              "id": 4615,
                              "name": "_depositToken",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4587,
                              "src": "9994:13:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$890",
                                "typeString": "contract IERC20"
                              }
                            },
                            "id": 4616,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "balanceOf",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 829,
                            "src": "9994:23:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$_t_address_$returns$_t_uint256_$",
                              "typeString": "function (address) view external returns (uint256)"
                            }
                          },
                          "id": 4621,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9994:38:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "9971:61:29"
                      },
                      {
                        "assignments": [
                          4624
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 4624,
                            "mutability": "mutable",
                            "name": "balanceDiff",
                            "nameLocation": "10047:11:29",
                            "nodeType": "VariableDeclaration",
                            "scope": 4647,
                            "src": "10039:19:29",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 4623,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "10039:7:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 4629,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 4627,
                              "name": "beforeBalance",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4593,
                              "src": "10078:13:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "id": 4625,
                              "name": "afterBalance",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4614,
                              "src": "10061:12:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "id": 4626,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "sub",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 3416,
                            "src": "10061:16:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$bound_to$_t_uint256_$",
                              "typeString": "function (uint256,uint256) pure returns (uint256)"
                            }
                          },
                          "id": 4628,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10061:31:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "10039:53:29"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 4633,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "10125:3:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 4634,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "10125:10:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 4635,
                              "name": "balanceDiff",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4624,
                              "src": "10137:11:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "id": 4630,
                              "name": "_depositToken",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4587,
                              "src": "10098:13:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$890",
                                "typeString": "contract IERC20"
                              }
                            },
                            "id": 4632,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "safeTransfer",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 1151,
                            "src": "10098:26:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20_$890_$_t_address_$_t_uint256_$returns$__$bound_to$_t_contract$_IERC20_$890_$",
                              "typeString": "function (contract IERC20,address,uint256)"
                            }
                          },
                          "id": 4636,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10098:51:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4637,
                        "nodeType": "ExpressionStatement",
                        "src": "10098:51:29"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 4639,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "10175:3:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 4640,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "10175:10:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 4641,
                              "name": "shares",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4570,
                              "src": "10187:6:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 4642,
                              "name": "redeemAmount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4561,
                              "src": "10195:12:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 4638,
                            "name": "RedeemedToken",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4082,
                            "src": "10161:13:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_uint256_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256,uint256)"
                            }
                          },
                          "id": 4643,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10161:47:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4644,
                        "nodeType": "EmitStatement",
                        "src": "10156:52:29"
                      },
                      {
                        "expression": {
                          "id": 4645,
                          "name": "balanceDiff",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 4624,
                          "src": "10221:11:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 4568,
                        "id": 4646,
                        "nodeType": "Return",
                        "src": "10214:18:29"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4559,
                    "nodeType": "StructuredDocumentation",
                    "src": "9163:398:29",
                    "text": "@notice Redeems asset tokens from the yield source\n @dev Shares corresponding to the number of tokens withdrawn are burnt from the user's balance\n @dev Asset tokens are withdrawn from Aave, then transferred from the yield source to the user's wallet\n @param redeemAmount The amount of asset tokens to be redeemed\n @return The actual amount of asset tokens that were redeemed"
                  },
                  "functionSelector": "013054c2",
                  "id": 4648,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 4565,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 4564,
                        "name": "nonReentrant",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 265,
                        "src": "9625:12:29"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "9625:12:29"
                    }
                  ],
                  "name": "redeemToken",
                  "nameLocation": "9573:11:29",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 4563,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "9616:8:29"
                  },
                  "parameters": {
                    "id": 4562,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4561,
                        "mutability": "mutable",
                        "name": "redeemAmount",
                        "nameLocation": "9593:12:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 4648,
                        "src": "9585:20:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4560,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "9585:7:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9584:22:29"
                  },
                  "returnParameters": {
                    "id": 4568,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4567,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 4648,
                        "src": "9647:7:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4566,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "9647:7:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9646:9:29"
                  },
                  "scope": 4807,
                  "src": "9564:673:29",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    4018
                  ],
                  "body": {
                    "id": 4690,
                    "nodeType": "Block",
                    "src": "10675:211:29",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 4671,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 4665,
                                    "name": "erc20Token",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 4652,
                                    "src": "10697:10:29",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_IERC20_$890",
                                      "typeString": "contract IERC20"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_IERC20_$890",
                                      "typeString": "contract IERC20"
                                    }
                                  ],
                                  "id": 4664,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "10689:7:29",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 4663,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "10689:7:29",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 4666,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "10689:19:29",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "id": 4669,
                                    "name": "aToken",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 4125,
                                    "src": "10720:6:29",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_ATokenInterface_$3549",
                                      "typeString": "contract ATokenInterface"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_ATokenInterface_$3549",
                                      "typeString": "contract ATokenInterface"
                                    }
                                  ],
                                  "id": 4668,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "10712:7:29",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 4667,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "10712:7:29",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 4670,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "10712:15:29",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "10689:38:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "41546f6b656e5969656c64536f757263652f61546f6b656e2d7472616e736665722d6e6f742d616c6c6f776564",
                              "id": 4672,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "10729:47:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_0eecb4d73b7dd302dba8b39ceec0162d7ad7a461ff78f9fce8b1f398117ab865",
                                "typeString": "literal_string \"ATokenYieldSource/aToken-transfer-not-allowed\""
                              },
                              "value": "ATokenYieldSource/aToken-transfer-not-allowed"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_0eecb4d73b7dd302dba8b39ceec0162d7ad7a461ff78f9fce8b1f398117ab865",
                                "typeString": "literal_string \"ATokenYieldSource/aToken-transfer-not-allowed\""
                              }
                            ],
                            "id": 4662,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "10681:7:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 4673,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10681:96:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4674,
                        "nodeType": "ExpressionStatement",
                        "src": "10681:96:29"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 4678,
                              "name": "to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4654,
                              "src": "10807:2:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 4679,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4656,
                              "src": "10811:6:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "id": 4675,
                              "name": "erc20Token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4652,
                              "src": "10783:10:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$890",
                                "typeString": "contract IERC20"
                              }
                            },
                            "id": 4677,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "safeTransfer",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 1151,
                            "src": "10783:23:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20_$890_$_t_address_$_t_uint256_$returns$__$bound_to$_t_contract$_IERC20_$890_$",
                              "typeString": "function (contract IERC20,address,uint256)"
                            }
                          },
                          "id": 4680,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10783:35:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4681,
                        "nodeType": "ExpressionStatement",
                        "src": "10783:35:29"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 4683,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "10846:3:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 4684,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "10846:10:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 4685,
                              "name": "to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4654,
                              "src": "10858:2:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 4686,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4656,
                              "src": "10862:6:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 4687,
                              "name": "erc20Token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4652,
                              "src": "10870:10:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$890",
                                "typeString": "contract IERC20"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_contract$_IERC20_$890",
                                "typeString": "contract IERC20"
                              }
                            ],
                            "id": 4682,
                            "name": "TransferredERC20",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4121,
                            "src": "10829:16:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_contract$_IERC20_$890_$returns$__$",
                              "typeString": "function (address,address,uint256,contract IERC20)"
                            }
                          },
                          "id": 4688,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10829:52:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4689,
                        "nodeType": "EmitStatement",
                        "src": "10824:57:29"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4649,
                    "nodeType": "StructuredDocumentation",
                    "src": "10241:324:29",
                    "text": "@notice Transfer ERC20 tokens other than the aTokens held by this contract to the recipient address\n @dev This function is only callable by the owner or asset manager\n @param erc20Token The ERC20 token to transfer\n @param to The recipient of the tokens\n @param amount The amount of tokens to transfer"
                  },
                  "functionSelector": "9db5dbe4",
                  "id": 4691,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 4660,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 4659,
                        "name": "onlyManagerOrOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5199,
                        "src": "10656:18:29"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "10656:18:29"
                    }
                  ],
                  "name": "transferERC20",
                  "nameLocation": "10577:13:29",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 4658,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "10647:8:29"
                  },
                  "parameters": {
                    "id": 4657,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4652,
                        "mutability": "mutable",
                        "name": "erc20Token",
                        "nameLocation": "10598:10:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 4691,
                        "src": "10591:17:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$890",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 4651,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 4650,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 890,
                            "src": "10591:6:29"
                          },
                          "referencedDeclaration": 890,
                          "src": "10591:6:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$890",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4654,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "10618:2:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 4691,
                        "src": "10610:10:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 4653,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "10610:7:29",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4656,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "10630:6:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 4691,
                        "src": "10622:14:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4655,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "10622:7:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "10590:47:29"
                  },
                  "returnParameters": {
                    "id": 4661,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "10675:0:29"
                  },
                  "scope": 4807,
                  "src": "10568:318:29",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    4024
                  ],
                  "body": {
                    "id": 4710,
                    "nodeType": "Block",
                    "src": "11172:73:29",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 4701,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4694,
                              "src": "11193:6:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 4700,
                            "name": "_depositToAave",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4519,
                            "src": "11178:14:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_uint256_$returns$__$",
                              "typeString": "function (uint256)"
                            }
                          },
                          "id": 4702,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "11178:22:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4703,
                        "nodeType": "ExpressionStatement",
                        "src": "11178:22:29"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 4705,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "11221:3:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 4706,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "11221:10:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 4707,
                              "name": "amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4694,
                              "src": "11233:6:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 4704,
                            "name": "Sponsored",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4109,
                            "src": "11211:9:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256)"
                            }
                          },
                          "id": 4708,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "11211:29:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4709,
                        "nodeType": "EmitStatement",
                        "src": "11206:34:29"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4692,
                    "nodeType": "StructuredDocumentation",
                    "src": "10890:215:29",
                    "text": "@notice Allows someone to deposit into the yield source without receiving any shares\n @dev This allows anyone to distribute tokens among the share holders\n @param amount The amount of tokens to deposit"
                  },
                  "functionSelector": "b6cce5e2",
                  "id": 4711,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 4698,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 4697,
                        "name": "nonReentrant",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 265,
                        "src": "11159:12:29"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "11159:12:29"
                    }
                  ],
                  "name": "sponsor",
                  "nameLocation": "11117:7:29",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 4696,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "11150:8:29"
                  },
                  "parameters": {
                    "id": 4695,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4694,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "11133:6:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 4711,
                        "src": "11125:14:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4693,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "11125:7:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "11124:16:29"
                  },
                  "returnParameters": {
                    "id": 4699,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "11172:0:29"
                  },
                  "scope": 4807,
                  "src": "11108:137:29",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 4785,
                    "nodeType": "Block",
                    "src": "11529:488:29",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 4727,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 4722,
                                "name": "to",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 4714,
                                "src": "11543:2:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 4725,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "11557:1:29",
                                    "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": 4724,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "11549:7:29",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 4723,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "11549:7:29",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 4726,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "11549:10:29",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "11543:16:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "41546f6b656e5969656c64536f757263652f726563697069656e742d6e6f742d7a65726f2d61646472657373",
                              "id": 4728,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "11561:46:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_e0ea3b80d6a4b357c4f343ccb01f3a5dbf9620c5a40541ebd498c67541770b49",
                                "typeString": "literal_string \"ATokenYieldSource/recipient-not-zero-address\""
                              },
                              "value": "ATokenYieldSource/recipient-not-zero-address"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_e0ea3b80d6a4b357c4f343ccb01f3a5dbf9620c5a40541ebd498c67541770b49",
                                "typeString": "literal_string \"ATokenYieldSource/recipient-not-zero-address\""
                              }
                            ],
                            "id": 4721,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "11535:7:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 4729,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "11535:73:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4730,
                        "nodeType": "ExpressionStatement",
                        "src": "11535:73:29"
                      },
                      {
                        "assignments": [
                          4733
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 4733,
                            "mutability": "mutable",
                            "name": "_incentivesController",
                            "nameLocation": "11641:21:29",
                            "nodeType": "VariableDeclaration",
                            "scope": 4785,
                            "src": "11615:47:29",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IAaveIncentivesController_$3785",
                              "typeString": "contract IAaveIncentivesController"
                            },
                            "typeName": {
                              "id": 4732,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 4731,
                                "name": "IAaveIncentivesController",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 3785,
                                "src": "11615:25:29"
                              },
                              "referencedDeclaration": 3785,
                              "src": "11615:25:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IAaveIncentivesController_$3785",
                                "typeString": "contract IAaveIncentivesController"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 4735,
                        "initialValue": {
                          "id": 4734,
                          "name": "incentivesController",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 4129,
                          "src": "11665:20:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IAaveIncentivesController_$3785",
                            "typeString": "contract IAaveIncentivesController"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "11615:70:29"
                      },
                      {
                        "assignments": [
                          4740
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 4740,
                            "mutability": "mutable",
                            "name": "_assets",
                            "nameLocation": "11709:7:29",
                            "nodeType": "VariableDeclaration",
                            "scope": 4785,
                            "src": "11692:24:29",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_address_$dyn_memory_ptr",
                              "typeString": "address[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 4738,
                                "name": "address",
                                "nodeType": "ElementaryTypeName",
                                "src": "11692:7:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "id": 4739,
                              "nodeType": "ArrayTypeName",
                              "src": "11692:9:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_address_$dyn_storage_ptr",
                                "typeString": "address[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 4746,
                        "initialValue": {
                          "arguments": [
                            {
                              "hexValue": "31",
                              "id": 4744,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "11733:1:29",
                              "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": 4743,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "11719:13:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_address_$dyn_memory_ptr_$",
                              "typeString": "function (uint256) pure returns (address[] memory)"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 4741,
                                "name": "address",
                                "nodeType": "ElementaryTypeName",
                                "src": "11723:7:29",
                                "stateMutability": "nonpayable",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "id": 4742,
                              "nodeType": "ArrayTypeName",
                              "src": "11723:9:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_address_$dyn_storage_ptr",
                                "typeString": "address[]"
                              }
                            }
                          },
                          "id": 4745,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "11719:16:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_address_$dyn_memory_ptr",
                            "typeString": "address[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "11692:43:29"
                      },
                      {
                        "expression": {
                          "id": 4754,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "id": 4747,
                              "name": "_assets",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4740,
                              "src": "11741:7:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_address_$dyn_memory_ptr",
                                "typeString": "address[] memory"
                              }
                            },
                            "id": 4749,
                            "indexExpression": {
                              "hexValue": "30",
                              "id": 4748,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "11749:1:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_0_by_1",
                                "typeString": "int_const 0"
                              },
                              "value": "0"
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "11741:10:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "id": 4752,
                                "name": "aToken",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 4125,
                                "src": "11762:6:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_contract$_ATokenInterface_$3549",
                                  "typeString": "contract ATokenInterface"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_contract$_ATokenInterface_$3549",
                                  "typeString": "contract ATokenInterface"
                                }
                              ],
                              "id": 4751,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "nodeType": "ElementaryTypeNameExpression",
                              "src": "11754:7:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_address_$",
                                "typeString": "type(address)"
                              },
                              "typeName": {
                                "id": 4750,
                                "name": "address",
                                "nodeType": "ElementaryTypeName",
                                "src": "11754:7:29",
                                "typeDescriptions": {}
                              }
                            },
                            "id": 4753,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "typeConversion",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "11754:15:29",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "11741:28:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "id": 4755,
                        "nodeType": "ExpressionStatement",
                        "src": "11741:28:29"
                      },
                      {
                        "assignments": [
                          4757
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 4757,
                            "mutability": "mutable",
                            "name": "_amount",
                            "nameLocation": "11784:7:29",
                            "nodeType": "VariableDeclaration",
                            "scope": 4785,
                            "src": "11776:15:29",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 4756,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "11776:7:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 4766,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 4760,
                              "name": "_assets",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4740,
                              "src": "11834:7:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_address_$dyn_memory_ptr",
                                "typeString": "address[] memory"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "id": 4763,
                                  "name": "this",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -28,
                                  "src": "11851:4:29",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_ATokenYieldSource_$4807",
                                    "typeString": "contract ATokenYieldSource"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_ATokenYieldSource_$4807",
                                    "typeString": "contract ATokenYieldSource"
                                  }
                                ],
                                "id": 4762,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "11843:7:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 4761,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "11843:7:29",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 4764,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "11843:13:29",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_address_$dyn_memory_ptr",
                                "typeString": "address[] memory"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "expression": {
                              "id": 4758,
                              "name": "_incentivesController",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4733,
                              "src": "11794:21:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IAaveIncentivesController_$3785",
                                "typeString": "contract IAaveIncentivesController"
                              }
                            },
                            "id": 4759,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getRewardsBalance",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 3720,
                            "src": "11794:39:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$_t_array$_t_address_$dyn_memory_ptr_$_t_address_$returns$_t_uint256_$",
                              "typeString": "function (address[] memory,address) view external returns (uint256)"
                            }
                          },
                          "id": 4765,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "11794:63:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "11776:81:29"
                      },
                      {
                        "assignments": [
                          4768
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 4768,
                            "mutability": "mutable",
                            "name": "_amountClaimed",
                            "nameLocation": "11871:14:29",
                            "nodeType": "VariableDeclaration",
                            "scope": 4785,
                            "src": "11863:22:29",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 4767,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "11863:7:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 4775,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 4771,
                              "name": "_assets",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4740,
                              "src": "11923:7:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_address_$dyn_memory_ptr",
                                "typeString": "address[] memory"
                              }
                            },
                            {
                              "id": 4772,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4757,
                              "src": "11932:7:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 4773,
                              "name": "to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4714,
                              "src": "11941:2:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_address_$dyn_memory_ptr",
                                "typeString": "address[] memory"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "expression": {
                              "id": 4769,
                              "name": "_incentivesController",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4733,
                              "src": "11888:21:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IAaveIncentivesController_$3785",
                                "typeString": "contract IAaveIncentivesController"
                              }
                            },
                            "id": 4770,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "claimRewards",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 3733,
                            "src": "11888:34:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_array$_t_address_$dyn_memory_ptr_$_t_uint256_$_t_address_$returns$_t_uint256_$",
                              "typeString": "function (address[] memory,uint256,address) external returns (uint256)"
                            }
                          },
                          "id": 4774,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "11888:56:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "11863:81:29"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 4777,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "11964:3:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 4778,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "11964:10:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 4779,
                              "name": "to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4714,
                              "src": "11976:2:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 4780,
                              "name": "_amountClaimed",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4768,
                              "src": "11980:14:29",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 4776,
                            "name": "Claimed",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4091,
                            "src": "11956:7:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 4781,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "11956:39:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4782,
                        "nodeType": "EmitStatement",
                        "src": "11951:44:29"
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 4783,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "12008:4:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 4720,
                        "id": 4784,
                        "nodeType": "Return",
                        "src": "12001:11:29"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4712,
                    "nodeType": "StructuredDocumentation",
                    "src": "11249:200:29",
                    "text": "@notice Claims the accrued rewards for the aToken, accumulating any pending rewards.\n @param to Address where the claimed rewards will be sent.\n @return True if operation was successful."
                  },
                  "functionSelector": "ef5cfb8c",
                  "id": 4786,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 4717,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 4716,
                        "name": "onlyManagerOrOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5199,
                        "src": "11495:18:29"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "11495:18:29"
                    }
                  ],
                  "name": "claimRewards",
                  "nameLocation": "11461:12:29",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4715,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4714,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "11482:2:29",
                        "nodeType": "VariableDeclaration",
                        "scope": 4786,
                        "src": "11474:10:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 4713,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "11474:7:29",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "11473:12:29"
                  },
                  "returnParameters": {
                    "id": 4720,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4719,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 4786,
                        "src": "11523:4:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 4718,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "11523:4:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "11522:6:29"
                  },
                  "scope": 4807,
                  "src": "11452:565:29",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 4805,
                    "nodeType": "Block",
                    "src": "12182:195:29",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "expression": {
                                  "arguments": [
                                    {
                                      "baseExpression": {
                                        "arguments": [],
                                        "expression": {
                                          "argumentTypes": [],
                                          "expression": {
                                            "id": 4795,
                                            "name": "lendingPoolAddressesProviderRegistry",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 4133,
                                            "src": "12254:36:29",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_contract$_ILendingPoolAddressesProviderRegistry_$4000",
                                              "typeString": "contract ILendingPoolAddressesProviderRegistry"
                                            }
                                          },
                                          "id": 4796,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "memberName": "getAddressesProvidersList",
                                          "nodeType": "MemberAccess",
                                          "referencedDeclaration": 3980,
                                          "src": "12254:62:29",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_function_external_view$__$returns$_t_array$_t_address_$dyn_memory_ptr_$",
                                            "typeString": "function () view external returns (address[] memory)"
                                          }
                                        },
                                        "id": 4797,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "kind": "functionCall",
                                        "lValueRequested": false,
                                        "names": [],
                                        "nodeType": "FunctionCall",
                                        "src": "12254:64:29",
                                        "tryCall": false,
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_array$_t_address_$dyn_memory_ptr",
                                          "typeString": "address[] memory"
                                        }
                                      },
                                      "id": 4799,
                                      "indexExpression": {
                                        "id": 4798,
                                        "name": "ADDRESSES_PROVIDER_ID",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 4146,
                                        "src": "12319:21:29",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "nodeType": "IndexAccess",
                                      "src": "12254:87:29",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_address",
                                        "typeString": "address"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_address",
                                        "typeString": "address"
                                      }
                                    ],
                                    "id": 4794,
                                    "name": "ILendingPoolAddressesProvider",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 3963,
                                    "src": "12215:29:29",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_contract$_ILendingPoolAddressesProvider_$3963_$",
                                      "typeString": "type(contract ILendingPoolAddressesProvider)"
                                    }
                                  },
                                  "id": 4800,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "typeConversion",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "12215:134:29",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_ILendingPoolAddressesProvider_$3963",
                                    "typeString": "contract ILendingPoolAddressesProvider"
                                  }
                                },
                                "id": 4801,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "getLendingPool",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 3897,
                                "src": "12215:149:29",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_external_view$__$returns$_t_address_$",
                                  "typeString": "function () view external returns (address)"
                                }
                              },
                              "id": 4802,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "12215:151:29",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 4793,
                            "name": "ILendingPool",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 3812,
                            "src": "12195:12:29",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_contract$_ILendingPool_$3812_$",
                              "typeString": "type(contract ILendingPool)"
                            }
                          },
                          "id": 4803,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "12195:177:29",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ILendingPool_$3812",
                            "typeString": "contract ILendingPool"
                          }
                        },
                        "functionReturnParameters": 4792,
                        "id": 4804,
                        "nodeType": "Return",
                        "src": "12188:184:29"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4787,
                    "nodeType": "StructuredDocumentation",
                    "src": "12021:97:29",
                    "text": "@notice Retrieves Aave LendingPool address\n @return A reference to LendingPool interface"
                  },
                  "id": 4806,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_lendingPool",
                  "nameLocation": "12130:12:29",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4788,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "12142:2:29"
                  },
                  "returnParameters": {
                    "id": 4792,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4791,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 4806,
                        "src": "12168:12:29",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ILendingPool_$3812",
                          "typeString": "contract ILendingPool"
                        },
                        "typeName": {
                          "id": 4790,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 4789,
                            "name": "ILendingPool",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 3812,
                            "src": "12168:12:29"
                          },
                          "referencedDeclaration": 3812,
                          "src": "12168:12:29",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ILendingPool_$3812",
                            "typeString": "contract ILendingPool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "12167:14:29"
                  },
                  "scope": 4807,
                  "src": "12121:256:29",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 4808,
              "src": "1211:11168:29",
              "usedErrors": []
            }
          ],
          "src": "37:12343:29"
        },
        "id": 29
      },
      "@pooltogether/fixed-point/contracts/FixedPoint.sol": {
        "ast": {
          "absolutePath": "@pooltogether/fixed-point/contracts/FixedPoint.sol",
          "exportedSymbols": {
            "FixedPoint": [
              4899
            ],
            "OpenZeppelinSafeMath_V3_3_0": [
              5095
            ]
          },
          "id": 4900,
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 4809,
              "literals": [
                "solidity",
                ">=",
                "0.4",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "650:24:30"
            },
            {
              "absolutePath": "@pooltogether/fixed-point/contracts/external/openzeppelin/OpenZeppelinSafeMath_V3_3_0.sol",
              "file": "./external/openzeppelin/OpenZeppelinSafeMath_V3_3_0.sol",
              "id": 4810,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 4900,
              "sourceUnit": 5096,
              "src": "676:65:30",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "library",
              "documentation": {
                "id": 4811,
                "nodeType": "StructuredDocumentation",
                "src": "743:207:30",
                "text": " @author Brendan Asselstine\n @notice Provides basic fixed point math calculations.\n This library calculates integer fractions by scaling values by 1e18 then performing standard integer math."
              },
              "fullyImplemented": true,
              "id": 4899,
              "linearizedBaseContracts": [
                4899
              ],
              "name": "FixedPoint",
              "nameLocation": "959:10:30",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "id": 4814,
                  "libraryName": {
                    "id": 4812,
                    "name": "OpenZeppelinSafeMath_V3_3_0",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 5095,
                    "src": "982:27:30"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "976:46:30",
                  "typeName": {
                    "id": 4813,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "1014:7:30",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  }
                },
                {
                  "constant": true,
                  "id": 4817,
                  "mutability": "constant",
                  "name": "SCALE",
                  "nameLocation": "1134:5:30",
                  "nodeType": "VariableDeclaration",
                  "scope": 4899,
                  "src": "1108:38:30",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 4815,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "1108:7:30",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": {
                    "hexValue": "31653138",
                    "id": 4816,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "number",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "1142:4:30",
                    "typeDescriptions": {
                      "typeIdentifier": "t_rational_1000000000000000000_by_1",
                      "typeString": "int_const 1000000000000000000"
                    },
                    "value": "1e18"
                  },
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 4843,
                    "nodeType": "Block",
                    "src": "1576:127:30",
                    "statements": [
                      {
                        "assignments": [
                          4828
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 4828,
                            "mutability": "mutable",
                            "name": "mantissa",
                            "nameLocation": "1594:8:30",
                            "nodeType": "VariableDeclaration",
                            "scope": 4843,
                            "src": "1586:16:30",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 4827,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "1586:7:30",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 4833,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 4831,
                              "name": "SCALE",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4817,
                              "src": "1619:5:30",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "id": 4829,
                              "name": "numerator",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4820,
                              "src": "1605:9:30",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "id": 4830,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "mul",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 5008,
                            "src": "1605:13:30",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$bound_to$_t_uint256_$",
                              "typeString": "function (uint256,uint256) pure returns (uint256)"
                            }
                          },
                          "id": 4832,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1605:20:30",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1586:39:30"
                      },
                      {
                        "expression": {
                          "id": 4839,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 4834,
                            "name": "mantissa",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4828,
                            "src": "1635:8:30",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "id": 4837,
                                "name": "denominator",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 4822,
                                "src": "1659:11:30",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              ],
                              "expression": {
                                "id": 4835,
                                "name": "mantissa",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 4828,
                                "src": "1646:8:30",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 4836,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "div",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 5025,
                              "src": "1646:12:30",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$bound_to$_t_uint256_$",
                                "typeString": "function (uint256,uint256) pure returns (uint256)"
                              }
                            },
                            "id": 4838,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "1646:25:30",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "1635:36:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 4840,
                        "nodeType": "ExpressionStatement",
                        "src": "1635:36:30"
                      },
                      {
                        "expression": {
                          "id": 4841,
                          "name": "mantissa",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 4828,
                          "src": "1688:8:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 4826,
                        "id": 4842,
                        "nodeType": "Return",
                        "src": "1681:15:30"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4818,
                    "nodeType": "StructuredDocumentation",
                    "src": "1153:319:30",
                    "text": " Calculates a Fixed18 mantissa given the numerator and denominator\n The mantissa = (numerator * 1e18) / denominator\n @param numerator The mantissa numerator\n @param denominator The mantissa denominator\n @return The mantissa of the fraction"
                  },
                  "id": 4844,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "calculateMantissa",
                  "nameLocation": "1486:17:30",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4823,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4820,
                        "mutability": "mutable",
                        "name": "numerator",
                        "nameLocation": "1512:9:30",
                        "nodeType": "VariableDeclaration",
                        "scope": 4844,
                        "src": "1504:17:30",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4819,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1504:7:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4822,
                        "mutability": "mutable",
                        "name": "denominator",
                        "nameLocation": "1531:11:30",
                        "nodeType": "VariableDeclaration",
                        "scope": 4844,
                        "src": "1523:19:30",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4821,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1523:7:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1503:40:30"
                  },
                  "returnParameters": {
                    "id": 4826,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4825,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 4844,
                        "src": "1567:7:30",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4824,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1567:7:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1566:9:30"
                  },
                  "scope": 4899,
                  "src": "1477:226:30",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 4870,
                    "nodeType": "Block",
                    "src": "2053:108:30",
                    "statements": [
                      {
                        "assignments": [
                          4855
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 4855,
                            "mutability": "mutable",
                            "name": "result",
                            "nameLocation": "2071:6:30",
                            "nodeType": "VariableDeclaration",
                            "scope": 4870,
                            "src": "2063:14:30",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 4854,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "2063:7:30",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 4860,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 4858,
                              "name": "b",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4847,
                              "src": "2093:1:30",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "id": 4856,
                              "name": "mantissa",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4849,
                              "src": "2080:8:30",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "id": 4857,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "mul",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 5008,
                            "src": "2080:12:30",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$bound_to$_t_uint256_$",
                              "typeString": "function (uint256,uint256) pure returns (uint256)"
                            }
                          },
                          "id": 4859,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2080:15:30",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2063:32:30"
                      },
                      {
                        "expression": {
                          "id": 4866,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 4861,
                            "name": "result",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4855,
                            "src": "2105:6:30",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "id": 4864,
                                "name": "SCALE",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 4817,
                                "src": "2125:5:30",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              ],
                              "expression": {
                                "id": 4862,
                                "name": "result",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 4855,
                                "src": "2114:6:30",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 4863,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "div",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 5025,
                              "src": "2114:10:30",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$bound_to$_t_uint256_$",
                                "typeString": "function (uint256,uint256) pure returns (uint256)"
                              }
                            },
                            "id": 4865,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "2114:17:30",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "2105:26:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 4867,
                        "nodeType": "ExpressionStatement",
                        "src": "2105:26:30"
                      },
                      {
                        "expression": {
                          "id": 4868,
                          "name": "result",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 4855,
                          "src": "2148:6:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 4853,
                        "id": 4869,
                        "nodeType": "Return",
                        "src": "2141:13:30"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4845,
                    "nodeType": "StructuredDocumentation",
                    "src": "1709:246:30",
                    "text": " Multiplies a Fixed18 number by an integer.\n @param b The whole integer to multiply\n @param mantissa The Fixed18 number\n @return An integer that is the result of multiplying the params."
                  },
                  "id": 4871,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "multiplyUintByMantissa",
                  "nameLocation": "1969:22:30",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4850,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4847,
                        "mutability": "mutable",
                        "name": "b",
                        "nameLocation": "2000:1:30",
                        "nodeType": "VariableDeclaration",
                        "scope": 4871,
                        "src": "1992:9:30",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4846,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1992:7:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4849,
                        "mutability": "mutable",
                        "name": "mantissa",
                        "nameLocation": "2011:8:30",
                        "nodeType": "VariableDeclaration",
                        "scope": 4871,
                        "src": "2003:16:30",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4848,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2003:7:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1991:29:30"
                  },
                  "returnParameters": {
                    "id": 4853,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4852,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 4871,
                        "src": "2044:7:30",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4851,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2044:7:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2043:9:30"
                  },
                  "scope": 4899,
                  "src": "1960:201:30",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 4897,
                    "nodeType": "Block",
                    "src": "2552:115:30",
                    "statements": [
                      {
                        "assignments": [
                          4882
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 4882,
                            "mutability": "mutable",
                            "name": "result",
                            "nameLocation": "2570:6:30",
                            "nodeType": "VariableDeclaration",
                            "scope": 4897,
                            "src": "2562:14:30",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 4881,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "2562:7:30",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 4887,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 4885,
                              "name": "dividend",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4874,
                              "src": "2589:8:30",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "id": 4883,
                              "name": "SCALE",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4817,
                              "src": "2579:5:30",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "id": 4884,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "mul",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 5008,
                            "src": "2579:9:30",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$bound_to$_t_uint256_$",
                              "typeString": "function (uint256,uint256) pure returns (uint256)"
                            }
                          },
                          "id": 4886,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2579:19:30",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2562:36:30"
                      },
                      {
                        "expression": {
                          "id": 4893,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 4888,
                            "name": "result",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4882,
                            "src": "2608:6:30",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "id": 4891,
                                "name": "mantissa",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 4876,
                                "src": "2628:8:30",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              ],
                              "expression": {
                                "id": 4889,
                                "name": "result",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 4882,
                                "src": "2617:6:30",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 4890,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "div",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 5025,
                              "src": "2617:10:30",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$bound_to$_t_uint256_$",
                                "typeString": "function (uint256,uint256) pure returns (uint256)"
                              }
                            },
                            "id": 4892,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "2617:20:30",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "2608:29:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 4894,
                        "nodeType": "ExpressionStatement",
                        "src": "2608:29:30"
                      },
                      {
                        "expression": {
                          "id": 4895,
                          "name": "result",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 4882,
                          "src": "2654:6:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 4880,
                        "id": 4896,
                        "nodeType": "Return",
                        "src": "2647:13:30"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4872,
                    "nodeType": "StructuredDocumentation",
                    "src": "2167:282:30",
                    "text": " Divides an integer by a fixed point 18 mantissa\n @param dividend The integer to divide\n @param mantissa The fixed point 18 number to serve as the divisor\n @return An integer that is the result of dividing an integer by a fixed point 18 mantissa"
                  },
                  "id": 4898,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "divideUintByMantissa",
                  "nameLocation": "2463:20:30",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4877,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4874,
                        "mutability": "mutable",
                        "name": "dividend",
                        "nameLocation": "2492:8:30",
                        "nodeType": "VariableDeclaration",
                        "scope": 4898,
                        "src": "2484:16:30",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4873,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2484:7:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4876,
                        "mutability": "mutable",
                        "name": "mantissa",
                        "nameLocation": "2510:8:30",
                        "nodeType": "VariableDeclaration",
                        "scope": 4898,
                        "src": "2502:16:30",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4875,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2502:7:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2483:36:30"
                  },
                  "returnParameters": {
                    "id": 4880,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4879,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 4898,
                        "src": "2543:7:30",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4878,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2543:7:30",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2542:9:30"
                  },
                  "scope": 4899,
                  "src": "2454:213:30",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 4900,
              "src": "951:1718:30",
              "usedErrors": []
            }
          ],
          "src": "650:2020:30"
        },
        "id": 30
      },
      "@pooltogether/fixed-point/contracts/external/openzeppelin/OpenZeppelinSafeMath_V3_3_0.sol": {
        "ast": {
          "absolutePath": "@pooltogether/fixed-point/contracts/external/openzeppelin/OpenZeppelinSafeMath_V3_3_0.sol",
          "exportedSymbols": {
            "OpenZeppelinSafeMath_V3_3_0": [
              5095
            ]
          },
          "id": 5096,
          "license": "MIT",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 4901,
              "literals": [
                "solidity",
                ">=",
                "0.4",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "92:24:31"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "library",
              "documentation": {
                "id": 4902,
                "nodeType": "StructuredDocumentation",
                "src": "118:563:31",
                "text": " @dev Wrappers over Solidity's arithmetic operations with added overflow\n checks.\n Arithmetic operations in Solidity wrap on overflow. This can easily result\n in bugs, because programmers usually assume that an overflow raises an\n error, which is the standard behavior in high level programming languages.\n `SafeMath` restores this intuition by reverting the transaction when an\n 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."
              },
              "fullyImplemented": true,
              "id": 5095,
              "linearizedBaseContracts": [
                5095
              ],
              "name": "OpenZeppelinSafeMath_V3_3_0",
              "nameLocation": "690:27:31",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "body": {
                    "id": 4927,
                    "nodeType": "Block",
                    "src": "1020:109:31",
                    "statements": [
                      {
                        "assignments": [
                          4913
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 4913,
                            "mutability": "mutable",
                            "name": "c",
                            "nameLocation": "1038:1:31",
                            "nodeType": "VariableDeclaration",
                            "scope": 4927,
                            "src": "1030:9:31",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 4912,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "1030:7:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 4917,
                        "initialValue": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 4916,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 4914,
                            "name": "a",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4905,
                            "src": "1042:1:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "+",
                          "rightExpression": {
                            "id": 4915,
                            "name": "b",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4907,
                            "src": "1046:1:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "1042:5:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1030:17:31"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 4921,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 4919,
                                "name": "c",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 4913,
                                "src": "1065:1:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">=",
                              "rightExpression": {
                                "id": 4920,
                                "name": "a",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 4905,
                                "src": "1070:1:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "1065:6:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "536166654d6174683a206164646974696f6e206f766572666c6f77",
                              "id": 4922,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1073:29:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_30cc447bcc13b3e22b45cef0dd9b0b514842d836dd9b6eb384e20dedfb47723a",
                                "typeString": "literal_string \"SafeMath: addition overflow\""
                              },
                              "value": "SafeMath: addition overflow"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_30cc447bcc13b3e22b45cef0dd9b0b514842d836dd9b6eb384e20dedfb47723a",
                                "typeString": "literal_string \"SafeMath: addition overflow\""
                              }
                            ],
                            "id": 4918,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1057:7:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 4923,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1057:46:31",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4924,
                        "nodeType": "ExpressionStatement",
                        "src": "1057:46:31"
                      },
                      {
                        "expression": {
                          "id": 4925,
                          "name": "c",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 4913,
                          "src": "1121:1:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 4911,
                        "id": 4926,
                        "nodeType": "Return",
                        "src": "1114:8:31"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4903,
                    "nodeType": "StructuredDocumentation",
                    "src": "724:224:31",
                    "text": " @dev Returns the addition of two unsigned integers, reverting on\n overflow.\n Counterpart to Solidity's `+` operator.\n Requirements:\n - Addition cannot overflow."
                  },
                  "id": 4928,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "add",
                  "nameLocation": "962:3:31",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4908,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4905,
                        "mutability": "mutable",
                        "name": "a",
                        "nameLocation": "974:1:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 4928,
                        "src": "966:9:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4904,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "966:7:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4907,
                        "mutability": "mutable",
                        "name": "b",
                        "nameLocation": "985:1:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 4928,
                        "src": "977:9:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4906,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "977:7:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "965:22:31"
                  },
                  "returnParameters": {
                    "id": 4911,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4910,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 4928,
                        "src": "1011:7:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4909,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1011:7:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1010:9:31"
                  },
                  "scope": 5095,
                  "src": "953:176:31",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 4944,
                    "nodeType": "Block",
                    "src": "1467:67:31",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 4939,
                              "name": "a",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4931,
                              "src": "1488:1:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 4940,
                              "name": "b",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4933,
                              "src": "1491:1:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "hexValue": "536166654d6174683a207375627472616374696f6e206f766572666c6f77",
                              "id": 4941,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1494:32:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_50b058e9b5320e58880d88223c9801cd9eecdcf90323d5c2318bc1b6b916e862",
                                "typeString": "literal_string \"SafeMath: subtraction overflow\""
                              },
                              "value": "SafeMath: subtraction overflow"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_50b058e9b5320e58880d88223c9801cd9eecdcf90323d5c2318bc1b6b916e862",
                                "typeString": "literal_string \"SafeMath: subtraction overflow\""
                              }
                            ],
                            "id": 4938,
                            "name": "sub",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              4945,
                              4973
                            ],
                            "referencedDeclaration": 4973,
                            "src": "1484:3:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$_t_string_memory_ptr_$returns$_t_uint256_$",
                              "typeString": "function (uint256,uint256,string memory) pure returns (uint256)"
                            }
                          },
                          "id": 4942,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1484:43:31",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 4937,
                        "id": 4943,
                        "nodeType": "Return",
                        "src": "1477:50:31"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4929,
                    "nodeType": "StructuredDocumentation",
                    "src": "1135:260:31",
                    "text": " @dev Returns the subtraction of two unsigned integers, reverting on\n overflow (when the result is negative).\n Counterpart to Solidity's `-` operator.\n Requirements:\n - Subtraction cannot overflow."
                  },
                  "id": 4945,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "sub",
                  "nameLocation": "1409:3:31",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4934,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4931,
                        "mutability": "mutable",
                        "name": "a",
                        "nameLocation": "1421:1:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 4945,
                        "src": "1413:9:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4930,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1413:7:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4933,
                        "mutability": "mutable",
                        "name": "b",
                        "nameLocation": "1432:1:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 4945,
                        "src": "1424:9:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4932,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1424:7:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1412:22:31"
                  },
                  "returnParameters": {
                    "id": 4937,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4936,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 4945,
                        "src": "1458:7:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4935,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1458:7:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1457:9:31"
                  },
                  "scope": 5095,
                  "src": "1400:134:31",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 4972,
                    "nodeType": "Block",
                    "src": "1920:92:31",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 4960,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 4958,
                                "name": "b",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 4950,
                                "src": "1938:1:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "id": 4959,
                                "name": "a",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 4948,
                                "src": "1943:1:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "1938:6:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "id": 4961,
                              "name": "errorMessage",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 4952,
                              "src": "1946:12:31",
                              "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": 4957,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1930:7:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 4962,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1930:29:31",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 4963,
                        "nodeType": "ExpressionStatement",
                        "src": "1930:29:31"
                      },
                      {
                        "assignments": [
                          4965
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 4965,
                            "mutability": "mutable",
                            "name": "c",
                            "nameLocation": "1977:1:31",
                            "nodeType": "VariableDeclaration",
                            "scope": 4972,
                            "src": "1969:9:31",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 4964,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "1969:7:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 4969,
                        "initialValue": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 4968,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 4966,
                            "name": "a",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4948,
                            "src": "1981:1:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "-",
                          "rightExpression": {
                            "id": 4967,
                            "name": "b",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4950,
                            "src": "1985:1:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "1981:5:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1969:17:31"
                      },
                      {
                        "expression": {
                          "id": 4970,
                          "name": "c",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 4965,
                          "src": "2004:1:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 4956,
                        "id": 4971,
                        "nodeType": "Return",
                        "src": "1997:8:31"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4946,
                    "nodeType": "StructuredDocumentation",
                    "src": "1540:280:31",
                    "text": " @dev Returns the subtraction of two unsigned integers, reverting with custom message on\n overflow (when the result is negative).\n Counterpart to Solidity's `-` operator.\n Requirements:\n - Subtraction cannot overflow."
                  },
                  "id": 4973,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "sub",
                  "nameLocation": "1834:3:31",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4953,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4948,
                        "mutability": "mutable",
                        "name": "a",
                        "nameLocation": "1846:1:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 4973,
                        "src": "1838:9:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4947,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1838:7:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4950,
                        "mutability": "mutable",
                        "name": "b",
                        "nameLocation": "1857:1:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 4973,
                        "src": "1849:9:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4949,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1849:7:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4952,
                        "mutability": "mutable",
                        "name": "errorMessage",
                        "nameLocation": "1874:12:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 4973,
                        "src": "1860:26:31",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 4951,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "1860:6:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1837:50:31"
                  },
                  "returnParameters": {
                    "id": 4956,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4955,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 4973,
                        "src": "1911:7:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4954,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1911:7:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1910:9:31"
                  },
                  "scope": 5095,
                  "src": "1825:187:31",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 5007,
                    "nodeType": "Block",
                    "src": "2326:392:31",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 4985,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 4983,
                            "name": "a",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4976,
                            "src": "2558:1:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 4984,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "2563:1:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "2558:6:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 4989,
                        "nodeType": "IfStatement",
                        "src": "2554:45:31",
                        "trueBody": {
                          "id": 4988,
                          "nodeType": "Block",
                          "src": "2566:33:31",
                          "statements": [
                            {
                              "expression": {
                                "hexValue": "30",
                                "id": 4986,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "2587:1:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "functionReturnParameters": 4982,
                              "id": 4987,
                              "nodeType": "Return",
                              "src": "2580:8:31"
                            }
                          ]
                        }
                      },
                      {
                        "assignments": [
                          4991
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 4991,
                            "mutability": "mutable",
                            "name": "c",
                            "nameLocation": "2617:1:31",
                            "nodeType": "VariableDeclaration",
                            "scope": 5007,
                            "src": "2609:9:31",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 4990,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "2609:7:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 4995,
                        "initialValue": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 4994,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 4992,
                            "name": "a",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4976,
                            "src": "2621:1:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "*",
                          "rightExpression": {
                            "id": 4993,
                            "name": "b",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 4978,
                            "src": "2625:1:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "2621:5:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2609:17:31"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 5001,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 4999,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 4997,
                                  "name": "c",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 4991,
                                  "src": "2644:1:31",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "/",
                                "rightExpression": {
                                  "id": 4998,
                                  "name": "a",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 4976,
                                  "src": "2648:1:31",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "2644:5:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "==",
                              "rightExpression": {
                                "id": 5000,
                                "name": "b",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 4978,
                                "src": "2653:1:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "2644:10:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77",
                              "id": 5002,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2656:35:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_9113bb53c2876a3805b2c9242029423fc540a728243ce887ab24c82cf119fba3",
                                "typeString": "literal_string \"SafeMath: multiplication overflow\""
                              },
                              "value": "SafeMath: multiplication overflow"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_9113bb53c2876a3805b2c9242029423fc540a728243ce887ab24c82cf119fba3",
                                "typeString": "literal_string \"SafeMath: multiplication overflow\""
                              }
                            ],
                            "id": 4996,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2636:7:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 5003,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2636:56:31",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5004,
                        "nodeType": "ExpressionStatement",
                        "src": "2636:56:31"
                      },
                      {
                        "expression": {
                          "id": 5005,
                          "name": "c",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 4991,
                          "src": "2710:1:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 4982,
                        "id": 5006,
                        "nodeType": "Return",
                        "src": "2703:8:31"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 4974,
                    "nodeType": "StructuredDocumentation",
                    "src": "2018:236:31",
                    "text": " @dev Returns the multiplication of two unsigned integers, reverting on\n overflow.\n Counterpart to Solidity's `*` operator.\n Requirements:\n - Multiplication cannot overflow."
                  },
                  "id": 5008,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "mul",
                  "nameLocation": "2268:3:31",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 4979,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4976,
                        "mutability": "mutable",
                        "name": "a",
                        "nameLocation": "2280:1:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 5008,
                        "src": "2272:9:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4975,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2272:7:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 4978,
                        "mutability": "mutable",
                        "name": "b",
                        "nameLocation": "2291:1:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 5008,
                        "src": "2283:9:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4977,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2283:7:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2271:22:31"
                  },
                  "returnParameters": {
                    "id": 4982,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 4981,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 5008,
                        "src": "2317:7:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 4980,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2317:7:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2316:9:31"
                  },
                  "scope": 5095,
                  "src": "2259:459:31",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 5024,
                    "nodeType": "Block",
                    "src": "3247:63:31",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 5019,
                              "name": "a",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5011,
                              "src": "3268:1:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 5020,
                              "name": "b",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5013,
                              "src": "3271:1:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "hexValue": "536166654d6174683a206469766973696f6e206279207a65726f",
                              "id": 5021,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "3274:28:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_5b7cc70dda4dc2143e5adb63bd5d1f349504f461dbdfd9bc76fac1f8ca6d019f",
                                "typeString": "literal_string \"SafeMath: division by zero\""
                              },
                              "value": "SafeMath: division by zero"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_5b7cc70dda4dc2143e5adb63bd5d1f349504f461dbdfd9bc76fac1f8ca6d019f",
                                "typeString": "literal_string \"SafeMath: division by zero\""
                              }
                            ],
                            "id": 5018,
                            "name": "div",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              5025,
                              5053
                            ],
                            "referencedDeclaration": 5053,
                            "src": "3264:3:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$_t_string_memory_ptr_$returns$_t_uint256_$",
                              "typeString": "function (uint256,uint256,string memory) pure returns (uint256)"
                            }
                          },
                          "id": 5022,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3264:39:31",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 5017,
                        "id": 5023,
                        "nodeType": "Return",
                        "src": "3257:46:31"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5009,
                    "nodeType": "StructuredDocumentation",
                    "src": "2724:451:31",
                    "text": " @dev Returns the integer division of two unsigned integers. Reverts on\n division by zero. The result is rounded towards zero.\n Counterpart to Solidity's `/` operator. Note: this function uses a\n `revert` opcode (which leaves remaining gas untouched) while Solidity\n uses an invalid opcode to revert (consuming all remaining gas).\n Requirements:\n - The divisor cannot be zero."
                  },
                  "id": 5025,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "div",
                  "nameLocation": "3189:3:31",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 5014,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5011,
                        "mutability": "mutable",
                        "name": "a",
                        "nameLocation": "3201:1:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 5025,
                        "src": "3193:9:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 5010,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3193:7:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5013,
                        "mutability": "mutable",
                        "name": "b",
                        "nameLocation": "3212:1:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 5025,
                        "src": "3204:9:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 5012,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3204:7:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3192:22:31"
                  },
                  "returnParameters": {
                    "id": 5017,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5016,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 5025,
                        "src": "3238:7:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 5015,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3238:7:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3237:9:31"
                  },
                  "scope": 5095,
                  "src": "3180:130:31",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 5052,
                    "nodeType": "Block",
                    "src": "3887:177:31",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 5040,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 5038,
                                "name": "b",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 5030,
                                "src": "3905:1:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">",
                              "rightExpression": {
                                "hexValue": "30",
                                "id": 5039,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "3909:1:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "src": "3905:5:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "id": 5041,
                              "name": "errorMessage",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5032,
                              "src": "3912:12:31",
                              "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": 5037,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "3897:7:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 5042,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3897:28:31",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5043,
                        "nodeType": "ExpressionStatement",
                        "src": "3897:28:31"
                      },
                      {
                        "assignments": [
                          5045
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 5045,
                            "mutability": "mutable",
                            "name": "c",
                            "nameLocation": "3943:1:31",
                            "nodeType": "VariableDeclaration",
                            "scope": 5052,
                            "src": "3935:9:31",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 5044,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "3935:7:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 5049,
                        "initialValue": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 5048,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 5046,
                            "name": "a",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5028,
                            "src": "3947:1:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "/",
                          "rightExpression": {
                            "id": 5047,
                            "name": "b",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5030,
                            "src": "3951:1:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "3947:5:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3935:17:31"
                      },
                      {
                        "expression": {
                          "id": 5050,
                          "name": "c",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 5045,
                          "src": "4056:1:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 5036,
                        "id": 5051,
                        "nodeType": "Return",
                        "src": "4049:8:31"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5026,
                    "nodeType": "StructuredDocumentation",
                    "src": "3316:471:31",
                    "text": " @dev Returns the integer division of two unsigned integers. Reverts with custom message on\n division by zero. The result is rounded towards zero.\n Counterpart to Solidity's `/` operator. Note: this function uses a\n `revert` opcode (which leaves remaining gas untouched) while Solidity\n uses an invalid opcode to revert (consuming all remaining gas).\n Requirements:\n - The divisor cannot be zero."
                  },
                  "id": 5053,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "div",
                  "nameLocation": "3801:3:31",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 5033,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5028,
                        "mutability": "mutable",
                        "name": "a",
                        "nameLocation": "3813:1:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 5053,
                        "src": "3805:9:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 5027,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3805:7:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5030,
                        "mutability": "mutable",
                        "name": "b",
                        "nameLocation": "3824:1:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 5053,
                        "src": "3816:9:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 5029,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3816:7:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5032,
                        "mutability": "mutable",
                        "name": "errorMessage",
                        "nameLocation": "3841:12:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 5053,
                        "src": "3827:26:31",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 5031,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "3827:6:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3804:50:31"
                  },
                  "returnParameters": {
                    "id": 5036,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5035,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 5053,
                        "src": "3878:7:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 5034,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3878:7:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3877:9:31"
                  },
                  "scope": 5095,
                  "src": "3792:272:31",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 5069,
                    "nodeType": "Block",
                    "src": "4582:61:31",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 5064,
                              "name": "a",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5056,
                              "src": "4603:1:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 5065,
                              "name": "b",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5058,
                              "src": "4606:1:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "hexValue": "536166654d6174683a206d6f64756c6f206279207a65726f",
                              "id": 5066,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "4609:26:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_726e51f7b81fce0a68f5f214f445e275313b20b1633f08ce954ee39abf8d7832",
                                "typeString": "literal_string \"SafeMath: modulo by zero\""
                              },
                              "value": "SafeMath: modulo by zero"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_726e51f7b81fce0a68f5f214f445e275313b20b1633f08ce954ee39abf8d7832",
                                "typeString": "literal_string \"SafeMath: modulo by zero\""
                              }
                            ],
                            "id": 5063,
                            "name": "mod",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              5070,
                              5094
                            ],
                            "referencedDeclaration": 5094,
                            "src": "4599:3:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$_t_string_memory_ptr_$returns$_t_uint256_$",
                              "typeString": "function (uint256,uint256,string memory) pure returns (uint256)"
                            }
                          },
                          "id": 5067,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4599:37:31",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 5062,
                        "id": 5068,
                        "nodeType": "Return",
                        "src": "4592:44:31"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5054,
                    "nodeType": "StructuredDocumentation",
                    "src": "4070:440:31",
                    "text": " @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),\n Reverts when dividing by zero.\n Counterpart to Solidity's `%` operator. This function uses a `revert`\n opcode (which leaves remaining gas untouched) while Solidity uses an\n invalid opcode to revert (consuming all remaining gas).\n Requirements:\n - The divisor cannot be zero."
                  },
                  "id": 5070,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "mod",
                  "nameLocation": "4524:3:31",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 5059,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5056,
                        "mutability": "mutable",
                        "name": "a",
                        "nameLocation": "4536:1:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 5070,
                        "src": "4528:9:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 5055,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4528:7:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5058,
                        "mutability": "mutable",
                        "name": "b",
                        "nameLocation": "4547:1:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 5070,
                        "src": "4539:9:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 5057,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4539:7:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4527:22:31"
                  },
                  "returnParameters": {
                    "id": 5062,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5061,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 5070,
                        "src": "4573:7:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 5060,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4573:7:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4572:9:31"
                  },
                  "scope": 5095,
                  "src": "4515:128:31",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 5093,
                    "nodeType": "Block",
                    "src": "5209:68:31",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 5085,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 5083,
                                "name": "b",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 5075,
                                "src": "5227:1:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "hexValue": "30",
                                "id": 5084,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "5232:1:31",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "src": "5227:6:31",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "id": 5086,
                              "name": "errorMessage",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5077,
                              "src": "5235:12:31",
                              "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": 5082,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "5219:7:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 5087,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5219:29:31",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5088,
                        "nodeType": "ExpressionStatement",
                        "src": "5219:29:31"
                      },
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 5091,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 5089,
                            "name": "a",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5073,
                            "src": "5265:1:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "%",
                          "rightExpression": {
                            "id": 5090,
                            "name": "b",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5075,
                            "src": "5269:1:31",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "5265:5:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 5081,
                        "id": 5092,
                        "nodeType": "Return",
                        "src": "5258:12:31"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5071,
                    "nodeType": "StructuredDocumentation",
                    "src": "4649:460:31",
                    "text": " @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),\n Reverts with custom message when dividing by zero.\n Counterpart to Solidity's `%` operator. This function uses a `revert`\n opcode (which leaves remaining gas untouched) while Solidity uses an\n invalid opcode to revert (consuming all remaining gas).\n Requirements:\n - The divisor cannot be zero."
                  },
                  "id": 5094,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "mod",
                  "nameLocation": "5123:3:31",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 5078,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5073,
                        "mutability": "mutable",
                        "name": "a",
                        "nameLocation": "5135:1:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 5094,
                        "src": "5127:9:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 5072,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "5127:7:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5075,
                        "mutability": "mutable",
                        "name": "b",
                        "nameLocation": "5146:1:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 5094,
                        "src": "5138:9:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 5074,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "5138:7:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5077,
                        "mutability": "mutable",
                        "name": "errorMessage",
                        "nameLocation": "5163:12:31",
                        "nodeType": "VariableDeclaration",
                        "scope": 5094,
                        "src": "5149:26:31",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 5076,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "5149:6:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5126:50:31"
                  },
                  "returnParameters": {
                    "id": 5081,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5080,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 5094,
                        "src": "5200:7:31",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 5079,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "5200:7:31",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5199:9:31"
                  },
                  "scope": 5095,
                  "src": "5114:163:31",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 5096,
              "src": "682:4597:31",
              "usedErrors": []
            }
          ],
          "src": "92:5188:31"
        },
        "id": 31
      },
      "@pooltogether/owner-manager-contracts/contracts/Manageable.sol": {
        "ast": {
          "absolutePath": "@pooltogether/owner-manager-contracts/contracts/Manageable.sol",
          "exportedSymbols": {
            "Manageable": [
              5200
            ],
            "Ownable": [
              5355
            ]
          },
          "id": 5201,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 5097,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:23:32"
            },
            {
              "absolutePath": "@pooltogether/owner-manager-contracts/contracts/Ownable.sol",
              "file": "./Ownable.sol",
              "id": 5098,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 5201,
              "sourceUnit": 5356,
              "src": "62:23:32",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": true,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 5100,
                    "name": "Ownable",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 5355,
                    "src": "933:7:32"
                  },
                  "id": 5101,
                  "nodeType": "InheritanceSpecifier",
                  "src": "933:7:32"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 5099,
                "nodeType": "StructuredDocumentation",
                "src": "87:813:32",
                "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": 5200,
              "linearizedBaseContracts": [
                5200,
                5355
              ],
              "name": "Manageable",
              "nameLocation": "919:10:32",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "constant": false,
                  "id": 5103,
                  "mutability": "mutable",
                  "name": "_manager",
                  "nameLocation": "963:8:32",
                  "nodeType": "VariableDeclaration",
                  "scope": 5200,
                  "src": "947:24:32",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 5102,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "947:7:32",
                    "stateMutability": "nonpayable",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 5104,
                    "nodeType": "StructuredDocumentation",
                    "src": "978:173:32",
                    "text": " @dev Emitted when `_manager` has been changed.\n @param previousManager previous `_manager` address.\n @param newManager new `_manager` address."
                  },
                  "id": 5110,
                  "name": "ManagerTransferred",
                  "nameLocation": "1162:18:32",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 5109,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5106,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "previousManager",
                        "nameLocation": "1197:15:32",
                        "nodeType": "VariableDeclaration",
                        "scope": 5110,
                        "src": "1181:31:32",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 5105,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1181:7:32",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5108,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "newManager",
                        "nameLocation": "1230:10:32",
                        "nodeType": "VariableDeclaration",
                        "scope": 5110,
                        "src": "1214:26:32",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 5107,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1214:7:32",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1180:61:32"
                  },
                  "src": "1156:86:32"
                },
                {
                  "body": {
                    "id": 5118,
                    "nodeType": "Block",
                    "src": "1460:32:32",
                    "statements": [
                      {
                        "expression": {
                          "id": 5116,
                          "name": "_manager",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 5103,
                          "src": "1477:8:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "functionReturnParameters": 5115,
                        "id": 5117,
                        "nodeType": "Return",
                        "src": "1470:15:32"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5111,
                    "nodeType": "StructuredDocumentation",
                    "src": "1304:94:32",
                    "text": " @notice Gets current `_manager`.\n @return Current `_manager` address."
                  },
                  "functionSelector": "481c6a75",
                  "id": 5119,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "manager",
                  "nameLocation": "1412:7:32",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 5112,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1419:2:32"
                  },
                  "returnParameters": {
                    "id": 5115,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5114,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 5119,
                        "src": "1451:7:32",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 5113,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1451:7:32",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1450:9:32"
                  },
                  "scope": 5200,
                  "src": "1403:89:32",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 5133,
                    "nodeType": "Block",
                    "src": "1819:48:32",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 5130,
                              "name": "_newManager",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5122,
                              "src": "1848:11:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 5129,
                            "name": "_setManager",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5165,
                            "src": "1836:11:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$returns$_t_bool_$",
                              "typeString": "function (address) returns (bool)"
                            }
                          },
                          "id": 5131,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1836:24:32",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 5128,
                        "id": 5132,
                        "nodeType": "Return",
                        "src": "1829:31:32"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5120,
                    "nodeType": "StructuredDocumentation",
                    "src": "1498:241:32",
                    "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": 5134,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 5125,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 5124,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5341,
                        "src": "1794:9:32"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "1794:9:32"
                    }
                  ],
                  "name": "setManager",
                  "nameLocation": "1753:10:32",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 5123,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5122,
                        "mutability": "mutable",
                        "name": "_newManager",
                        "nameLocation": "1772:11:32",
                        "nodeType": "VariableDeclaration",
                        "scope": 5134,
                        "src": "1764:19:32",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 5121,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1764:7:32",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1763:21:32"
                  },
                  "returnParameters": {
                    "id": 5128,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5127,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 5134,
                        "src": "1813:4:32",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 5126,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "1813:4:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1812:6:32"
                  },
                  "scope": 5200,
                  "src": "1744:123:32",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 5164,
                    "nodeType": "Block",
                    "src": "2174:261:32",
                    "statements": [
                      {
                        "assignments": [
                          5143
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 5143,
                            "mutability": "mutable",
                            "name": "_previousManager",
                            "nameLocation": "2192:16:32",
                            "nodeType": "VariableDeclaration",
                            "scope": 5164,
                            "src": "2184:24:32",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            },
                            "typeName": {
                              "id": 5142,
                              "name": "address",
                              "nodeType": "ElementaryTypeName",
                              "src": "2184:7:32",
                              "stateMutability": "nonpayable",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 5145,
                        "initialValue": {
                          "id": 5144,
                          "name": "_manager",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 5103,
                          "src": "2211:8:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2184:35:32"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 5149,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 5147,
                                "name": "_newManager",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 5137,
                                "src": "2238:11:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "id": 5148,
                                "name": "_previousManager",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 5143,
                                "src": "2253:16:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "2238:31:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4d616e61676561626c652f6578697374696e672d6d616e616765722d61646472657373",
                              "id": 5150,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2271:37:32",
                              "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": 5146,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2230:7:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 5151,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2230:79:32",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5152,
                        "nodeType": "ExpressionStatement",
                        "src": "2230:79:32"
                      },
                      {
                        "expression": {
                          "id": 5155,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 5153,
                            "name": "_manager",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5103,
                            "src": "2320:8:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 5154,
                            "name": "_newManager",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5137,
                            "src": "2331:11:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "2320:22:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "id": 5156,
                        "nodeType": "ExpressionStatement",
                        "src": "2320:22:32"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 5158,
                              "name": "_previousManager",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5143,
                              "src": "2377:16:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 5159,
                              "name": "_newManager",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5137,
                              "src": "2395:11:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 5157,
                            "name": "ManagerTransferred",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5110,
                            "src": "2358:18:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$returns$__$",
                              "typeString": "function (address,address)"
                            }
                          },
                          "id": 5160,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2358:49:32",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5161,
                        "nodeType": "EmitStatement",
                        "src": "2353:54:32"
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 5162,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "2424:4:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 5141,
                        "id": 5163,
                        "nodeType": "Return",
                        "src": "2417:11:32"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5135,
                    "nodeType": "StructuredDocumentation",
                    "src": "1929:175:32",
                    "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": 5165,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_setManager",
                  "nameLocation": "2118:11:32",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 5138,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5137,
                        "mutability": "mutable",
                        "name": "_newManager",
                        "nameLocation": "2138:11:32",
                        "nodeType": "VariableDeclaration",
                        "scope": 5165,
                        "src": "2130:19:32",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 5136,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2130:7:32",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2129:21:32"
                  },
                  "returnParameters": {
                    "id": 5141,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5140,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 5165,
                        "src": "2168:4:32",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 5139,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "2168:4:32",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2167:6:32"
                  },
                  "scope": 5200,
                  "src": "2109:326:32",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "private"
                },
                {
                  "body": {
                    "id": 5178,
                    "nodeType": "Block",
                    "src": "2604:93:32",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 5173,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [],
                                "expression": {
                                  "argumentTypes": [],
                                  "id": 5169,
                                  "name": "manager",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 5119,
                                  "src": "2622:7:32",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
                                    "typeString": "function () view returns (address)"
                                  }
                                },
                                "id": 5170,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "2622:9:32",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "==",
                              "rightExpression": {
                                "expression": {
                                  "id": 5171,
                                  "name": "msg",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -15,
                                  "src": "2635:3:32",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_message",
                                    "typeString": "msg"
                                  }
                                },
                                "id": 5172,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "sender",
                                "nodeType": "MemberAccess",
                                "src": "2635:10:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "2622:23:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4d616e61676561626c652f63616c6c65722d6e6f742d6d616e61676572",
                              "id": 5174,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2647:31:32",
                              "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": 5168,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2614:7:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 5175,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2614:65:32",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5176,
                        "nodeType": "ExpressionStatement",
                        "src": "2614:65:32"
                      },
                      {
                        "id": 5177,
                        "nodeType": "PlaceholderStatement",
                        "src": "2689:1:32"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5166,
                    "nodeType": "StructuredDocumentation",
                    "src": "2497:79:32",
                    "text": " @dev Throws if called by any account other than the manager."
                  },
                  "id": 5179,
                  "name": "onlyManager",
                  "nameLocation": "2590:11:32",
                  "nodeType": "ModifierDefinition",
                  "parameters": {
                    "id": 5167,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2601:2:32"
                  },
                  "src": "2581:116:32",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 5198,
                    "nodeType": "Block",
                    "src": "2830:127:32",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              "id": 5193,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                },
                                "id": 5187,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "arguments": [],
                                  "expression": {
                                    "argumentTypes": [],
                                    "id": 5183,
                                    "name": "manager",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 5119,
                                    "src": "2848:7:32",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
                                      "typeString": "function () view returns (address)"
                                    }
                                  },
                                  "id": 5184,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "2848:9:32",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "==",
                                "rightExpression": {
                                  "expression": {
                                    "id": 5185,
                                    "name": "msg",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -15,
                                    "src": "2861:3:32",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_message",
                                      "typeString": "msg"
                                    }
                                  },
                                  "id": 5186,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "sender",
                                  "nodeType": "MemberAccess",
                                  "src": "2861:10:32",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "src": "2848:23:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "||",
                              "rightExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                },
                                "id": 5192,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "arguments": [],
                                  "expression": {
                                    "argumentTypes": [],
                                    "id": 5188,
                                    "name": "owner",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 5239,
                                    "src": "2875:5:32",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
                                      "typeString": "function () view returns (address)"
                                    }
                                  },
                                  "id": 5189,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "2875:7:32",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "==",
                                "rightExpression": {
                                  "expression": {
                                    "id": 5190,
                                    "name": "msg",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -15,
                                    "src": "2886:3:32",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_message",
                                      "typeString": "msg"
                                    }
                                  },
                                  "id": 5191,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "sender",
                                  "nodeType": "MemberAccess",
                                  "src": "2886:10:32",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "src": "2875:21:32",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "src": "2848:48:32",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4d616e61676561626c652f63616c6c65722d6e6f742d6d616e616765722d6f722d6f776e6572",
                              "id": 5194,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2898:40:32",
                              "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": 5182,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2840:7:32",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 5195,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2840:99:32",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5196,
                        "nodeType": "ExpressionStatement",
                        "src": "2840:99:32"
                      },
                      {
                        "id": 5197,
                        "nodeType": "PlaceholderStatement",
                        "src": "2949:1:32"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5180,
                    "nodeType": "StructuredDocumentation",
                    "src": "2703:92:32",
                    "text": " @dev Throws if called by any account other than the manager or the owner."
                  },
                  "id": 5199,
                  "name": "onlyManagerOrOwner",
                  "nameLocation": "2809:18:32",
                  "nodeType": "ModifierDefinition",
                  "parameters": {
                    "id": 5181,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2827:2:32"
                  },
                  "src": "2800:157:32",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 5201,
              "src": "901:2058:32",
              "usedErrors": []
            }
          ],
          "src": "37:2923:32"
        },
        "id": 32
      },
      "@pooltogether/owner-manager-contracts/contracts/Ownable.sol": {
        "ast": {
          "absolutePath": "@pooltogether/owner-manager-contracts/contracts/Ownable.sol",
          "exportedSymbols": {
            "Ownable": [
              5355
            ]
          },
          "id": 5356,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 5202,
              "literals": [
                "solidity",
                "^",
                "0.8",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:23:33"
            },
            {
              "abstract": true,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 5203,
                "nodeType": "StructuredDocumentation",
                "src": "62:791:33",
                "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": 5355,
              "linearizedBaseContracts": [
                5355
              ],
              "name": "Ownable",
              "nameLocation": "872:7:33",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "constant": false,
                  "id": 5205,
                  "mutability": "mutable",
                  "name": "_owner",
                  "nameLocation": "902:6:33",
                  "nodeType": "VariableDeclaration",
                  "scope": 5355,
                  "src": "886:22:33",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 5204,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "886:7:33",
                    "stateMutability": "nonpayable",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "id": 5207,
                  "mutability": "mutable",
                  "name": "_pendingOwner",
                  "nameLocation": "930:13:33",
                  "nodeType": "VariableDeclaration",
                  "scope": 5355,
                  "src": "914:29:33",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 5206,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "914:7:33",
                    "stateMutability": "nonpayable",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 5208,
                    "nodeType": "StructuredDocumentation",
                    "src": "950:126:33",
                    "text": " @dev Emitted when `_pendingOwner` has been changed.\n @param pendingOwner new `_pendingOwner` address."
                  },
                  "id": 5212,
                  "name": "OwnershipOffered",
                  "nameLocation": "1087:16:33",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 5211,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5210,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "pendingOwner",
                        "nameLocation": "1120:12:33",
                        "nodeType": "VariableDeclaration",
                        "scope": 5212,
                        "src": "1104:28:33",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 5209,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1104:7:33",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1103:30:33"
                  },
                  "src": "1081:53:33"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 5213,
                    "nodeType": "StructuredDocumentation",
                    "src": "1140:163:33",
                    "text": " @dev Emitted when `_owner` has been changed.\n @param previousOwner previous `_owner` address.\n @param newOwner new `_owner` address."
                  },
                  "id": 5219,
                  "name": "OwnershipTransferred",
                  "nameLocation": "1314:20:33",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 5218,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5215,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "previousOwner",
                        "nameLocation": "1351:13:33",
                        "nodeType": "VariableDeclaration",
                        "scope": 5219,
                        "src": "1335:29:33",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 5214,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1335:7:33",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5217,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "newOwner",
                        "nameLocation": "1382:8:33",
                        "nodeType": "VariableDeclaration",
                        "scope": 5219,
                        "src": "1366:24:33",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 5216,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1366:7:33",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1334:57:33"
                  },
                  "src": "1308:84:33"
                },
                {
                  "body": {
                    "id": 5229,
                    "nodeType": "Block",
                    "src": "1638:41:33",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 5226,
                              "name": "_initialOwner",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5222,
                              "src": "1658:13:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 5225,
                            "name": "_setOwner",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5327,
                            "src": "1648:9:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$returns$__$",
                              "typeString": "function (address)"
                            }
                          },
                          "id": 5227,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1648:24:33",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5228,
                        "nodeType": "ExpressionStatement",
                        "src": "1648:24:33"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5220,
                    "nodeType": "StructuredDocumentation",
                    "src": "1442:156:33",
                    "text": " @notice Initializes the contract setting `_initialOwner` as the initial owner.\n @param _initialOwner Initial owner of the contract."
                  },
                  "id": 5230,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 5223,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5222,
                        "mutability": "mutable",
                        "name": "_initialOwner",
                        "nameLocation": "1623:13:33",
                        "nodeType": "VariableDeclaration",
                        "scope": 5230,
                        "src": "1615:21:33",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 5221,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1615:7:33",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1614:23:33"
                  },
                  "returnParameters": {
                    "id": 5224,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1638:0:33"
                  },
                  "scope": 5355,
                  "src": "1603:76:33",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 5238,
                    "nodeType": "Block",
                    "src": "1869:30:33",
                    "statements": [
                      {
                        "expression": {
                          "id": 5236,
                          "name": "_owner",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 5205,
                          "src": "1886:6:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "functionReturnParameters": 5235,
                        "id": 5237,
                        "nodeType": "Return",
                        "src": "1879:13:33"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5231,
                    "nodeType": "StructuredDocumentation",
                    "src": "1741:68:33",
                    "text": " @notice Returns the address of the current owner."
                  },
                  "functionSelector": "8da5cb5b",
                  "id": 5239,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "owner",
                  "nameLocation": "1823:5:33",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 5232,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1828:2:33"
                  },
                  "returnParameters": {
                    "id": 5235,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5234,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 5239,
                        "src": "1860:7:33",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 5233,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1860:7:33",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1859:9:33"
                  },
                  "scope": 5355,
                  "src": "1814:85:33",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 5247,
                    "nodeType": "Block",
                    "src": "2078:37:33",
                    "statements": [
                      {
                        "expression": {
                          "id": 5245,
                          "name": "_pendingOwner",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 5207,
                          "src": "2095:13:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "functionReturnParameters": 5244,
                        "id": 5246,
                        "nodeType": "Return",
                        "src": "2088:20:33"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5240,
                    "nodeType": "StructuredDocumentation",
                    "src": "1905:104:33",
                    "text": " @notice Gets current `_pendingOwner`.\n @return Current `_pendingOwner` address."
                  },
                  "functionSelector": "e30c3978",
                  "id": 5248,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "pendingOwner",
                  "nameLocation": "2023:12:33",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 5241,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2035:2:33"
                  },
                  "returnParameters": {
                    "id": 5244,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5243,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 5248,
                        "src": "2069:7:33",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 5242,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2069:7:33",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2068:9:33"
                  },
                  "scope": 5355,
                  "src": "2014:101:33",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 5261,
                    "nodeType": "Block",
                    "src": "2564:38:33",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "hexValue": "30",
                                  "id": 5257,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "2592:1:33",
                                  "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": 5256,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "2584:7:33",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 5255,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "2584:7:33",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 5258,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "2584:10:33",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 5254,
                            "name": "_setOwner",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5327,
                            "src": "2574:9:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$returns$__$",
                              "typeString": "function (address)"
                            }
                          },
                          "id": 5259,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2574:21:33",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5260,
                        "nodeType": "ExpressionStatement",
                        "src": "2574:21:33"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5249,
                    "nodeType": "StructuredDocumentation",
                    "src": "2121:382:33",
                    "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": 5262,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 5252,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 5251,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5341,
                        "src": "2554:9:33"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "2554:9:33"
                    }
                  ],
                  "name": "renounceOwnership",
                  "nameLocation": "2517:17:33",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 5250,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2534:2:33"
                  },
                  "returnParameters": {
                    "id": 5253,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2564:0:33"
                  },
                  "scope": 5355,
                  "src": "2508:94:33",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 5288,
                    "nodeType": "Block",
                    "src": "2816:169:33",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 5276,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 5271,
                                "name": "_newOwner",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 5265,
                                "src": "2834:9:33",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 5274,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "2855:1:33",
                                    "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": 5273,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "2847:7:33",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 5272,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "2847:7:33",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 5275,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "2847:10:33",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "2834:23:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4f776e61626c652f70656e64696e674f776e65722d6e6f742d7a65726f2d61646472657373",
                              "id": 5277,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2859:39:33",
                              "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": 5270,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2826:7:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 5278,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2826:73:33",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5279,
                        "nodeType": "ExpressionStatement",
                        "src": "2826:73:33"
                      },
                      {
                        "expression": {
                          "id": 5282,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 5280,
                            "name": "_pendingOwner",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5207,
                            "src": "2910:13:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 5281,
                            "name": "_newOwner",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5265,
                            "src": "2926:9:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "2910:25:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "id": 5283,
                        "nodeType": "ExpressionStatement",
                        "src": "2910:25:33"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 5285,
                              "name": "_newOwner",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5265,
                              "src": "2968:9:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 5284,
                            "name": "OwnershipOffered",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5212,
                            "src": "2951:16:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$returns$__$",
                              "typeString": "function (address)"
                            }
                          },
                          "id": 5286,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2951:27:33",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5287,
                        "nodeType": "EmitStatement",
                        "src": "2946:32:33"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5263,
                    "nodeType": "StructuredDocumentation",
                    "src": "2608:138:33",
                    "text": " @notice Allows current owner to set the `_pendingOwner` address.\n @param _newOwner Address to transfer ownership to."
                  },
                  "functionSelector": "f2fde38b",
                  "id": 5289,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 5268,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 5267,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5341,
                        "src": "2806:9:33"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "2806:9:33"
                    }
                  ],
                  "name": "transferOwnership",
                  "nameLocation": "2760:17:33",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 5266,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5265,
                        "mutability": "mutable",
                        "name": "_newOwner",
                        "nameLocation": "2786:9:33",
                        "nodeType": "VariableDeclaration",
                        "scope": 5289,
                        "src": "2778:17:33",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 5264,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2778:7:33",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2777:19:33"
                  },
                  "returnParameters": {
                    "id": 5269,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2816:0:33"
                  },
                  "scope": 5355,
                  "src": "2751:234:33",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 5306,
                    "nodeType": "Block",
                    "src": "3199:77:33",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 5296,
                              "name": "_pendingOwner",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5207,
                              "src": "3219:13:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 5295,
                            "name": "_setOwner",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5327,
                            "src": "3209:9:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$returns$__$",
                              "typeString": "function (address)"
                            }
                          },
                          "id": 5297,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3209:24:33",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5298,
                        "nodeType": "ExpressionStatement",
                        "src": "3209:24:33"
                      },
                      {
                        "expression": {
                          "id": 5304,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 5299,
                            "name": "_pendingOwner",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5207,
                            "src": "3243:13:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "hexValue": "30",
                                "id": 5302,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "3267:1:33",
                                "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": 5301,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "nodeType": "ElementaryTypeNameExpression",
                              "src": "3259:7:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_address_$",
                                "typeString": "type(address)"
                              },
                              "typeName": {
                                "id": 5300,
                                "name": "address",
                                "nodeType": "ElementaryTypeName",
                                "src": "3259:7:33",
                                "typeDescriptions": {}
                              }
                            },
                            "id": 5303,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "typeConversion",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "3259:10:33",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "3243:26:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "id": 5305,
                        "nodeType": "ExpressionStatement",
                        "src": "3243:26:33"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5290,
                    "nodeType": "StructuredDocumentation",
                    "src": "2991:151:33",
                    "text": " @notice Allows the `_pendingOwner` address to finalize the transfer.\n @dev This function is only callable by the `_pendingOwner`."
                  },
                  "functionSelector": "4e71e0c8",
                  "id": 5307,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 5293,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 5292,
                        "name": "onlyPendingOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5354,
                        "src": "3182:16:33"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "3182:16:33"
                    }
                  ],
                  "name": "claimOwnership",
                  "nameLocation": "3156:14:33",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 5291,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3170:2:33"
                  },
                  "returnParameters": {
                    "id": 5294,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3199:0:33"
                  },
                  "scope": 5355,
                  "src": "3147:129:33",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 5326,
                    "nodeType": "Block",
                    "src": "3516:128:33",
                    "statements": [
                      {
                        "assignments": [
                          5314
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 5314,
                            "mutability": "mutable",
                            "name": "_oldOwner",
                            "nameLocation": "3534:9:33",
                            "nodeType": "VariableDeclaration",
                            "scope": 5326,
                            "src": "3526:17:33",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            },
                            "typeName": {
                              "id": 5313,
                              "name": "address",
                              "nodeType": "ElementaryTypeName",
                              "src": "3526:7:33",
                              "stateMutability": "nonpayable",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 5316,
                        "initialValue": {
                          "id": 5315,
                          "name": "_owner",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 5205,
                          "src": "3546:6:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3526:26:33"
                      },
                      {
                        "expression": {
                          "id": 5319,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 5317,
                            "name": "_owner",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5205,
                            "src": "3562:6:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 5318,
                            "name": "_newOwner",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5310,
                            "src": "3571:9:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "3562:18:33",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "id": 5320,
                        "nodeType": "ExpressionStatement",
                        "src": "3562:18:33"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 5322,
                              "name": "_oldOwner",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5314,
                              "src": "3616:9:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 5323,
                              "name": "_newOwner",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5310,
                              "src": "3627:9:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 5321,
                            "name": "OwnershipTransferred",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5219,
                            "src": "3595:20:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$returns$__$",
                              "typeString": "function (address,address)"
                            }
                          },
                          "id": 5324,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3595:42:33",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5325,
                        "nodeType": "EmitStatement",
                        "src": "3590:47:33"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5308,
                    "nodeType": "StructuredDocumentation",
                    "src": "3338:127:33",
                    "text": " @notice Internal function to set the `_owner` of the contract.\n @param _newOwner New `_owner` address."
                  },
                  "id": 5327,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_setOwner",
                  "nameLocation": "3479:9:33",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 5311,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5310,
                        "mutability": "mutable",
                        "name": "_newOwner",
                        "nameLocation": "3497:9:33",
                        "nodeType": "VariableDeclaration",
                        "scope": 5327,
                        "src": "3489:17:33",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 5309,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3489:7:33",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3488:19:33"
                  },
                  "returnParameters": {
                    "id": 5312,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3516:0:33"
                  },
                  "scope": 5355,
                  "src": "3470:174:33",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "private"
                },
                {
                  "body": {
                    "id": 5340,
                    "nodeType": "Block",
                    "src": "3809:86:33",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 5335,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [],
                                "expression": {
                                  "argumentTypes": [],
                                  "id": 5331,
                                  "name": "owner",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 5239,
                                  "src": "3827:5:33",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
                                    "typeString": "function () view returns (address)"
                                  }
                                },
                                "id": 5332,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "3827:7:33",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "==",
                              "rightExpression": {
                                "expression": {
                                  "id": 5333,
                                  "name": "msg",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -15,
                                  "src": "3838:3:33",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_message",
                                    "typeString": "msg"
                                  }
                                },
                                "id": 5334,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "sender",
                                "nodeType": "MemberAccess",
                                "src": "3838:10:33",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "3827:21:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d6f776e6572",
                              "id": 5336,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "3850:26:33",
                              "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": 5330,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "3819:7:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 5337,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3819:58:33",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5338,
                        "nodeType": "ExpressionStatement",
                        "src": "3819:58:33"
                      },
                      {
                        "id": 5339,
                        "nodeType": "PlaceholderStatement",
                        "src": "3887:1:33"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5328,
                    "nodeType": "StructuredDocumentation",
                    "src": "3706:77:33",
                    "text": " @dev Throws if called by any account other than the owner."
                  },
                  "id": 5341,
                  "name": "onlyOwner",
                  "nameLocation": "3797:9:33",
                  "nodeType": "ModifierDefinition",
                  "parameters": {
                    "id": 5329,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3806:2:33"
                  },
                  "src": "3788:107:33",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 5353,
                    "nodeType": "Block",
                    "src": "4018:99:33",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 5348,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 5345,
                                  "name": "msg",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -15,
                                  "src": "4036:3:33",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_message",
                                    "typeString": "msg"
                                  }
                                },
                                "id": 5346,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "sender",
                                "nodeType": "MemberAccess",
                                "src": "4036:10:33",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "==",
                              "rightExpression": {
                                "id": 5347,
                                "name": "_pendingOwner",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 5207,
                                "src": "4050:13:33",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "4036:27:33",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4f776e61626c652f63616c6c65722d6e6f742d70656e64696e674f776e6572",
                              "id": 5349,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "4065:33:33",
                              "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": 5344,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "4028:7:33",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 5350,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4028:71:33",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5351,
                        "nodeType": "ExpressionStatement",
                        "src": "4028:71:33"
                      },
                      {
                        "id": 5352,
                        "nodeType": "PlaceholderStatement",
                        "src": "4109:1:33"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5342,
                    "nodeType": "StructuredDocumentation",
                    "src": "3901:84:33",
                    "text": " @dev Throws if called by any account other than the `pendingOwner`."
                  },
                  "id": 5354,
                  "name": "onlyPendingOwner",
                  "nameLocation": "3999:16:33",
                  "nodeType": "ModifierDefinition",
                  "parameters": {
                    "id": 5343,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4015:2:33"
                  },
                  "src": "3990:127:33",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 5356,
              "src": "854:3265:33",
              "usedErrors": []
            }
          ],
          "src": "37:4083:33"
        },
        "id": 33
      },
      "@pooltogether/pooltogether-rng-contracts/contracts/RNGChainlinkV2.sol": {
        "ast": {
          "absolutePath": "@pooltogether/pooltogether-rng-contracts/contracts/RNGChainlinkV2.sol",
          "exportedSymbols": {
            "Manageable": [
              5200
            ],
            "Ownable": [
              5355
            ],
            "RNGChainlinkV2": [
              5740
            ],
            "RNGChainlinkV2Interface": [
              5779
            ],
            "RNGInterface": [
              5835
            ],
            "VRFConsumerBaseV2": [
              57
            ],
            "VRFCoordinatorV2Interface": [
              146
            ]
          },
          "id": 5741,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 5357,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:34"
            },
            {
              "absolutePath": "@chainlink/contracts/src/v0.8/interfaces/VRFCoordinatorV2Interface.sol",
              "file": "@chainlink/contracts/src/v0.8/interfaces/VRFCoordinatorV2Interface.sol",
              "id": 5358,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 5741,
              "sourceUnit": 147,
              "src": "61:80:34",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@chainlink/contracts/src/v0.8/VRFConsumerBaseV2.sol",
              "file": "@chainlink/contracts/src/v0.8/VRFConsumerBaseV2.sol",
              "id": 5359,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 5741,
              "sourceUnit": 58,
              "src": "142:61:34",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/owner-manager-contracts/contracts/Manageable.sol",
              "file": "@pooltogether/owner-manager-contracts/contracts/Manageable.sol",
              "id": 5360,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 5741,
              "sourceUnit": 5201,
              "src": "204:72:34",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/pooltogether-rng-contracts/contracts/RNGChainlinkV2Interface.sol",
              "file": "./RNGChainlinkV2Interface.sol",
              "id": 5361,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 5741,
              "sourceUnit": 5780,
              "src": "278:39:34",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 5362,
                    "name": "RNGChainlinkV2Interface",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 5779,
                    "src": "346:23:34"
                  },
                  "id": 5363,
                  "nodeType": "InheritanceSpecifier",
                  "src": "346:23:34"
                },
                {
                  "baseName": {
                    "id": 5364,
                    "name": "VRFConsumerBaseV2",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 57,
                    "src": "371:17:34"
                  },
                  "id": 5365,
                  "nodeType": "InheritanceSpecifier",
                  "src": "371:17:34"
                },
                {
                  "baseName": {
                    "id": 5366,
                    "name": "Manageable",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 5200,
                    "src": "390:10:34"
                  },
                  "id": 5367,
                  "nodeType": "InheritanceSpecifier",
                  "src": "390:10:34"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "fullyImplemented": true,
              "id": 5740,
              "linearizedBaseContracts": [
                5740,
                5200,
                5355,
                57,
                5779,
                5835
              ],
              "name": "RNGChainlinkV2",
              "nameLocation": "328:14:34",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "constant": false,
                  "documentation": {
                    "id": 5368,
                    "nodeType": "StructuredDocumentation",
                    "src": "457:60:34",
                    "text": "@dev Reference to the VRFCoordinatorV2 deployed contract"
                  },
                  "id": 5371,
                  "mutability": "mutable",
                  "name": "vrfCoordinator",
                  "nameLocation": "555:14:34",
                  "nodeType": "VariableDeclaration",
                  "scope": 5740,
                  "src": "520:49:34",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_VRFCoordinatorV2Interface_$146",
                    "typeString": "contract VRFCoordinatorV2Interface"
                  },
                  "typeName": {
                    "id": 5370,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 5369,
                      "name": "VRFCoordinatorV2Interface",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 146,
                      "src": "520:25:34"
                    },
                    "referencedDeclaration": 146,
                    "src": "520:25:34",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_VRFCoordinatorV2Interface_$146",
                      "typeString": "contract VRFCoordinatorV2Interface"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 5372,
                    "nodeType": "StructuredDocumentation",
                    "src": "574:71:34",
                    "text": "@dev A counter for the number of requests made used for request ids"
                  },
                  "id": 5374,
                  "mutability": "mutable",
                  "name": "requestCounter",
                  "nameLocation": "664:14:34",
                  "nodeType": "VariableDeclaration",
                  "scope": 5740,
                  "src": "648:30:34",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint32",
                    "typeString": "uint32"
                  },
                  "typeName": {
                    "id": 5373,
                    "name": "uint32",
                    "nodeType": "ElementaryTypeName",
                    "src": "648:6:34",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint32",
                      "typeString": "uint32"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 5375,
                    "nodeType": "StructuredDocumentation",
                    "src": "683:38:34",
                    "text": "@dev Chainlink VRF subscription id"
                  },
                  "id": 5377,
                  "mutability": "mutable",
                  "name": "subscriptionId",
                  "nameLocation": "740:14:34",
                  "nodeType": "VariableDeclaration",
                  "scope": 5740,
                  "src": "724:30:34",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint64",
                    "typeString": "uint64"
                  },
                  "typeName": {
                    "id": 5376,
                    "name": "uint64",
                    "nodeType": "ElementaryTypeName",
                    "src": "724:6:34",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint64",
                      "typeString": "uint64"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 5378,
                    "nodeType": "StructuredDocumentation",
                    "src": "759:60:34",
                    "text": "@dev Hash of the public key used to verify the VRF proof"
                  },
                  "id": 5380,
                  "mutability": "mutable",
                  "name": "keyHash",
                  "nameLocation": "839:7:34",
                  "nodeType": "VariableDeclaration",
                  "scope": 5740,
                  "src": "822:24:34",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 5379,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "822:7:34",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 5381,
                    "nodeType": "StructuredDocumentation",
                    "src": "851:73:34",
                    "text": "@dev A list of random numbers from past requests mapped by request id"
                  },
                  "id": 5385,
                  "mutability": "mutable",
                  "name": "randomNumbers",
                  "nameLocation": "963:13:34",
                  "nodeType": "VariableDeclaration",
                  "scope": 5740,
                  "src": "927:49:34",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_mapping$_t_uint32_$_t_uint256_$",
                    "typeString": "mapping(uint32 => uint256)"
                  },
                  "typeName": {
                    "id": 5384,
                    "keyType": {
                      "id": 5382,
                      "name": "uint32",
                      "nodeType": "ElementaryTypeName",
                      "src": "935:6:34",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint32",
                        "typeString": "uint32"
                      }
                    },
                    "nodeType": "Mapping",
                    "src": "927:26:34",
                    "typeDescriptions": {
                      "typeIdentifier": "t_mapping$_t_uint32_$_t_uint256_$",
                      "typeString": "mapping(uint32 => uint256)"
                    },
                    "valueType": {
                      "id": 5383,
                      "name": "uint256",
                      "nodeType": "ElementaryTypeName",
                      "src": "945:7:34",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint256",
                        "typeString": "uint256"
                      }
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 5386,
                    "nodeType": "StructuredDocumentation",
                    "src": "981:85:34",
                    "text": "@dev A list of blocks to be locked at based on past requests mapped by request id"
                  },
                  "id": 5390,
                  "mutability": "mutable",
                  "name": "requestLockBlock",
                  "nameLocation": "1104:16:34",
                  "nodeType": "VariableDeclaration",
                  "scope": 5740,
                  "src": "1069:51:34",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_mapping$_t_uint32_$_t_uint32_$",
                    "typeString": "mapping(uint32 => uint32)"
                  },
                  "typeName": {
                    "id": 5389,
                    "keyType": {
                      "id": 5387,
                      "name": "uint32",
                      "nodeType": "ElementaryTypeName",
                      "src": "1077:6:34",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint32",
                        "typeString": "uint32"
                      }
                    },
                    "nodeType": "Mapping",
                    "src": "1069:25:34",
                    "typeDescriptions": {
                      "typeIdentifier": "t_mapping$_t_uint32_$_t_uint32_$",
                      "typeString": "mapping(uint32 => uint32)"
                    },
                    "valueType": {
                      "id": 5388,
                      "name": "uint32",
                      "nodeType": "ElementaryTypeName",
                      "src": "1087:6:34",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint32",
                        "typeString": "uint32"
                      }
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 5391,
                    "nodeType": "StructuredDocumentation",
                    "src": "1125:69:34",
                    "text": "@dev A mapping from Chainlink request ids to internal request ids"
                  },
                  "id": 5395,
                  "mutability": "mutable",
                  "name": "chainlinkRequestIds",
                  "nameLocation": "1233:19:34",
                  "nodeType": "VariableDeclaration",
                  "scope": 5740,
                  "src": "1197:55:34",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_mapping$_t_uint256_$_t_uint32_$",
                    "typeString": "mapping(uint256 => uint32)"
                  },
                  "typeName": {
                    "id": 5394,
                    "keyType": {
                      "id": 5392,
                      "name": "uint256",
                      "nodeType": "ElementaryTypeName",
                      "src": "1205:7:34",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint256",
                        "typeString": "uint256"
                      }
                    },
                    "nodeType": "Mapping",
                    "src": "1197:26:34",
                    "typeDescriptions": {
                      "typeIdentifier": "t_mapping$_t_uint256_$_t_uint32_$",
                      "typeString": "mapping(uint256 => uint32)"
                    },
                    "valueType": {
                      "id": 5393,
                      "name": "uint32",
                      "nodeType": "ElementaryTypeName",
                      "src": "1216:6:34",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint32",
                        "typeString": "uint32"
                      }
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 5396,
                    "nodeType": "StructuredDocumentation",
                    "src": "1299:110:34",
                    "text": " @notice Emitted when the Chainlink VRF keyHash is set\n @param keyHash Chainlink VRF keyHash"
                  },
                  "id": 5400,
                  "name": "KeyHashSet",
                  "nameLocation": "1418:10:34",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 5399,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5398,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "keyHash",
                        "nameLocation": "1437:7:34",
                        "nodeType": "VariableDeclaration",
                        "scope": 5400,
                        "src": "1429:15:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 5397,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1429:7:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1428:17:34"
                  },
                  "src": "1412:34:34"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 5401,
                    "nodeType": "StructuredDocumentation",
                    "src": "1450:133:34",
                    "text": " @notice Emitted when the Chainlink VRF subscription id is set\n @param subscriptionId Chainlink VRF subscription id"
                  },
                  "id": 5405,
                  "name": "SubscriptionIdSet",
                  "nameLocation": "1592:17:34",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 5404,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5403,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "subscriptionId",
                        "nameLocation": "1617:14:34",
                        "nodeType": "VariableDeclaration",
                        "scope": 5405,
                        "src": "1610:21:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 5402,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "1610:6:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1609:23:34"
                  },
                  "src": "1586:47:34"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 5406,
                    "nodeType": "StructuredDocumentation",
                    "src": "1637:138:34",
                    "text": " @notice Emitted when the Chainlink VRF Coordinator address is set\n @param vrfCoordinator Address of the VRF Coordinator"
                  },
                  "id": 5411,
                  "name": "VrfCoordinatorSet",
                  "nameLocation": "1784:17:34",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 5410,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5409,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "vrfCoordinator",
                        "nameLocation": "1836:14:34",
                        "nodeType": "VariableDeclaration",
                        "scope": 5411,
                        "src": "1802:48:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_VRFCoordinatorV2Interface_$146",
                          "typeString": "contract VRFCoordinatorV2Interface"
                        },
                        "typeName": {
                          "id": 5408,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 5407,
                            "name": "VRFCoordinatorV2Interface",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 146,
                            "src": "1802:25:34"
                          },
                          "referencedDeclaration": 146,
                          "src": "1802:25:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_VRFCoordinatorV2Interface_$146",
                            "typeString": "contract VRFCoordinatorV2Interface"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1801:50:34"
                  },
                  "src": "1778:74:34"
                },
                {
                  "body": {
                    "id": 5445,
                    "nodeType": "Block",
                    "src": "2380:114:34",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 5434,
                              "name": "_vrfCoordinator",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5417,
                              "src": "2405:15:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_VRFCoordinatorV2Interface_$146",
                                "typeString": "contract VRFCoordinatorV2Interface"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_VRFCoordinatorV2Interface_$146",
                                "typeString": "contract VRFCoordinatorV2Interface"
                              }
                            ],
                            "id": 5433,
                            "name": "_setVRFCoordinator",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5692,
                            "src": "2386:18:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_VRFCoordinatorV2Interface_$146_$returns$__$",
                              "typeString": "function (contract VRFCoordinatorV2Interface)"
                            }
                          },
                          "id": 5435,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2386:35:34",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5436,
                        "nodeType": "ExpressionStatement",
                        "src": "2386:35:34"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 5438,
                              "name": "_subscriptionId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5419,
                              "src": "2446:15:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            ],
                            "id": 5437,
                            "name": "_setSubscriptionId",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5714,
                            "src": "2427:18:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_uint64_$returns$__$",
                              "typeString": "function (uint64)"
                            }
                          },
                          "id": 5439,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2427:35:34",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5440,
                        "nodeType": "ExpressionStatement",
                        "src": "2427:35:34"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 5442,
                              "name": "_keyHash",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5421,
                              "src": "2480:8:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            ],
                            "id": 5441,
                            "name": "_setKeyhash",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5739,
                            "src": "2468:11:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_bytes32_$returns$__$",
                              "typeString": "function (bytes32)"
                            }
                          },
                          "id": 5443,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2468:21:34",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5444,
                        "nodeType": "ExpressionStatement",
                        "src": "2468:21:34"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5412,
                    "nodeType": "StructuredDocumentation",
                    "src": "1903:281:34",
                    "text": " @notice Constructor of the contract\n @param _owner Owner of the contract\n @param _vrfCoordinator Address of the VRF Coordinator\n @param _subscriptionId Chainlink VRF subscription id\n @param _keyHash Hash of the public key used to verify the VRF proof"
                  },
                  "id": 5446,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 5424,
                          "name": "_owner",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 5414,
                          "src": "2328:6:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        }
                      ],
                      "id": 5425,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 5423,
                        "name": "Ownable",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5355,
                        "src": "2320:7:34"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "2320:15:34"
                    },
                    {
                      "arguments": [
                        {
                          "arguments": [
                            {
                              "id": 5429,
                              "name": "_vrfCoordinator",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5417,
                              "src": "2362:15:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_VRFCoordinatorV2Interface_$146",
                                "typeString": "contract VRFCoordinatorV2Interface"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_VRFCoordinatorV2Interface_$146",
                                "typeString": "contract VRFCoordinatorV2Interface"
                              }
                            ],
                            "id": 5428,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "2354:7:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_address_$",
                              "typeString": "type(address)"
                            },
                            "typeName": {
                              "id": 5427,
                              "name": "address",
                              "nodeType": "ElementaryTypeName",
                              "src": "2354:7:34",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 5430,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2354:24:34",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        }
                      ],
                      "id": 5431,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 5426,
                        "name": "VRFConsumerBaseV2",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 57,
                        "src": "2336:17:34"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "2336:43:34"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 5422,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5414,
                        "mutability": "mutable",
                        "name": "_owner",
                        "nameLocation": "2212:6:34",
                        "nodeType": "VariableDeclaration",
                        "scope": 5446,
                        "src": "2204:14:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 5413,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2204:7:34",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5417,
                        "mutability": "mutable",
                        "name": "_vrfCoordinator",
                        "nameLocation": "2250:15:34",
                        "nodeType": "VariableDeclaration",
                        "scope": 5446,
                        "src": "2224:41:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_VRFCoordinatorV2Interface_$146",
                          "typeString": "contract VRFCoordinatorV2Interface"
                        },
                        "typeName": {
                          "id": 5416,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 5415,
                            "name": "VRFCoordinatorV2Interface",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 146,
                            "src": "2224:25:34"
                          },
                          "referencedDeclaration": 146,
                          "src": "2224:25:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_VRFCoordinatorV2Interface_$146",
                            "typeString": "contract VRFCoordinatorV2Interface"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5419,
                        "mutability": "mutable",
                        "name": "_subscriptionId",
                        "nameLocation": "2278:15:34",
                        "nodeType": "VariableDeclaration",
                        "scope": 5446,
                        "src": "2271:22:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 5418,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "2271:6:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5421,
                        "mutability": "mutable",
                        "name": "_keyHash",
                        "nameLocation": "2307:8:34",
                        "nodeType": "VariableDeclaration",
                        "scope": 5446,
                        "src": "2299:16:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 5420,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2299:7:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2198:121:34"
                  },
                  "returnParameters": {
                    "id": 5432,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2380:0:34"
                  },
                  "scope": 5740,
                  "src": "2187:307:34",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    5818
                  ],
                  "body": {
                    "id": 5505,
                    "nodeType": "Block",
                    "src": "2707:456:34",
                    "statements": [
                      {
                        "assignments": [
                          5458
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 5458,
                            "mutability": "mutable",
                            "name": "_vrfRequestId",
                            "nameLocation": "2721:13:34",
                            "nodeType": "VariableDeclaration",
                            "scope": 5505,
                            "src": "2713:21:34",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 5457,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "2713:7:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 5467,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 5461,
                              "name": "keyHash",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5380,
                              "src": "2778:7:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            {
                              "id": 5462,
                              "name": "subscriptionId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5377,
                              "src": "2793:14:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            },
                            {
                              "hexValue": "33",
                              "id": 5463,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2815:1:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_3_by_1",
                                "typeString": "int_const 3"
                              },
                              "value": "3"
                            },
                            {
                              "hexValue": "31303030303030",
                              "id": 5464,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2824:7:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_1000000_by_1",
                                "typeString": "int_const 1000000"
                              },
                              "value": "1000000"
                            },
                            {
                              "hexValue": "31",
                              "id": 5465,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2839:1:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_1_by_1",
                                "typeString": "int_const 1"
                              },
                              "value": "1"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              },
                              {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              },
                              {
                                "typeIdentifier": "t_rational_3_by_1",
                                "typeString": "int_const 3"
                              },
                              {
                                "typeIdentifier": "t_rational_1000000_by_1",
                                "typeString": "int_const 1000000"
                              },
                              {
                                "typeIdentifier": "t_rational_1_by_1",
                                "typeString": "int_const 1"
                              }
                            ],
                            "expression": {
                              "id": 5459,
                              "name": "vrfCoordinator",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5371,
                              "src": "2737:14:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_VRFCoordinatorV2Interface_$146",
                                "typeString": "contract VRFCoordinatorV2Interface"
                              }
                            },
                            "id": 5460,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "requestRandomWords",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 86,
                            "src": "2737:33:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_bytes32_$_t_uint64_$_t_uint16_$_t_uint32_$_t_uint32_$returns$_t_uint256_$",
                              "typeString": "function (bytes32,uint64,uint16,uint32,uint32) external returns (uint256)"
                            }
                          },
                          "id": 5466,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2737:109:34",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2713:133:34"
                      },
                      {
                        "expression": {
                          "id": 5469,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "UnaryOperation",
                          "operator": "++",
                          "prefix": false,
                          "src": "2853:16:34",
                          "subExpression": {
                            "id": 5468,
                            "name": "requestCounter",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5374,
                            "src": "2853:14:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "id": 5470,
                        "nodeType": "ExpressionStatement",
                        "src": "2853:16:34"
                      },
                      {
                        "assignments": [
                          5472
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 5472,
                            "mutability": "mutable",
                            "name": "_requestCounter",
                            "nameLocation": "2882:15:34",
                            "nodeType": "VariableDeclaration",
                            "scope": 5505,
                            "src": "2875:22:34",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "typeName": {
                              "id": 5471,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "2875:6:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 5474,
                        "initialValue": {
                          "id": 5473,
                          "name": "requestCounter",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 5374,
                          "src": "2900:14:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2875:39:34"
                      },
                      {
                        "expression": {
                          "id": 5477,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 5475,
                            "name": "requestId",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5453,
                            "src": "2921:9:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 5476,
                            "name": "_requestCounter",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5472,
                            "src": "2933:15:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "2921:27:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "id": 5478,
                        "nodeType": "ExpressionStatement",
                        "src": "2921:27:34"
                      },
                      {
                        "expression": {
                          "id": 5483,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "id": 5479,
                              "name": "chainlinkRequestIds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5395,
                              "src": "2954:19:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_uint256_$_t_uint32_$",
                                "typeString": "mapping(uint256 => uint32)"
                              }
                            },
                            "id": 5481,
                            "indexExpression": {
                              "id": 5480,
                              "name": "_vrfRequestId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5458,
                              "src": "2974:13:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "2954:34:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 5482,
                            "name": "_requestCounter",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5472,
                            "src": "2991:15:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "2954:52:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "id": 5484,
                        "nodeType": "ExpressionStatement",
                        "src": "2954:52:34"
                      },
                      {
                        "expression": {
                          "id": 5491,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 5485,
                            "name": "lockBlock",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5455,
                            "src": "3013:9:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "expression": {
                                  "id": 5488,
                                  "name": "block",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -4,
                                  "src": "3032:5:34",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_block",
                                    "typeString": "block"
                                  }
                                },
                                "id": 5489,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "number",
                                "nodeType": "MemberAccess",
                                "src": "3032:12:34",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              ],
                              "id": 5487,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "nodeType": "ElementaryTypeNameExpression",
                              "src": "3025:6:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_uint32_$",
                                "typeString": "type(uint32)"
                              },
                              "typeName": {
                                "id": 5486,
                                "name": "uint32",
                                "nodeType": "ElementaryTypeName",
                                "src": "3025:6:34",
                                "typeDescriptions": {}
                              }
                            },
                            "id": 5490,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "typeConversion",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "3025:20:34",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "3013:32:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "id": 5492,
                        "nodeType": "ExpressionStatement",
                        "src": "3013:32:34"
                      },
                      {
                        "expression": {
                          "id": 5497,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "id": 5493,
                              "name": "requestLockBlock",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5390,
                              "src": "3051:16:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_uint32_$_t_uint32_$",
                                "typeString": "mapping(uint32 => uint32)"
                              }
                            },
                            "id": 5495,
                            "indexExpression": {
                              "id": 5494,
                              "name": "_requestCounter",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5472,
                              "src": "3068:15:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "3051:33:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 5496,
                            "name": "lockBlock",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5455,
                            "src": "3087:9:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "3051:45:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "id": 5498,
                        "nodeType": "ExpressionStatement",
                        "src": "3051:45:34"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 5500,
                              "name": "_requestCounter",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5472,
                              "src": "3130:15:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "expression": {
                                "id": 5501,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "3147:3:34",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 5502,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "3147:10:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 5499,
                            "name": "RandomNumberRequested",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5789,
                            "src": "3108:21:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint32_$_t_address_$returns$__$",
                              "typeString": "function (uint32,address)"
                            }
                          },
                          "id": 5503,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3108:50:34",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5504,
                        "nodeType": "EmitStatement",
                        "src": "3103:55:34"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5447,
                    "nodeType": "StructuredDocumentation",
                    "src": "2552:28:34",
                    "text": "@inheritdoc RNGInterface"
                  },
                  "functionSelector": "8678a7b2",
                  "id": 5506,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 5451,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 5450,
                        "name": "onlyManager",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5179,
                        "src": "2644:11:34"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "2644:11:34"
                    }
                  ],
                  "name": "requestRandomNumber",
                  "nameLocation": "2592:19:34",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 5449,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2631:8:34"
                  },
                  "parameters": {
                    "id": 5448,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2611:2:34"
                  },
                  "returnParameters": {
                    "id": 5456,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5453,
                        "mutability": "mutable",
                        "name": "requestId",
                        "nameLocation": "2676:9:34",
                        "nodeType": "VariableDeclaration",
                        "scope": 5506,
                        "src": "2669:16:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 5452,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2669:6:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5455,
                        "mutability": "mutable",
                        "name": "lockBlock",
                        "nameLocation": "2694:9:34",
                        "nodeType": "VariableDeclaration",
                        "scope": 5506,
                        "src": "2687:16:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 5454,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2687:6:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2668:36:34"
                  },
                  "scope": 5740,
                  "src": "2583:580:34",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    5826
                  ],
                  "body": {
                    "id": 5521,
                    "nodeType": "Block",
                    "src": "3320:56:34",
                    "statements": [
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 5519,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "baseExpression": {
                              "id": 5515,
                              "name": "randomNumbers",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5385,
                              "src": "3333:13:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_uint32_$_t_uint256_$",
                                "typeString": "mapping(uint32 => uint256)"
                              }
                            },
                            "id": 5517,
                            "indexExpression": {
                              "id": 5516,
                              "name": "_internalRequestId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5509,
                              "src": "3347:18:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "IndexAccess",
                            "src": "3333:33:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "!=",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 5518,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "3370:1:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "3333:38:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 5514,
                        "id": 5520,
                        "nodeType": "Return",
                        "src": "3326:45:34"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5507,
                    "nodeType": "StructuredDocumentation",
                    "src": "3167:28:34",
                    "text": "@inheritdoc RNGInterface"
                  },
                  "functionSelector": "3a19b9bc",
                  "id": 5522,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "isRequestComplete",
                  "nameLocation": "3207:17:34",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 5511,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3278:8:34"
                  },
                  "parameters": {
                    "id": 5510,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5509,
                        "mutability": "mutable",
                        "name": "_internalRequestId",
                        "nameLocation": "3232:18:34",
                        "nodeType": "VariableDeclaration",
                        "scope": 5522,
                        "src": "3225:25:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 5508,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "3225:6:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3224:27:34"
                  },
                  "returnParameters": {
                    "id": 5514,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5513,
                        "mutability": "mutable",
                        "name": "isCompleted",
                        "nameLocation": "3305:11:34",
                        "nodeType": "VariableDeclaration",
                        "scope": 5522,
                        "src": "3300:16:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 5512,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "3300:4:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3299:18:34"
                  },
                  "scope": 5740,
                  "src": "3198:178:34",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    5834
                  ],
                  "body": {
                    "id": 5535,
                    "nodeType": "Block",
                    "src": "3529:51:34",
                    "statements": [
                      {
                        "expression": {
                          "baseExpression": {
                            "id": 5531,
                            "name": "randomNumbers",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5385,
                            "src": "3542:13:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_uint32_$_t_uint256_$",
                              "typeString": "mapping(uint32 => uint256)"
                            }
                          },
                          "id": 5533,
                          "indexExpression": {
                            "id": 5532,
                            "name": "_internalRequestId",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5525,
                            "src": "3556:18:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "3542:33:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 5530,
                        "id": 5534,
                        "nodeType": "Return",
                        "src": "3535:40:34"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5523,
                    "nodeType": "StructuredDocumentation",
                    "src": "3380:28:34",
                    "text": "@inheritdoc RNGInterface"
                  },
                  "functionSelector": "9d2a5f98",
                  "id": 5536,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "randomNumber",
                  "nameLocation": "3420:12:34",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 5527,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3486:8:34"
                  },
                  "parameters": {
                    "id": 5526,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5525,
                        "mutability": "mutable",
                        "name": "_internalRequestId",
                        "nameLocation": "3440:18:34",
                        "nodeType": "VariableDeclaration",
                        "scope": 5536,
                        "src": "3433:25:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 5524,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "3433:6:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3432:27:34"
                  },
                  "returnParameters": {
                    "id": 5530,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5529,
                        "mutability": "mutable",
                        "name": "randomNum",
                        "nameLocation": "3516:9:34",
                        "nodeType": "VariableDeclaration",
                        "scope": 5536,
                        "src": "3508:17:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 5528,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3508:7:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3507:19:34"
                  },
                  "scope": 5740,
                  "src": "3411:169:34",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    5802
                  ],
                  "body": {
                    "id": 5545,
                    "nodeType": "Block",
                    "src": "3693:32:34",
                    "statements": [
                      {
                        "expression": {
                          "id": 5543,
                          "name": "requestCounter",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 5374,
                          "src": "3706:14:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "functionReturnParameters": 5542,
                        "id": 5544,
                        "nodeType": "Return",
                        "src": "3699:21:34"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5537,
                    "nodeType": "StructuredDocumentation",
                    "src": "3584:28:34",
                    "text": "@inheritdoc RNGInterface"
                  },
                  "functionSelector": "19c2b4c3",
                  "id": 5546,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getLastRequestId",
                  "nameLocation": "3624:16:34",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 5539,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3657:8:34"
                  },
                  "parameters": {
                    "id": 5538,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3640:2:34"
                  },
                  "returnParameters": {
                    "id": 5542,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5541,
                        "mutability": "mutable",
                        "name": "requestId",
                        "nameLocation": "3682:9:34",
                        "nodeType": "VariableDeclaration",
                        "scope": 5546,
                        "src": "3675:16:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 5540,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "3675:6:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3674:18:34"
                  },
                  "scope": 5740,
                  "src": "3615:110:34",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    5810
                  ],
                  "body": {
                    "id": 5562,
                    "nodeType": "Block",
                    "src": "3855:33:34",
                    "statements": [
                      {
                        "expression": {
                          "components": [
                            {
                              "arguments": [
                                {
                                  "hexValue": "30",
                                  "id": 5557,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "3877:1:34",
                                  "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": 5556,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "3869:7:34",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 5555,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "3869:7:34",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 5558,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "3869:10:34",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "hexValue": "30",
                              "id": 5559,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "3881:1:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_0_by_1",
                                "typeString": "int_const 0"
                              },
                              "value": "0"
                            }
                          ],
                          "id": 5560,
                          "isConstant": false,
                          "isInlineArray": false,
                          "isLValue": false,
                          "isPure": true,
                          "lValueRequested": false,
                          "nodeType": "TupleExpression",
                          "src": "3868:15:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_address_$_t_rational_0_by_1_$",
                            "typeString": "tuple(address,int_const 0)"
                          }
                        },
                        "functionReturnParameters": 5554,
                        "id": 5561,
                        "nodeType": "Return",
                        "src": "3861:22:34"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5547,
                    "nodeType": "StructuredDocumentation",
                    "src": "3729:28:34",
                    "text": "@inheritdoc RNGInterface"
                  },
                  "functionSelector": "0d37b537",
                  "id": 5563,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getRequestFee",
                  "nameLocation": "3769:13:34",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 5549,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3799:8:34"
                  },
                  "parameters": {
                    "id": 5548,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3782:2:34"
                  },
                  "returnParameters": {
                    "id": 5554,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5551,
                        "mutability": "mutable",
                        "name": "feeToken",
                        "nameLocation": "3825:8:34",
                        "nodeType": "VariableDeclaration",
                        "scope": 5563,
                        "src": "3817:16:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 5550,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3817:7:34",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5553,
                        "mutability": "mutable",
                        "name": "requestFee",
                        "nameLocation": "3843:10:34",
                        "nodeType": "VariableDeclaration",
                        "scope": 5563,
                        "src": "3835:18:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 5552,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3835:7:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3816:38:34"
                  },
                  "scope": 5740,
                  "src": "3760:128:34",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    5753
                  ],
                  "body": {
                    "id": 5572,
                    "nodeType": "Block",
                    "src": "3997:25:34",
                    "statements": [
                      {
                        "expression": {
                          "id": 5570,
                          "name": "keyHash",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 5380,
                          "src": "4010:7:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "functionReturnParameters": 5569,
                        "id": 5571,
                        "nodeType": "Return",
                        "src": "4003:14:34"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5564,
                    "nodeType": "StructuredDocumentation",
                    "src": "3892:39:34",
                    "text": "@inheritdoc RNGChainlinkV2Interface"
                  },
                  "functionSelector": "331bf125",
                  "id": 5573,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getKeyHash",
                  "nameLocation": "3943:10:34",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 5566,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3970:8:34"
                  },
                  "parameters": {
                    "id": 5565,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3953:2:34"
                  },
                  "returnParameters": {
                    "id": 5569,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5568,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 5573,
                        "src": "3988:7:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 5567,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "3988:7:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3987:9:34"
                  },
                  "scope": 5740,
                  "src": "3934:88:34",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    5759
                  ],
                  "body": {
                    "id": 5582,
                    "nodeType": "Block",
                    "src": "4137:32:34",
                    "statements": [
                      {
                        "expression": {
                          "id": 5580,
                          "name": "subscriptionId",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 5377,
                          "src": "4150:14:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "functionReturnParameters": 5579,
                        "id": 5581,
                        "nodeType": "Return",
                        "src": "4143:21:34"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5574,
                    "nodeType": "StructuredDocumentation",
                    "src": "4026:39:34",
                    "text": "@inheritdoc RNGChainlinkV2Interface"
                  },
                  "functionSelector": "de3d9fb7",
                  "id": 5583,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getSubscriptionId",
                  "nameLocation": "4077:17:34",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 5576,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "4111:8:34"
                  },
                  "parameters": {
                    "id": 5575,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4094:2:34"
                  },
                  "returnParameters": {
                    "id": 5579,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5578,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 5583,
                        "src": "4129:6:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 5577,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "4129:6:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4128:8:34"
                  },
                  "scope": 5740,
                  "src": "4068:101:34",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    5766
                  ],
                  "body": {
                    "id": 5593,
                    "nodeType": "Block",
                    "src": "4303:32:34",
                    "statements": [
                      {
                        "expression": {
                          "id": 5591,
                          "name": "vrfCoordinator",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 5371,
                          "src": "4316:14:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_VRFCoordinatorV2Interface_$146",
                            "typeString": "contract VRFCoordinatorV2Interface"
                          }
                        },
                        "functionReturnParameters": 5590,
                        "id": 5592,
                        "nodeType": "Return",
                        "src": "4309:21:34"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5584,
                    "nodeType": "StructuredDocumentation",
                    "src": "4173:39:34",
                    "text": "@inheritdoc RNGChainlinkV2Interface"
                  },
                  "functionSelector": "0cb4a29d",
                  "id": 5594,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getVrfCoordinator",
                  "nameLocation": "4224:17:34",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 5586,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "4258:8:34"
                  },
                  "parameters": {
                    "id": 5585,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4241:2:34"
                  },
                  "returnParameters": {
                    "id": 5590,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5589,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 5594,
                        "src": "4276:25:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_VRFCoordinatorV2Interface_$146",
                          "typeString": "contract VRFCoordinatorV2Interface"
                        },
                        "typeName": {
                          "id": 5588,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 5587,
                            "name": "VRFCoordinatorV2Interface",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 146,
                            "src": "4276:25:34"
                          },
                          "referencedDeclaration": 146,
                          "src": "4276:25:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_VRFCoordinatorV2Interface_$146",
                            "typeString": "contract VRFCoordinatorV2Interface"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4275:27:34"
                  },
                  "scope": 5740,
                  "src": "4215:120:34",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    5778
                  ],
                  "body": {
                    "id": 5607,
                    "nodeType": "Block",
                    "src": "4460:46:34",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 5604,
                              "name": "_subscriptionId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5597,
                              "src": "4485:15:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            ],
                            "id": 5603,
                            "name": "_setSubscriptionId",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5714,
                            "src": "4466:18:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_uint64_$returns$__$",
                              "typeString": "function (uint64)"
                            }
                          },
                          "id": 5605,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4466:35:34",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5606,
                        "nodeType": "ExpressionStatement",
                        "src": "4466:35:34"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5595,
                    "nodeType": "StructuredDocumentation",
                    "src": "4339:39:34",
                    "text": "@inheritdoc RNGChainlinkV2Interface"
                  },
                  "functionSelector": "ea7b4f77",
                  "id": 5608,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 5601,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 5600,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5341,
                        "src": "4450:9:34"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "4450:9:34"
                    }
                  ],
                  "name": "setSubscriptionId",
                  "nameLocation": "4390:17:34",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 5599,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "4441:8:34"
                  },
                  "parameters": {
                    "id": 5598,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5597,
                        "mutability": "mutable",
                        "name": "_subscriptionId",
                        "nameLocation": "4415:15:34",
                        "nodeType": "VariableDeclaration",
                        "scope": 5608,
                        "src": "4408:22:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 5596,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "4408:6:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4407:24:34"
                  },
                  "returnParameters": {
                    "id": 5602,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4460:0:34"
                  },
                  "scope": 5740,
                  "src": "4381:125:34",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    5772
                  ],
                  "body": {
                    "id": 5621,
                    "nodeType": "Block",
                    "src": "4618:32:34",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 5618,
                              "name": "_keyHash",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5611,
                              "src": "4636:8:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            ],
                            "id": 5617,
                            "name": "_setKeyhash",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5739,
                            "src": "4624:11:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_bytes32_$returns$__$",
                              "typeString": "function (bytes32)"
                            }
                          },
                          "id": 5619,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4624:21:34",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5620,
                        "nodeType": "ExpressionStatement",
                        "src": "4624:21:34"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5609,
                    "nodeType": "StructuredDocumentation",
                    "src": "4510:39:34",
                    "text": "@inheritdoc RNGChainlinkV2Interface"
                  },
                  "functionSelector": "6309b773",
                  "id": 5622,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 5615,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 5614,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5341,
                        "src": "4608:9:34"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "4608:9:34"
                    }
                  ],
                  "name": "setKeyhash",
                  "nameLocation": "4561:10:34",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 5613,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "4599:8:34"
                  },
                  "parameters": {
                    "id": 5612,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5611,
                        "mutability": "mutable",
                        "name": "_keyHash",
                        "nameLocation": "4580:8:34",
                        "nodeType": "VariableDeclaration",
                        "scope": 5622,
                        "src": "4572:16:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 5610,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4572:7:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4571:18:34"
                  },
                  "returnParameters": {
                    "id": 5616,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4618:0:34"
                  },
                  "scope": 5740,
                  "src": "4552:98:34",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    30
                  ],
                  "body": {
                    "id": 5662,
                    "nodeType": "Block",
                    "src": "5110:315:34",
                    "statements": [
                      {
                        "assignments": [
                          5633
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 5633,
                            "mutability": "mutable",
                            "name": "_internalRequestId",
                            "nameLocation": "5123:18:34",
                            "nodeType": "VariableDeclaration",
                            "scope": 5662,
                            "src": "5116:25:34",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "typeName": {
                              "id": 5632,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "5116:6:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 5637,
                        "initialValue": {
                          "baseExpression": {
                            "id": 5634,
                            "name": "chainlinkRequestIds",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5395,
                            "src": "5144:19:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_uint256_$_t_uint32_$",
                              "typeString": "mapping(uint256 => uint32)"
                            }
                          },
                          "id": 5636,
                          "indexExpression": {
                            "id": 5635,
                            "name": "_vrfRequestId",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5625,
                            "src": "5164:13:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "5144:34:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "5116:62:34"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              "id": 5641,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 5639,
                                "name": "_internalRequestId",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 5633,
                                "src": "5192:18:34",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">",
                              "rightExpression": {
                                "hexValue": "30",
                                "id": 5640,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "5213:1:34",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "src": "5192:22:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "524e47436861696e4c696e6b2f7265717565737449642d696e636f7272656374",
                              "id": 5642,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "5216:34:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_05ed5cf94387b5eff2b2f4b377ba924d81dadfe40133af15ec4f9a8276d095ad",
                                "typeString": "literal_string \"RNGChainLink/requestId-incorrect\""
                              },
                              "value": "RNGChainLink/requestId-incorrect"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_05ed5cf94387b5eff2b2f4b377ba924d81dadfe40133af15ec4f9a8276d095ad",
                                "typeString": "literal_string \"RNGChainLink/requestId-incorrect\""
                              }
                            ],
                            "id": 5638,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "5184:7:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 5643,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5184:67:34",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5644,
                        "nodeType": "ExpressionStatement",
                        "src": "5184:67:34"
                      },
                      {
                        "assignments": [
                          5646
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 5646,
                            "mutability": "mutable",
                            "name": "_randomNumber",
                            "nameLocation": "5266:13:34",
                            "nodeType": "VariableDeclaration",
                            "scope": 5662,
                            "src": "5258:21:34",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 5645,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "5258:7:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 5650,
                        "initialValue": {
                          "baseExpression": {
                            "id": 5647,
                            "name": "_randomWords",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5628,
                            "src": "5282:12:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[] memory"
                            }
                          },
                          "id": 5649,
                          "indexExpression": {
                            "hexValue": "30",
                            "id": 5648,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "5295:1:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "5282:15:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "5258:39:34"
                      },
                      {
                        "expression": {
                          "id": 5655,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "id": 5651,
                              "name": "randomNumbers",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5385,
                              "src": "5303:13:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_uint32_$_t_uint256_$",
                                "typeString": "mapping(uint32 => uint256)"
                              }
                            },
                            "id": 5653,
                            "indexExpression": {
                              "id": 5652,
                              "name": "_internalRequestId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5633,
                              "src": "5317:18:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "5303:33:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 5654,
                            "name": "_randomNumber",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5646,
                            "src": "5339:13:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "5303:49:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 5656,
                        "nodeType": "ExpressionStatement",
                        "src": "5303:49:34"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 5658,
                              "name": "_internalRequestId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5633,
                              "src": "5386:18:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 5659,
                              "name": "_randomNumber",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5646,
                              "src": "5406:13:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 5657,
                            "name": "RandomNumberCompleted",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5796,
                            "src": "5364:21:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint32_$_t_uint256_$returns$__$",
                              "typeString": "function (uint32,uint256)"
                            }
                          },
                          "id": 5660,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5364:56:34",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5661,
                        "nodeType": "EmitStatement",
                        "src": "5359:61:34"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5623,
                    "nodeType": "StructuredDocumentation",
                    "src": "4708:289:34",
                    "text": " @notice Callback function called by VRF Coordinator\n @dev The VRF Coordinator will only call it once it has verified the proof associated with the randomness.\n @param _vrfRequestId Chainlink VRF request id\n @param _randomWords Chainlink VRF array of random words"
                  },
                  "id": 5663,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "fulfillRandomWords",
                  "nameLocation": "5009:18:34",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 5630,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "5099:8:34"
                  },
                  "parameters": {
                    "id": 5629,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5625,
                        "mutability": "mutable",
                        "name": "_vrfRequestId",
                        "nameLocation": "5036:13:34",
                        "nodeType": "VariableDeclaration",
                        "scope": 5663,
                        "src": "5028:21:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 5624,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "5028:7:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5628,
                        "mutability": "mutable",
                        "name": "_randomWords",
                        "nameLocation": "5068:12:34",
                        "nodeType": "VariableDeclaration",
                        "scope": 5663,
                        "src": "5051:29:34",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 5626,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "5051:7:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 5627,
                          "nodeType": "ArrayTypeName",
                          "src": "5051:9:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5027:54:34"
                  },
                  "returnParameters": {
                    "id": 5631,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "5110:0:34"
                  },
                  "scope": 5740,
                  "src": "5000:425:34",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 5691,
                    "nodeType": "Block",
                    "src": "5653:175:34",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 5679,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 5673,
                                    "name": "_vrfCoordinator",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 5667,
                                    "src": "5675:15:34",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_VRFCoordinatorV2Interface_$146",
                                      "typeString": "contract VRFCoordinatorV2Interface"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_VRFCoordinatorV2Interface_$146",
                                      "typeString": "contract VRFCoordinatorV2Interface"
                                    }
                                  ],
                                  "id": 5672,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "5667:7:34",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 5671,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "5667:7:34",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 5674,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "5667:24:34",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 5677,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "5703:1:34",
                                    "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": 5676,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "5695:7:34",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 5675,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "5695:7:34",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 5678,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "5695:10:34",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "5667:38:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "524e47436861696e4c696e6b2f7672662d6e6f742d7a65726f2d61646472",
                              "id": 5680,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "5707:32:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_3a9f5d08924c9a507c3f782a79b6b8a06ed715f7a016de44a21f65f7281c355c",
                                "typeString": "literal_string \"RNGChainLink/vrf-not-zero-addr\""
                              },
                              "value": "RNGChainLink/vrf-not-zero-addr"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_3a9f5d08924c9a507c3f782a79b6b8a06ed715f7a016de44a21f65f7281c355c",
                                "typeString": "literal_string \"RNGChainLink/vrf-not-zero-addr\""
                              }
                            ],
                            "id": 5670,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "5659:7:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 5681,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5659:81:34",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5682,
                        "nodeType": "ExpressionStatement",
                        "src": "5659:81:34"
                      },
                      {
                        "expression": {
                          "id": 5685,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 5683,
                            "name": "vrfCoordinator",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5371,
                            "src": "5746:14:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_VRFCoordinatorV2Interface_$146",
                              "typeString": "contract VRFCoordinatorV2Interface"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 5684,
                            "name": "_vrfCoordinator",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5667,
                            "src": "5763:15:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_VRFCoordinatorV2Interface_$146",
                              "typeString": "contract VRFCoordinatorV2Interface"
                            }
                          },
                          "src": "5746:32:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_VRFCoordinatorV2Interface_$146",
                            "typeString": "contract VRFCoordinatorV2Interface"
                          }
                        },
                        "id": 5686,
                        "nodeType": "ExpressionStatement",
                        "src": "5746:32:34"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 5688,
                              "name": "_vrfCoordinator",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5667,
                              "src": "5807:15:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_VRFCoordinatorV2Interface_$146",
                                "typeString": "contract VRFCoordinatorV2Interface"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_VRFCoordinatorV2Interface_$146",
                                "typeString": "contract VRFCoordinatorV2Interface"
                              }
                            ],
                            "id": 5687,
                            "name": "VrfCoordinatorSet",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5411,
                            "src": "5789:17:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_contract$_VRFCoordinatorV2Interface_$146_$returns$__$",
                              "typeString": "function (contract VRFCoordinatorV2Interface)"
                            }
                          },
                          "id": 5689,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5789:34:34",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5690,
                        "nodeType": "EmitStatement",
                        "src": "5784:39:34"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5664,
                    "nodeType": "StructuredDocumentation",
                    "src": "5429:141:34",
                    "text": " @notice Set Chainlink VRF coordinator contract address.\n @param _vrfCoordinator Chainlink VRF coordinator contract address"
                  },
                  "id": 5692,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_setVRFCoordinator",
                  "nameLocation": "5582:18:34",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 5668,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5667,
                        "mutability": "mutable",
                        "name": "_vrfCoordinator",
                        "nameLocation": "5627:15:34",
                        "nodeType": "VariableDeclaration",
                        "scope": 5692,
                        "src": "5601:41:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_VRFCoordinatorV2Interface_$146",
                          "typeString": "contract VRFCoordinatorV2Interface"
                        },
                        "typeName": {
                          "id": 5666,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 5665,
                            "name": "VRFCoordinatorV2Interface",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 146,
                            "src": "5601:25:34"
                          },
                          "referencedDeclaration": 146,
                          "src": "5601:25:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_VRFCoordinatorV2Interface_$146",
                            "typeString": "contract VRFCoordinatorV2Interface"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5600:43:34"
                  },
                  "returnParameters": {
                    "id": 5669,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "5653:0:34"
                  },
                  "scope": 5740,
                  "src": "5573:255:34",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 5713,
                    "nodeType": "Block",
                    "src": "6041:152:34",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              },
                              "id": 5701,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 5699,
                                "name": "_subscriptionId",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 5695,
                                "src": "6055:15:34",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">",
                              "rightExpression": {
                                "hexValue": "30",
                                "id": 5700,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "6073:1:34",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "src": "6055:19:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "524e47436861696e4c696e6b2f73756249642d67742d7a65726f",
                              "id": 5702,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "6076:28:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_36b25d27d6d34a9cb5b0f926fbb139de96bcabc3632b0dbba5eaaefc789854c7",
                                "typeString": "literal_string \"RNGChainLink/subId-gt-zero\""
                              },
                              "value": "RNGChainLink/subId-gt-zero"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_36b25d27d6d34a9cb5b0f926fbb139de96bcabc3632b0dbba5eaaefc789854c7",
                                "typeString": "literal_string \"RNGChainLink/subId-gt-zero\""
                              }
                            ],
                            "id": 5698,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "6047:7:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 5703,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6047:58:34",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5704,
                        "nodeType": "ExpressionStatement",
                        "src": "6047:58:34"
                      },
                      {
                        "expression": {
                          "id": 5707,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 5705,
                            "name": "subscriptionId",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5377,
                            "src": "6111:14:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 5706,
                            "name": "_subscriptionId",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5695,
                            "src": "6128:15:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "src": "6111:32:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "id": 5708,
                        "nodeType": "ExpressionStatement",
                        "src": "6111:32:34"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 5710,
                              "name": "_subscriptionId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5695,
                              "src": "6172:15:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            ],
                            "id": 5709,
                            "name": "SubscriptionIdSet",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5405,
                            "src": "6154:17:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint64_$returns$__$",
                              "typeString": "function (uint64)"
                            }
                          },
                          "id": 5711,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6154:34:34",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5712,
                        "nodeType": "EmitStatement",
                        "src": "6149:39:34"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5693,
                    "nodeType": "StructuredDocumentation",
                    "src": "5832:145:34",
                    "text": " @notice Set Chainlink VRF subscription id associated with this contract.\n @param _subscriptionId Chainlink VRF subscription id"
                  },
                  "id": 5714,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_setSubscriptionId",
                  "nameLocation": "5989:18:34",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 5696,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5695,
                        "mutability": "mutable",
                        "name": "_subscriptionId",
                        "nameLocation": "6015:15:34",
                        "nodeType": "VariableDeclaration",
                        "scope": 5714,
                        "src": "6008:22:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 5694,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "6008:6:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6007:24:34"
                  },
                  "returnParameters": {
                    "id": 5697,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "6041:0:34"
                  },
                  "scope": 5740,
                  "src": "5980:213:34",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 5738,
                    "nodeType": "Block",
                    "src": "6340:131:34",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              },
                              "id": 5726,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 5721,
                                "name": "_keyHash",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 5717,
                                "src": "6354:8:34",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bytes32",
                                  "typeString": "bytes32"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 5724,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "6374:1:34",
                                    "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": 5723,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "6366:7:34",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_bytes32_$",
                                    "typeString": "type(bytes32)"
                                  },
                                  "typeName": {
                                    "id": 5722,
                                    "name": "bytes32",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "6366:7:34",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 5725,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "6366:10:34",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bytes32",
                                  "typeString": "bytes32"
                                }
                              },
                              "src": "6354:22:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "524e47436861696e4c696e6b2f6b6579486173682d6e6f742d656d707479",
                              "id": 5727,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "6378:32:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_bc577ee49b57e27fd57fb2557ec404eadeb7fc206b44e6be9ec43118a54491ef",
                                "typeString": "literal_string \"RNGChainLink/keyHash-not-empty\""
                              },
                              "value": "RNGChainLink/keyHash-not-empty"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_bc577ee49b57e27fd57fb2557ec404eadeb7fc206b44e6be9ec43118a54491ef",
                                "typeString": "literal_string \"RNGChainLink/keyHash-not-empty\""
                              }
                            ],
                            "id": 5720,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "6346:7:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 5728,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6346:65:34",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5729,
                        "nodeType": "ExpressionStatement",
                        "src": "6346:65:34"
                      },
                      {
                        "expression": {
                          "id": 5732,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 5730,
                            "name": "keyHash",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5380,
                            "src": "6417:7:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes32",
                              "typeString": "bytes32"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 5731,
                            "name": "_keyHash",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5717,
                            "src": "6427:8:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes32",
                              "typeString": "bytes32"
                            }
                          },
                          "src": "6417:18:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "id": 5733,
                        "nodeType": "ExpressionStatement",
                        "src": "6417:18:34"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 5735,
                              "name": "_keyHash",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5717,
                              "src": "6457:8:34",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            ],
                            "id": 5734,
                            "name": "KeyHashSet",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5400,
                            "src": "6446:10:34",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_bytes32_$returns$__$",
                              "typeString": "function (bytes32)"
                            }
                          },
                          "id": 5736,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6446:20:34",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5737,
                        "nodeType": "EmitStatement",
                        "src": "6441:25:34"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5715,
                    "nodeType": "StructuredDocumentation",
                    "src": "6197:92:34",
                    "text": " @notice Set Chainlink VRF keyHash.\n @param _keyHash Chainlink VRF keyHash"
                  },
                  "id": 5739,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_setKeyhash",
                  "nameLocation": "6301:11:34",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 5718,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5717,
                        "mutability": "mutable",
                        "name": "_keyHash",
                        "nameLocation": "6321:8:34",
                        "nodeType": "VariableDeclaration",
                        "scope": 5739,
                        "src": "6313:16:34",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 5716,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "6313:7:34",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6312:18:34"
                  },
                  "returnParameters": {
                    "id": 5719,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "6340:0:34"
                  },
                  "scope": 5740,
                  "src": "6292:179:34",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 5741,
              "src": "319:6154:34",
              "usedErrors": [
                8
              ]
            }
          ],
          "src": "37:6437:34"
        },
        "id": 34
      },
      "@pooltogether/pooltogether-rng-contracts/contracts/RNGChainlinkV2Interface.sol": {
        "ast": {
          "absolutePath": "@pooltogether/pooltogether-rng-contracts/contracts/RNGChainlinkV2Interface.sol",
          "exportedSymbols": {
            "RNGChainlinkV2Interface": [
              5779
            ],
            "RNGInterface": [
              5835
            ],
            "VRFCoordinatorV2Interface": [
              146
            ]
          },
          "id": 5780,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 5742,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:35"
            },
            {
              "absolutePath": "@chainlink/contracts/src/v0.8/interfaces/VRFCoordinatorV2Interface.sol",
              "file": "@chainlink/contracts/src/v0.8/interfaces/VRFCoordinatorV2Interface.sol",
              "id": 5743,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 5780,
              "sourceUnit": 147,
              "src": "61:80:35",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol",
              "file": "./RNGInterface.sol",
              "id": 5744,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 5780,
              "sourceUnit": 5836,
              "src": "143:28:35",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 5746,
                    "name": "RNGInterface",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 5835,
                    "src": "341:12:35"
                  },
                  "id": 5747,
                  "nodeType": "InheritanceSpecifier",
                  "src": "341:12:35"
                }
              ],
              "contractDependencies": [],
              "contractKind": "interface",
              "documentation": {
                "id": 5745,
                "nodeType": "StructuredDocumentation",
                "src": "173:130:35",
                "text": " @title RNG Chainlink V2 Interface\n @notice Provides an interface for requesting random numbers from Chainlink VRF V2."
              },
              "fullyImplemented": false,
              "id": 5779,
              "linearizedBaseContracts": [
                5779,
                5835
              ],
              "name": "RNGChainlinkV2Interface",
              "nameLocation": "314:23:35",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "documentation": {
                    "id": 5748,
                    "nodeType": "StructuredDocumentation",
                    "src": "358:122:35",
                    "text": " @notice Get Chainlink VRF keyHash associated with this contract.\n @return bytes32 Chainlink VRF keyHash"
                  },
                  "functionSelector": "331bf125",
                  "id": 5753,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getKeyHash",
                  "nameLocation": "492:10:35",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 5749,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "502:2:35"
                  },
                  "returnParameters": {
                    "id": 5752,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5751,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 5753,
                        "src": "528:7:35",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 5750,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "528:7:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "527:9:35"
                  },
                  "scope": 5779,
                  "src": "483:54:35",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 5754,
                    "nodeType": "StructuredDocumentation",
                    "src": "541:137:35",
                    "text": " @notice Get Chainlink VRF subscription id associated with this contract.\n @return uint64 Chainlink VRF subscription id"
                  },
                  "functionSelector": "de3d9fb7",
                  "id": 5759,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getSubscriptionId",
                  "nameLocation": "690:17:35",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 5755,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "707:2:35"
                  },
                  "returnParameters": {
                    "id": 5758,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5757,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 5759,
                        "src": "733:6:35",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 5756,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "733:6:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "732:8:35"
                  },
                  "scope": 5779,
                  "src": "681:60:35",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 5760,
                    "nodeType": "StructuredDocumentation",
                    "src": "745:155:35",
                    "text": " @notice Get Chainlink VRF coordinator contract address associated with this contract.\n @return address Chainlink VRF coordinator address"
                  },
                  "functionSelector": "0cb4a29d",
                  "id": 5766,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getVrfCoordinator",
                  "nameLocation": "912:17:35",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 5761,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "929:2:35"
                  },
                  "returnParameters": {
                    "id": 5765,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5764,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 5766,
                        "src": "955:25:35",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_VRFCoordinatorV2Interface_$146",
                          "typeString": "contract VRFCoordinatorV2Interface"
                        },
                        "typeName": {
                          "id": 5763,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 5762,
                            "name": "VRFCoordinatorV2Interface",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 146,
                            "src": "955:25:35"
                          },
                          "referencedDeclaration": 146,
                          "src": "955:25:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_VRFCoordinatorV2Interface_$146",
                            "typeString": "contract VRFCoordinatorV2Interface"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "954:27:35"
                  },
                  "scope": 5779,
                  "src": "903:79:35",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 5767,
                    "nodeType": "StructuredDocumentation",
                    "src": "986:146:35",
                    "text": " @notice Set Chainlink VRF keyHash.\n @dev This function is only callable by the owner.\n @param keyHash Chainlink VRF keyHash"
                  },
                  "functionSelector": "6309b773",
                  "id": 5772,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setKeyhash",
                  "nameLocation": "1144:10:35",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 5770,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5769,
                        "mutability": "mutable",
                        "name": "keyHash",
                        "nameLocation": "1163:7:35",
                        "nodeType": "VariableDeclaration",
                        "scope": 5772,
                        "src": "1155:15:35",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 5768,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1155:7:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1154:17:35"
                  },
                  "returnParameters": {
                    "id": 5771,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1180:0:35"
                  },
                  "scope": 5779,
                  "src": "1135:46:35",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 5773,
                    "nodeType": "StructuredDocumentation",
                    "src": "1185:199:35",
                    "text": " @notice Set Chainlink VRF subscription id associated with this contract.\n @dev This function is only callable by the owner.\n @param subscriptionId Chainlink VRF subscription id"
                  },
                  "functionSelector": "ea7b4f77",
                  "id": 5778,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setSubscriptionId",
                  "nameLocation": "1396:17:35",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 5776,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5775,
                        "mutability": "mutable",
                        "name": "subscriptionId",
                        "nameLocation": "1421:14:35",
                        "nodeType": "VariableDeclaration",
                        "scope": 5778,
                        "src": "1414:21:35",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 5774,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "1414:6:35",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1413:23:35"
                  },
                  "returnParameters": {
                    "id": 5777,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1445:0:35"
                  },
                  "scope": 5779,
                  "src": "1387:59:35",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 5780,
              "src": "304:1144:35",
              "usedErrors": []
            }
          ],
          "src": "37:1412:35"
        },
        "id": 35
      },
      "@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol": {
        "ast": {
          "absolutePath": "@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol",
          "exportedSymbols": {
            "RNGInterface": [
              5835
            ]
          },
          "id": 5836,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 5781,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:36"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "documentation": {
                "id": 5782,
                "nodeType": "StructuredDocumentation",
                "src": "61:180:36",
                "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": 5835,
              "linearizedBaseContracts": [
                5835
              ],
              "name": "RNGInterface",
              "nameLocation": "252:12:36",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 5783,
                    "nodeType": "StructuredDocumentation",
                    "src": "269:251:36",
                    "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": 5789,
                  "name": "RandomNumberRequested",
                  "nameLocation": "529:21:36",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 5788,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5785,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "requestId",
                        "nameLocation": "566:9:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 5789,
                        "src": "551:24:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 5784,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "551:6:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5787,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "sender",
                        "nameLocation": "593:6:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 5789,
                        "src": "577:22:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 5786,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "577:7:36",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "550:50:36"
                  },
                  "src": "523:78:36"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 5790,
                    "nodeType": "StructuredDocumentation",
                    "src": "605:266:36",
                    "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": 5796,
                  "name": "RandomNumberCompleted",
                  "nameLocation": "880:21:36",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 5795,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5792,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "requestId",
                        "nameLocation": "917:9:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 5796,
                        "src": "902:24:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 5791,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "902:6:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5794,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "randomNumber",
                        "nameLocation": "936:12:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 5796,
                        "src": "928:20:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 5793,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "928:7:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "901:48:36"
                  },
                  "src": "874:76:36"
                },
                {
                  "documentation": {
                    "id": 5797,
                    "nodeType": "StructuredDocumentation",
                    "src": "954:139:36",
                    "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": 5802,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getLastRequestId",
                  "nameLocation": "1105:16:36",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 5798,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1121:2:36"
                  },
                  "returnParameters": {
                    "id": 5801,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5800,
                        "mutability": "mutable",
                        "name": "requestId",
                        "nameLocation": "1154:9:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 5802,
                        "src": "1147:16:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 5799,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1147:6:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1146:18:36"
                  },
                  "scope": 5835,
                  "src": "1096:69:36",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 5803,
                    "nodeType": "StructuredDocumentation",
                    "src": "1169:221:36",
                    "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": 5810,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getRequestFee",
                  "nameLocation": "1402:13:36",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 5804,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1415:2:36"
                  },
                  "returnParameters": {
                    "id": 5809,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5806,
                        "mutability": "mutable",
                        "name": "feeToken",
                        "nameLocation": "1449:8:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 5810,
                        "src": "1441:16:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 5805,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1441:7:36",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5808,
                        "mutability": "mutable",
                        "name": "requestFee",
                        "nameLocation": "1467:10:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 5810,
                        "src": "1459:18:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 5807,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1459:7:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1440:38:36"
                  },
                  "scope": 5835,
                  "src": "1393:86:36",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 5811,
                    "nodeType": "StructuredDocumentation",
                    "src": "1483:574:36",
                    "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.\n The calling contract should \"lock\" all activity until the result is available via the `requestId`"
                  },
                  "functionSelector": "8678a7b2",
                  "id": 5818,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "requestRandomNumber",
                  "nameLocation": "2069:19:36",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 5812,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2088:2:36"
                  },
                  "returnParameters": {
                    "id": 5817,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5814,
                        "mutability": "mutable",
                        "name": "requestId",
                        "nameLocation": "2116:9:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 5818,
                        "src": "2109:16:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 5813,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2109:6:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5816,
                        "mutability": "mutable",
                        "name": "lockBlock",
                        "nameLocation": "2134:9:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 5818,
                        "src": "2127:16:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 5815,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2127:6:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2108:36:36"
                  },
                  "scope": 5835,
                  "src": "2060:85:36",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 5819,
                    "nodeType": "StructuredDocumentation",
                    "src": "2149:383:36",
                    "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": 5826,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "isRequestComplete",
                  "nameLocation": "2544:17:36",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 5822,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5821,
                        "mutability": "mutable",
                        "name": "requestId",
                        "nameLocation": "2569:9:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 5826,
                        "src": "2562:16:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 5820,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2562:6:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2561:18:36"
                  },
                  "returnParameters": {
                    "id": 5825,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5824,
                        "mutability": "mutable",
                        "name": "isCompleted",
                        "nameLocation": "2608:11:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 5826,
                        "src": "2603:16:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 5823,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "2603:4:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2602:18:36"
                  },
                  "scope": 5835,
                  "src": "2535:86:36",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 5827,
                    "nodeType": "StructuredDocumentation",
                    "src": "2625:207:36",
                    "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": 5834,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "randomNumber",
                  "nameLocation": "2844:12:36",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 5830,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5829,
                        "mutability": "mutable",
                        "name": "requestId",
                        "nameLocation": "2864:9:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 5834,
                        "src": "2857:16:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 5828,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2857:6:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2856:18:36"
                  },
                  "returnParameters": {
                    "id": 5833,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5832,
                        "mutability": "mutable",
                        "name": "randomNum",
                        "nameLocation": "2901:9:36",
                        "nodeType": "VariableDeclaration",
                        "scope": 5834,
                        "src": "2893:17:36",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 5831,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2893:7:36",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2892:19:36"
                  },
                  "scope": 5835,
                  "src": "2835:77:36",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 5836,
              "src": "242:2672:36",
              "usedErrors": []
            }
          ],
          "src": "37:2878:36"
        },
        "id": 36
      },
      "@pooltogether/v4-core/contracts/ControlledToken.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/ControlledToken.sol",
          "exportedSymbols": {
            "Context": [
              1797
            ],
            "ControlledToken": [
              6013
            ],
            "Counters": [
              1871
            ],
            "ECDSA": [
              2464
            ],
            "EIP712": [
              2618
            ],
            "ERC20": [
              812
            ],
            "ERC20Permit": [
              1084
            ],
            "IControlledToken": [
              10681
            ],
            "IERC20": [
              890
            ],
            "IERC20Metadata": [
              915
            ],
            "IERC20Permit": [
              1120
            ],
            "Strings": [
              2074
            ]
          },
          "id": 6014,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 5837,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:37"
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol",
              "file": "@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol",
              "id": 5838,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 6014,
              "sourceUnit": 1085,
              "src": "61:78:37",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IControlledToken.sol",
              "file": "./interfaces/IControlledToken.sol",
              "id": 5839,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 6014,
              "sourceUnit": 10682,
              "src": "141:43:37",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 5841,
                    "name": "ERC20Permit",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 1084,
                    "src": "370:11:37"
                  },
                  "id": 5842,
                  "nodeType": "InheritanceSpecifier",
                  "src": "370:11:37"
                },
                {
                  "baseName": {
                    "id": 5843,
                    "name": "IControlledToken",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 10681,
                    "src": "383:16:37"
                  },
                  "id": 5844,
                  "nodeType": "InheritanceSpecifier",
                  "src": "383:16:37"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 5840,
                "nodeType": "StructuredDocumentation",
                "src": "186:155:37",
                "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": 6013,
              "linearizedBaseContracts": [
                6013,
                10681,
                1084,
                2618,
                1120,
                812,
                915,
                890,
                1797
              ],
              "name": "ControlledToken",
              "nameLocation": "351:15:37",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "baseFunctions": [
                    10654
                  ],
                  "constant": false,
                  "documentation": {
                    "id": 5845,
                    "nodeType": "StructuredDocumentation",
                    "src": "460:75:37",
                    "text": "@notice Interface to the contract responsible for controlling mint/burn"
                  },
                  "functionSelector": "f77c4791",
                  "id": 5848,
                  "mutability": "immutable",
                  "name": "controller",
                  "nameLocation": "574:10:37",
                  "nodeType": "VariableDeclaration",
                  "overrides": {
                    "id": 5847,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "555:8:37"
                  },
                  "scope": 6013,
                  "src": "540:44:37",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 5846,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "540:7:37",
                    "stateMutability": "nonpayable",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 5849,
                    "nodeType": "StructuredDocumentation",
                    "src": "591:44:37",
                    "text": "@notice ERC20 controlled token decimals."
                  },
                  "id": 5851,
                  "mutability": "immutable",
                  "name": "_decimals",
                  "nameLocation": "664:9:37",
                  "nodeType": "VariableDeclaration",
                  "scope": 6013,
                  "src": "640:33:37",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint8",
                    "typeString": "uint8"
                  },
                  "typeName": {
                    "id": 5850,
                    "name": "uint8",
                    "nodeType": "ElementaryTypeName",
                    "src": "640:5:37",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint8",
                      "typeString": "uint8"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 5852,
                    "nodeType": "StructuredDocumentation",
                    "src": "724:42:37",
                    "text": "@dev Emitted when contract is deployed"
                  },
                  "id": 5862,
                  "name": "Deployed",
                  "nameLocation": "777:8:37",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 5861,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5854,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "name",
                        "nameLocation": "793:4:37",
                        "nodeType": "VariableDeclaration",
                        "scope": 5862,
                        "src": "786:11:37",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 5853,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "786:6:37",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5856,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "symbol",
                        "nameLocation": "806:6:37",
                        "nodeType": "VariableDeclaration",
                        "scope": 5862,
                        "src": "799:13:37",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 5855,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "799:6:37",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5858,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "decimals",
                        "nameLocation": "820:8:37",
                        "nodeType": "VariableDeclaration",
                        "scope": 5862,
                        "src": "814:14:37",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 5857,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "814:5:37",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5860,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "controller",
                        "nameLocation": "846:10:37",
                        "nodeType": "VariableDeclaration",
                        "scope": 5862,
                        "src": "830:26:37",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 5859,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "830:7:37",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "785:72:37"
                  },
                  "src": "771:87:37"
                },
                {
                  "body": {
                    "id": 5877,
                    "nodeType": "Block",
                    "src": "1021:105:37",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 5872,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 5866,
                                  "name": "msg",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -15,
                                  "src": "1039:3:37",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_message",
                                    "typeString": "msg"
                                  }
                                },
                                "id": 5867,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "sender",
                                "nodeType": "MemberAccess",
                                "src": "1039:10:37",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "==",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "id": 5870,
                                    "name": "controller",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 5848,
                                    "src": "1061:10:37",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  ],
                                  "id": 5869,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "1053:7:37",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 5868,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "1053:7:37",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 5871,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1053:19:37",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "1039:33:37",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "436f6e74726f6c6c6564546f6b656e2f6f6e6c792d636f6e74726f6c6c6572",
                              "id": 5873,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1074:33:37",
                              "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": 5865,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1031:7:37",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 5874,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1031:77:37",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5875,
                        "nodeType": "ExpressionStatement",
                        "src": "1031:77:37"
                      },
                      {
                        "id": 5876,
                        "nodeType": "PlaceholderStatement",
                        "src": "1118:1:37"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5863,
                    "nodeType": "StructuredDocumentation",
                    "src": "911:79:37",
                    "text": "@dev Function modifier to ensure that the caller is the controller contract"
                  },
                  "id": 5878,
                  "name": "onlyController",
                  "nameLocation": "1004:14:37",
                  "nodeType": "ModifierDefinition",
                  "parameters": {
                    "id": 5864,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1018:2:37"
                  },
                  "src": "995:131:37",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 5932,
                    "nodeType": "Block",
                    "src": "1698:305:37",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 5906,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 5900,
                                    "name": "_controller",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 5887,
                                    "src": "1724:11:37",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  ],
                                  "id": 5899,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "1716:7:37",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 5898,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "1716:7:37",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 5901,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1716:20:37",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 5904,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "1748:1:37",
                                    "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": 5903,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "1740:7:37",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 5902,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "1740:7:37",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 5905,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1740:10:37",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "1716:34:37",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "436f6e74726f6c6c6564546f6b656e2f636f6e74726f6c6c65722d6e6f742d7a65726f2d61646472657373",
                              "id": 5907,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1752:45:37",
                              "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": 5897,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1708:7:37",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 5908,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1708:90:37",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5909,
                        "nodeType": "ExpressionStatement",
                        "src": "1708:90:37"
                      },
                      {
                        "expression": {
                          "id": 5912,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 5910,
                            "name": "controller",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5848,
                            "src": "1808:10:37",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 5911,
                            "name": "_controller",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5887,
                            "src": "1821:11:37",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "1808:24:37",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "id": 5913,
                        "nodeType": "ExpressionStatement",
                        "src": "1808:24:37"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              },
                              "id": 5917,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 5915,
                                "name": "decimals_",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 5885,
                                "src": "1851:9:37",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">",
                              "rightExpression": {
                                "hexValue": "30",
                                "id": 5916,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "1863:1:37",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "src": "1851:13:37",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "436f6e74726f6c6c6564546f6b656e2f646563696d616c732d67742d7a65726f",
                              "id": 5918,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1866:34:37",
                              "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": 5914,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1843:7:37",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 5919,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1843:58:37",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5920,
                        "nodeType": "ExpressionStatement",
                        "src": "1843:58:37"
                      },
                      {
                        "expression": {
                          "id": 5923,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 5921,
                            "name": "_decimals",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5851,
                            "src": "1911:9:37",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 5922,
                            "name": "decimals_",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5885,
                            "src": "1923:9:37",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "src": "1911:21:37",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "id": 5924,
                        "nodeType": "ExpressionStatement",
                        "src": "1911:21:37"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 5926,
                              "name": "_name",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5881,
                              "src": "1957:5:37",
                              "typeDescriptions": {
                                "typeIdentifier": "t_string_memory_ptr",
                                "typeString": "string memory"
                              }
                            },
                            {
                              "id": 5927,
                              "name": "_symbol",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5883,
                              "src": "1964:7:37",
                              "typeDescriptions": {
                                "typeIdentifier": "t_string_memory_ptr",
                                "typeString": "string memory"
                              }
                            },
                            {
                              "id": 5928,
                              "name": "decimals_",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5885,
                              "src": "1973:9:37",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            {
                              "id": 5929,
                              "name": "_controller",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5887,
                              "src": "1984:11:37",
                              "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": 5925,
                            "name": "Deployed",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5862,
                            "src": "1948:8:37",
                            "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": 5930,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1948:48:37",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5931,
                        "nodeType": "EmitStatement",
                        "src": "1943:53:37"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5879,
                    "nodeType": "StructuredDocumentation",
                    "src": "1181:314:37",
                    "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": 5933,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "hexValue": "506f6f6c546f67657468657220436f6e74726f6c6c6564546f6b656e",
                          "id": 5890,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "string",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "1644:30:37",
                          "typeDescriptions": {
                            "typeIdentifier": "t_stringliteral_4c56e52e1e1083962e8a166de35adcba6701e0a029333db5a80367db0f67e330",
                            "typeString": "literal_string \"PoolTogether ControlledToken\""
                          },
                          "value": "PoolTogether ControlledToken"
                        }
                      ],
                      "id": 5891,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 5889,
                        "name": "ERC20Permit",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 1084,
                        "src": "1632:11:37"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "1632:43:37"
                    },
                    {
                      "arguments": [
                        {
                          "id": 5893,
                          "name": "_name",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 5881,
                          "src": "1682:5:37",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_memory_ptr",
                            "typeString": "string memory"
                          }
                        },
                        {
                          "id": 5894,
                          "name": "_symbol",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 5883,
                          "src": "1689:7:37",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_memory_ptr",
                            "typeString": "string memory"
                          }
                        }
                      ],
                      "id": 5895,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 5892,
                        "name": "ERC20",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 812,
                        "src": "1676:5:37"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "1676:21:37"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 5888,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5881,
                        "mutability": "mutable",
                        "name": "_name",
                        "nameLocation": "1535:5:37",
                        "nodeType": "VariableDeclaration",
                        "scope": 5933,
                        "src": "1521:19:37",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 5880,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "1521:6:37",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5883,
                        "mutability": "mutable",
                        "name": "_symbol",
                        "nameLocation": "1564:7:37",
                        "nodeType": "VariableDeclaration",
                        "scope": 5933,
                        "src": "1550:21:37",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 5882,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "1550:6:37",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5885,
                        "mutability": "mutable",
                        "name": "decimals_",
                        "nameLocation": "1587:9:37",
                        "nodeType": "VariableDeclaration",
                        "scope": 5933,
                        "src": "1581:15:37",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 5884,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "1581:5:37",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5887,
                        "mutability": "mutable",
                        "name": "_controller",
                        "nameLocation": "1614:11:37",
                        "nodeType": "VariableDeclaration",
                        "scope": 5933,
                        "src": "1606:19:37",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 5886,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1606:7:37",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1511:120:37"
                  },
                  "returnParameters": {
                    "id": 5896,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1698:0:37"
                  },
                  "scope": 6013,
                  "src": "1500:503:37",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    10662
                  ],
                  "body": {
                    "id": 5949,
                    "nodeType": "Block",
                    "src": "2461:38:37",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 5945,
                              "name": "_user",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5936,
                              "src": "2477:5:37",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 5946,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5938,
                              "src": "2484:7:37",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 5944,
                            "name": "_mint",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 672,
                            "src": "2471:5:37",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256)"
                            }
                          },
                          "id": 5947,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2471:21:37",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5948,
                        "nodeType": "ExpressionStatement",
                        "src": "2471:21:37"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5934,
                    "nodeType": "StructuredDocumentation",
                    "src": "2065:258:37",
                    "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": 5950,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 5942,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 5941,
                        "name": "onlyController",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5878,
                        "src": "2442:14:37"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "2442:14:37"
                    }
                  ],
                  "name": "controllerMint",
                  "nameLocation": "2337:14:37",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 5940,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2425:8:37"
                  },
                  "parameters": {
                    "id": 5939,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5936,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "2360:5:37",
                        "nodeType": "VariableDeclaration",
                        "scope": 5950,
                        "src": "2352:13:37",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 5935,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2352:7:37",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5938,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "2375:7:37",
                        "nodeType": "VariableDeclaration",
                        "scope": 5950,
                        "src": "2367:15:37",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 5937,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2367:7:37",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2351:32:37"
                  },
                  "returnParameters": {
                    "id": 5943,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2461:0:37"
                  },
                  "scope": 6013,
                  "src": "2328:171:37",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    10670
                  ],
                  "body": {
                    "id": 5966,
                    "nodeType": "Block",
                    "src": "2907:38:37",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 5962,
                              "name": "_user",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5953,
                              "src": "2923:5:37",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 5963,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5955,
                              "src": "2930:7:37",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 5961,
                            "name": "_burn",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 744,
                            "src": "2917:5:37",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256)"
                            }
                          },
                          "id": 5964,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2917:21:37",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 5965,
                        "nodeType": "ExpressionStatement",
                        "src": "2917:21:37"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5951,
                    "nodeType": "StructuredDocumentation",
                    "src": "2505:264:37",
                    "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": 5967,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 5959,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 5958,
                        "name": "onlyController",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5878,
                        "src": "2888:14:37"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "2888:14:37"
                    }
                  ],
                  "name": "controllerBurn",
                  "nameLocation": "2783:14:37",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 5957,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2871:8:37"
                  },
                  "parameters": {
                    "id": 5956,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5953,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "2806:5:37",
                        "nodeType": "VariableDeclaration",
                        "scope": 5967,
                        "src": "2798:13:37",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 5952,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2798:7:37",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5955,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "2821:7:37",
                        "nodeType": "VariableDeclaration",
                        "scope": 5967,
                        "src": "2813:15:37",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 5954,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2813:7:37",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2797:32:37"
                  },
                  "returnParameters": {
                    "id": 5960,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2907:0:37"
                  },
                  "scope": 6013,
                  "src": "2774:171:37",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    10680
                  ],
                  "body": {
                    "id": 6001,
                    "nodeType": "Block",
                    "src": "3507:162:37",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          },
                          "id": 5982,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 5980,
                            "name": "_operator",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5970,
                            "src": "3521:9:37",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "!=",
                          "rightExpression": {
                            "id": 5981,
                            "name": "_user",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 5972,
                            "src": "3534:5:37",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "3521:18:37",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 5995,
                        "nodeType": "IfStatement",
                        "src": "3517:114:37",
                        "trueBody": {
                          "id": 5994,
                          "nodeType": "Block",
                          "src": "3541:90:37",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "id": 5984,
                                    "name": "_user",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 5972,
                                    "src": "3564:5:37",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "id": 5985,
                                    "name": "_operator",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 5970,
                                    "src": "3571:9:37",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "commonType": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    },
                                    "id": 5991,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "leftExpression": {
                                      "arguments": [
                                        {
                                          "id": 5987,
                                          "name": "_user",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 5972,
                                          "src": "3592:5:37",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_address",
                                            "typeString": "address"
                                          }
                                        },
                                        {
                                          "id": 5988,
                                          "name": "_operator",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 5970,
                                          "src": "3599:9:37",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_address",
                                            "typeString": "address"
                                          }
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_address",
                                            "typeString": "address"
                                          },
                                          {
                                            "typeIdentifier": "t_address",
                                            "typeString": "address"
                                          }
                                        ],
                                        "id": 5986,
                                        "name": "allowance",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 404,
                                        "src": "3582:9:37",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_function_internal_view$_t_address_$_t_address_$returns$_t_uint256_$",
                                          "typeString": "function (address,address) view returns (uint256)"
                                        }
                                      },
                                      "id": 5989,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "functionCall",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "3582:27:37",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "nodeType": "BinaryOperation",
                                    "operator": "-",
                                    "rightExpression": {
                                      "id": 5990,
                                      "name": "_amount",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 5974,
                                      "src": "3612:7:37",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "src": "3582:37:37",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  ],
                                  "id": 5983,
                                  "name": "_approve",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 789,
                                  "src": "3555:8:37",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                                    "typeString": "function (address,address,uint256)"
                                  }
                                },
                                "id": 5992,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "3555:65:37",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 5993,
                              "nodeType": "ExpressionStatement",
                              "src": "3555:65:37"
                            }
                          ]
                        }
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 5997,
                              "name": "_user",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5972,
                              "src": "3647:5:37",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 5998,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 5974,
                              "src": "3654:7:37",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 5996,
                            "name": "_burn",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 744,
                            "src": "3641:5:37",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256)"
                            }
                          },
                          "id": 5999,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3641:21:37",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6000,
                        "nodeType": "ExpressionStatement",
                        "src": "3641:21:37"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 5968,
                    "nodeType": "StructuredDocumentation",
                    "src": "2951:401:37",
                    "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": 6002,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 5978,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 5977,
                        "name": "onlyController",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5878,
                        "src": "3492:14:37"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "3492:14:37"
                    }
                  ],
                  "name": "controllerBurnFrom",
                  "nameLocation": "3366:18:37",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 5976,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3483:8:37"
                  },
                  "parameters": {
                    "id": 5975,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 5970,
                        "mutability": "mutable",
                        "name": "_operator",
                        "nameLocation": "3402:9:37",
                        "nodeType": "VariableDeclaration",
                        "scope": 6002,
                        "src": "3394:17:37",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 5969,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3394:7:37",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5972,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "3429:5:37",
                        "nodeType": "VariableDeclaration",
                        "scope": 6002,
                        "src": "3421:13:37",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 5971,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3421:7:37",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 5974,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "3452:7:37",
                        "nodeType": "VariableDeclaration",
                        "scope": 6002,
                        "src": "3444:15:37",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 5973,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3444:7:37",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3384:81:37"
                  },
                  "returnParameters": {
                    "id": 5979,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3507:0:37"
                  },
                  "scope": 6013,
                  "src": "3357:312:37",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    341
                  ],
                  "body": {
                    "id": 6011,
                    "nodeType": "Block",
                    "src": "3933:33:37",
                    "statements": [
                      {
                        "expression": {
                          "id": 6009,
                          "name": "_decimals",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 5851,
                          "src": "3950:9:37",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "functionReturnParameters": 6008,
                        "id": 6010,
                        "nodeType": "Return",
                        "src": "3943:16:37"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6003,
                    "nodeType": "StructuredDocumentation",
                    "src": "3675:188:37",
                    "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": 6012,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "decimals",
                  "nameLocation": "3877:8:37",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 6005,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3908:8:37"
                  },
                  "parameters": {
                    "id": 6004,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3885:2:37"
                  },
                  "returnParameters": {
                    "id": 6008,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6007,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6012,
                        "src": "3926:5:37",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 6006,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "3926:5:37",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3925:7:37"
                  },
                  "scope": 6013,
                  "src": "3868:98:37",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "public"
                }
              ],
              "scope": 6014,
              "src": "342:3626:37",
              "usedErrors": []
            }
          ],
          "src": "37:3932:37"
        },
        "id": 37
      },
      "@pooltogether/v4-core/contracts/DrawBeacon.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/DrawBeacon.sol",
          "exportedSymbols": {
            "Address": [
              1775
            ],
            "DrawBeacon": [
              6892
            ],
            "IDrawBeacon": [
              10853
            ],
            "IDrawBuffer": [
              10930
            ],
            "IERC20": [
              890
            ],
            "Ownable": [
              5355
            ],
            "RNGInterface": [
              5835
            ],
            "SafeCast": [
              3225
            ],
            "SafeERC20": [
              1344
            ]
          },
          "id": 6893,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 6015,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:38"
            },
            {
              "absolutePath": "@openzeppelin/contracts/utils/math/SafeCast.sol",
              "file": "@openzeppelin/contracts/utils/math/SafeCast.sol",
              "id": 6016,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 6893,
              "sourceUnit": 3226,
              "src": "61:57:38",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "id": 6017,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 6893,
              "sourceUnit": 891,
              "src": "119:56:38",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol",
              "id": 6018,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 6893,
              "sourceUnit": 1345,
              "src": "176:65:38",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol",
              "file": "@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol",
              "id": 6019,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 6893,
              "sourceUnit": 5836,
              "src": "243:77:38",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/owner-manager-contracts/contracts/Ownable.sol",
              "file": "@pooltogether/owner-manager-contracts/contracts/Ownable.sol",
              "id": 6020,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 6893,
              "sourceUnit": 5356,
              "src": "321:69:38",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol",
              "file": "./interfaces/IDrawBeacon.sol",
              "id": 6021,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 6893,
              "sourceUnit": 10854,
              "src": "392:38:38",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol",
              "file": "./interfaces/IDrawBuffer.sol",
              "id": 6022,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 6893,
              "sourceUnit": 10931,
              "src": "431:38:38",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 6024,
                    "name": "IDrawBeacon",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 10853,
                    "src": "1154:11:38"
                  },
                  "id": 6025,
                  "nodeType": "InheritanceSpecifier",
                  "src": "1154:11:38"
                },
                {
                  "baseName": {
                    "id": 6026,
                    "name": "Ownable",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 5355,
                    "src": "1167:7:38"
                  },
                  "id": 6027,
                  "nodeType": "InheritanceSpecifier",
                  "src": "1167:7:38"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 6023,
                "nodeType": "StructuredDocumentation",
                "src": "472:658:38",
                "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": 6892,
              "linearizedBaseContracts": [
                6892,
                5355,
                10853
              ],
              "name": "DrawBeacon",
              "nameLocation": "1140:10:38",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "id": 6030,
                  "libraryName": {
                    "id": 6028,
                    "name": "SafeCast",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 3225,
                    "src": "1187:8:38"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "1181:27:38",
                  "typeName": {
                    "id": 6029,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "1200:7:38",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  }
                },
                {
                  "id": 6034,
                  "libraryName": {
                    "id": 6031,
                    "name": "SafeERC20",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 1344,
                    "src": "1219:9:38"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "1213:27:38",
                  "typeName": {
                    "id": 6033,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 6032,
                      "name": "IERC20",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 890,
                      "src": "1233:6:38"
                    },
                    "referencedDeclaration": 890,
                    "src": "1233:6:38",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IERC20_$890",
                      "typeString": "contract IERC20"
                    }
                  }
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 6035,
                    "nodeType": "StructuredDocumentation",
                    "src": "1293:34:38",
                    "text": "@notice RNG contract interface"
                  },
                  "id": 6038,
                  "mutability": "mutable",
                  "name": "rng",
                  "nameLocation": "1354:3:38",
                  "nodeType": "VariableDeclaration",
                  "scope": 6892,
                  "src": "1332:25:38",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_RNGInterface_$5835",
                    "typeString": "contract RNGInterface"
                  },
                  "typeName": {
                    "id": 6037,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 6036,
                      "name": "RNGInterface",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 5835,
                      "src": "1332:12:38"
                    },
                    "referencedDeclaration": 5835,
                    "src": "1332:12:38",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_RNGInterface_$5835",
                      "typeString": "contract RNGInterface"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 6039,
                    "nodeType": "StructuredDocumentation",
                    "src": "1364:31:38",
                    "text": "@notice Current RNG Request"
                  },
                  "id": 6042,
                  "mutability": "mutable",
                  "name": "rngRequest",
                  "nameLocation": "1420:10:38",
                  "nodeType": "VariableDeclaration",
                  "scope": 6892,
                  "src": "1400:30:38",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_struct$_RngRequest_$6065_storage",
                    "typeString": "struct DrawBeacon.RngRequest"
                  },
                  "typeName": {
                    "id": 6041,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 6040,
                      "name": "RngRequest",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 6065,
                      "src": "1400:10:38"
                    },
                    "referencedDeclaration": 6065,
                    "src": "1400:10:38",
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_RngRequest_$6065_storage_ptr",
                      "typeString": "struct DrawBeacon.RngRequest"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 6043,
                    "nodeType": "StructuredDocumentation",
                    "src": "1437:30:38",
                    "text": "@notice DrawBuffer address"
                  },
                  "id": 6046,
                  "mutability": "mutable",
                  "name": "drawBuffer",
                  "nameLocation": "1493:10:38",
                  "nodeType": "VariableDeclaration",
                  "scope": 6892,
                  "src": "1472:31:38",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                    "typeString": "contract IDrawBuffer"
                  },
                  "typeName": {
                    "id": 6045,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 6044,
                      "name": "IDrawBuffer",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 10930,
                      "src": "1472:11:38"
                    },
                    "referencedDeclaration": 10930,
                    "src": "1472:11:38",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                      "typeString": "contract IDrawBuffer"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 6047,
                    "nodeType": "StructuredDocumentation",
                    "src": "1510:166:38",
                    "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": 6049,
                  "mutability": "mutable",
                  "name": "rngTimeout",
                  "nameLocation": "1697:10:38",
                  "nodeType": "VariableDeclaration",
                  "scope": 6892,
                  "src": "1681:26:38",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint32",
                    "typeString": "uint32"
                  },
                  "typeName": {
                    "id": 6048,
                    "name": "uint32",
                    "nodeType": "ElementaryTypeName",
                    "src": "1681:6:38",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint32",
                      "typeString": "uint32"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 6050,
                    "nodeType": "StructuredDocumentation",
                    "src": "1714:49:38",
                    "text": "@notice Seconds between beacon period request"
                  },
                  "id": 6052,
                  "mutability": "mutable",
                  "name": "beaconPeriodSeconds",
                  "nameLocation": "1784:19:38",
                  "nodeType": "VariableDeclaration",
                  "scope": 6892,
                  "src": "1768:35:38",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint32",
                    "typeString": "uint32"
                  },
                  "typeName": {
                    "id": 6051,
                    "name": "uint32",
                    "nodeType": "ElementaryTypeName",
                    "src": "1768:6:38",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint32",
                      "typeString": "uint32"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 6053,
                    "nodeType": "StructuredDocumentation",
                    "src": "1810:56:38",
                    "text": "@notice Epoch timestamp when beacon period can start"
                  },
                  "id": 6055,
                  "mutability": "mutable",
                  "name": "beaconPeriodStartedAt",
                  "nameLocation": "1887:21:38",
                  "nodeType": "VariableDeclaration",
                  "scope": 6892,
                  "src": "1871:37:38",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint64",
                    "typeString": "uint64"
                  },
                  "typeName": {
                    "id": 6054,
                    "name": "uint64",
                    "nodeType": "ElementaryTypeName",
                    "src": "1871:6:38",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint64",
                      "typeString": "uint64"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 6056,
                    "nodeType": "StructuredDocumentation",
                    "src": "1915:161:38",
                    "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": 6058,
                  "mutability": "mutable",
                  "name": "nextDrawId",
                  "nameLocation": "2097:10:38",
                  "nodeType": "VariableDeclaration",
                  "scope": 6892,
                  "src": "2081:26:38",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint32",
                    "typeString": "uint32"
                  },
                  "typeName": {
                    "id": 6057,
                    "name": "uint32",
                    "nodeType": "ElementaryTypeName",
                    "src": "2081:6:38",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint32",
                      "typeString": "uint32"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "canonicalName": "DrawBeacon.RngRequest",
                  "id": 6065,
                  "members": [
                    {
                      "constant": false,
                      "id": 6060,
                      "mutability": "mutable",
                      "name": "id",
                      "nameLocation": "2401:2:38",
                      "nodeType": "VariableDeclaration",
                      "scope": 6065,
                      "src": "2394:9:38",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint32",
                        "typeString": "uint32"
                      },
                      "typeName": {
                        "id": 6059,
                        "name": "uint32",
                        "nodeType": "ElementaryTypeName",
                        "src": "2394:6:38",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 6062,
                      "mutability": "mutable",
                      "name": "lockBlock",
                      "nameLocation": "2420:9:38",
                      "nodeType": "VariableDeclaration",
                      "scope": 6065,
                      "src": "2413:16:38",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint32",
                        "typeString": "uint32"
                      },
                      "typeName": {
                        "id": 6061,
                        "name": "uint32",
                        "nodeType": "ElementaryTypeName",
                        "src": "2413:6:38",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 6064,
                      "mutability": "mutable",
                      "name": "requestedAt",
                      "nameLocation": "2446:11:38",
                      "nodeType": "VariableDeclaration",
                      "scope": 6065,
                      "src": "2439:18:38",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint64",
                        "typeString": "uint64"
                      },
                      "typeName": {
                        "id": 6063,
                        "name": "uint64",
                        "nodeType": "ElementaryTypeName",
                        "src": "2439:6:38",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        }
                      },
                      "visibility": "internal"
                    }
                  ],
                  "name": "RngRequest",
                  "nameLocation": "2373:10:38",
                  "nodeType": "StructDefinition",
                  "scope": 6892,
                  "src": "2366:98:38",
                  "visibility": "public"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 6066,
                    "nodeType": "StructuredDocumentation",
                    "src": "2514:232:38",
                    "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": 6072,
                  "name": "Deployed",
                  "nameLocation": "2757:8:38",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 6071,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6068,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "nextDrawId",
                        "nameLocation": "2782:10:38",
                        "nodeType": "VariableDeclaration",
                        "scope": 6072,
                        "src": "2775:17:38",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 6067,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2775:6:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 6070,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "beaconPeriodStartedAt",
                        "nameLocation": "2809:21:38",
                        "nodeType": "VariableDeclaration",
                        "scope": 6072,
                        "src": "2802:28:38",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 6069,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "2802:6:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2765:71:38"
                  },
                  "src": "2751:86:38"
                },
                {
                  "body": {
                    "id": 6078,
                    "nodeType": "Block",
                    "src": "2923:52:38",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 6074,
                            "name": "_requireDrawNotStarted",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6795,
                            "src": "2933:22:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$__$returns$__$",
                              "typeString": "function () view"
                            }
                          },
                          "id": 6075,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2933:24:38",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6076,
                        "nodeType": "ExpressionStatement",
                        "src": "2933:24:38"
                      },
                      {
                        "id": 6077,
                        "nodeType": "PlaceholderStatement",
                        "src": "2967:1:38"
                      }
                    ]
                  },
                  "id": 6079,
                  "name": "requireDrawNotStarted",
                  "nameLocation": "2899:21:38",
                  "nodeType": "ModifierDefinition",
                  "parameters": {
                    "id": 6073,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2920:2:38"
                  },
                  "src": "2890:85:38",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 6095,
                    "nodeType": "Block",
                    "src": "3012:167:38",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "id": 6082,
                                "name": "_isBeaconPeriodOver",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 6772,
                                "src": "3030:19:38",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$__$returns$_t_bool_$",
                                  "typeString": "function () view returns (bool)"
                                }
                              },
                              "id": 6083,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "3030:21:38",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "44726177426561636f6e2f626561636f6e2d706572696f642d6e6f742d6f766572",
                              "id": 6084,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "3053:35:38",
                              "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": 6081,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "3022:7:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 6085,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3022:67:38",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6086,
                        "nodeType": "ExpressionStatement",
                        "src": "3022:67:38"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 6090,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "nodeType": "UnaryOperation",
                              "operator": "!",
                              "prefix": true,
                              "src": "3107:17:38",
                              "subExpression": {
                                "arguments": [],
                                "expression": {
                                  "argumentTypes": [],
                                  "id": 6088,
                                  "name": "isRngRequested",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 6223,
                                  "src": "3108:14:38",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_view$__$returns$_t_bool_$",
                                    "typeString": "function () view returns (bool)"
                                  }
                                },
                                "id": 6089,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "3108:16:38",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "44726177426561636f6e2f726e672d616c72656164792d726571756573746564",
                              "id": 6091,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "3126:34:38",
                              "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": 6087,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "3099:7:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 6092,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3099:62:38",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6093,
                        "nodeType": "ExpressionStatement",
                        "src": "3099:62:38"
                      },
                      {
                        "id": 6094,
                        "nodeType": "PlaceholderStatement",
                        "src": "3171:1:38"
                      }
                    ]
                  },
                  "id": 6096,
                  "name": "requireCanStartDraw",
                  "nameLocation": "2990:19:38",
                  "nodeType": "ModifierDefinition",
                  "parameters": {
                    "id": 6080,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3009:2:38"
                  },
                  "src": "2981:198:38",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 6111,
                    "nodeType": "Block",
                    "src": "3225:151:38",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "id": 6099,
                                "name": "isRngRequested",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 6223,
                                "src": "3243:14:38",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$__$returns$_t_bool_$",
                                  "typeString": "function () view returns (bool)"
                                }
                              },
                              "id": 6100,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "3243:16:38",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "44726177426561636f6e2f726e672d6e6f742d726571756573746564",
                              "id": 6101,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "3261:30:38",
                              "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": 6098,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "3235:7:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 6102,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3235:57:38",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6103,
                        "nodeType": "ExpressionStatement",
                        "src": "3235:57:38"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "id": 6105,
                                "name": "isRngCompleted",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 6210,
                                "src": "3310:14:38",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$__$returns$_t_bool_$",
                                  "typeString": "function () view returns (bool)"
                                }
                              },
                              "id": 6106,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "3310:16:38",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "44726177426561636f6e2f726e672d6e6f742d636f6d706c657465",
                              "id": 6107,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "3328:29:38",
                              "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": 6104,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "3302:7:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 6108,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3302:56:38",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6109,
                        "nodeType": "ExpressionStatement",
                        "src": "3302:56:38"
                      },
                      {
                        "id": 6110,
                        "nodeType": "PlaceholderStatement",
                        "src": "3368:1:38"
                      }
                    ]
                  },
                  "id": 6112,
                  "name": "requireCanCompleteRngRequest",
                  "nameLocation": "3194:28:38",
                  "nodeType": "ModifierDefinition",
                  "parameters": {
                    "id": 6097,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3222:2:38"
                  },
                  "src": "3185:191:38",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 6195,
                    "nodeType": "Block",
                    "src": "4169:595:38",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              },
                              "id": 6138,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 6136,
                                "name": "_beaconPeriodStart",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 6125,
                                "src": "4187:18:38",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">",
                              "rightExpression": {
                                "hexValue": "30",
                                "id": 6137,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "4208:1:38",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "src": "4187:22:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "44726177426561636f6e2f626561636f6e2d706572696f642d677265617465722d7468616e2d7a65726f",
                              "id": 6139,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "4211:44:38",
                              "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": 6135,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "4179:7:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 6140,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4179:77:38",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6141,
                        "nodeType": "ExpressionStatement",
                        "src": "4179:77:38"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 6151,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 6145,
                                    "name": "_rng",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 6121,
                                    "src": "4282:4:38",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_RNGInterface_$5835",
                                      "typeString": "contract RNGInterface"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_RNGInterface_$5835",
                                      "typeString": "contract RNGInterface"
                                    }
                                  ],
                                  "id": 6144,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "4274:7:38",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 6143,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "4274:7:38",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 6146,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "4274:13:38",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 6149,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "4299:1:38",
                                    "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": 6148,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "4291:7:38",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 6147,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "4291:7:38",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 6150,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "4291:10:38",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "4274:27:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "44726177426561636f6e2f726e672d6e6f742d7a65726f",
                              "id": 6152,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "4303:25:38",
                              "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": 6142,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "4266:7:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 6153,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4266:63:38",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6154,
                        "nodeType": "ExpressionStatement",
                        "src": "4266:63:38"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              "id": 6158,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 6156,
                                "name": "_nextDrawId",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 6123,
                                "src": "4347:11:38",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">=",
                              "rightExpression": {
                                "hexValue": "31",
                                "id": 6157,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "4362:1:38",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_1_by_1",
                                  "typeString": "int_const 1"
                                },
                                "value": "1"
                              },
                              "src": "4347:16:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "44726177426561636f6e2f6e6578742d647261772d69642d6774652d6f6e65",
                              "id": 6159,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "4365:33:38",
                              "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": 6155,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "4339:7:38",
                            "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": "4339:60:38",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6161,
                        "nodeType": "ExpressionStatement",
                        "src": "4339:60:38"
                      },
                      {
                        "expression": {
                          "id": 6164,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 6162,
                            "name": "beaconPeriodStartedAt",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6055,
                            "src": "4410:21:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 6163,
                            "name": "_beaconPeriodStart",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6125,
                            "src": "4434:18:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "src": "4410:42:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "id": 6165,
                        "nodeType": "ExpressionStatement",
                        "src": "4410:42:38"
                      },
                      {
                        "expression": {
                          "id": 6168,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 6166,
                            "name": "nextDrawId",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6058,
                            "src": "4462:10:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 6167,
                            "name": "_nextDrawId",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6123,
                            "src": "4475:11:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "4462:24:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "id": 6169,
                        "nodeType": "ExpressionStatement",
                        "src": "4462:24:38"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 6171,
                              "name": "_beaconPeriodSeconds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6127,
                              "src": "4521:20:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "id": 6170,
                            "name": "_setBeaconPeriodSeconds",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6869,
                            "src": "4497:23:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_uint32_$returns$__$",
                              "typeString": "function (uint32)"
                            }
                          },
                          "id": 6172,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4497:45:38",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6173,
                        "nodeType": "ExpressionStatement",
                        "src": "4497:45:38"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 6175,
                              "name": "_drawBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6118,
                              "src": "4567:11:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                                "typeString": "contract IDrawBuffer"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                                "typeString": "contract IDrawBuffer"
                              }
                            ],
                            "id": 6174,
                            "name": "_setDrawBuffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6847,
                            "src": "4552:14:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IDrawBuffer_$10930_$returns$_t_contract$_IDrawBuffer_$10930_$",
                              "typeString": "function (contract IDrawBuffer) returns (contract IDrawBuffer)"
                            }
                          },
                          "id": 6176,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4552:27:38",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "id": 6177,
                        "nodeType": "ExpressionStatement",
                        "src": "4552:27:38"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 6179,
                              "name": "_rng",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6121,
                              "src": "4604:4:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_RNGInterface_$5835",
                                "typeString": "contract RNGInterface"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_RNGInterface_$5835",
                                "typeString": "contract RNGInterface"
                              }
                            ],
                            "id": 6178,
                            "name": "_setRngService",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6678,
                            "src": "4589:14:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_RNGInterface_$5835_$returns$__$",
                              "typeString": "function (contract RNGInterface)"
                            }
                          },
                          "id": 6180,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4589:20:38",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6181,
                        "nodeType": "ExpressionStatement",
                        "src": "4589:20:38"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 6183,
                              "name": "_rngTimeout",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6129,
                              "src": "4634:11:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "id": 6182,
                            "name": "_setRngTimeout",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6891,
                            "src": "4619:14:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_uint32_$returns$__$",
                              "typeString": "function (uint32)"
                            }
                          },
                          "id": 6184,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4619:27:38",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6185,
                        "nodeType": "ExpressionStatement",
                        "src": "4619:27:38"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 6187,
                              "name": "_nextDrawId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6123,
                              "src": "4671:11:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 6188,
                              "name": "_beaconPeriodStart",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6125,
                              "src": "4684:18:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            ],
                            "id": 6186,
                            "name": "Deployed",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6072,
                            "src": "4662:8:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint32_$_t_uint64_$returns$__$",
                              "typeString": "function (uint32,uint64)"
                            }
                          },
                          "id": 6189,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4662:41:38",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6190,
                        "nodeType": "EmitStatement",
                        "src": "4657:46:38"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 6192,
                              "name": "_beaconPeriodStart",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6125,
                              "src": "4738:18:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            ],
                            "id": 6191,
                            "name": "BeaconPeriodStarted",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10708,
                            "src": "4718:19:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint64_$returns$__$",
                              "typeString": "function (uint64)"
                            }
                          },
                          "id": 6193,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4718:39:38",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6194,
                        "nodeType": "EmitStatement",
                        "src": "4713:44:38"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6113,
                    "nodeType": "StructuredDocumentation",
                    "src": "3431:487:38",
                    "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": 6196,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 6132,
                          "name": "_owner",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 6115,
                          "src": "4161:6:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        }
                      ],
                      "id": 6133,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 6131,
                        "name": "Ownable",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5355,
                        "src": "4153:7:38"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "4153:15:38"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 6130,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6115,
                        "mutability": "mutable",
                        "name": "_owner",
                        "nameLocation": "3952:6:38",
                        "nodeType": "VariableDeclaration",
                        "scope": 6196,
                        "src": "3944:14:38",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 6114,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3944:7:38",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 6118,
                        "mutability": "mutable",
                        "name": "_drawBuffer",
                        "nameLocation": "3980:11:38",
                        "nodeType": "VariableDeclaration",
                        "scope": 6196,
                        "src": "3968:23:38",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                          "typeString": "contract IDrawBuffer"
                        },
                        "typeName": {
                          "id": 6117,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 6116,
                            "name": "IDrawBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 10930,
                            "src": "3968:11:38"
                          },
                          "referencedDeclaration": 10930,
                          "src": "3968:11:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 6121,
                        "mutability": "mutable",
                        "name": "_rng",
                        "nameLocation": "4014:4:38",
                        "nodeType": "VariableDeclaration",
                        "scope": 6196,
                        "src": "4001:17:38",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_RNGInterface_$5835",
                          "typeString": "contract RNGInterface"
                        },
                        "typeName": {
                          "id": 6120,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 6119,
                            "name": "RNGInterface",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 5835,
                            "src": "4001:12:38"
                          },
                          "referencedDeclaration": 5835,
                          "src": "4001:12:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_RNGInterface_$5835",
                            "typeString": "contract RNGInterface"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 6123,
                        "mutability": "mutable",
                        "name": "_nextDrawId",
                        "nameLocation": "4035:11:38",
                        "nodeType": "VariableDeclaration",
                        "scope": 6196,
                        "src": "4028:18:38",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 6122,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4028:6:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 6125,
                        "mutability": "mutable",
                        "name": "_beaconPeriodStart",
                        "nameLocation": "4063:18:38",
                        "nodeType": "VariableDeclaration",
                        "scope": 6196,
                        "src": "4056:25:38",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 6124,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "4056:6:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 6127,
                        "mutability": "mutable",
                        "name": "_beaconPeriodSeconds",
                        "nameLocation": "4098:20:38",
                        "nodeType": "VariableDeclaration",
                        "scope": 6196,
                        "src": "4091:27:38",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 6126,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4091:6:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 6129,
                        "mutability": "mutable",
                        "name": "_rngTimeout",
                        "nameLocation": "4135:11:38",
                        "nodeType": "VariableDeclaration",
                        "scope": 6196,
                        "src": "4128:18:38",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 6128,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4128:6:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3934:218:38"
                  },
                  "returnParameters": {
                    "id": 6134,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4169:0:38"
                  },
                  "scope": 6892,
                  "src": "3923:841:38",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    10807
                  ],
                  "body": {
                    "id": 6209,
                    "nodeType": "Block",
                    "src": "5053:60:38",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 6205,
                                "name": "rngRequest",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 6042,
                                "src": "5092:10:38",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_RngRequest_$6065_storage",
                                  "typeString": "struct DrawBeacon.RngRequest storage ref"
                                }
                              },
                              "id": 6206,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "id",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 6060,
                              "src": "5092:13:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 6203,
                              "name": "rng",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6038,
                              "src": "5070:3:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_RNGInterface_$5835",
                                "typeString": "contract RNGInterface"
                              }
                            },
                            "id": 6204,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "isRequestComplete",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 5826,
                            "src": "5070:21:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$_t_uint32_$returns$_t_bool_$",
                              "typeString": "function (uint32) view external returns (bool)"
                            }
                          },
                          "id": 6207,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5070:36:38",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 6202,
                        "id": 6208,
                        "nodeType": "Return",
                        "src": "5063:43:38"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6197,
                    "nodeType": "StructuredDocumentation",
                    "src": "4824:162:38",
                    "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": 6210,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "isRngCompleted",
                  "nameLocation": "5000:14:38",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 6199,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "5029:8:38"
                  },
                  "parameters": {
                    "id": 6198,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "5014:2:38"
                  },
                  "returnParameters": {
                    "id": 6202,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6201,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6210,
                        "src": "5047:4:38",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 6200,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "5047:4:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5046:6:38"
                  },
                  "scope": 6892,
                  "src": "4991:122:38",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    10813
                  ],
                  "body": {
                    "id": 6222,
                    "nodeType": "Block",
                    "src": "5339:42:38",
                    "statements": [
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          },
                          "id": 6220,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 6217,
                              "name": "rngRequest",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6042,
                              "src": "5356:10:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_RngRequest_$6065_storage",
                                "typeString": "struct DrawBeacon.RngRequest storage ref"
                              }
                            },
                            "id": 6218,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "id",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 6060,
                            "src": "5356:13:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "!=",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 6219,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "5373:1:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "5356:18:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 6216,
                        "id": 6221,
                        "nodeType": "Return",
                        "src": "5349:25:38"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6211,
                    "nodeType": "StructuredDocumentation",
                    "src": "5119:153:38",
                    "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": 6223,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "isRngRequested",
                  "nameLocation": "5286:14:38",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 6213,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "5315:8:38"
                  },
                  "parameters": {
                    "id": 6212,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "5300:2:38"
                  },
                  "returnParameters": {
                    "id": 6216,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6215,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6223,
                        "src": "5333:4:38",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 6214,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "5333:4:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5332:6:38"
                  },
                  "scope": 6892,
                  "src": "5277:104:38",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    10819
                  ],
                  "body": {
                    "id": 6247,
                    "nodeType": "Block",
                    "src": "5615:176:38",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          },
                          "id": 6233,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 6230,
                              "name": "rngRequest",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6042,
                              "src": "5629:10:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_RngRequest_$6065_storage",
                                "typeString": "struct DrawBeacon.RngRequest storage ref"
                              }
                            },
                            "id": 6231,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "requestedAt",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 6064,
                            "src": "5629:22:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 6232,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "5655:1:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "5629:27:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "falseBody": {
                          "id": 6245,
                          "nodeType": "Block",
                          "src": "5701:84:38",
                          "statements": [
                            {
                              "expression": {
                                "commonType": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                },
                                "id": 6243,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "commonType": {
                                    "typeIdentifier": "t_uint64",
                                    "typeString": "uint64"
                                  },
                                  "id": 6240,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "id": 6237,
                                    "name": "rngTimeout",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 6049,
                                    "src": "5722:10:38",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": "+",
                                  "rightExpression": {
                                    "expression": {
                                      "id": 6238,
                                      "name": "rngRequest",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 6042,
                                      "src": "5735:10:38",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_RngRequest_$6065_storage",
                                        "typeString": "struct DrawBeacon.RngRequest storage ref"
                                      }
                                    },
                                    "id": 6239,
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "requestedAt",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 6064,
                                    "src": "5735:22:38",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint64",
                                      "typeString": "uint64"
                                    }
                                  },
                                  "src": "5722:35:38",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint64",
                                    "typeString": "uint64"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "<",
                                "rightExpression": {
                                  "arguments": [],
                                  "expression": {
                                    "argumentTypes": [],
                                    "id": 6241,
                                    "name": "_currentTime",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 6720,
                                    "src": "5760:12:38",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_view$__$returns$_t_uint64_$",
                                      "typeString": "function () view returns (uint64)"
                                    }
                                  },
                                  "id": 6242,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "5760:14:38",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint64",
                                    "typeString": "uint64"
                                  }
                                },
                                "src": "5722:52:38",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "functionReturnParameters": 6229,
                              "id": 6244,
                              "nodeType": "Return",
                              "src": "5715:59:38"
                            }
                          ]
                        },
                        "id": 6246,
                        "nodeType": "IfStatement",
                        "src": "5625:160:38",
                        "trueBody": {
                          "id": 6236,
                          "nodeType": "Block",
                          "src": "5658:37:38",
                          "statements": [
                            {
                              "expression": {
                                "hexValue": "66616c7365",
                                "id": 6234,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "bool",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "5679:5:38",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                },
                                "value": "false"
                              },
                              "functionReturnParameters": 6229,
                              "id": 6235,
                              "nodeType": "Return",
                              "src": "5672:12:38"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6224,
                    "nodeType": "StructuredDocumentation",
                    "src": "5387:162:38",
                    "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": 6248,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "isRngTimedOut",
                  "nameLocation": "5563:13:38",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 6226,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "5591:8:38"
                  },
                  "parameters": {
                    "id": 6225,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "5576:2:38"
                  },
                  "returnParameters": {
                    "id": 6229,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6228,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6248,
                        "src": "5609:4:38",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 6227,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "5609:4:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5608:6:38"
                  },
                  "scope": 6892,
                  "src": "5554:237:38",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    10761
                  ],
                  "body": {
                    "id": 6262,
                    "nodeType": "Block",
                    "src": "5947:66:38",
                    "statements": [
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "id": 6260,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "arguments": [],
                            "expression": {
                              "argumentTypes": [],
                              "id": 6255,
                              "name": "_isBeaconPeriodOver",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6772,
                              "src": "5964:19:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_view$__$returns$_t_bool_$",
                                "typeString": "function () view returns (bool)"
                              }
                            },
                            "id": 6256,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "5964:21:38",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "&&",
                          "rightExpression": {
                            "id": 6259,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "!",
                            "prefix": true,
                            "src": "5989:17:38",
                            "subExpression": {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "id": 6257,
                                "name": "isRngRequested",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 6223,
                                "src": "5990:14:38",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$__$returns$_t_bool_$",
                                  "typeString": "function () view returns (bool)"
                                }
                              },
                              "id": 6258,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "5990:16:38",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "src": "5964:42:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 6254,
                        "id": 6261,
                        "nodeType": "Return",
                        "src": "5957:49:38"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6249,
                    "nodeType": "StructuredDocumentation",
                    "src": "5853:27:38",
                    "text": "@inheritdoc IDrawBeacon"
                  },
                  "functionSelector": "0996f6e1",
                  "id": 6263,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "canStartDraw",
                  "nameLocation": "5894:12:38",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 6251,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "5923:8:38"
                  },
                  "parameters": {
                    "id": 6250,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "5906:2:38"
                  },
                  "returnParameters": {
                    "id": 6254,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6253,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6263,
                        "src": "5941:4:38",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 6252,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "5941:4:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5940:6:38"
                  },
                  "scope": 6892,
                  "src": "5885:128:38",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    10767
                  ],
                  "body": {
                    "id": 6276,
                    "nodeType": "Block",
                    "src": "6116:60:38",
                    "statements": [
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "id": 6274,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "arguments": [],
                            "expression": {
                              "argumentTypes": [],
                              "id": 6270,
                              "name": "isRngRequested",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6223,
                              "src": "6133:14:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_view$__$returns$_t_bool_$",
                                "typeString": "function () view returns (bool)"
                              }
                            },
                            "id": 6271,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "6133:16:38",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "&&",
                          "rightExpression": {
                            "arguments": [],
                            "expression": {
                              "argumentTypes": [],
                              "id": 6272,
                              "name": "isRngCompleted",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6210,
                              "src": "6153:14:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_view$__$returns$_t_bool_$",
                                "typeString": "function () view returns (bool)"
                              }
                            },
                            "id": 6273,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "6153:16:38",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "src": "6133:36:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 6269,
                        "id": 6275,
                        "nodeType": "Return",
                        "src": "6126:43:38"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6264,
                    "nodeType": "StructuredDocumentation",
                    "src": "6019:27:38",
                    "text": "@inheritdoc IDrawBeacon"
                  },
                  "functionSelector": "e4a75bb8",
                  "id": 6277,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "canCompleteDraw",
                  "nameLocation": "6060:15:38",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 6266,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "6092:8:38"
                  },
                  "parameters": {
                    "id": 6265,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "6075:2:38"
                  },
                  "returnParameters": {
                    "id": 6269,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6268,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6277,
                        "src": "6110:4:38",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 6267,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "6110:4:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6109:6:38"
                  },
                  "scope": 6892,
                  "src": "6051:125:38",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 6290,
                    "nodeType": "Block",
                    "src": "6447:193:38",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 6284,
                              "name": "beaconPeriodStartedAt",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6055,
                              "src": "6529:21:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            },
                            {
                              "id": 6285,
                              "name": "beaconPeriodSeconds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6052,
                              "src": "6568:19:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "id": 6286,
                                "name": "_currentTime",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 6720,
                                "src": "6605:12:38",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$__$returns$_t_uint64_$",
                                  "typeString": "function () view returns (uint64)"
                                }
                              },
                              "id": 6287,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "6605:14:38",
                              "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": 6283,
                            "name": "_calculateNextBeaconPeriodStartTime",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6707,
                            "src": "6476:35:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint64_$_t_uint32_$_t_uint64_$returns$_t_uint64_$",
                              "typeString": "function (uint64,uint32,uint64) pure returns (uint64)"
                            }
                          },
                          "id": 6288,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6476:157:38",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "functionReturnParameters": 6282,
                        "id": 6289,
                        "nodeType": "Return",
                        "src": "6457:176:38"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6278,
                    "nodeType": "StructuredDocumentation",
                    "src": "6182:168:38",
                    "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": 6291,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "calculateNextBeaconPeriodStartTimeFromCurrentTime",
                  "nameLocation": "6364:49:38",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 6279,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "6413:2:38"
                  },
                  "returnParameters": {
                    "id": 6282,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6281,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6291,
                        "src": "6439:6:38",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 6280,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "6439:6:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6438:8:38"
                  },
                  "scope": 6892,
                  "src": "6355:285:38",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    10775
                  ],
                  "body": {
                    "id": 6306,
                    "nodeType": "Block",
                    "src": "6812:184:38",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 6301,
                              "name": "beaconPeriodStartedAt",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6055,
                              "src": "6894:21:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            },
                            {
                              "id": 6302,
                              "name": "beaconPeriodSeconds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6052,
                              "src": "6933:19:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 6303,
                              "name": "_time",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6294,
                              "src": "6970:5:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            ],
                            "id": 6300,
                            "name": "_calculateNextBeaconPeriodStartTime",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6707,
                            "src": "6841:35:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint64_$_t_uint32_$_t_uint64_$returns$_t_uint64_$",
                              "typeString": "function (uint64,uint32,uint64) pure returns (uint64)"
                            }
                          },
                          "id": 6304,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6841:148:38",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "functionReturnParameters": 6299,
                        "id": 6305,
                        "nodeType": "Return",
                        "src": "6822:167:38"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6292,
                    "nodeType": "StructuredDocumentation",
                    "src": "6646:27:38",
                    "text": "@inheritdoc IDrawBeacon"
                  },
                  "functionSelector": "a3ae35ab",
                  "id": 6307,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "calculateNextBeaconPeriodStartTime",
                  "nameLocation": "6687:34:38",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 6296,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "6774:8:38"
                  },
                  "parameters": {
                    "id": 6295,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6294,
                        "mutability": "mutable",
                        "name": "_time",
                        "nameLocation": "6729:5:38",
                        "nodeType": "VariableDeclaration",
                        "scope": 6307,
                        "src": "6722:12:38",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 6293,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "6722:6:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6721:14:38"
                  },
                  "returnParameters": {
                    "id": 6299,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6298,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6307,
                        "src": "6800:6:38",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 6297,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "6800:6:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6799:8:38"
                  },
                  "scope": 6892,
                  "src": "6678:318:38",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    10779
                  ],
                  "body": {
                    "id": 6336,
                    "nodeType": "Block",
                    "src": "7074:240:38",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "id": 6313,
                                "name": "isRngTimedOut",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 6248,
                                "src": "7092:13:38",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$__$returns$_t_bool_$",
                                  "typeString": "function () view returns (bool)"
                                }
                              },
                              "id": 6314,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "7092:15:38",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "44726177426561636f6e2f726e672d6e6f742d74696d65646f7574",
                              "id": 6315,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "7109:29:38",
                              "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": 6312,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "7084:7:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 6316,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7084:55:38",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6317,
                        "nodeType": "ExpressionStatement",
                        "src": "7084:55:38"
                      },
                      {
                        "assignments": [
                          6319
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6319,
                            "mutability": "mutable",
                            "name": "requestId",
                            "nameLocation": "7156:9:38",
                            "nodeType": "VariableDeclaration",
                            "scope": 6336,
                            "src": "7149:16:38",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "typeName": {
                              "id": 6318,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "7149:6:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6322,
                        "initialValue": {
                          "expression": {
                            "id": 6320,
                            "name": "rngRequest",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6042,
                            "src": "7168:10:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_RngRequest_$6065_storage",
                              "typeString": "struct DrawBeacon.RngRequest storage ref"
                            }
                          },
                          "id": 6321,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "id",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 6060,
                          "src": "7168:13:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7149:32:38"
                      },
                      {
                        "assignments": [
                          6324
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6324,
                            "mutability": "mutable",
                            "name": "lockBlock",
                            "nameLocation": "7198:9:38",
                            "nodeType": "VariableDeclaration",
                            "scope": 6336,
                            "src": "7191:16:38",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "typeName": {
                              "id": 6323,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "7191:6:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6327,
                        "initialValue": {
                          "expression": {
                            "id": 6325,
                            "name": "rngRequest",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6042,
                            "src": "7210:10:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_RngRequest_$6065_storage",
                              "typeString": "struct DrawBeacon.RngRequest storage ref"
                            }
                          },
                          "id": 6326,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "lockBlock",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 6062,
                          "src": "7210:20:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7191:39:38"
                      },
                      {
                        "expression": {
                          "id": 6329,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "UnaryOperation",
                          "operator": "delete",
                          "prefix": true,
                          "src": "7240:17:38",
                          "subExpression": {
                            "id": 6328,
                            "name": "rngRequest",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6042,
                            "src": "7247:10:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_RngRequest_$6065_storage",
                              "typeString": "struct DrawBeacon.RngRequest storage ref"
                            }
                          },
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6330,
                        "nodeType": "ExpressionStatement",
                        "src": "7240:17:38"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 6332,
                              "name": "requestId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6319,
                              "src": "7286:9:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 6333,
                              "name": "lockBlock",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6324,
                              "src": "7297:9:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "id": 6331,
                            "name": "DrawCancelled",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10722,
                            "src": "7272:13:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint32_$_t_uint32_$returns$__$",
                              "typeString": "function (uint32,uint32)"
                            }
                          },
                          "id": 6334,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7272:35:38",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6335,
                        "nodeType": "EmitStatement",
                        "src": "7267:40:38"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6308,
                    "nodeType": "StructuredDocumentation",
                    "src": "7002:27:38",
                    "text": "@inheritdoc IDrawBeacon"
                  },
                  "functionSelector": "412a616a",
                  "id": 6337,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "cancelDraw",
                  "nameLocation": "7043:10:38",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 6310,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "7065:8:38"
                  },
                  "parameters": {
                    "id": 6309,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "7053:2:38"
                  },
                  "returnParameters": {
                    "id": 6311,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "7074:0:38"
                  },
                  "scope": 6892,
                  "src": "7034:280:38",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    10783
                  ],
                  "body": {
                    "id": 6419,
                    "nodeType": "Block",
                    "src": "7423:1306:38",
                    "statements": [
                      {
                        "assignments": [
                          6345
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6345,
                            "mutability": "mutable",
                            "name": "randomNumber",
                            "nameLocation": "7441:12:38",
                            "nodeType": "VariableDeclaration",
                            "scope": 6419,
                            "src": "7433:20:38",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 6344,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "7433:7:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6351,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 6348,
                                "name": "rngRequest",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 6042,
                                "src": "7473:10:38",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_RngRequest_$6065_storage",
                                  "typeString": "struct DrawBeacon.RngRequest storage ref"
                                }
                              },
                              "id": 6349,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "id",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 6060,
                              "src": "7473:13:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 6346,
                              "name": "rng",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6038,
                              "src": "7456:3:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_RNGInterface_$5835",
                                "typeString": "contract RNGInterface"
                              }
                            },
                            "id": 6347,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "randomNumber",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 5834,
                            "src": "7456:16:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_uint32_$returns$_t_uint256_$",
                              "typeString": "function (uint32) external returns (uint256)"
                            }
                          },
                          "id": 6350,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7456:31:38",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7433:54:38"
                      },
                      {
                        "assignments": [
                          6353
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6353,
                            "mutability": "mutable",
                            "name": "_nextDrawId",
                            "nameLocation": "7504:11:38",
                            "nodeType": "VariableDeclaration",
                            "scope": 6419,
                            "src": "7497:18:38",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "typeName": {
                              "id": 6352,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "7497:6:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6355,
                        "initialValue": {
                          "id": 6354,
                          "name": "nextDrawId",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 6058,
                          "src": "7518:10:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7497:31:38"
                      },
                      {
                        "assignments": [
                          6357
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6357,
                            "mutability": "mutable",
                            "name": "_beaconPeriodStartedAt",
                            "nameLocation": "7545:22:38",
                            "nodeType": "VariableDeclaration",
                            "scope": 6419,
                            "src": "7538:29:38",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            },
                            "typeName": {
                              "id": 6356,
                              "name": "uint64",
                              "nodeType": "ElementaryTypeName",
                              "src": "7538:6:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6359,
                        "initialValue": {
                          "id": 6358,
                          "name": "beaconPeriodStartedAt",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 6055,
                          "src": "7570:21:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7538:53:38"
                      },
                      {
                        "assignments": [
                          6361
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6361,
                            "mutability": "mutable",
                            "name": "_beaconPeriodSeconds",
                            "nameLocation": "7608:20:38",
                            "nodeType": "VariableDeclaration",
                            "scope": 6419,
                            "src": "7601:27:38",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "typeName": {
                              "id": 6360,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "7601:6:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6363,
                        "initialValue": {
                          "id": 6362,
                          "name": "beaconPeriodSeconds",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 6052,
                          "src": "7631:19:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7601:49:38"
                      },
                      {
                        "assignments": [
                          6365
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6365,
                            "mutability": "mutable",
                            "name": "_time",
                            "nameLocation": "7667:5:38",
                            "nodeType": "VariableDeclaration",
                            "scope": 6419,
                            "src": "7660:12:38",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            },
                            "typeName": {
                              "id": 6364,
                              "name": "uint64",
                              "nodeType": "ElementaryTypeName",
                              "src": "7660:6:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6368,
                        "initialValue": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 6366,
                            "name": "_currentTime",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6720,
                            "src": "7675:12:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$__$returns$_t_uint64_$",
                              "typeString": "function () view returns (uint64)"
                            }
                          },
                          "id": 6367,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7675:14:38",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7660:29:38"
                      },
                      {
                        "assignments": [
                          6373
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6373,
                            "mutability": "mutable",
                            "name": "_draw",
                            "nameLocation": "7754:5:38",
                            "nodeType": "VariableDeclaration",
                            "scope": 6419,
                            "src": "7730:29:38",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                              "typeString": "struct IDrawBeacon.Draw"
                            },
                            "typeName": {
                              "id": 6372,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 6371,
                                "name": "IDrawBeacon.Draw",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 10697,
                                "src": "7730:16:38"
                              },
                              "referencedDeclaration": 10697,
                              "src": "7730:16:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Draw_$10697_storage_ptr",
                                "typeString": "struct IDrawBeacon.Draw"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6383,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 6376,
                              "name": "randomNumber",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6345,
                              "src": "7814:12:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 6377,
                              "name": "_nextDrawId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6353,
                              "src": "7848:11:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "expression": {
                                "id": 6378,
                                "name": "rngRequest",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 6042,
                                "src": "7884:10:38",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_RngRequest_$6065_storage",
                                  "typeString": "struct DrawBeacon.RngRequest storage ref"
                                }
                              },
                              "id": 6379,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "requestedAt",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 6064,
                              "src": "7884:22:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            },
                            {
                              "id": 6380,
                              "name": "_beaconPeriodStartedAt",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6357,
                              "src": "8007:22:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            },
                            {
                              "id": 6381,
                              "name": "_beaconPeriodSeconds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6361,
                              "src": "8064:20:38",
                              "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": 6374,
                              "name": "IDrawBeacon",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10853,
                              "src": "7762:11:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_IDrawBeacon_$10853_$",
                                "typeString": "type(contract IDrawBeacon)"
                              }
                            },
                            "id": 6375,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "Draw",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 10697,
                            "src": "7762:16:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_struct$_Draw_$10697_storage_ptr_$",
                              "typeString": "type(struct IDrawBeacon.Draw storage pointer)"
                            }
                          },
                          "id": 6382,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "structConstructorCall",
                          "lValueRequested": false,
                          "names": [
                            "winningRandomNumber",
                            "drawId",
                            "timestamp",
                            "beaconPeriodStartedAt",
                            "beaconPeriodSeconds"
                          ],
                          "nodeType": "FunctionCall",
                          "src": "7762:333:38",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                            "typeString": "struct IDrawBeacon.Draw memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7730:365:38"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 6387,
                              "name": "_draw",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6373,
                              "src": "8126:5:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory"
                              }
                            ],
                            "expression": {
                              "id": 6384,
                              "name": "drawBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6046,
                              "src": "8106:10:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                                "typeString": "contract IDrawBuffer"
                              }
                            },
                            "id": 6386,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "pushDraw",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 10920,
                            "src": "8106:19:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_struct$_Draw_$10697_memory_ptr_$returns$_t_uint32_$",
                              "typeString": "function (struct IDrawBeacon.Draw memory) external returns (uint32)"
                            }
                          },
                          "id": 6388,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8106:26:38",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "id": 6389,
                        "nodeType": "ExpressionStatement",
                        "src": "8106:26:38"
                      },
                      {
                        "assignments": [
                          6391
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6391,
                            "mutability": "mutable",
                            "name": "nextBeaconPeriodStartedAt",
                            "nameLocation": "8259:25:38",
                            "nodeType": "VariableDeclaration",
                            "scope": 6419,
                            "src": "8252:32:38",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            },
                            "typeName": {
                              "id": 6390,
                              "name": "uint64",
                              "nodeType": "ElementaryTypeName",
                              "src": "8252:6:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6397,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 6393,
                              "name": "_beaconPeriodStartedAt",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6357,
                              "src": "8336:22:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            },
                            {
                              "id": 6394,
                              "name": "_beaconPeriodSeconds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6361,
                              "src": "8372:20:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 6395,
                              "name": "_time",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6365,
                              "src": "8406:5:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            ],
                            "id": 6392,
                            "name": "_calculateNextBeaconPeriodStartTime",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6707,
                            "src": "8287:35:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint64_$_t_uint32_$_t_uint64_$returns$_t_uint64_$",
                              "typeString": "function (uint64,uint32,uint64) pure returns (uint64)"
                            }
                          },
                          "id": 6396,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8287:134:38",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "8252:169:38"
                      },
                      {
                        "expression": {
                          "id": 6400,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 6398,
                            "name": "beaconPeriodStartedAt",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6055,
                            "src": "8431:21:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 6399,
                            "name": "nextBeaconPeriodStartedAt",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6391,
                            "src": "8455:25:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "src": "8431:49:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "id": 6401,
                        "nodeType": "ExpressionStatement",
                        "src": "8431:49:38"
                      },
                      {
                        "expression": {
                          "id": 6406,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 6402,
                            "name": "nextDrawId",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6058,
                            "src": "8490:10:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "commonType": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "id": 6405,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 6403,
                              "name": "_nextDrawId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6353,
                              "src": "8503:11:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "+",
                            "rightExpression": {
                              "hexValue": "31",
                              "id": 6404,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "8517:1:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_1_by_1",
                                "typeString": "int_const 1"
                              },
                              "value": "1"
                            },
                            "src": "8503:15:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "8490:28:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "id": 6407,
                        "nodeType": "ExpressionStatement",
                        "src": "8490:28:38"
                      },
                      {
                        "expression": {
                          "id": 6409,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "UnaryOperation",
                          "operator": "delete",
                          "prefix": true,
                          "src": "8601:17:38",
                          "subExpression": {
                            "id": 6408,
                            "name": "rngRequest",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6042,
                            "src": "8608:10:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_RngRequest_$6065_storage",
                              "typeString": "struct DrawBeacon.RngRequest storage ref"
                            }
                          },
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6410,
                        "nodeType": "ExpressionStatement",
                        "src": "8601:17:38"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 6412,
                              "name": "randomNumber",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6345,
                              "src": "8648:12:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 6411,
                            "name": "DrawCompleted",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10727,
                            "src": "8634:13:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint256_$returns$__$",
                              "typeString": "function (uint256)"
                            }
                          },
                          "id": 6413,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8634:27:38",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6414,
                        "nodeType": "EmitStatement",
                        "src": "8629:32:38"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 6416,
                              "name": "nextBeaconPeriodStartedAt",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6391,
                              "src": "8696:25:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            ],
                            "id": 6415,
                            "name": "BeaconPeriodStarted",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10708,
                            "src": "8676:19:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint64_$returns$__$",
                              "typeString": "function (uint64)"
                            }
                          },
                          "id": 6417,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8676:46:38",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6418,
                        "nodeType": "EmitStatement",
                        "src": "8671:51:38"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6338,
                    "nodeType": "StructuredDocumentation",
                    "src": "7320:27:38",
                    "text": "@inheritdoc IDrawBeacon"
                  },
                  "functionSelector": "0bdeecbd",
                  "id": 6420,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 6342,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 6341,
                        "name": "requireCanCompleteRngRequest",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 6112,
                        "src": "7394:28:38"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "7394:28:38"
                    }
                  ],
                  "name": "completeDraw",
                  "nameLocation": "7361:12:38",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 6340,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "7385:8:38"
                  },
                  "parameters": {
                    "id": 6339,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "7373:2:38"
                  },
                  "returnParameters": {
                    "id": 6343,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "7423:0:38"
                  },
                  "scope": 6892,
                  "src": "7352:1377:38",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    10749
                  ],
                  "body": {
                    "id": 6430,
                    "nodeType": "Block",
                    "src": "8847:55:38",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 6427,
                            "name": "_beaconPeriodRemainingSeconds",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6759,
                            "src": "8864:29:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$__$returns$_t_uint64_$",
                              "typeString": "function () view returns (uint64)"
                            }
                          },
                          "id": 6428,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8864:31:38",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "functionReturnParameters": 6426,
                        "id": 6429,
                        "nodeType": "Return",
                        "src": "8857:38:38"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6421,
                    "nodeType": "StructuredDocumentation",
                    "src": "8735:27:38",
                    "text": "@inheritdoc IDrawBeacon"
                  },
                  "functionSelector": "75e38f16",
                  "id": 6431,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "beaconPeriodRemainingSeconds",
                  "nameLocation": "8776:28:38",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 6423,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "8821:8:38"
                  },
                  "parameters": {
                    "id": 6422,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "8804:2:38"
                  },
                  "returnParameters": {
                    "id": 6426,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6425,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6431,
                        "src": "8839:6:38",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 6424,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "8839:6:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8838:8:38"
                  },
                  "scope": 6892,
                  "src": "8767:135:38",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    10755
                  ],
                  "body": {
                    "id": 6441,
                    "nodeType": "Block",
                    "src": "9009:44:38",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 6438,
                            "name": "_beaconPeriodEndAt",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6731,
                            "src": "9026:18:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$__$returns$_t_uint64_$",
                              "typeString": "function () view returns (uint64)"
                            }
                          },
                          "id": 6439,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9026:20:38",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "functionReturnParameters": 6437,
                        "id": 6440,
                        "nodeType": "Return",
                        "src": "9019:27:38"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6432,
                    "nodeType": "StructuredDocumentation",
                    "src": "8908:27:38",
                    "text": "@inheritdoc IDrawBeacon"
                  },
                  "functionSelector": "a104fd79",
                  "id": 6442,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "beaconPeriodEndAt",
                  "nameLocation": "8949:17:38",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 6434,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "8983:8:38"
                  },
                  "parameters": {
                    "id": 6433,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "8966:2:38"
                  },
                  "returnParameters": {
                    "id": 6437,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6436,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6442,
                        "src": "9001:6:38",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 6435,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "9001:6:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9000:8:38"
                  },
                  "scope": 6892,
                  "src": "8940:113:38",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 6449,
                    "nodeType": "Block",
                    "src": "9124:43:38",
                    "statements": [
                      {
                        "expression": {
                          "id": 6447,
                          "name": "beaconPeriodSeconds",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 6052,
                          "src": "9141:19:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "functionReturnParameters": 6446,
                        "id": 6448,
                        "nodeType": "Return",
                        "src": "9134:26:38"
                      }
                    ]
                  },
                  "functionSelector": "3e7a3908",
                  "id": 6450,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getBeaconPeriodSeconds",
                  "nameLocation": "9068:22:38",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 6443,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "9090:2:38"
                  },
                  "returnParameters": {
                    "id": 6446,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6445,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6450,
                        "src": "9116:6:38",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 6444,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "9116:6:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9115:8:38"
                  },
                  "scope": 6892,
                  "src": "9059:108:38",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 6457,
                    "nodeType": "Block",
                    "src": "9240:45:38",
                    "statements": [
                      {
                        "expression": {
                          "id": 6455,
                          "name": "beaconPeriodStartedAt",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 6055,
                          "src": "9257:21:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "functionReturnParameters": 6454,
                        "id": 6456,
                        "nodeType": "Return",
                        "src": "9250:28:38"
                      }
                    ]
                  },
                  "functionSelector": "39f92c30",
                  "id": 6458,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getBeaconPeriodStartedAt",
                  "nameLocation": "9182:24:38",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 6451,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "9206:2:38"
                  },
                  "returnParameters": {
                    "id": 6454,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6453,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6458,
                        "src": "9232:6:38",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 6452,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "9232:6:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9231:8:38"
                  },
                  "scope": 6892,
                  "src": "9173:112:38",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 6466,
                    "nodeType": "Block",
                    "src": "9352:34:38",
                    "statements": [
                      {
                        "expression": {
                          "id": 6464,
                          "name": "drawBuffer",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 6046,
                          "src": "9369:10:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "functionReturnParameters": 6463,
                        "id": 6465,
                        "nodeType": "Return",
                        "src": "9362:17:38"
                      }
                    ]
                  },
                  "functionSelector": "4019f2d6",
                  "id": 6467,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getDrawBuffer",
                  "nameLocation": "9300:13:38",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 6459,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "9313:2:38"
                  },
                  "returnParameters": {
                    "id": 6463,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6462,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6467,
                        "src": "9339:11:38",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                          "typeString": "contract IDrawBuffer"
                        },
                        "typeName": {
                          "id": 6461,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 6460,
                            "name": "IDrawBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 10930,
                            "src": "9339:11:38"
                          },
                          "referencedDeclaration": 10930,
                          "src": "9339:11:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9338:13:38"
                  },
                  "scope": 6892,
                  "src": "9291:95:38",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 6474,
                    "nodeType": "Block",
                    "src": "9448:34:38",
                    "statements": [
                      {
                        "expression": {
                          "id": 6472,
                          "name": "nextDrawId",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 6058,
                          "src": "9465:10:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "functionReturnParameters": 6471,
                        "id": 6473,
                        "nodeType": "Return",
                        "src": "9458:17:38"
                      }
                    ]
                  },
                  "functionSelector": "c57708c2",
                  "id": 6475,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getNextDrawId",
                  "nameLocation": "9401:13:38",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 6468,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "9414:2:38"
                  },
                  "returnParameters": {
                    "id": 6471,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6470,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6475,
                        "src": "9440:6:38",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 6469,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "9440:6:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9439:8:38"
                  },
                  "scope": 6892,
                  "src": "9392:90:38",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    10789
                  ],
                  "body": {
                    "id": 6485,
                    "nodeType": "Block",
                    "src": "9591:44:38",
                    "statements": [
                      {
                        "expression": {
                          "expression": {
                            "id": 6482,
                            "name": "rngRequest",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6042,
                            "src": "9608:10:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_RngRequest_$6065_storage",
                              "typeString": "struct DrawBeacon.RngRequest storage ref"
                            }
                          },
                          "id": 6483,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "lockBlock",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 6062,
                          "src": "9608:20:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "functionReturnParameters": 6481,
                        "id": 6484,
                        "nodeType": "Return",
                        "src": "9601:27:38"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6476,
                    "nodeType": "StructuredDocumentation",
                    "src": "9488:27:38",
                    "text": "@inheritdoc IDrawBeacon"
                  },
                  "functionSelector": "6bea5344",
                  "id": 6486,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getLastRngLockBlock",
                  "nameLocation": "9529:19:38",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 6478,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "9565:8:38"
                  },
                  "parameters": {
                    "id": 6477,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "9548:2:38"
                  },
                  "returnParameters": {
                    "id": 6481,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6480,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6486,
                        "src": "9583:6:38",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 6479,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "9583:6:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9582:8:38"
                  },
                  "scope": 6892,
                  "src": "9520:115:38",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    10795
                  ],
                  "body": {
                    "id": 6495,
                    "nodeType": "Block",
                    "src": "9712:37:38",
                    "statements": [
                      {
                        "expression": {
                          "expression": {
                            "id": 6492,
                            "name": "rngRequest",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6042,
                            "src": "9729:10:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_RngRequest_$6065_storage",
                              "typeString": "struct DrawBeacon.RngRequest storage ref"
                            }
                          },
                          "id": 6493,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "id",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 6060,
                          "src": "9729:13:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "functionReturnParameters": 6491,
                        "id": 6494,
                        "nodeType": "Return",
                        "src": "9722:20:38"
                      }
                    ]
                  },
                  "functionSelector": "2a7ad609",
                  "id": 6496,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getLastRngRequestId",
                  "nameLocation": "9650:19:38",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 6488,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "9686:8:38"
                  },
                  "parameters": {
                    "id": 6487,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "9669:2:38"
                  },
                  "returnParameters": {
                    "id": 6491,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6490,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6496,
                        "src": "9704:6:38",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 6489,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "9704:6:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9703:8:38"
                  },
                  "scope": 6892,
                  "src": "9641:108:38",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 6504,
                    "nodeType": "Block",
                    "src": "9817:27:38",
                    "statements": [
                      {
                        "expression": {
                          "id": 6502,
                          "name": "rng",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 6038,
                          "src": "9834:3:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_RNGInterface_$5835",
                            "typeString": "contract RNGInterface"
                          }
                        },
                        "functionReturnParameters": 6501,
                        "id": 6503,
                        "nodeType": "Return",
                        "src": "9827:10:38"
                      }
                    ]
                  },
                  "functionSelector": "7ce52b18",
                  "id": 6505,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getRngService",
                  "nameLocation": "9764:13:38",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 6497,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "9777:2:38"
                  },
                  "returnParameters": {
                    "id": 6501,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6500,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6505,
                        "src": "9803:12:38",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_RNGInterface_$5835",
                          "typeString": "contract RNGInterface"
                        },
                        "typeName": {
                          "id": 6499,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 6498,
                            "name": "RNGInterface",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 5835,
                            "src": "9803:12:38"
                          },
                          "referencedDeclaration": 5835,
                          "src": "9803:12:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_RNGInterface_$5835",
                            "typeString": "contract RNGInterface"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9802:14:38"
                  },
                  "scope": 6892,
                  "src": "9755:89:38",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 6512,
                    "nodeType": "Block",
                    "src": "9906:34:38",
                    "statements": [
                      {
                        "expression": {
                          "id": 6510,
                          "name": "rngTimeout",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 6049,
                          "src": "9923:10:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "functionReturnParameters": 6509,
                        "id": 6511,
                        "nodeType": "Return",
                        "src": "9916:17:38"
                      }
                    ]
                  },
                  "functionSelector": "1b5344a2",
                  "id": 6513,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getRngTimeout",
                  "nameLocation": "9859:13:38",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 6506,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "9872:2:38"
                  },
                  "returnParameters": {
                    "id": 6509,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6508,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6513,
                        "src": "9898:6:38",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 6507,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "9898:6:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9897:8:38"
                  },
                  "scope": 6892,
                  "src": "9850:90:38",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    10801
                  ],
                  "body": {
                    "id": 6523,
                    "nodeType": "Block",
                    "src": "10046:45:38",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 6520,
                            "name": "_isBeaconPeriodOver",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6772,
                            "src": "10063:19:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$__$returns$_t_bool_$",
                              "typeString": "function () view returns (bool)"
                            }
                          },
                          "id": 6521,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10063:21:38",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 6519,
                        "id": 6522,
                        "nodeType": "Return",
                        "src": "10056:28:38"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6514,
                    "nodeType": "StructuredDocumentation",
                    "src": "9946:27:38",
                    "text": "@inheritdoc IDrawBeacon"
                  },
                  "functionSelector": "d1e77657",
                  "id": 6524,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "isBeaconPeriodOver",
                  "nameLocation": "9987:18:38",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 6516,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "10022:8:38"
                  },
                  "parameters": {
                    "id": 6515,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "10005:2:38"
                  },
                  "returnParameters": {
                    "id": 6519,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6518,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6524,
                        "src": "10040:4:38",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 6517,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "10040:4:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "10039:6:38"
                  },
                  "scope": 6892,
                  "src": "9978:113:38",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    10852
                  ],
                  "body": {
                    "id": 6541,
                    "nodeType": "Block",
                    "src": "10265:53:38",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 6538,
                              "name": "newDrawBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6528,
                              "src": "10297:13:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                                "typeString": "contract IDrawBuffer"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                                "typeString": "contract IDrawBuffer"
                              }
                            ],
                            "id": 6537,
                            "name": "_setDrawBuffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6847,
                            "src": "10282:14:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IDrawBuffer_$10930_$returns$_t_contract$_IDrawBuffer_$10930_$",
                              "typeString": "function (contract IDrawBuffer) returns (contract IDrawBuffer)"
                            }
                          },
                          "id": 6539,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10282:29:38",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "functionReturnParameters": 6536,
                        "id": 6540,
                        "nodeType": "Return",
                        "src": "10275:36:38"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6525,
                    "nodeType": "StructuredDocumentation",
                    "src": "10097:27:38",
                    "text": "@inheritdoc IDrawBeacon"
                  },
                  "functionSelector": "ab70d49c",
                  "id": 6542,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 6532,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 6531,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5341,
                        "src": "10221:9:38"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "10221:9:38"
                    }
                  ],
                  "name": "setDrawBuffer",
                  "nameLocation": "10138:13:38",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 6530,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "10204:8:38"
                  },
                  "parameters": {
                    "id": 6529,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6528,
                        "mutability": "mutable",
                        "name": "newDrawBuffer",
                        "nameLocation": "10164:13:38",
                        "nodeType": "VariableDeclaration",
                        "scope": 6542,
                        "src": "10152:25:38",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                          "typeString": "contract IDrawBuffer"
                        },
                        "typeName": {
                          "id": 6527,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 6526,
                            "name": "IDrawBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 10930,
                            "src": "10152:11:38"
                          },
                          "referencedDeclaration": 10930,
                          "src": "10152:11:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "10151:27:38"
                  },
                  "returnParameters": {
                    "id": 6536,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6535,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6542,
                        "src": "10248:11:38",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                          "typeString": "contract IDrawBuffer"
                        },
                        "typeName": {
                          "id": 6534,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 6533,
                            "name": "IDrawBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 10930,
                            "src": "10248:11:38"
                          },
                          "referencedDeclaration": 10930,
                          "src": "10248:11:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "10247:13:38"
                  },
                  "scope": 6892,
                  "src": "10129:189:38",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    10842
                  ],
                  "body": {
                    "id": 6612,
                    "nodeType": "Block",
                    "src": "10415:472:38",
                    "statements": [
                      {
                        "assignments": [
                          6550,
                          6552
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6550,
                            "mutability": "mutable",
                            "name": "feeToken",
                            "nameLocation": "10434:8:38",
                            "nodeType": "VariableDeclaration",
                            "scope": 6612,
                            "src": "10426:16:38",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            },
                            "typeName": {
                              "id": 6549,
                              "name": "address",
                              "nodeType": "ElementaryTypeName",
                              "src": "10426:7:38",
                              "stateMutability": "nonpayable",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 6552,
                            "mutability": "mutable",
                            "name": "requestFee",
                            "nameLocation": "10452:10:38",
                            "nodeType": "VariableDeclaration",
                            "scope": 6612,
                            "src": "10444:18:38",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 6551,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "10444:7:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6556,
                        "initialValue": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "id": 6553,
                              "name": "rng",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6038,
                              "src": "10466:3:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_RNGInterface_$5835",
                                "typeString": "contract RNGInterface"
                              }
                            },
                            "id": 6554,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getRequestFee",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 5810,
                            "src": "10466:17:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$__$returns$_t_address_$_t_uint256_$",
                              "typeString": "function () view external returns (address,uint256)"
                            }
                          },
                          "id": 6555,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10466:19:38",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_address_$_t_uint256_$",
                            "typeString": "tuple(address,uint256)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "10425:60:38"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "id": 6566,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "commonType": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            },
                            "id": 6562,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 6557,
                              "name": "feeToken",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6550,
                              "src": "10500:8:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "!=",
                            "rightExpression": {
                              "arguments": [
                                {
                                  "hexValue": "30",
                                  "id": 6560,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "10520:1:38",
                                  "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": 6559,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "10512:7:38",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 6558,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "10512:7:38",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 6561,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "10512:10:38",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "src": "10500:22:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "&&",
                          "rightExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "id": 6565,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 6563,
                              "name": "requestFee",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6552,
                              "src": "10526:10:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": ">",
                            "rightExpression": {
                              "hexValue": "30",
                              "id": 6564,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "10539:1:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_0_by_1",
                                "typeString": "int_const 0"
                              },
                              "value": "0"
                            },
                            "src": "10526:14:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "src": "10500:40:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 6579,
                        "nodeType": "IfStatement",
                        "src": "10496:135:38",
                        "trueBody": {
                          "id": 6578,
                          "nodeType": "Block",
                          "src": "10542:89:38",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "id": 6573,
                                        "name": "rng",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 6038,
                                        "src": "10603:3:38",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_contract$_RNGInterface_$5835",
                                          "typeString": "contract RNGInterface"
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_contract$_RNGInterface_$5835",
                                          "typeString": "contract RNGInterface"
                                        }
                                      ],
                                      "id": 6572,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "10595:7:38",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_address_$",
                                        "typeString": "type(address)"
                                      },
                                      "typeName": {
                                        "id": 6571,
                                        "name": "address",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "10595:7:38",
                                        "typeDescriptions": {}
                                      }
                                    },
                                    "id": 6574,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "kind": "typeConversion",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "10595:12:38",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "id": 6575,
                                    "name": "requestFee",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 6552,
                                    "src": "10609:10:38",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  ],
                                  "expression": {
                                    "arguments": [
                                      {
                                        "id": 6568,
                                        "name": "feeToken",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 6550,
                                        "src": "10563:8:38",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_address",
                                          "typeString": "address"
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_address",
                                          "typeString": "address"
                                        }
                                      ],
                                      "id": 6567,
                                      "name": "IERC20",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 890,
                                      "src": "10556:6:38",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_contract$_IERC20_$890_$",
                                        "typeString": "type(contract IERC20)"
                                      }
                                    },
                                    "id": 6569,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "kind": "typeConversion",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "10556:16:38",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_IERC20_$890",
                                      "typeString": "contract IERC20"
                                    }
                                  },
                                  "id": 6570,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "safeIncreaseAllowance",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 1257,
                                  "src": "10556:38:38",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20_$890_$_t_address_$_t_uint256_$returns$__$bound_to$_t_contract$_IERC20_$890_$",
                                    "typeString": "function (contract IERC20,address,uint256)"
                                  }
                                },
                                "id": 6576,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "10556:64:38",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 6577,
                              "nodeType": "ExpressionStatement",
                              "src": "10556:64:38"
                            }
                          ]
                        }
                      },
                      {
                        "assignments": [
                          6581,
                          6583
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6581,
                            "mutability": "mutable",
                            "name": "requestId",
                            "nameLocation": "10649:9:38",
                            "nodeType": "VariableDeclaration",
                            "scope": 6612,
                            "src": "10642:16:38",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "typeName": {
                              "id": 6580,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "10642:6:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 6583,
                            "mutability": "mutable",
                            "name": "lockBlock",
                            "nameLocation": "10667:9:38",
                            "nodeType": "VariableDeclaration",
                            "scope": 6612,
                            "src": "10660:16:38",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "typeName": {
                              "id": 6582,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "10660:6:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6587,
                        "initialValue": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "id": 6584,
                              "name": "rng",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6038,
                              "src": "10680:3:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_RNGInterface_$5835",
                                "typeString": "contract RNGInterface"
                              }
                            },
                            "id": 6585,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "requestRandomNumber",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 5818,
                            "src": "10680:23:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$__$returns$_t_uint32_$_t_uint32_$",
                              "typeString": "function () external returns (uint32,uint32)"
                            }
                          },
                          "id": 6586,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10680:25:38",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_uint32_$_t_uint32_$",
                            "typeString": "tuple(uint32,uint32)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "10641:64:38"
                      },
                      {
                        "expression": {
                          "id": 6592,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "expression": {
                              "id": 6588,
                              "name": "rngRequest",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6042,
                              "src": "10715:10:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_RngRequest_$6065_storage",
                                "typeString": "struct DrawBeacon.RngRequest storage ref"
                              }
                            },
                            "id": 6590,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "memberName": "id",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 6060,
                            "src": "10715:13:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 6591,
                            "name": "requestId",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6581,
                            "src": "10731:9:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "10715:25:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "id": 6593,
                        "nodeType": "ExpressionStatement",
                        "src": "10715:25:38"
                      },
                      {
                        "expression": {
                          "id": 6598,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "expression": {
                              "id": 6594,
                              "name": "rngRequest",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6042,
                              "src": "10750:10:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_RngRequest_$6065_storage",
                                "typeString": "struct DrawBeacon.RngRequest storage ref"
                              }
                            },
                            "id": 6596,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "memberName": "lockBlock",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 6062,
                            "src": "10750:20:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 6597,
                            "name": "lockBlock",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6583,
                            "src": "10773:9:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "10750:32:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "id": 6599,
                        "nodeType": "ExpressionStatement",
                        "src": "10750:32:38"
                      },
                      {
                        "expression": {
                          "id": 6605,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "expression": {
                              "id": 6600,
                              "name": "rngRequest",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6042,
                              "src": "10792:10:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_RngRequest_$6065_storage",
                                "typeString": "struct DrawBeacon.RngRequest storage ref"
                              }
                            },
                            "id": 6602,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "memberName": "requestedAt",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 6064,
                            "src": "10792:22:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [],
                            "expression": {
                              "argumentTypes": [],
                              "id": 6603,
                              "name": "_currentTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6720,
                              "src": "10817:12:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_view$__$returns$_t_uint64_$",
                                "typeString": "function () view returns (uint64)"
                              }
                            },
                            "id": 6604,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "10817:14:38",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "src": "10792:39:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "id": 6606,
                        "nodeType": "ExpressionStatement",
                        "src": "10792:39:38"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 6608,
                              "name": "requestId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6581,
                              "src": "10859:9:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 6609,
                              "name": "lockBlock",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6583,
                              "src": "10870:9:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "id": 6607,
                            "name": "DrawStarted",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10715,
                            "src": "10847:11:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint32_$_t_uint32_$returns$__$",
                              "typeString": "function (uint32,uint32)"
                            }
                          },
                          "id": 6610,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10847:33:38",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6611,
                        "nodeType": "EmitStatement",
                        "src": "10842:38:38"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6543,
                    "nodeType": "StructuredDocumentation",
                    "src": "10324:27:38",
                    "text": "@inheritdoc IDrawBeacon"
                  },
                  "functionSelector": "2ae168a6",
                  "id": 6613,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 6547,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 6546,
                        "name": "requireCanStartDraw",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 6096,
                        "src": "10395:19:38"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "10395:19:38"
                    }
                  ],
                  "name": "startDraw",
                  "nameLocation": "10365:9:38",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 6545,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "10386:8:38"
                  },
                  "parameters": {
                    "id": 6544,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "10374:2:38"
                  },
                  "returnParameters": {
                    "id": 6548,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "10415:0:38"
                  },
                  "scope": 6892,
                  "src": "10356:531:38",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    10825
                  ],
                  "body": {
                    "id": 6628,
                    "nodeType": "Block",
                    "src": "11072:62:38",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 6625,
                              "name": "_beaconPeriodSeconds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6616,
                              "src": "11106:20:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "id": 6624,
                            "name": "_setBeaconPeriodSeconds",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6869,
                            "src": "11082:23:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_uint32_$returns$__$",
                              "typeString": "function (uint32)"
                            }
                          },
                          "id": 6626,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "11082:45:38",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6627,
                        "nodeType": "ExpressionStatement",
                        "src": "11082:45:38"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6614,
                    "nodeType": "StructuredDocumentation",
                    "src": "10893:27:38",
                    "text": "@inheritdoc IDrawBeacon"
                  },
                  "functionSelector": "919bead0",
                  "id": 6629,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 6620,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 6619,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5341,
                        "src": "11028:9:38"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "11028:9:38"
                    },
                    {
                      "id": 6622,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 6621,
                        "name": "requireDrawNotStarted",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 6079,
                        "src": "11046:21:38"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "11046:21:38"
                    }
                  ],
                  "name": "setBeaconPeriodSeconds",
                  "nameLocation": "10934:22:38",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 6618,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "11011:8:38"
                  },
                  "parameters": {
                    "id": 6617,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6616,
                        "mutability": "mutable",
                        "name": "_beaconPeriodSeconds",
                        "nameLocation": "10964:20:38",
                        "nodeType": "VariableDeclaration",
                        "scope": 6629,
                        "src": "10957:27:38",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 6615,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "10957:6:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "10956:29:38"
                  },
                  "returnParameters": {
                    "id": 6623,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "11072:0:38"
                  },
                  "scope": 6892,
                  "src": "10925:209:38",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    10831
                  ],
                  "body": {
                    "id": 6644,
                    "nodeType": "Block",
                    "src": "11265:44:38",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 6641,
                              "name": "_rngTimeout",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6632,
                              "src": "11290:11:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "id": 6640,
                            "name": "_setRngTimeout",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6891,
                            "src": "11275:14:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_uint32_$returns$__$",
                              "typeString": "function (uint32)"
                            }
                          },
                          "id": 6642,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "11275:27:38",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6643,
                        "nodeType": "ExpressionStatement",
                        "src": "11275:27:38"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6630,
                    "nodeType": "StructuredDocumentation",
                    "src": "11140:27:38",
                    "text": "@inheritdoc IDrawBeacon"
                  },
                  "functionSelector": "5020ea56",
                  "id": 6645,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 6636,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 6635,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5341,
                        "src": "11233:9:38"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "11233:9:38"
                    },
                    {
                      "id": 6638,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 6637,
                        "name": "requireDrawNotStarted",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 6079,
                        "src": "11243:21:38"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "11243:21:38"
                    }
                  ],
                  "name": "setRngTimeout",
                  "nameLocation": "11181:13:38",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 6634,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "11224:8:38"
                  },
                  "parameters": {
                    "id": 6633,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6632,
                        "mutability": "mutable",
                        "name": "_rngTimeout",
                        "nameLocation": "11202:11:38",
                        "nodeType": "VariableDeclaration",
                        "scope": 6645,
                        "src": "11195:18:38",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 6631,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "11195:6:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "11194:20:38"
                  },
                  "returnParameters": {
                    "id": 6639,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "11265:0:38"
                  },
                  "scope": 6892,
                  "src": "11172:137:38",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    10838
                  ],
                  "body": {
                    "id": 6661,
                    "nodeType": "Block",
                    "src": "11482:44:38",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 6658,
                              "name": "_rngService",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6649,
                              "src": "11507:11:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_RNGInterface_$5835",
                                "typeString": "contract RNGInterface"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_RNGInterface_$5835",
                                "typeString": "contract RNGInterface"
                              }
                            ],
                            "id": 6657,
                            "name": "_setRngService",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6678,
                            "src": "11492:14:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_RNGInterface_$5835_$returns$__$",
                              "typeString": "function (contract RNGInterface)"
                            }
                          },
                          "id": 6659,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "11492:27:38",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6660,
                        "nodeType": "ExpressionStatement",
                        "src": "11492:27:38"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6646,
                    "nodeType": "StructuredDocumentation",
                    "src": "11315:27:38",
                    "text": "@inheritdoc IDrawBeacon"
                  },
                  "functionSelector": "7f4296d7",
                  "id": 6662,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 6653,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 6652,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5341,
                        "src": "11438:9:38"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "11438:9:38"
                    },
                    {
                      "id": 6655,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 6654,
                        "name": "requireDrawNotStarted",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 6079,
                        "src": "11456:21:38"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "11456:21:38"
                    }
                  ],
                  "name": "setRngService",
                  "nameLocation": "11356:13:38",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 6651,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "11421:8:38"
                  },
                  "parameters": {
                    "id": 6650,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6649,
                        "mutability": "mutable",
                        "name": "_rngService",
                        "nameLocation": "11383:11:38",
                        "nodeType": "VariableDeclaration",
                        "scope": 6662,
                        "src": "11370:24:38",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_RNGInterface_$5835",
                          "typeString": "contract RNGInterface"
                        },
                        "typeName": {
                          "id": 6648,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 6647,
                            "name": "RNGInterface",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 5835,
                            "src": "11370:12:38"
                          },
                          "referencedDeclaration": 5835,
                          "src": "11370:12:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_RNGInterface_$5835",
                            "typeString": "contract RNGInterface"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "11369:26:38"
                  },
                  "returnParameters": {
                    "id": 6656,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "11482:0:38"
                  },
                  "scope": 6892,
                  "src": "11347:179:38",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 6677,
                    "nodeType": "Block",
                    "src": "11758:79:38",
                    "statements": [
                      {
                        "expression": {
                          "id": 6671,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 6669,
                            "name": "rng",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6038,
                            "src": "11768:3:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_RNGInterface_$5835",
                              "typeString": "contract RNGInterface"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 6670,
                            "name": "_rngService",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6666,
                            "src": "11774:11:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_RNGInterface_$5835",
                              "typeString": "contract RNGInterface"
                            }
                          },
                          "src": "11768:17:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_RNGInterface_$5835",
                            "typeString": "contract RNGInterface"
                          }
                        },
                        "id": 6672,
                        "nodeType": "ExpressionStatement",
                        "src": "11768:17:38"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 6674,
                              "name": "_rngService",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6666,
                              "src": "11818:11:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_RNGInterface_$5835",
                                "typeString": "contract RNGInterface"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_RNGInterface_$5835",
                                "typeString": "contract RNGInterface"
                              }
                            ],
                            "id": 6673,
                            "name": "RngServiceUpdated",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10733,
                            "src": "11800:17:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_contract$_RNGInterface_$5835_$returns$__$",
                              "typeString": "function (contract RNGInterface)"
                            }
                          },
                          "id": 6675,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "11800:30:38",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6676,
                        "nodeType": "EmitStatement",
                        "src": "11795:35:38"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6663,
                    "nodeType": "StructuredDocumentation",
                    "src": "11532:158:38",
                    "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": 6678,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_setRngService",
                  "nameLocation": "11704:14:38",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 6667,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6666,
                        "mutability": "mutable",
                        "name": "_rngService",
                        "nameLocation": "11732:11:38",
                        "nodeType": "VariableDeclaration",
                        "scope": 6678,
                        "src": "11719:24:38",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_RNGInterface_$5835",
                          "typeString": "contract RNGInterface"
                        },
                        "typeName": {
                          "id": 6665,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 6664,
                            "name": "RNGInterface",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 5835,
                            "src": "11719:12:38"
                          },
                          "referencedDeclaration": 5835,
                          "src": "11719:12:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_RNGInterface_$5835",
                            "typeString": "contract RNGInterface"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "11718:26:38"
                  },
                  "returnParameters": {
                    "id": 6668,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "11758:0:38"
                  },
                  "scope": 6892,
                  "src": "11695:142:38",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 6706,
                    "nodeType": "Block",
                    "src": "12460:177:38",
                    "statements": [
                      {
                        "assignments": [
                          6691
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6691,
                            "mutability": "mutable",
                            "name": "elapsedPeriods",
                            "nameLocation": "12477:14:38",
                            "nodeType": "VariableDeclaration",
                            "scope": 6706,
                            "src": "12470:21:38",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            },
                            "typeName": {
                              "id": 6690,
                              "name": "uint64",
                              "nodeType": "ElementaryTypeName",
                              "src": "12470:6:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6698,
                        "initialValue": {
                          "commonType": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          },
                          "id": 6697,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "components": [
                              {
                                "commonType": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                },
                                "id": 6694,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 6692,
                                  "name": "_time",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 6685,
                                  "src": "12495:5:38",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint64",
                                    "typeString": "uint64"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "-",
                                "rightExpression": {
                                  "id": 6693,
                                  "name": "_beaconPeriodStartedAt",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 6681,
                                  "src": "12503:22:38",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint64",
                                    "typeString": "uint64"
                                  }
                                },
                                "src": "12495:30:38",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                }
                              }
                            ],
                            "id": 6695,
                            "isConstant": false,
                            "isInlineArray": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "TupleExpression",
                            "src": "12494:32:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "/",
                          "rightExpression": {
                            "id": 6696,
                            "name": "_beaconPeriodSeconds",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6683,
                            "src": "12529:20:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "12494:55:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "12470:79:38"
                      },
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          },
                          "id": 6704,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 6699,
                            "name": "_beaconPeriodStartedAt",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6681,
                            "src": "12566:22:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "+",
                          "rightExpression": {
                            "components": [
                              {
                                "commonType": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                },
                                "id": 6702,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 6700,
                                  "name": "elapsedPeriods",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 6691,
                                  "src": "12592:14:38",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint64",
                                    "typeString": "uint64"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "*",
                                "rightExpression": {
                                  "id": 6701,
                                  "name": "_beaconPeriodSeconds",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 6683,
                                  "src": "12609:20:38",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                "src": "12592:37:38",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                }
                              }
                            ],
                            "id": 6703,
                            "isConstant": false,
                            "isInlineArray": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "TupleExpression",
                            "src": "12591:39:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "src": "12566:64:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "functionReturnParameters": 6689,
                        "id": 6705,
                        "nodeType": "Return",
                        "src": "12559:71:38"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6679,
                    "nodeType": "StructuredDocumentation",
                    "src": "11899:376:38",
                    "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": 6707,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_calculateNextBeaconPeriodStartTime",
                  "nameLocation": "12289:35:38",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 6686,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6681,
                        "mutability": "mutable",
                        "name": "_beaconPeriodStartedAt",
                        "nameLocation": "12341:22:38",
                        "nodeType": "VariableDeclaration",
                        "scope": 6707,
                        "src": "12334:29:38",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 6680,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "12334:6:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 6683,
                        "mutability": "mutable",
                        "name": "_beaconPeriodSeconds",
                        "nameLocation": "12380:20:38",
                        "nodeType": "VariableDeclaration",
                        "scope": 6707,
                        "src": "12373:27:38",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 6682,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "12373:6:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 6685,
                        "mutability": "mutable",
                        "name": "_time",
                        "nameLocation": "12417:5:38",
                        "nodeType": "VariableDeclaration",
                        "scope": 6707,
                        "src": "12410:12:38",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 6684,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "12410:6:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "12324:104:38"
                  },
                  "returnParameters": {
                    "id": 6689,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6688,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6707,
                        "src": "12452:6:38",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 6687,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "12452:6:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "12451:8:38"
                  },
                  "scope": 6892,
                  "src": "12280:357:38",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 6719,
                    "nodeType": "Block",
                    "src": "12832:47:38",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 6715,
                                "name": "block",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -4,
                                "src": "12856:5:38",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_block",
                                  "typeString": "block"
                                }
                              },
                              "id": 6716,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "timestamp",
                              "nodeType": "MemberAccess",
                              "src": "12856:15:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 6714,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "12849:6:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint64_$",
                              "typeString": "type(uint64)"
                            },
                            "typeName": {
                              "id": 6713,
                              "name": "uint64",
                              "nodeType": "ElementaryTypeName",
                              "src": "12849:6:38",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 6717,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "12849:23:38",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "functionReturnParameters": 6712,
                        "id": 6718,
                        "nodeType": "Return",
                        "src": "12842:30:38"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6708,
                    "nodeType": "StructuredDocumentation",
                    "src": "12643:121:38",
                    "text": " @notice returns the current time.  Used for testing.\n @return The current time (block.timestamp)"
                  },
                  "id": 6720,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_currentTime",
                  "nameLocation": "12778:12:38",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 6709,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "12790:2:38"
                  },
                  "returnParameters": {
                    "id": 6712,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6711,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6720,
                        "src": "12824:6:38",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 6710,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "12824:6:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "12823:8:38"
                  },
                  "scope": 6892,
                  "src": "12769:110:38",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 6730,
                    "nodeType": "Block",
                    "src": "13092:67:38",
                    "statements": [
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          },
                          "id": 6728,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 6726,
                            "name": "beaconPeriodStartedAt",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6055,
                            "src": "13109:21:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "+",
                          "rightExpression": {
                            "id": 6727,
                            "name": "beaconPeriodSeconds",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6052,
                            "src": "13133:19:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "13109:43:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "functionReturnParameters": 6725,
                        "id": 6729,
                        "nodeType": "Return",
                        "src": "13102:50:38"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6721,
                    "nodeType": "StructuredDocumentation",
                    "src": "12885:141:38",
                    "text": " @notice Returns the timestamp at which the beacon period ends\n @return The timestamp at which the beacon period ends"
                  },
                  "id": 6731,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_beaconPeriodEndAt",
                  "nameLocation": "13040:18:38",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 6722,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "13058:2:38"
                  },
                  "returnParameters": {
                    "id": 6725,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6724,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6731,
                        "src": "13084:6:38",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 6723,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "13084:6:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "13083:8:38"
                  },
                  "scope": 6892,
                  "src": "13031:128:38",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 6758,
                    "nodeType": "Block",
                    "src": "13419:182:38",
                    "statements": [
                      {
                        "assignments": [
                          6738
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6738,
                            "mutability": "mutable",
                            "name": "endAt",
                            "nameLocation": "13436:5:38",
                            "nodeType": "VariableDeclaration",
                            "scope": 6758,
                            "src": "13429:12:38",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            },
                            "typeName": {
                              "id": 6737,
                              "name": "uint64",
                              "nodeType": "ElementaryTypeName",
                              "src": "13429:6:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6741,
                        "initialValue": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 6739,
                            "name": "_beaconPeriodEndAt",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6731,
                            "src": "13444:18:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$__$returns$_t_uint64_$",
                              "typeString": "function () view returns (uint64)"
                            }
                          },
                          "id": 6740,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "13444:20:38",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "13429:35:38"
                      },
                      {
                        "assignments": [
                          6743
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6743,
                            "mutability": "mutable",
                            "name": "time",
                            "nameLocation": "13481:4:38",
                            "nodeType": "VariableDeclaration",
                            "scope": 6758,
                            "src": "13474:11:38",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            },
                            "typeName": {
                              "id": 6742,
                              "name": "uint64",
                              "nodeType": "ElementaryTypeName",
                              "src": "13474:6:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6746,
                        "initialValue": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 6744,
                            "name": "_currentTime",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6720,
                            "src": "13488:12:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$__$returns$_t_uint64_$",
                              "typeString": "function () view returns (uint64)"
                            }
                          },
                          "id": 6745,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "13488:14:38",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "13474:28:38"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          },
                          "id": 6749,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 6747,
                            "name": "endAt",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6738,
                            "src": "13517:5:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<=",
                          "rightExpression": {
                            "id": 6748,
                            "name": "time",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6743,
                            "src": "13526:4:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "src": "13517:13:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 6753,
                        "nodeType": "IfStatement",
                        "src": "13513:52:38",
                        "trueBody": {
                          "id": 6752,
                          "nodeType": "Block",
                          "src": "13532:33:38",
                          "statements": [
                            {
                              "expression": {
                                "hexValue": "30",
                                "id": 6750,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "13553:1:38",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "functionReturnParameters": 6736,
                              "id": 6751,
                              "nodeType": "Return",
                              "src": "13546:8:38"
                            }
                          ]
                        }
                      },
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          },
                          "id": 6756,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 6754,
                            "name": "endAt",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6738,
                            "src": "13582:5:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "-",
                          "rightExpression": {
                            "id": 6755,
                            "name": "time",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6743,
                            "src": "13590:4:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "src": "13582:12:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "functionReturnParameters": 6736,
                        "id": 6757,
                        "nodeType": "Return",
                        "src": "13575:19:38"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6732,
                    "nodeType": "StructuredDocumentation",
                    "src": "13165:177:38",
                    "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": 6759,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_beaconPeriodRemainingSeconds",
                  "nameLocation": "13356:29:38",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 6733,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "13385:2:38"
                  },
                  "returnParameters": {
                    "id": 6736,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6735,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6759,
                        "src": "13411:6:38",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 6734,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "13411:6:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "13410:8:38"
                  },
                  "scope": 6892,
                  "src": "13347:254:38",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 6771,
                    "nodeType": "Block",
                    "src": "13807:62:38",
                    "statements": [
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          },
                          "id": 6769,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "arguments": [],
                            "expression": {
                              "argumentTypes": [],
                              "id": 6765,
                              "name": "_beaconPeriodEndAt",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6731,
                              "src": "13824:18:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_view$__$returns$_t_uint64_$",
                                "typeString": "function () view returns (uint64)"
                              }
                            },
                            "id": 6766,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "13824:20:38",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<=",
                          "rightExpression": {
                            "arguments": [],
                            "expression": {
                              "argumentTypes": [],
                              "id": 6767,
                              "name": "_currentTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6720,
                              "src": "13848:12:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_view$__$returns$_t_uint64_$",
                                "typeString": "function () view returns (uint64)"
                              }
                            },
                            "id": 6768,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "13848:14:38",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "src": "13824:38:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 6764,
                        "id": 6770,
                        "nodeType": "Return",
                        "src": "13817:45:38"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6760,
                    "nodeType": "StructuredDocumentation",
                    "src": "13607:135:38",
                    "text": " @notice Returns whether the beacon period is over.\n @return True if the beacon period is over, false otherwise"
                  },
                  "id": 6772,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_isBeaconPeriodOver",
                  "nameLocation": "13756:19:38",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 6761,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "13775:2:38"
                  },
                  "returnParameters": {
                    "id": 6764,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6763,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6772,
                        "src": "13801:4:38",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 6762,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "13801:4:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "13800:6:38"
                  },
                  "scope": 6892,
                  "src": "13747:122:38",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 6794,
                    "nodeType": "Block",
                    "src": "13988:198:38",
                    "statements": [
                      {
                        "assignments": [
                          6777
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6777,
                            "mutability": "mutable",
                            "name": "currentBlock",
                            "nameLocation": "14006:12:38",
                            "nodeType": "VariableDeclaration",
                            "scope": 6794,
                            "src": "13998:20:38",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 6776,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "13998:7:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6780,
                        "initialValue": {
                          "expression": {
                            "id": 6778,
                            "name": "block",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": -4,
                            "src": "14021:5:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_magic_block",
                              "typeString": "block"
                            }
                          },
                          "id": 6779,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "number",
                          "nodeType": "MemberAccess",
                          "src": "14021:12:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "13998:35:38"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              "id": 6790,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                },
                                "id": 6785,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "expression": {
                                    "id": 6782,
                                    "name": "rngRequest",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 6042,
                                    "src": "14065:10:38",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_RngRequest_$6065_storage",
                                      "typeString": "struct DrawBeacon.RngRequest storage ref"
                                    }
                                  },
                                  "id": 6783,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "lockBlock",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 6062,
                                  "src": "14065:20:38",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "==",
                                "rightExpression": {
                                  "hexValue": "30",
                                  "id": 6784,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "14089:1:38",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                },
                                "src": "14065:25:38",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "||",
                              "rightExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 6789,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 6786,
                                  "name": "currentBlock",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 6777,
                                  "src": "14094:12:38",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "<",
                                "rightExpression": {
                                  "expression": {
                                    "id": 6787,
                                    "name": "rngRequest",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 6042,
                                    "src": "14109:10:38",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_RngRequest_$6065_storage",
                                      "typeString": "struct DrawBeacon.RngRequest storage ref"
                                    }
                                  },
                                  "id": 6788,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "lockBlock",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 6062,
                                  "src": "14109:20:38",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                "src": "14094:35:38",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "src": "14065:64:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "44726177426561636f6e2f726e672d696e2d666c69676874",
                              "id": 6791,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "14143:26:38",
                              "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": 6781,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "14044:7:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 6792,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "14044:135:38",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6793,
                        "nodeType": "ExpressionStatement",
                        "src": "14044:135:38"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6773,
                    "nodeType": "StructuredDocumentation",
                    "src": "13875:60:38",
                    "text": " @notice Check to see draw is in progress."
                  },
                  "id": 6795,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_requireDrawNotStarted",
                  "nameLocation": "13949:22:38",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 6774,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "13971:2:38"
                  },
                  "returnParameters": {
                    "id": 6775,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "13988:0:38"
                  },
                  "scope": 6892,
                  "src": "13940:246:38",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 6846,
                    "nodeType": "Block",
                    "src": "14507:433:38",
                    "statements": [
                      {
                        "assignments": [
                          6807
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6807,
                            "mutability": "mutable",
                            "name": "_previousDrawBuffer",
                            "nameLocation": "14529:19:38",
                            "nodeType": "VariableDeclaration",
                            "scope": 6846,
                            "src": "14517:31:38",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                              "typeString": "contract IDrawBuffer"
                            },
                            "typeName": {
                              "id": 6806,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 6805,
                                "name": "IDrawBuffer",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 10930,
                                "src": "14517:11:38"
                              },
                              "referencedDeclaration": 10930,
                              "src": "14517:11:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                                "typeString": "contract IDrawBuffer"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6809,
                        "initialValue": {
                          "id": 6808,
                          "name": "drawBuffer",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 6046,
                          "src": "14551:10:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "14517:44:38"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 6819,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 6813,
                                    "name": "_newDrawBuffer",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 6799,
                                    "src": "14587:14:38",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                                      "typeString": "contract IDrawBuffer"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                                      "typeString": "contract IDrawBuffer"
                                    }
                                  ],
                                  "id": 6812,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "14579:7:38",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 6811,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "14579:7:38",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 6814,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "14579:23:38",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 6817,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "14614:1:38",
                                    "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": 6816,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "14606:7:38",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 6815,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "14606:7:38",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 6818,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "14606:10:38",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "14579:37:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "44726177426561636f6e2f647261772d686973746f72792d6e6f742d7a65726f2d61646472657373",
                              "id": 6820,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "14618:42:38",
                              "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": 6810,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "14571:7:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 6821,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "14571:90:38",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6822,
                        "nodeType": "ExpressionStatement",
                        "src": "14571:90:38"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 6832,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 6826,
                                    "name": "_newDrawBuffer",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 6799,
                                    "src": "14701:14:38",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                                      "typeString": "contract IDrawBuffer"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                                      "typeString": "contract IDrawBuffer"
                                    }
                                  ],
                                  "id": 6825,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "14693:7:38",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 6824,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "14693:7:38",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 6827,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "14693:23:38",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "id": 6830,
                                    "name": "_previousDrawBuffer",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 6807,
                                    "src": "14728:19:38",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                                      "typeString": "contract IDrawBuffer"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                                      "typeString": "contract IDrawBuffer"
                                    }
                                  ],
                                  "id": 6829,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "14720:7:38",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 6828,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "14720:7:38",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 6831,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "14720:28:38",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "14693:55:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "44726177426561636f6e2f6578697374696e672d647261772d686973746f72792d61646472657373",
                              "id": 6833,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "14762:42:38",
                              "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": 6823,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "14672:7:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 6834,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "14672:142:38",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6835,
                        "nodeType": "ExpressionStatement",
                        "src": "14672:142:38"
                      },
                      {
                        "expression": {
                          "id": 6838,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 6836,
                            "name": "drawBuffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6046,
                            "src": "14825:10:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                              "typeString": "contract IDrawBuffer"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 6837,
                            "name": "_newDrawBuffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6799,
                            "src": "14838:14:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                              "typeString": "contract IDrawBuffer"
                            }
                          },
                          "src": "14825:27:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "id": 6839,
                        "nodeType": "ExpressionStatement",
                        "src": "14825:27:38"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 6841,
                              "name": "_newDrawBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6799,
                              "src": "14886:14:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                                "typeString": "contract IDrawBuffer"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                                "typeString": "contract IDrawBuffer"
                              }
                            ],
                            "id": 6840,
                            "name": "DrawBufferUpdated",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10703,
                            "src": "14868:17:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_contract$_IDrawBuffer_$10930_$returns$__$",
                              "typeString": "function (contract IDrawBuffer)"
                            }
                          },
                          "id": 6842,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "14868:33:38",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6843,
                        "nodeType": "EmitStatement",
                        "src": "14863:38:38"
                      },
                      {
                        "expression": {
                          "id": 6844,
                          "name": "_newDrawBuffer",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 6799,
                          "src": "14919:14:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "functionReturnParameters": 6804,
                        "id": 6845,
                        "nodeType": "Return",
                        "src": "14912:21:38"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6796,
                    "nodeType": "StructuredDocumentation",
                    "src": "14192:227:38",
                    "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": 6847,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_setDrawBuffer",
                  "nameLocation": "14433:14:38",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 6800,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6799,
                        "mutability": "mutable",
                        "name": "_newDrawBuffer",
                        "nameLocation": "14460:14:38",
                        "nodeType": "VariableDeclaration",
                        "scope": 6847,
                        "src": "14448:26:38",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                          "typeString": "contract IDrawBuffer"
                        },
                        "typeName": {
                          "id": 6798,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 6797,
                            "name": "IDrawBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 10930,
                            "src": "14448:11:38"
                          },
                          "referencedDeclaration": 10930,
                          "src": "14448:11:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "14447:28:38"
                  },
                  "returnParameters": {
                    "id": 6804,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6803,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6847,
                        "src": "14494:11:38",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                          "typeString": "contract IDrawBuffer"
                        },
                        "typeName": {
                          "id": 6802,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 6801,
                            "name": "IDrawBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 10930,
                            "src": "14494:11:38"
                          },
                          "referencedDeclaration": 10930,
                          "src": "14494:11:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "14493:13:38"
                  },
                  "scope": 6892,
                  "src": "14424:516:38",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 6868,
                    "nodeType": "Block",
                    "src": "15180:212:38",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              "id": 6856,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 6854,
                                "name": "_beaconPeriodSeconds",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 6850,
                                "src": "15198:20:38",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">",
                              "rightExpression": {
                                "hexValue": "30",
                                "id": 6855,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "15221:1:38",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "src": "15198:24:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "44726177426561636f6e2f626561636f6e2d706572696f642d677265617465722d7468616e2d7a65726f",
                              "id": 6857,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "15224:44:38",
                              "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": 6853,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "15190:7:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 6858,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "15190:79:38",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6859,
                        "nodeType": "ExpressionStatement",
                        "src": "15190:79:38"
                      },
                      {
                        "expression": {
                          "id": 6862,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 6860,
                            "name": "beaconPeriodSeconds",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6052,
                            "src": "15279:19:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 6861,
                            "name": "_beaconPeriodSeconds",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6850,
                            "src": "15301:20:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "15279:42:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "id": 6863,
                        "nodeType": "ExpressionStatement",
                        "src": "15279:42:38"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 6865,
                              "name": "_beaconPeriodSeconds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6850,
                              "src": "15364:20:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "id": 6864,
                            "name": "BeaconPeriodSecondsUpdated",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10743,
                            "src": "15337:26:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint32_$returns$__$",
                              "typeString": "function (uint32)"
                            }
                          },
                          "id": 6866,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "15337:48:38",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6867,
                        "nodeType": "EmitStatement",
                        "src": "15332:53:38"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6848,
                    "nodeType": "StructuredDocumentation",
                    "src": "14946:158:38",
                    "text": " @notice Sets the beacon period in seconds.\n @param _beaconPeriodSeconds The new beacon period in seconds.  Must be greater than zero."
                  },
                  "id": 6869,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_setBeaconPeriodSeconds",
                  "nameLocation": "15118:23:38",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 6851,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6850,
                        "mutability": "mutable",
                        "name": "_beaconPeriodSeconds",
                        "nameLocation": "15149:20:38",
                        "nodeType": "VariableDeclaration",
                        "scope": 6869,
                        "src": "15142:27:38",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 6849,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "15142:6:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "15141:29:38"
                  },
                  "returnParameters": {
                    "id": 6852,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "15180:0:38"
                  },
                  "scope": 6892,
                  "src": "15109:283:38",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 6890,
                    "nodeType": "Block",
                    "src": "15684:155:38",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              "id": 6878,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 6876,
                                "name": "_rngTimeout",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 6872,
                                "src": "15702:11:38",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">",
                              "rightExpression": {
                                "hexValue": "3630",
                                "id": 6877,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "15716:2:38",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_60_by_1",
                                  "typeString": "int_const 60"
                                },
                                "value": "60"
                              },
                              "src": "15702:16:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "44726177426561636f6e2f726e672d74696d656f75742d67742d36302d73656373",
                              "id": 6879,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "15720:35:38",
                              "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": 6875,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "15694:7:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 6880,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "15694:62:38",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6881,
                        "nodeType": "ExpressionStatement",
                        "src": "15694:62:38"
                      },
                      {
                        "expression": {
                          "id": 6884,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 6882,
                            "name": "rngTimeout",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6049,
                            "src": "15766:10:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 6883,
                            "name": "_rngTimeout",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6872,
                            "src": "15779:11:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "15766:24:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "id": 6885,
                        "nodeType": "ExpressionStatement",
                        "src": "15766:24:38"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 6887,
                              "name": "_rngTimeout",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6872,
                              "src": "15820:11:38",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "id": 6886,
                            "name": "RngTimeoutSet",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10738,
                            "src": "15806:13:38",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint32_$returns$__$",
                              "typeString": "function (uint32)"
                            }
                          },
                          "id": 6888,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "15806:26:38",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 6889,
                        "nodeType": "EmitStatement",
                        "src": "15801:31:38"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6870,
                    "nodeType": "StructuredDocumentation",
                    "src": "15398:228:38",
                    "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": 6891,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_setRngTimeout",
                  "nameLocation": "15640:14:38",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 6873,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6872,
                        "mutability": "mutable",
                        "name": "_rngTimeout",
                        "nameLocation": "15662:11:38",
                        "nodeType": "VariableDeclaration",
                        "scope": 6891,
                        "src": "15655:18:38",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 6871,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "15655:6:38",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "15654:20:38"
                  },
                  "returnParameters": {
                    "id": 6874,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "15684:0:38"
                  },
                  "scope": 6892,
                  "src": "15631:208:38",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 6893,
              "src": "1131:14710:38",
              "usedErrors": []
            }
          ],
          "src": "37:15805:38"
        },
        "id": 38
      },
      "@pooltogether/v4-core/contracts/DrawBuffer.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/DrawBuffer.sol",
          "exportedSymbols": {
            "DrawBuffer": [
              7263
            ],
            "DrawRingBufferLib": [
              11966
            ],
            "IDrawBeacon": [
              10853
            ],
            "IDrawBuffer": [
              10930
            ],
            "Manageable": [
              5200
            ],
            "Ownable": [
              5355
            ],
            "RNGInterface": [
              5835
            ],
            "RingBufferLib": [
              12461
            ]
          },
          "id": 7264,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 6894,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:39"
            },
            {
              "absolutePath": "@pooltogether/owner-manager-contracts/contracts/Manageable.sol",
              "file": "@pooltogether/owner-manager-contracts/contracts/Manageable.sol",
              "id": 6895,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 7264,
              "sourceUnit": 5201,
              "src": "61:72:39",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol",
              "file": "./interfaces/IDrawBuffer.sol",
              "id": 6896,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 7264,
              "sourceUnit": 10931,
              "src": "135:38:39",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol",
              "file": "./interfaces/IDrawBeacon.sol",
              "id": 6897,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 7264,
              "sourceUnit": 10854,
              "src": "174:38:39",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/libraries/DrawRingBufferLib.sol",
              "file": "./libraries/DrawRingBufferLib.sol",
              "id": 6898,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 7264,
              "sourceUnit": 11967,
              "src": "213:43:39",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 6900,
                    "name": "IDrawBuffer",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 10930,
                    "src": "1207:11:39"
                  },
                  "id": 6901,
                  "nodeType": "InheritanceSpecifier",
                  "src": "1207:11:39"
                },
                {
                  "baseName": {
                    "id": 6902,
                    "name": "Manageable",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 5200,
                    "src": "1220:10:39"
                  },
                  "id": 6903,
                  "nodeType": "InheritanceSpecifier",
                  "src": "1220:10:39"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 6899,
                "nodeType": "StructuredDocumentation",
                "src": "258:925:39",
                "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": 7263,
              "linearizedBaseContracts": [
                7263,
                5200,
                5355,
                10930
              ],
              "name": "DrawBuffer",
              "nameLocation": "1193:10:39",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "id": 6907,
                  "libraryName": {
                    "id": 6904,
                    "name": "DrawRingBufferLib",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 11966,
                    "src": "1243:17:39"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "1237:53:39",
                  "typeName": {
                    "id": 6906,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 6905,
                      "name": "DrawRingBufferLib.Buffer",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 11836,
                      "src": "1265:24:39"
                    },
                    "referencedDeclaration": 11836,
                    "src": "1265:24:39",
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_Buffer_$11836_storage_ptr",
                      "typeString": "struct DrawRingBufferLib.Buffer"
                    }
                  }
                },
                {
                  "constant": true,
                  "documentation": {
                    "id": 6908,
                    "nodeType": "StructuredDocumentation",
                    "src": "1296:41:39",
                    "text": "@notice Draws ring buffer max length."
                  },
                  "functionSelector": "8200d873",
                  "id": 6911,
                  "mutability": "constant",
                  "name": "MAX_CARDINALITY",
                  "nameLocation": "1365:15:39",
                  "nodeType": "VariableDeclaration",
                  "scope": 7263,
                  "src": "1342:44:39",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint16",
                    "typeString": "uint16"
                  },
                  "typeName": {
                    "id": 6909,
                    "name": "uint16",
                    "nodeType": "ElementaryTypeName",
                    "src": "1342:6:39",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint16",
                      "typeString": "uint16"
                    }
                  },
                  "value": {
                    "hexValue": "323536",
                    "id": 6910,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "number",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "1383:3:39",
                    "typeDescriptions": {
                      "typeIdentifier": "t_rational_256_by_1",
                      "typeString": "int_const 256"
                    },
                    "value": "256"
                  },
                  "visibility": "public"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 6912,
                    "nodeType": "StructuredDocumentation",
                    "src": "1393:36:39",
                    "text": "@notice Draws ring buffer array."
                  },
                  "id": 6917,
                  "mutability": "mutable",
                  "name": "drawRingBuffer",
                  "nameLocation": "1476:14:39",
                  "nodeType": "VariableDeclaration",
                  "scope": 7263,
                  "src": "1434:56:39",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_array$_t_struct$_Draw_$10697_storage_$256_storage",
                    "typeString": "struct IDrawBeacon.Draw[256]"
                  },
                  "typeName": {
                    "baseType": {
                      "id": 6914,
                      "nodeType": "UserDefinedTypeName",
                      "pathNode": {
                        "id": 6913,
                        "name": "IDrawBeacon.Draw",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 10697,
                        "src": "1434:16:39"
                      },
                      "referencedDeclaration": 10697,
                      "src": "1434:16:39",
                      "typeDescriptions": {
                        "typeIdentifier": "t_struct$_Draw_$10697_storage_ptr",
                        "typeString": "struct IDrawBeacon.Draw"
                      }
                    },
                    "id": 6916,
                    "length": {
                      "id": 6915,
                      "name": "MAX_CARDINALITY",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 6911,
                      "src": "1451:15:39",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint16",
                        "typeString": "uint16"
                      }
                    },
                    "nodeType": "ArrayTypeName",
                    "src": "1434:33:39",
                    "typeDescriptions": {
                      "typeIdentifier": "t_array$_t_struct$_Draw_$10697_storage_$256_storage_ptr",
                      "typeString": "struct IDrawBeacon.Draw[256]"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 6918,
                    "nodeType": "StructuredDocumentation",
                    "src": "1497:41:39",
                    "text": "@notice Holds ring buffer information"
                  },
                  "id": 6921,
                  "mutability": "mutable",
                  "name": "bufferMetadata",
                  "nameLocation": "1577:14:39",
                  "nodeType": "VariableDeclaration",
                  "scope": 7263,
                  "src": "1543:48:39",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_struct$_Buffer_$11836_storage",
                    "typeString": "struct DrawRingBufferLib.Buffer"
                  },
                  "typeName": {
                    "id": 6920,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 6919,
                      "name": "DrawRingBufferLib.Buffer",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 11836,
                      "src": "1543:24:39"
                    },
                    "referencedDeclaration": 11836,
                    "src": "1543:24:39",
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_Buffer_$11836_storage_ptr",
                      "typeString": "struct DrawRingBufferLib.Buffer"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 6938,
                    "nodeType": "Block",
                    "src": "1889:58:39",
                    "statements": [
                      {
                        "expression": {
                          "id": 6936,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "expression": {
                              "id": 6932,
                              "name": "bufferMetadata",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6921,
                              "src": "1899:14:39",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$11836_storage",
                                "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                              }
                            },
                            "id": 6934,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "memberName": "cardinality",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11835,
                            "src": "1899:26:39",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 6935,
                            "name": "_cardinality",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6926,
                            "src": "1928:12:39",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "src": "1899:41:39",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "id": 6937,
                        "nodeType": "ExpressionStatement",
                        "src": "1899:41:39"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6922,
                    "nodeType": "StructuredDocumentation",
                    "src": "1642:178:39",
                    "text": " @notice Deploy DrawBuffer smart contract.\n @param _owner Address of the owner of the DrawBuffer.\n @param _cardinality Draw ring buffer cardinality."
                  },
                  "id": 6939,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 6929,
                          "name": "_owner",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 6924,
                          "src": "1881:6:39",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        }
                      ],
                      "id": 6930,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 6928,
                        "name": "Ownable",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5355,
                        "src": "1873:7:39"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "1873:15:39"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 6927,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6924,
                        "mutability": "mutable",
                        "name": "_owner",
                        "nameLocation": "1845:6:39",
                        "nodeType": "VariableDeclaration",
                        "scope": 6939,
                        "src": "1837:14:39",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 6923,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1837:7:39",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 6926,
                        "mutability": "mutable",
                        "name": "_cardinality",
                        "nameLocation": "1859:12:39",
                        "nodeType": "VariableDeclaration",
                        "scope": 6939,
                        "src": "1853:18:39",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 6925,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "1853:5:39",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1836:36:39"
                  },
                  "returnParameters": {
                    "id": 6931,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1889:0:39"
                  },
                  "scope": 7263,
                  "src": "1825:122:39",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    10871
                  ],
                  "body": {
                    "id": 6949,
                    "nodeType": "Block",
                    "src": "2113:50:39",
                    "statements": [
                      {
                        "expression": {
                          "expression": {
                            "id": 6946,
                            "name": "bufferMetadata",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6921,
                            "src": "2130:14:39",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Buffer_$11836_storage",
                              "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                            }
                          },
                          "id": 6947,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "cardinality",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 11835,
                          "src": "2130:26:39",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "functionReturnParameters": 6945,
                        "id": 6948,
                        "nodeType": "Return",
                        "src": "2123:33:39"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6940,
                    "nodeType": "StructuredDocumentation",
                    "src": "2009:27:39",
                    "text": "@inheritdoc IDrawBuffer"
                  },
                  "functionSelector": "caeef7ec",
                  "id": 6950,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getBufferCardinality",
                  "nameLocation": "2050:20:39",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 6942,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2087:8:39"
                  },
                  "parameters": {
                    "id": 6941,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2070:2:39"
                  },
                  "returnParameters": {
                    "id": 6945,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6944,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6950,
                        "src": "2105:6:39",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 6943,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2105:6:39",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2104:8:39"
                  },
                  "scope": 7263,
                  "src": "2041:122:39",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    10880
                  ],
                  "body": {
                    "id": 6967,
                    "nodeType": "Block",
                    "src": "2290:82:39",
                    "statements": [
                      {
                        "expression": {
                          "baseExpression": {
                            "id": 6960,
                            "name": "drawRingBuffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6917,
                            "src": "2307:14:39",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_Draw_$10697_storage_$256_storage",
                              "typeString": "struct IDrawBeacon.Draw storage ref[256] storage ref"
                            }
                          },
                          "id": 6965,
                          "indexExpression": {
                            "arguments": [
                              {
                                "id": 6962,
                                "name": "bufferMetadata",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 6921,
                                "src": "2341:14:39",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Buffer_$11836_storage",
                                  "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                                }
                              },
                              {
                                "id": 6963,
                                "name": "drawId",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 6953,
                                "src": "2357:6:39",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_struct$_Buffer_$11836_storage",
                                  "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                                },
                                {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              ],
                              "id": 6961,
                              "name": "_drawIdToDrawIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7202,
                              "src": "2322:18:39",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_pure$_t_struct$_Buffer_$11836_memory_ptr_$_t_uint32_$returns$_t_uint32_$",
                                "typeString": "function (struct DrawRingBufferLib.Buffer memory,uint32) pure returns (uint32)"
                              }
                            },
                            "id": 6964,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "2322:42:39",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "2307:58:39",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$10697_storage",
                            "typeString": "struct IDrawBeacon.Draw storage ref"
                          }
                        },
                        "functionReturnParameters": 6959,
                        "id": 6966,
                        "nodeType": "Return",
                        "src": "2300:65:39"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6951,
                    "nodeType": "StructuredDocumentation",
                    "src": "2169:27:39",
                    "text": "@inheritdoc IDrawBuffer"
                  },
                  "functionSelector": "83c34aaf",
                  "id": 6968,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getDraw",
                  "nameLocation": "2210:7:39",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 6955,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2247:8:39"
                  },
                  "parameters": {
                    "id": 6954,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6953,
                        "mutability": "mutable",
                        "name": "drawId",
                        "nameLocation": "2225:6:39",
                        "nodeType": "VariableDeclaration",
                        "scope": 6968,
                        "src": "2218:13:39",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 6952,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2218:6:39",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2217:15:39"
                  },
                  "returnParameters": {
                    "id": 6959,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6958,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 6968,
                        "src": "2265:23:39",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw"
                        },
                        "typeName": {
                          "id": 6957,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 6956,
                            "name": "IDrawBeacon.Draw",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 10697,
                            "src": "2265:16:39"
                          },
                          "referencedDeclaration": 10697,
                          "src": "2265:16:39",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$10697_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2264:25:39"
                  },
                  "scope": 7263,
                  "src": "2201:171:39",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    10891
                  ],
                  "body": {
                    "id": 7029,
                    "nodeType": "Block",
                    "src": "2551:345:39",
                    "statements": [
                      {
                        "assignments": [
                          6985
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6985,
                            "mutability": "mutable",
                            "name": "draws",
                            "nameLocation": "2587:5:39",
                            "nodeType": "VariableDeclaration",
                            "scope": 7029,
                            "src": "2561:31:39",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_Draw_$10697_memory_ptr_$dyn_memory_ptr",
                              "typeString": "struct IDrawBeacon.Draw[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 6983,
                                "nodeType": "UserDefinedTypeName",
                                "pathNode": {
                                  "id": 6982,
                                  "name": "IDrawBeacon.Draw",
                                  "nodeType": "IdentifierPath",
                                  "referencedDeclaration": 10697,
                                  "src": "2561:16:39"
                                },
                                "referencedDeclaration": 10697,
                                "src": "2561:16:39",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Draw_$10697_storage_ptr",
                                  "typeString": "struct IDrawBeacon.Draw"
                                }
                              },
                              "id": 6984,
                              "nodeType": "ArrayTypeName",
                              "src": "2561:18:39",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Draw_$10697_storage_$dyn_storage_ptr",
                                "typeString": "struct IDrawBeacon.Draw[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 6993,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 6990,
                                "name": "_drawIds",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 6972,
                                "src": "2618:8:39",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                                  "typeString": "uint32[] calldata"
                                }
                              },
                              "id": 6991,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "length",
                              "nodeType": "MemberAccess",
                              "src": "2618:15:39",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 6989,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "2595:22:39",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_struct$_Draw_$10697_memory_ptr_$dyn_memory_ptr_$",
                              "typeString": "function (uint256) pure returns (struct IDrawBeacon.Draw memory[] memory)"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 6987,
                                "nodeType": "UserDefinedTypeName",
                                "pathNode": {
                                  "id": 6986,
                                  "name": "IDrawBeacon.Draw",
                                  "nodeType": "IdentifierPath",
                                  "referencedDeclaration": 10697,
                                  "src": "2599:16:39"
                                },
                                "referencedDeclaration": 10697,
                                "src": "2599:16:39",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Draw_$10697_storage_ptr",
                                  "typeString": "struct IDrawBeacon.Draw"
                                }
                              },
                              "id": 6988,
                              "nodeType": "ArrayTypeName",
                              "src": "2599:18:39",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Draw_$10697_storage_$dyn_storage_ptr",
                                "typeString": "struct IDrawBeacon.Draw[]"
                              }
                            }
                          },
                          "id": 6992,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2595:39:39",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Draw_$10697_memory_ptr_$dyn_memory_ptr",
                            "typeString": "struct IDrawBeacon.Draw memory[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2561:73:39"
                      },
                      {
                        "assignments": [
                          6998
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 6998,
                            "mutability": "mutable",
                            "name": "buffer",
                            "nameLocation": "2676:6:39",
                            "nodeType": "VariableDeclaration",
                            "scope": 7029,
                            "src": "2644:38:39",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                              "typeString": "struct DrawRingBufferLib.Buffer"
                            },
                            "typeName": {
                              "id": 6997,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 6996,
                                "name": "DrawRingBufferLib.Buffer",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 11836,
                                "src": "2644:24:39"
                              },
                              "referencedDeclaration": 11836,
                              "src": "2644:24:39",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$11836_storage_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7000,
                        "initialValue": {
                          "id": 6999,
                          "name": "bufferMetadata",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 6921,
                          "src": "2685:14:39",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$11836_storage",
                            "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2644:55:39"
                      },
                      {
                        "body": {
                          "id": 7025,
                          "nodeType": "Block",
                          "src": "2768:99:39",
                          "statements": [
                            {
                              "expression": {
                                "id": 7023,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "baseExpression": {
                                    "id": 7012,
                                    "name": "draws",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 6985,
                                    "src": "2782:5:39",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_struct$_Draw_$10697_memory_ptr_$dyn_memory_ptr",
                                      "typeString": "struct IDrawBeacon.Draw memory[] memory"
                                    }
                                  },
                                  "id": 7014,
                                  "indexExpression": {
                                    "id": 7013,
                                    "name": "index",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 7002,
                                    "src": "2788:5:39",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": true,
                                  "nodeType": "IndexAccess",
                                  "src": "2782:12:39",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                                    "typeString": "struct IDrawBeacon.Draw memory"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "baseExpression": {
                                    "id": 7015,
                                    "name": "drawRingBuffer",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 6917,
                                    "src": "2797:14:39",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_struct$_Draw_$10697_storage_$256_storage",
                                      "typeString": "struct IDrawBeacon.Draw storage ref[256] storage ref"
                                    }
                                  },
                                  "id": 7022,
                                  "indexExpression": {
                                    "arguments": [
                                      {
                                        "id": 7017,
                                        "name": "buffer",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 6998,
                                        "src": "2831:6:39",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                                          "typeString": "struct DrawRingBufferLib.Buffer memory"
                                        }
                                      },
                                      {
                                        "baseExpression": {
                                          "id": 7018,
                                          "name": "_drawIds",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 6972,
                                          "src": "2839:8:39",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                                            "typeString": "uint32[] calldata"
                                          }
                                        },
                                        "id": 7020,
                                        "indexExpression": {
                                          "id": 7019,
                                          "name": "index",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 7002,
                                          "src": "2848:5:39",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "nodeType": "IndexAccess",
                                        "src": "2839:15:39",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint32",
                                          "typeString": "uint32"
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                                          "typeString": "struct DrawRingBufferLib.Buffer memory"
                                        },
                                        {
                                          "typeIdentifier": "t_uint32",
                                          "typeString": "uint32"
                                        }
                                      ],
                                      "id": 7016,
                                      "name": "_drawIdToDrawIndex",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 7202,
                                      "src": "2812:18:39",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_function_internal_pure$_t_struct$_Buffer_$11836_memory_ptr_$_t_uint32_$returns$_t_uint32_$",
                                        "typeString": "function (struct DrawRingBufferLib.Buffer memory,uint32) pure returns (uint32)"
                                      }
                                    },
                                    "id": 7021,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "kind": "functionCall",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "2812:43:39",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "IndexAccess",
                                  "src": "2797:59:39",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Draw_$10697_storage",
                                    "typeString": "struct IDrawBeacon.Draw storage ref"
                                  }
                                },
                                "src": "2782:74:39",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                                  "typeString": "struct IDrawBeacon.Draw memory"
                                }
                              },
                              "id": 7024,
                              "nodeType": "ExpressionStatement",
                              "src": "2782:74:39"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 7008,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 7005,
                            "name": "index",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7002,
                            "src": "2734:5:39",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "expression": {
                              "id": 7006,
                              "name": "_drawIds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6972,
                              "src": "2742:8:39",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                                "typeString": "uint32[] calldata"
                              }
                            },
                            "id": 7007,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "length",
                            "nodeType": "MemberAccess",
                            "src": "2742:15:39",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "2734:23:39",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 7026,
                        "initializationExpression": {
                          "assignments": [
                            7002
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 7002,
                              "mutability": "mutable",
                              "name": "index",
                              "nameLocation": "2723:5:39",
                              "nodeType": "VariableDeclaration",
                              "scope": 7026,
                              "src": "2715:13:39",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "typeName": {
                                "id": 7001,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "2715:7:39",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 7004,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 7003,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "2731:1:39",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "2715:17:39"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 7010,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "2759:7:39",
                            "subExpression": {
                              "id": 7009,
                              "name": "index",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7002,
                              "src": "2759:5:39",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 7011,
                          "nodeType": "ExpressionStatement",
                          "src": "2759:7:39"
                        },
                        "nodeType": "ForStatement",
                        "src": "2710:157:39"
                      },
                      {
                        "expression": {
                          "id": 7027,
                          "name": "draws",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 6985,
                          "src": "2884:5:39",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Draw_$10697_memory_ptr_$dyn_memory_ptr",
                            "typeString": "struct IDrawBeacon.Draw memory[] memory"
                          }
                        },
                        "functionReturnParameters": 6979,
                        "id": 7028,
                        "nodeType": "Return",
                        "src": "2877:12:39"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 6969,
                    "nodeType": "StructuredDocumentation",
                    "src": "2378:27:39",
                    "text": "@inheritdoc IDrawBuffer"
                  },
                  "functionSelector": "d0bb78f3",
                  "id": 7030,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getDraws",
                  "nameLocation": "2419:8:39",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 6974,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2494:8:39"
                  },
                  "parameters": {
                    "id": 6973,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6972,
                        "mutability": "mutable",
                        "name": "_drawIds",
                        "nameLocation": "2446:8:39",
                        "nodeType": "VariableDeclaration",
                        "scope": 7030,
                        "src": "2428:26:39",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                          "typeString": "uint32[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 6970,
                            "name": "uint32",
                            "nodeType": "ElementaryTypeName",
                            "src": "2428:6:39",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "id": 6971,
                          "nodeType": "ArrayTypeName",
                          "src": "2428:8:39",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint32_$dyn_storage_ptr",
                            "typeString": "uint32[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2427:28:39"
                  },
                  "returnParameters": {
                    "id": 6979,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 6978,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 7030,
                        "src": "2520:25:39",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_Draw_$10697_memory_ptr_$dyn_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 6976,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 6975,
                              "name": "IDrawBeacon.Draw",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 10697,
                              "src": "2520:16:39"
                            },
                            "referencedDeclaration": 10697,
                            "src": "2520:16:39",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Draw_$10697_storage_ptr",
                              "typeString": "struct IDrawBeacon.Draw"
                            }
                          },
                          "id": 6977,
                          "nodeType": "ArrayTypeName",
                          "src": "2520:18:39",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Draw_$10697_storage_$dyn_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2519:27:39"
                  },
                  "scope": 7263,
                  "src": "2410:486:39",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    10897
                  ],
                  "body": {
                    "id": 7071,
                    "nodeType": "Block",
                    "src": "2998:360:39",
                    "statements": [
                      {
                        "assignments": [
                          7041
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7041,
                            "mutability": "mutable",
                            "name": "buffer",
                            "nameLocation": "3040:6:39",
                            "nodeType": "VariableDeclaration",
                            "scope": 7071,
                            "src": "3008:38:39",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                              "typeString": "struct DrawRingBufferLib.Buffer"
                            },
                            "typeName": {
                              "id": 7040,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 7039,
                                "name": "DrawRingBufferLib.Buffer",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 11836,
                                "src": "3008:24:39"
                              },
                              "referencedDeclaration": 11836,
                              "src": "3008:24:39",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$11836_storage_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7043,
                        "initialValue": {
                          "id": 7042,
                          "name": "bufferMetadata",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 6921,
                          "src": "3049:14:39",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$11836_storage",
                            "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3008:55:39"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          },
                          "id": 7047,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 7044,
                              "name": "buffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7041,
                              "src": "3078:6:39",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer memory"
                              }
                            },
                            "id": 7045,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "lastDrawId",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11831,
                            "src": "3078:17:39",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 7046,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "3099:1:39",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "3078:22:39",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 7051,
                        "nodeType": "IfStatement",
                        "src": "3074:61:39",
                        "trueBody": {
                          "id": 7050,
                          "nodeType": "Block",
                          "src": "3102:33:39",
                          "statements": [
                            {
                              "expression": {
                                "hexValue": "30",
                                "id": 7048,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "3123:1:39",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "functionReturnParameters": 7036,
                              "id": 7049,
                              "nodeType": "Return",
                              "src": "3116:8:39"
                            }
                          ]
                        }
                      },
                      {
                        "assignments": [
                          7053
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7053,
                            "mutability": "mutable",
                            "name": "bufferNextIndex",
                            "nameLocation": "3152:15:39",
                            "nodeType": "VariableDeclaration",
                            "scope": 7071,
                            "src": "3145:22:39",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "typeName": {
                              "id": 7052,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "3145:6:39",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7056,
                        "initialValue": {
                          "expression": {
                            "id": 7054,
                            "name": "buffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7041,
                            "src": "3170:6:39",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                              "typeString": "struct DrawRingBufferLib.Buffer memory"
                            }
                          },
                          "id": 7055,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "nextIndex",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 11833,
                          "src": "3170:16:39",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3145:41:39"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          },
                          "id": 7062,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "baseExpression": {
                                "id": 7057,
                                "name": "drawRingBuffer",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 6917,
                                "src": "3201:14:39",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_struct$_Draw_$10697_storage_$256_storage",
                                  "typeString": "struct IDrawBeacon.Draw storage ref[256] storage ref"
                                }
                              },
                              "id": 7059,
                              "indexExpression": {
                                "id": 7058,
                                "name": "bufferNextIndex",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 7053,
                                "src": "3216:15:39",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "nodeType": "IndexAccess",
                              "src": "3201:31:39",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Draw_$10697_storage",
                                "typeString": "struct IDrawBeacon.Draw storage ref"
                              }
                            },
                            "id": 7060,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "timestamp",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 10692,
                            "src": "3201:41:39",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "!=",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 7061,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "3246:1:39",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "3201:46:39",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "falseBody": {
                          "id": 7069,
                          "nodeType": "Block",
                          "src": "3305:47:39",
                          "statements": [
                            {
                              "expression": {
                                "id": 7067,
                                "name": "bufferNextIndex",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 7053,
                                "src": "3326:15:39",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "functionReturnParameters": 7036,
                              "id": 7068,
                              "nodeType": "Return",
                              "src": "3319:22:39"
                            }
                          ]
                        },
                        "id": 7070,
                        "nodeType": "IfStatement",
                        "src": "3197:155:39",
                        "trueBody": {
                          "id": 7066,
                          "nodeType": "Block",
                          "src": "3249:50:39",
                          "statements": [
                            {
                              "expression": {
                                "expression": {
                                  "id": 7063,
                                  "name": "buffer",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 7041,
                                  "src": "3270:6:39",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                                    "typeString": "struct DrawRingBufferLib.Buffer memory"
                                  }
                                },
                                "id": 7064,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "cardinality",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 11835,
                                "src": "3270:18:39",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "functionReturnParameters": 7036,
                              "id": 7065,
                              "nodeType": "Return",
                              "src": "3263:25:39"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 7031,
                    "nodeType": "StructuredDocumentation",
                    "src": "2902:27:39",
                    "text": "@inheritdoc IDrawBuffer"
                  },
                  "functionSelector": "c4df5fed",
                  "id": 7072,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getDrawCount",
                  "nameLocation": "2943:12:39",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 7033,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2972:8:39"
                  },
                  "parameters": {
                    "id": 7032,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2955:2:39"
                  },
                  "returnParameters": {
                    "id": 7036,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7035,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 7072,
                        "src": "2990:6:39",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 7034,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2990:6:39",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2989:8:39"
                  },
                  "scope": 7263,
                  "src": "2934:424:39",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    10904
                  ],
                  "body": {
                    "id": 7084,
                    "nodeType": "Block",
                    "src": "3478:54:39",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 7081,
                              "name": "bufferMetadata",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6921,
                              "src": "3510:14:39",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$11836_storage",
                                "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Buffer_$11836_storage",
                                "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                              }
                            ],
                            "id": 7080,
                            "name": "_getNewestDraw",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7221,
                            "src": "3495:14:39",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_struct$_Buffer_$11836_memory_ptr_$returns$_t_struct$_Draw_$10697_memory_ptr_$",
                              "typeString": "function (struct DrawRingBufferLib.Buffer memory) view returns (struct IDrawBeacon.Draw memory)"
                            }
                          },
                          "id": 7082,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3495:30:39",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                            "typeString": "struct IDrawBeacon.Draw memory"
                          }
                        },
                        "functionReturnParameters": 7079,
                        "id": 7083,
                        "nodeType": "Return",
                        "src": "3488:37:39"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 7073,
                    "nodeType": "StructuredDocumentation",
                    "src": "3364:27:39",
                    "text": "@inheritdoc IDrawBuffer"
                  },
                  "functionSelector": "0edb1d2e",
                  "id": 7085,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getNewestDraw",
                  "nameLocation": "3405:13:39",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 7075,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3435:8:39"
                  },
                  "parameters": {
                    "id": 7074,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3418:2:39"
                  },
                  "returnParameters": {
                    "id": 7079,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7078,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 7085,
                        "src": "3453:23:39",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw"
                        },
                        "typeName": {
                          "id": 7077,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 7076,
                            "name": "IDrawBeacon.Draw",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 10697,
                            "src": "3453:16:39"
                          },
                          "referencedDeclaration": 10697,
                          "src": "3453:16:39",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$10697_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3452:25:39"
                  },
                  "scope": 7263,
                  "src": "3396:136:39",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    10911
                  ],
                  "body": {
                    "id": 7124,
                    "nodeType": "Block",
                    "src": "3652:381:39",
                    "statements": [
                      {
                        "assignments": [
                          7097
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7097,
                            "mutability": "mutable",
                            "name": "buffer",
                            "nameLocation": "3769:6:39",
                            "nodeType": "VariableDeclaration",
                            "scope": 7124,
                            "src": "3737:38:39",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                              "typeString": "struct DrawRingBufferLib.Buffer"
                            },
                            "typeName": {
                              "id": 7096,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 7095,
                                "name": "DrawRingBufferLib.Buffer",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 11836,
                                "src": "3737:24:39"
                              },
                              "referencedDeclaration": 11836,
                              "src": "3737:24:39",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$11836_storage_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7099,
                        "initialValue": {
                          "id": 7098,
                          "name": "bufferMetadata",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 6921,
                          "src": "3778:14:39",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$11836_storage",
                            "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3737:55:39"
                      },
                      {
                        "assignments": [
                          7104
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7104,
                            "mutability": "mutable",
                            "name": "draw",
                            "nameLocation": "3826:4:39",
                            "nodeType": "VariableDeclaration",
                            "scope": 7124,
                            "src": "3802:28:39",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                              "typeString": "struct IDrawBeacon.Draw"
                            },
                            "typeName": {
                              "id": 7103,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 7102,
                                "name": "IDrawBeacon.Draw",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 10697,
                                "src": "3802:16:39"
                              },
                              "referencedDeclaration": 10697,
                              "src": "3802:16:39",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Draw_$10697_storage_ptr",
                                "typeString": "struct IDrawBeacon.Draw"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7109,
                        "initialValue": {
                          "baseExpression": {
                            "id": 7105,
                            "name": "drawRingBuffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6917,
                            "src": "3833:14:39",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_Draw_$10697_storage_$256_storage",
                              "typeString": "struct IDrawBeacon.Draw storage ref[256] storage ref"
                            }
                          },
                          "id": 7108,
                          "indexExpression": {
                            "expression": {
                              "id": 7106,
                              "name": "buffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7097,
                              "src": "3848:6:39",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer memory"
                              }
                            },
                            "id": 7107,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "nextIndex",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11833,
                            "src": "3848:16:39",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "3833:32:39",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$10697_storage",
                            "typeString": "struct IDrawBeacon.Draw storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3802:63:39"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          },
                          "id": 7113,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 7110,
                              "name": "draw",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7104,
                              "src": "3880:4:39",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory"
                              }
                            },
                            "id": 7111,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "timestamp",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 10692,
                            "src": "3880:14:39",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 7112,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "3898:1:39",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "3880:19:39",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 7121,
                        "nodeType": "IfStatement",
                        "src": "3876:129:39",
                        "trueBody": {
                          "id": 7120,
                          "nodeType": "Block",
                          "src": "3901:104:39",
                          "statements": [
                            {
                              "expression": {
                                "id": 7118,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 7114,
                                  "name": "draw",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 7104,
                                  "src": "3970:4:39",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                                    "typeString": "struct IDrawBeacon.Draw memory"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "baseExpression": {
                                    "id": 7115,
                                    "name": "drawRingBuffer",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 6917,
                                    "src": "3977:14:39",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_struct$_Draw_$10697_storage_$256_storage",
                                      "typeString": "struct IDrawBeacon.Draw storage ref[256] storage ref"
                                    }
                                  },
                                  "id": 7117,
                                  "indexExpression": {
                                    "hexValue": "30",
                                    "id": 7116,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "3992:1:39",
                                    "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:39",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Draw_$10697_storage",
                                    "typeString": "struct IDrawBeacon.Draw storage ref"
                                  }
                                },
                                "src": "3970:24:39",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                                  "typeString": "struct IDrawBeacon.Draw memory"
                                }
                              },
                              "id": 7119,
                              "nodeType": "ExpressionStatement",
                              "src": "3970:24:39"
                            }
                          ]
                        }
                      },
                      {
                        "expression": {
                          "id": 7122,
                          "name": "draw",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 7104,
                          "src": "4022:4:39",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                            "typeString": "struct IDrawBeacon.Draw memory"
                          }
                        },
                        "functionReturnParameters": 7092,
                        "id": 7123,
                        "nodeType": "Return",
                        "src": "4015:11:39"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 7086,
                    "nodeType": "StructuredDocumentation",
                    "src": "3538:27:39",
                    "text": "@inheritdoc IDrawBuffer"
                  },
                  "functionSelector": "648b1b4f",
                  "id": 7125,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getOldestDraw",
                  "nameLocation": "3579:13:39",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 7088,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3609:8:39"
                  },
                  "parameters": {
                    "id": 7087,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3592:2:39"
                  },
                  "returnParameters": {
                    "id": 7092,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7091,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 7125,
                        "src": "3627:23:39",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw"
                        },
                        "typeName": {
                          "id": 7090,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 7089,
                            "name": "IDrawBeacon.Draw",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 10697,
                            "src": "3627:16:39"
                          },
                          "referencedDeclaration": 10697,
                          "src": "3627:16:39",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$10697_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3626:25:39"
                  },
                  "scope": 7263,
                  "src": "3570:463:39",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    10920
                  ],
                  "body": {
                    "id": 7141,
                    "nodeType": "Block",
                    "src": "4210:40:39",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 7138,
                              "name": "_draw",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7129,
                              "src": "4237:5:39",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory"
                              }
                            ],
                            "id": 7137,
                            "name": "_pushDraw",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7262,
                            "src": "4227:9:39",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_struct$_Draw_$10697_memory_ptr_$returns$_t_uint32_$",
                              "typeString": "function (struct IDrawBeacon.Draw memory) returns (uint32)"
                            }
                          },
                          "id": 7139,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4227:16:39",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "functionReturnParameters": 7136,
                        "id": 7140,
                        "nodeType": "Return",
                        "src": "4220:23:39"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 7126,
                    "nodeType": "StructuredDocumentation",
                    "src": "4039:27:39",
                    "text": "@inheritdoc IDrawBuffer"
                  },
                  "functionSelector": "089eb925",
                  "id": 7142,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 7133,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 7132,
                        "name": "onlyManagerOrOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5199,
                        "src": "4162:18:39"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "4162:18:39"
                    }
                  ],
                  "name": "pushDraw",
                  "nameLocation": "4080:8:39",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 7131,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "4145:8:39"
                  },
                  "parameters": {
                    "id": 7130,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7129,
                        "mutability": "mutable",
                        "name": "_draw",
                        "nameLocation": "4113:5:39",
                        "nodeType": "VariableDeclaration",
                        "scope": 7142,
                        "src": "4089:29:39",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw"
                        },
                        "typeName": {
                          "id": 7128,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 7127,
                            "name": "IDrawBeacon.Draw",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 10697,
                            "src": "4089:16:39"
                          },
                          "referencedDeclaration": 10697,
                          "src": "4089:16:39",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$10697_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4088:31:39"
                  },
                  "returnParameters": {
                    "id": 7136,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7135,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 7142,
                        "src": "4198:6:39",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 7134,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4198:6:39",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4197:8:39"
                  },
                  "scope": 7263,
                  "src": "4071:179:39",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    10929
                  ],
                  "body": {
                    "id": 7184,
                    "nodeType": "Block",
                    "src": "4384:252:39",
                    "statements": [
                      {
                        "assignments": [
                          7158
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7158,
                            "mutability": "mutable",
                            "name": "buffer",
                            "nameLocation": "4426:6:39",
                            "nodeType": "VariableDeclaration",
                            "scope": 7184,
                            "src": "4394:38:39",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                              "typeString": "struct DrawRingBufferLib.Buffer"
                            },
                            "typeName": {
                              "id": 7157,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 7156,
                                "name": "DrawRingBufferLib.Buffer",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 11836,
                                "src": "4394:24:39"
                              },
                              "referencedDeclaration": 11836,
                              "src": "4394:24:39",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$11836_storage_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7160,
                        "initialValue": {
                          "id": 7159,
                          "name": "bufferMetadata",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 6921,
                          "src": "4435:14:39",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$11836_storage",
                            "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4394:55:39"
                      },
                      {
                        "assignments": [
                          7162
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7162,
                            "mutability": "mutable",
                            "name": "index",
                            "nameLocation": "4466:5:39",
                            "nodeType": "VariableDeclaration",
                            "scope": 7184,
                            "src": "4459:12:39",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "typeName": {
                              "id": 7161,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "4459:6:39",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7168,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 7165,
                                "name": "_newDraw",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 7146,
                                "src": "4490:8:39",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                                  "typeString": "struct IDrawBeacon.Draw memory"
                                }
                              },
                              "id": 7166,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "drawId",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 10690,
                              "src": "4490:15:39",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 7163,
                              "name": "buffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7158,
                              "src": "4474:6:39",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer memory"
                              }
                            },
                            "id": 7164,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getIndex",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11965,
                            "src": "4474:15:39",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_struct$_Buffer_$11836_memory_ptr_$_t_uint32_$returns$_t_uint32_$bound_to$_t_struct$_Buffer_$11836_memory_ptr_$",
                              "typeString": "function (struct DrawRingBufferLib.Buffer memory,uint32) pure returns (uint32)"
                            }
                          },
                          "id": 7167,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4474:32:39",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4459:47:39"
                      },
                      {
                        "expression": {
                          "id": 7173,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "id": 7169,
                              "name": "drawRingBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6917,
                              "src": "4516:14:39",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Draw_$10697_storage_$256_storage",
                                "typeString": "struct IDrawBeacon.Draw storage ref[256] storage ref"
                              }
                            },
                            "id": 7171,
                            "indexExpression": {
                              "id": 7170,
                              "name": "index",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7162,
                              "src": "4531:5:39",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "4516:21:39",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Draw_$10697_storage",
                              "typeString": "struct IDrawBeacon.Draw storage ref"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 7172,
                            "name": "_newDraw",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7146,
                            "src": "4540:8:39",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                              "typeString": "struct IDrawBeacon.Draw memory"
                            }
                          },
                          "src": "4516:32:39",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$10697_storage",
                            "typeString": "struct IDrawBeacon.Draw storage ref"
                          }
                        },
                        "id": 7174,
                        "nodeType": "ExpressionStatement",
                        "src": "4516:32:39"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 7176,
                                "name": "_newDraw",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 7146,
                                "src": "4571:8:39",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                                  "typeString": "struct IDrawBeacon.Draw memory"
                                }
                              },
                              "id": 7177,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "drawId",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 10690,
                              "src": "4571:15:39",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 7178,
                              "name": "_newDraw",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7146,
                              "src": "4588:8:39",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory"
                              }
                            ],
                            "id": 7175,
                            "name": "DrawSet",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10865,
                            "src": "4563:7:39",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint32_$_t_struct$_Draw_$10697_memory_ptr_$returns$__$",
                              "typeString": "function (uint32,struct IDrawBeacon.Draw memory)"
                            }
                          },
                          "id": 7179,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4563:34:39",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 7180,
                        "nodeType": "EmitStatement",
                        "src": "4558:39:39"
                      },
                      {
                        "expression": {
                          "expression": {
                            "id": 7181,
                            "name": "_newDraw",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7146,
                            "src": "4614:8:39",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                              "typeString": "struct IDrawBeacon.Draw memory"
                            }
                          },
                          "id": 7182,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "drawId",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 10690,
                          "src": "4614:15:39",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "functionReturnParameters": 7153,
                        "id": 7183,
                        "nodeType": "Return",
                        "src": "4607:22:39"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 7143,
                    "nodeType": "StructuredDocumentation",
                    "src": "4256:27:39",
                    "text": "@inheritdoc IDrawBuffer"
                  },
                  "functionSelector": "d7bcb86b",
                  "id": 7185,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 7150,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 7149,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5341,
                        "src": "4357:9:39"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "4357:9:39"
                    }
                  ],
                  "name": "setDraw",
                  "nameLocation": "4297:7:39",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 7148,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "4348:8:39"
                  },
                  "parameters": {
                    "id": 7147,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7146,
                        "mutability": "mutable",
                        "name": "_newDraw",
                        "nameLocation": "4329:8:39",
                        "nodeType": "VariableDeclaration",
                        "scope": 7185,
                        "src": "4305:32:39",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw"
                        },
                        "typeName": {
                          "id": 7145,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 7144,
                            "name": "IDrawBeacon.Draw",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 10697,
                            "src": "4305:16:39"
                          },
                          "referencedDeclaration": 10697,
                          "src": "4305:16:39",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$10697_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4304:34:39"
                  },
                  "returnParameters": {
                    "id": 7153,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7152,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 7185,
                        "src": "4376:6:39",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 7151,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4376:6:39",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4375:8:39"
                  },
                  "scope": 7263,
                  "src": "4288:348:39",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 7201,
                    "nodeType": "Block",
                    "src": "5104:49:39",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 7198,
                              "name": "_drawId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7191,
                              "src": "5138:7:39",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 7196,
                              "name": "_buffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7189,
                              "src": "5121:7:39",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer memory"
                              }
                            },
                            "id": 7197,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getIndex",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11965,
                            "src": "5121:16:39",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_struct$_Buffer_$11836_memory_ptr_$_t_uint32_$returns$_t_uint32_$bound_to$_t_struct$_Buffer_$11836_memory_ptr_$",
                              "typeString": "function (struct DrawRingBufferLib.Buffer memory,uint32) pure returns (uint32)"
                            }
                          },
                          "id": 7199,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5121:25:39",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "functionReturnParameters": 7195,
                        "id": 7200,
                        "nodeType": "Return",
                        "src": "5114:32:39"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 7186,
                    "nodeType": "StructuredDocumentation",
                    "src": "4698:257:39",
                    "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": 7202,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_drawIdToDrawIndex",
                  "nameLocation": "4969:18:39",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 7192,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7189,
                        "mutability": "mutable",
                        "name": "_buffer",
                        "nameLocation": "5020:7:39",
                        "nodeType": "VariableDeclaration",
                        "scope": 7202,
                        "src": "4988:39:39",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                          "typeString": "struct DrawRingBufferLib.Buffer"
                        },
                        "typeName": {
                          "id": 7188,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 7187,
                            "name": "DrawRingBufferLib.Buffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11836,
                            "src": "4988:24:39"
                          },
                          "referencedDeclaration": 11836,
                          "src": "4988:24:39",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$11836_storage_ptr",
                            "typeString": "struct DrawRingBufferLib.Buffer"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7191,
                        "mutability": "mutable",
                        "name": "_drawId",
                        "nameLocation": "5036:7:39",
                        "nodeType": "VariableDeclaration",
                        "scope": 7202,
                        "src": "5029:14:39",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 7190,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "5029:6:39",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4987:57:39"
                  },
                  "returnParameters": {
                    "id": 7195,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7194,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 7202,
                        "src": "5092:6:39",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 7193,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "5092:6:39",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5091:8:39"
                  },
                  "scope": 7263,
                  "src": "4960:193:39",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 7220,
                    "nodeType": "Block",
                    "src": "5525:76:39",
                    "statements": [
                      {
                        "expression": {
                          "baseExpression": {
                            "id": 7212,
                            "name": "drawRingBuffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6917,
                            "src": "5542:14:39",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_Draw_$10697_storage_$256_storage",
                              "typeString": "struct IDrawBeacon.Draw storage ref[256] storage ref"
                            }
                          },
                          "id": 7218,
                          "indexExpression": {
                            "arguments": [
                              {
                                "expression": {
                                  "id": 7215,
                                  "name": "_buffer",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 7206,
                                  "src": "5574:7:39",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                                    "typeString": "struct DrawRingBufferLib.Buffer memory"
                                  }
                                },
                                "id": 7216,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "lastDrawId",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 11831,
                                "src": "5574:18:39",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              ],
                              "expression": {
                                "id": 7213,
                                "name": "_buffer",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 7206,
                                "src": "5557:7:39",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                                  "typeString": "struct DrawRingBufferLib.Buffer memory"
                                }
                              },
                              "id": 7214,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "getIndex",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 11965,
                              "src": "5557:16:39",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_pure$_t_struct$_Buffer_$11836_memory_ptr_$_t_uint32_$returns$_t_uint32_$bound_to$_t_struct$_Buffer_$11836_memory_ptr_$",
                                "typeString": "function (struct DrawRingBufferLib.Buffer memory,uint32) pure returns (uint32)"
                              }
                            },
                            "id": 7217,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "5557:36:39",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "5542:52:39",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$10697_storage",
                            "typeString": "struct IDrawBeacon.Draw storage ref"
                          }
                        },
                        "functionReturnParameters": 7211,
                        "id": 7219,
                        "nodeType": "Return",
                        "src": "5535:59:39"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 7203,
                    "nodeType": "StructuredDocumentation",
                    "src": "5159:220:39",
                    "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": 7221,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_getNewestDraw",
                  "nameLocation": "5393:14:39",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 7207,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7206,
                        "mutability": "mutable",
                        "name": "_buffer",
                        "nameLocation": "5440:7:39",
                        "nodeType": "VariableDeclaration",
                        "scope": 7221,
                        "src": "5408:39:39",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                          "typeString": "struct DrawRingBufferLib.Buffer"
                        },
                        "typeName": {
                          "id": 7205,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 7204,
                            "name": "DrawRingBufferLib.Buffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11836,
                            "src": "5408:24:39"
                          },
                          "referencedDeclaration": 11836,
                          "src": "5408:24:39",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$11836_storage_ptr",
                            "typeString": "struct DrawRingBufferLib.Buffer"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5407:41:39"
                  },
                  "returnParameters": {
                    "id": 7211,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7210,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 7221,
                        "src": "5496:23:39",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw"
                        },
                        "typeName": {
                          "id": 7209,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 7208,
                            "name": "IDrawBeacon.Draw",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 10697,
                            "src": "5496:16:39"
                          },
                          "referencedDeclaration": 10697,
                          "src": "5496:16:39",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$10697_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5495:25:39"
                  },
                  "scope": 7263,
                  "src": "5384:217:39",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 7261,
                    "nodeType": "Block",
                    "src": "5904:266:39",
                    "statements": [
                      {
                        "assignments": [
                          7234
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7234,
                            "mutability": "mutable",
                            "name": "_buffer",
                            "nameLocation": "5946:7:39",
                            "nodeType": "VariableDeclaration",
                            "scope": 7261,
                            "src": "5914:39:39",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                              "typeString": "struct DrawRingBufferLib.Buffer"
                            },
                            "typeName": {
                              "id": 7233,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 7232,
                                "name": "DrawRingBufferLib.Buffer",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 11836,
                                "src": "5914:24:39"
                              },
                              "referencedDeclaration": 11836,
                              "src": "5914:24:39",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$11836_storage_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7236,
                        "initialValue": {
                          "id": 7235,
                          "name": "bufferMetadata",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 6921,
                          "src": "5956:14:39",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$11836_storage",
                            "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "5914:56:39"
                      },
                      {
                        "expression": {
                          "id": 7242,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "id": 7237,
                              "name": "drawRingBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 6917,
                              "src": "5980:14:39",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Draw_$10697_storage_$256_storage",
                                "typeString": "struct IDrawBeacon.Draw storage ref[256] storage ref"
                              }
                            },
                            "id": 7240,
                            "indexExpression": {
                              "expression": {
                                "id": 7238,
                                "name": "_buffer",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 7234,
                                "src": "5995:7:39",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                                  "typeString": "struct DrawRingBufferLib.Buffer memory"
                                }
                              },
                              "id": 7239,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "nextIndex",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 11833,
                              "src": "5995:17:39",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "5980:33:39",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Draw_$10697_storage",
                              "typeString": "struct IDrawBeacon.Draw storage ref"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 7241,
                            "name": "_newDraw",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7225,
                            "src": "6016:8:39",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                              "typeString": "struct IDrawBeacon.Draw memory"
                            }
                          },
                          "src": "5980:44:39",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$10697_storage",
                            "typeString": "struct IDrawBeacon.Draw storage ref"
                          }
                        },
                        "id": 7243,
                        "nodeType": "ExpressionStatement",
                        "src": "5980:44:39"
                      },
                      {
                        "expression": {
                          "id": 7250,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 7244,
                            "name": "bufferMetadata",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 6921,
                            "src": "6034:14:39",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Buffer_$11836_storage",
                              "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "expression": {
                                  "id": 7247,
                                  "name": "_newDraw",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 7225,
                                  "src": "6064:8:39",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                                    "typeString": "struct IDrawBeacon.Draw memory"
                                  }
                                },
                                "id": 7248,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "drawId",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 10690,
                                "src": "6064:15:39",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              ],
                              "expression": {
                                "id": 7245,
                                "name": "_buffer",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 7234,
                                "src": "6051:7:39",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                                  "typeString": "struct DrawRingBufferLib.Buffer memory"
                                }
                              },
                              "id": 7246,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "push",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 11902,
                              "src": "6051:12:39",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_pure$_t_struct$_Buffer_$11836_memory_ptr_$_t_uint32_$returns$_t_struct$_Buffer_$11836_memory_ptr_$bound_to$_t_struct$_Buffer_$11836_memory_ptr_$",
                                "typeString": "function (struct DrawRingBufferLib.Buffer memory,uint32) pure returns (struct DrawRingBufferLib.Buffer memory)"
                              }
                            },
                            "id": 7249,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "6051:29:39",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                              "typeString": "struct DrawRingBufferLib.Buffer memory"
                            }
                          },
                          "src": "6034:46:39",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$11836_storage",
                            "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                          }
                        },
                        "id": 7251,
                        "nodeType": "ExpressionStatement",
                        "src": "6034:46:39"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 7253,
                                "name": "_newDraw",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 7225,
                                "src": "6104:8:39",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                                  "typeString": "struct IDrawBeacon.Draw memory"
                                }
                              },
                              "id": 7254,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "drawId",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 10690,
                              "src": "6104:15:39",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 7255,
                              "name": "_newDraw",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7225,
                              "src": "6121:8:39",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory"
                              }
                            ],
                            "id": 7252,
                            "name": "DrawSet",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10865,
                            "src": "6096:7:39",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint32_$_t_struct$_Draw_$10697_memory_ptr_$returns$__$",
                              "typeString": "function (uint32,struct IDrawBeacon.Draw memory)"
                            }
                          },
                          "id": 7256,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6096:34:39",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 7257,
                        "nodeType": "EmitStatement",
                        "src": "6091:39:39"
                      },
                      {
                        "expression": {
                          "expression": {
                            "id": 7258,
                            "name": "_newDraw",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7225,
                            "src": "6148:8:39",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                              "typeString": "struct IDrawBeacon.Draw memory"
                            }
                          },
                          "id": 7259,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "drawId",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 10690,
                          "src": "6148:15:39",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "functionReturnParameters": 7229,
                        "id": 7260,
                        "nodeType": "Return",
                        "src": "6141:22:39"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 7222,
                    "nodeType": "StructuredDocumentation",
                    "src": "5607:213:39",
                    "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": 7262,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_pushDraw",
                  "nameLocation": "5834:9:39",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 7226,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7225,
                        "mutability": "mutable",
                        "name": "_newDraw",
                        "nameLocation": "5868:8:39",
                        "nodeType": "VariableDeclaration",
                        "scope": 7262,
                        "src": "5844:32:39",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw"
                        },
                        "typeName": {
                          "id": 7224,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 7223,
                            "name": "IDrawBeacon.Draw",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 10697,
                            "src": "5844:16:39"
                          },
                          "referencedDeclaration": 10697,
                          "src": "5844:16:39",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$10697_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5843:34:39"
                  },
                  "returnParameters": {
                    "id": 7229,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7228,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 7262,
                        "src": "5896:6:39",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 7227,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "5896:6:39",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5895:8:39"
                  },
                  "scope": 7263,
                  "src": "5825:345:39",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 7264,
              "src": "1184:4988:39",
              "usedErrors": []
            }
          ],
          "src": "37:6136:39"
        },
        "id": 39
      },
      "@pooltogether/v4-core/contracts/DrawCalculator.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/DrawCalculator.sol",
          "exportedSymbols": {
            "Address": [
              1775
            ],
            "DrawCalculator": [
              8293
            ],
            "DrawRingBufferLib": [
              11966
            ],
            "ExtendedSafeCastLib": [
              12045
            ],
            "IControlledToken": [
              10681
            ],
            "IDrawBeacon": [
              10853
            ],
            "IDrawBuffer": [
              10930
            ],
            "IDrawCalculator": [
              11003
            ],
            "IERC20": [
              890
            ],
            "IPrizeDistributionBuffer": [
              11079
            ],
            "IPrizeDistributionSource": [
              11115
            ],
            "IPrizeDistributor": [
              11213
            ],
            "ITicket": [
              11825
            ],
            "Manageable": [
              5200
            ],
            "ObservationLib": [
              12204
            ],
            "OverflowSafeComparatorLib": [
              12376
            ],
            "Ownable": [
              5355
            ],
            "PrizeDistributionBuffer": [
              8796
            ],
            "PrizeDistributor": [
              9169
            ],
            "RNGInterface": [
              5835
            ],
            "RingBufferLib": [
              12461
            ],
            "SafeCast": [
              3225
            ],
            "SafeERC20": [
              1344
            ],
            "TwabLib": [
              13211
            ]
          },
          "id": 8294,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 7265,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:40"
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IDrawCalculator.sol",
              "file": "./interfaces/IDrawCalculator.sol",
              "id": 7266,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 8294,
              "sourceUnit": 11004,
              "src": "61:42:40",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/ITicket.sol",
              "file": "./interfaces/ITicket.sol",
              "id": 7267,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 8294,
              "sourceUnit": 11826,
              "src": "104:34:40",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol",
              "file": "./interfaces/IDrawBuffer.sol",
              "id": 7268,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 8294,
              "sourceUnit": 10931,
              "src": "139:38:40",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionBuffer.sol",
              "file": "./interfaces/IPrizeDistributionBuffer.sol",
              "id": 7269,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 8294,
              "sourceUnit": 11080,
              "src": "178:51:40",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol",
              "file": "./interfaces/IDrawBeacon.sol",
              "id": 7270,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 8294,
              "sourceUnit": 10854,
              "src": "230:38:40",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 7272,
                    "name": "IDrawCalculator",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 11003,
                    "src": "903:15:40"
                  },
                  "id": 7273,
                  "nodeType": "InheritanceSpecifier",
                  "src": "903:15:40"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 7271,
                "nodeType": "StructuredDocumentation",
                "src": "270:605:40",
                "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": 8293,
              "linearizedBaseContracts": [
                8293,
                11003
              ],
              "name": "DrawCalculator",
              "nameLocation": "885:14:40",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "constant": false,
                  "documentation": {
                    "id": 7274,
                    "nodeType": "StructuredDocumentation",
                    "src": "926:30:40",
                    "text": "@notice DrawBuffer address"
                  },
                  "functionSelector": "ce343bb6",
                  "id": 7277,
                  "mutability": "immutable",
                  "name": "drawBuffer",
                  "nameLocation": "990:10:40",
                  "nodeType": "VariableDeclaration",
                  "scope": 8293,
                  "src": "961:39:40",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                    "typeString": "contract IDrawBuffer"
                  },
                  "typeName": {
                    "id": 7276,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 7275,
                      "name": "IDrawBuffer",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 10930,
                      "src": "961:11:40"
                    },
                    "referencedDeclaration": 10930,
                    "src": "961:11:40",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                      "typeString": "contract IDrawBuffer"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 7278,
                    "nodeType": "StructuredDocumentation",
                    "src": "1007:49:40",
                    "text": "@notice Ticket associated with DrawCalculator"
                  },
                  "functionSelector": "6cc25db7",
                  "id": 7281,
                  "mutability": "immutable",
                  "name": "ticket",
                  "nameLocation": "1086:6:40",
                  "nodeType": "VariableDeclaration",
                  "scope": 8293,
                  "src": "1061:31:40",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_ITicket_$11825",
                    "typeString": "contract ITicket"
                  },
                  "typeName": {
                    "id": 7280,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 7279,
                      "name": "ITicket",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 11825,
                      "src": "1061:7:40"
                    },
                    "referencedDeclaration": 11825,
                    "src": "1061:7:40",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_ITicket_$11825",
                      "typeString": "contract ITicket"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 7282,
                    "nodeType": "StructuredDocumentation",
                    "src": "1099:72:40",
                    "text": "@notice The stored history of draw settings.  Stored as ring buffer."
                  },
                  "functionSelector": "0840bbdd",
                  "id": 7285,
                  "mutability": "immutable",
                  "name": "prizeDistributionBuffer",
                  "nameLocation": "1218:23:40",
                  "nodeType": "VariableDeclaration",
                  "scope": 8293,
                  "src": "1176:65:40",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11079",
                    "typeString": "contract IPrizeDistributionBuffer"
                  },
                  "typeName": {
                    "id": 7284,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 7283,
                      "name": "IPrizeDistributionBuffer",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 11079,
                      "src": "1176:24:40"
                    },
                    "referencedDeclaration": 11079,
                    "src": "1176:24:40",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11079",
                      "typeString": "contract IPrizeDistributionBuffer"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "constant": true,
                  "documentation": {
                    "id": 7286,
                    "nodeType": "StructuredDocumentation",
                    "src": "1248:34:40",
                    "text": "@notice The tiers array length"
                  },
                  "functionSelector": "f8d0ca4c",
                  "id": 7289,
                  "mutability": "constant",
                  "name": "TIERS_LENGTH",
                  "nameLocation": "1309:12:40",
                  "nodeType": "VariableDeclaration",
                  "scope": 8293,
                  "src": "1287:39:40",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint8",
                    "typeString": "uint8"
                  },
                  "typeName": {
                    "id": 7287,
                    "name": "uint8",
                    "nodeType": "ElementaryTypeName",
                    "src": "1287:5:40",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint8",
                      "typeString": "uint8"
                    }
                  },
                  "value": {
                    "hexValue": "3136",
                    "id": 7288,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "number",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "1324:2:40",
                    "typeDescriptions": {
                      "typeIdentifier": "t_rational_16_by_1",
                      "typeString": "int_const 16"
                    },
                    "value": "16"
                  },
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 7359,
                    "nodeType": "Block",
                    "src": "1777:445:40",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 7311,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 7305,
                                    "name": "_ticket",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 7293,
                                    "src": "1803:7:40",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_ITicket_$11825",
                                      "typeString": "contract ITicket"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_ITicket_$11825",
                                      "typeString": "contract ITicket"
                                    }
                                  ],
                                  "id": 7304,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "1795:7:40",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 7303,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "1795:7:40",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 7306,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1795:16:40",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 7309,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "1823:1:40",
                                    "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": 7308,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "1815:7:40",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 7307,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "1815:7:40",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 7310,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1815:10:40",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "1795:30:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4472617743616c632f7469636b65742d6e6f742d7a65726f",
                              "id": 7312,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1827:26:40",
                              "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": 7302,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1787:7:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 7313,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1787:67:40",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 7314,
                        "nodeType": "ExpressionStatement",
                        "src": "1787:67:40"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 7324,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 7318,
                                    "name": "_prizeDistributionBuffer",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 7299,
                                    "src": "1880:24:40",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11079",
                                      "typeString": "contract IPrizeDistributionBuffer"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11079",
                                      "typeString": "contract IPrizeDistributionBuffer"
                                    }
                                  ],
                                  "id": 7317,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "1872:7:40",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 7316,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "1872:7:40",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 7319,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1872:33:40",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 7322,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "1917:1:40",
                                    "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": 7321,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "1909:7:40",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 7320,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "1909:7:40",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 7323,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1909:10:40",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "1872:47:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4472617743616c632f7064622d6e6f742d7a65726f",
                              "id": 7325,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1921:23:40",
                              "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": 7315,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1864:7:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 7326,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1864:81:40",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 7327,
                        "nodeType": "ExpressionStatement",
                        "src": "1864:81:40"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 7337,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 7331,
                                    "name": "_drawBuffer",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 7296,
                                    "src": "1971:11:40",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                                      "typeString": "contract IDrawBuffer"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                                      "typeString": "contract IDrawBuffer"
                                    }
                                  ],
                                  "id": 7330,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "1963:7:40",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 7329,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "1963:7:40",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 7332,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1963:20:40",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 7335,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "1995:1:40",
                                    "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": 7334,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "1987:7:40",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 7333,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "1987:7:40",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 7336,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1987:10:40",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "1963:34:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4472617743616c632f64682d6e6f742d7a65726f",
                              "id": 7338,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1999:22:40",
                              "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": 7328,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1955:7:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 7339,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1955:67:40",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 7340,
                        "nodeType": "ExpressionStatement",
                        "src": "1955:67:40"
                      },
                      {
                        "expression": {
                          "id": 7343,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 7341,
                            "name": "ticket",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7281,
                            "src": "2033:6:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_ITicket_$11825",
                              "typeString": "contract ITicket"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 7342,
                            "name": "_ticket",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7293,
                            "src": "2042:7:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_ITicket_$11825",
                              "typeString": "contract ITicket"
                            }
                          },
                          "src": "2033:16:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$11825",
                            "typeString": "contract ITicket"
                          }
                        },
                        "id": 7344,
                        "nodeType": "ExpressionStatement",
                        "src": "2033:16:40"
                      },
                      {
                        "expression": {
                          "id": 7347,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 7345,
                            "name": "drawBuffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7277,
                            "src": "2059:10:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                              "typeString": "contract IDrawBuffer"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 7346,
                            "name": "_drawBuffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7296,
                            "src": "2072:11:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                              "typeString": "contract IDrawBuffer"
                            }
                          },
                          "src": "2059:24:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "id": 7348,
                        "nodeType": "ExpressionStatement",
                        "src": "2059:24:40"
                      },
                      {
                        "expression": {
                          "id": 7351,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 7349,
                            "name": "prizeDistributionBuffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7285,
                            "src": "2093:23:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11079",
                              "typeString": "contract IPrizeDistributionBuffer"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 7350,
                            "name": "_prizeDistributionBuffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7299,
                            "src": "2119:24:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11079",
                              "typeString": "contract IPrizeDistributionBuffer"
                            }
                          },
                          "src": "2093:50:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11079",
                            "typeString": "contract IPrizeDistributionBuffer"
                          }
                        },
                        "id": 7352,
                        "nodeType": "ExpressionStatement",
                        "src": "2093:50:40"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 7354,
                              "name": "_ticket",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7293,
                              "src": "2168:7:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$11825",
                                "typeString": "contract ITicket"
                              }
                            },
                            {
                              "id": 7355,
                              "name": "_drawBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7296,
                              "src": "2177:11:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                                "typeString": "contract IDrawBuffer"
                              }
                            },
                            {
                              "id": 7356,
                              "name": "_prizeDistributionBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7299,
                              "src": "2190:24:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11079",
                                "typeString": "contract IPrizeDistributionBuffer"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_ITicket_$11825",
                                "typeString": "contract ITicket"
                              },
                              {
                                "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                                "typeString": "contract IDrawBuffer"
                              },
                              {
                                "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11079",
                                "typeString": "contract IPrizeDistributionBuffer"
                              }
                            ],
                            "id": 7353,
                            "name": "Deployed",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10954,
                            "src": "2159:8:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_contract$_ITicket_$11825_$_t_contract$_IDrawBuffer_$10930_$_t_contract$_IPrizeDistributionBuffer_$11079_$returns$__$",
                              "typeString": "function (contract ITicket,contract IDrawBuffer,contract IPrizeDistributionBuffer)"
                            }
                          },
                          "id": 7357,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2159:56:40",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 7358,
                        "nodeType": "EmitStatement",
                        "src": "2154:61:40"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 7290,
                    "nodeType": "StructuredDocumentation",
                    "src": "1382:255:40",
                    "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": 7360,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 7300,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7293,
                        "mutability": "mutable",
                        "name": "_ticket",
                        "nameLocation": "1671:7:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 7360,
                        "src": "1663:15:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ITicket_$11825",
                          "typeString": "contract ITicket"
                        },
                        "typeName": {
                          "id": 7292,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 7291,
                            "name": "ITicket",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11825,
                            "src": "1663:7:40"
                          },
                          "referencedDeclaration": 11825,
                          "src": "1663:7:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$11825",
                            "typeString": "contract ITicket"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7296,
                        "mutability": "mutable",
                        "name": "_drawBuffer",
                        "nameLocation": "1700:11:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 7360,
                        "src": "1688:23:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                          "typeString": "contract IDrawBuffer"
                        },
                        "typeName": {
                          "id": 7295,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 7294,
                            "name": "IDrawBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 10930,
                            "src": "1688:11:40"
                          },
                          "referencedDeclaration": 10930,
                          "src": "1688:11:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7299,
                        "mutability": "mutable",
                        "name": "_prizeDistributionBuffer",
                        "nameLocation": "1746:24:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 7360,
                        "src": "1721:49:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11079",
                          "typeString": "contract IPrizeDistributionBuffer"
                        },
                        "typeName": {
                          "id": 7298,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 7297,
                            "name": "IPrizeDistributionBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11079,
                            "src": "1721:24:40"
                          },
                          "referencedDeclaration": 11079,
                          "src": "1721:24:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11079",
                            "typeString": "contract IPrizeDistributionBuffer"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1653:123:40"
                  },
                  "returnParameters": {
                    "id": 7301,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1777:0:40"
                  },
                  "scope": 8293,
                  "src": "1642:580:40",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    10976
                  ],
                  "body": {
                    "id": 7452,
                    "nodeType": "Block",
                    "src": "2513:1108:40",
                    "statements": [
                      {
                        "assignments": [
                          7382
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7382,
                            "mutability": "mutable",
                            "name": "pickIndices",
                            "nameLocation": "2541:11:40",
                            "nodeType": "VariableDeclaration",
                            "scope": 7452,
                            "src": "2523:29:40",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_array$_t_uint64_$dyn_memory_ptr_$dyn_memory_ptr",
                              "typeString": "uint64[][]"
                            },
                            "typeName": {
                              "baseType": {
                                "baseType": {
                                  "id": 7379,
                                  "name": "uint64",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "2523:6:40",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint64",
                                    "typeString": "uint64"
                                  }
                                },
                                "id": 7380,
                                "nodeType": "ArrayTypeName",
                                "src": "2523:8:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                                  "typeString": "uint64[]"
                                }
                              },
                              "id": 7381,
                              "nodeType": "ArrayTypeName",
                              "src": "2523:10:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_array$_t_uint64_$dyn_storage_$dyn_storage_ptr",
                                "typeString": "uint64[][]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7392,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 7385,
                              "name": "_pickIndicesForDraws",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7368,
                              "src": "2566:20:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_calldata_ptr",
                                "typeString": "bytes calldata"
                              }
                            },
                            {
                              "components": [
                                {
                                  "baseExpression": {
                                    "baseExpression": {
                                      "id": 7387,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "2589:6:40",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_uint64_$",
                                        "typeString": "type(uint64)"
                                      },
                                      "typeName": {
                                        "id": 7386,
                                        "name": "uint64",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "2589:6:40",
                                        "typeDescriptions": {}
                                      }
                                    },
                                    "id": 7388,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "IndexAccess",
                                    "src": "2589:9:40",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_array$_t_uint64_$dyn_memory_ptr_$",
                                      "typeString": "type(uint64[] memory)"
                                    }
                                  },
                                  "id": 7389,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "IndexAccess",
                                  "src": "2589:11:40",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_array$_t_array$_t_uint64_$dyn_memory_ptr_$dyn_memory_ptr_$",
                                    "typeString": "type(uint64[] memory[] memory)"
                                  }
                                }
                              ],
                              "id": 7390,
                              "isConstant": false,
                              "isInlineArray": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "nodeType": "TupleExpression",
                              "src": "2588:13:40",
                              "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": 7383,
                              "name": "abi",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": -1,
                              "src": "2555:3:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_magic_abi",
                                "typeString": "abi"
                              }
                            },
                            "id": 7384,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "memberName": "decode",
                            "nodeType": "MemberAccess",
                            "src": "2555:10:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_abidecode_pure$__$returns$__$",
                              "typeString": "function () pure"
                            }
                          },
                          "id": 7391,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2555:47:40",
                          "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:40"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 7398,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 7394,
                                  "name": "pickIndices",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 7382,
                                  "src": "2620:11:40",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_array$_t_array$_t_uint64_$dyn_memory_ptr_$dyn_memory_ptr",
                                    "typeString": "uint64[] memory[] memory"
                                  }
                                },
                                "id": 7395,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "length",
                                "nodeType": "MemberAccess",
                                "src": "2620:18:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "==",
                              "rightExpression": {
                                "expression": {
                                  "id": 7396,
                                  "name": "_drawIds",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 7366,
                                  "src": "2642:8:40",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                                    "typeString": "uint32[] calldata"
                                  }
                                },
                                "id": 7397,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "length",
                                "nodeType": "MemberAccess",
                                "src": "2642:15:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "2620:37:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4472617743616c632f696e76616c69642d7069636b2d696e64696365732d6c656e677468",
                              "id": 7399,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2659:38:40",
                              "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": 7393,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2612:7:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 7400,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2612:86:40",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 7401,
                        "nodeType": "ExpressionStatement",
                        "src": "2612:86:40"
                      },
                      {
                        "assignments": [
                          7407
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7407,
                            "mutability": "mutable",
                            "name": "draws",
                            "nameLocation": "2810:5:40",
                            "nodeType": "VariableDeclaration",
                            "scope": 7452,
                            "src": "2784:31:40",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_Draw_$10697_memory_ptr_$dyn_memory_ptr",
                              "typeString": "struct IDrawBeacon.Draw[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 7405,
                                "nodeType": "UserDefinedTypeName",
                                "pathNode": {
                                  "id": 7404,
                                  "name": "IDrawBeacon.Draw",
                                  "nodeType": "IdentifierPath",
                                  "referencedDeclaration": 10697,
                                  "src": "2784:16:40"
                                },
                                "referencedDeclaration": 10697,
                                "src": "2784:16:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Draw_$10697_storage_ptr",
                                  "typeString": "struct IDrawBeacon.Draw"
                                }
                              },
                              "id": 7406,
                              "nodeType": "ArrayTypeName",
                              "src": "2784:18:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Draw_$10697_storage_$dyn_storage_ptr",
                                "typeString": "struct IDrawBeacon.Draw[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7412,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 7410,
                              "name": "_drawIds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7366,
                              "src": "2838:8:40",
                              "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": 7408,
                              "name": "drawBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7277,
                              "src": "2818:10:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                                "typeString": "contract IDrawBuffer"
                              }
                            },
                            "id": 7409,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getDraws",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 10891,
                            "src": "2818:19:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$_t_array$_t_uint32_$dyn_memory_ptr_$returns$_t_array$_t_struct$_Draw_$10697_memory_ptr_$dyn_memory_ptr_$",
                              "typeString": "function (uint32[] memory) view external returns (struct IDrawBeacon.Draw memory[] memory)"
                            }
                          },
                          "id": 7411,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2818:29:40",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Draw_$10697_memory_ptr_$dyn_memory_ptr",
                            "typeString": "struct IDrawBeacon.Draw memory[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2784:63:40"
                      },
                      {
                        "assignments": [
                          7418
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7418,
                            "mutability": "mutable",
                            "name": "_prizeDistributions",
                            "nameLocation": "2995:19:40",
                            "nodeType": "VariableDeclaration",
                            "scope": 7452,
                            "src": "2943:71:40",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11103_memory_ptr_$dyn_memory_ptr",
                              "typeString": "struct IPrizeDistributionSource.PrizeDistribution[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 7416,
                                "nodeType": "UserDefinedTypeName",
                                "pathNode": {
                                  "id": 7415,
                                  "name": "IPrizeDistributionBuffer.PrizeDistribution",
                                  "nodeType": "IdentifierPath",
                                  "referencedDeclaration": 11103,
                                  "src": "2943:42:40"
                                },
                                "referencedDeclaration": 11103,
                                "src": "2943:42:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_PrizeDistribution_$11103_storage_ptr",
                                  "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                                }
                              },
                              "id": 7417,
                              "nodeType": "ArrayTypeName",
                              "src": "2943:44:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11103_storage_$dyn_storage_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7423,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 7421,
                              "name": "_drawIds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7366,
                              "src": "3076:8:40",
                              "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": 7419,
                              "name": "prizeDistributionBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7285,
                              "src": "3017:23:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11079",
                                "typeString": "contract IPrizeDistributionBuffer"
                              }
                            },
                            "id": 7420,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getPrizeDistributions",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11114,
                            "src": "3017:58:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$_t_array$_t_uint32_$dyn_memory_ptr_$returns$_t_array$_t_struct$_PrizeDistribution_$11103_memory_ptr_$dyn_memory_ptr_$",
                              "typeString": "function (uint32[] memory) view external returns (struct IPrizeDistributionSource.PrizeDistribution memory[] memory)"
                            }
                          },
                          "id": 7422,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3017:68:40",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11103_memory_ptr_$dyn_memory_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2943:142:40"
                      },
                      {
                        "assignments": [
                          7428
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7428,
                            "mutability": "mutable",
                            "name": "userBalances",
                            "nameLocation": "3211:12:40",
                            "nodeType": "VariableDeclaration",
                            "scope": 7452,
                            "src": "3194:29:40",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 7426,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "3194:7:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 7427,
                              "nodeType": "ArrayTypeName",
                              "src": "3194:9:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7434,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 7430,
                              "name": "_user",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7363,
                              "src": "3251:5:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 7431,
                              "name": "draws",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7407,
                              "src": "3258:5:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Draw_$10697_memory_ptr_$dyn_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory[] memory"
                              }
                            },
                            {
                              "id": 7432,
                              "name": "_prizeDistributions",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7418,
                              "src": "3265:19:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11103_memory_ptr_$dyn_memory_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory[] memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_array$_t_struct$_Draw_$10697_memory_ptr_$dyn_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory[] memory"
                              },
                              {
                                "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11103_memory_ptr_$dyn_memory_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory[] memory"
                              }
                            ],
                            "id": 7429,
                            "name": "_getNormalizedBalancesAt",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7837,
                            "src": "3226:24:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_address_$_t_array$_t_struct$_Draw_$10697_memory_ptr_$dyn_memory_ptr_$_t_array$_t_struct$_PrizeDistribution_$11103_memory_ptr_$dyn_memory_ptr_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$",
                              "typeString": "function (address,struct IDrawBeacon.Draw memory[] memory,struct IPrizeDistributionSource.PrizeDistribution memory[] memory) view returns (uint256[] memory)"
                            }
                          },
                          "id": 7433,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3226:59:40",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3194:91:40"
                      },
                      {
                        "assignments": [
                          7436
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7436,
                            "mutability": "mutable",
                            "name": "_userRandomNumber",
                            "nameLocation": "3349:17:40",
                            "nodeType": "VariableDeclaration",
                            "scope": 7452,
                            "src": "3341:25:40",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes32",
                              "typeString": "bytes32"
                            },
                            "typeName": {
                              "id": 7435,
                              "name": "bytes32",
                              "nodeType": "ElementaryTypeName",
                              "src": "3341:7:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7443,
                        "initialValue": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 7440,
                                  "name": "_user",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 7363,
                                  "src": "3396:5:40",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                ],
                                "expression": {
                                  "id": 7438,
                                  "name": "abi",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -1,
                                  "src": "3379:3:40",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_abi",
                                    "typeString": "abi"
                                  }
                                },
                                "id": 7439,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "encodePacked",
                                "nodeType": "MemberAccess",
                                "src": "3379:16:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$",
                                  "typeString": "function () pure returns (bytes memory)"
                                }
                              },
                              "id": 7441,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "3379:23:40",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "id": 7437,
                            "name": "keccak256",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": -8,
                            "src": "3369:9:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$",
                              "typeString": "function (bytes memory) pure returns (bytes32)"
                            }
                          },
                          "id": 7442,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3369:34:40",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3341:62:40"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 7445,
                              "name": "userBalances",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7428,
                              "src": "3464:12:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                "typeString": "uint256[] memory"
                              }
                            },
                            {
                              "id": 7446,
                              "name": "_userRandomNumber",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7436,
                              "src": "3494:17:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            {
                              "id": 7447,
                              "name": "draws",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7407,
                              "src": "3529:5:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Draw_$10697_memory_ptr_$dyn_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory[] memory"
                              }
                            },
                            {
                              "id": 7448,
                              "name": "pickIndices",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7382,
                              "src": "3552:11:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_array$_t_uint64_$dyn_memory_ptr_$dyn_memory_ptr",
                                "typeString": "uint64[] memory[] memory"
                              }
                            },
                            {
                              "id": 7449,
                              "name": "_prizeDistributions",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7418,
                              "src": "3581:19:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11103_memory_ptr_$dyn_memory_ptr",
                                "typeString": "struct IPrizeDistributionSource.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_$10697_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_$11103_memory_ptr_$dyn_memory_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory[] memory"
                              }
                            ],
                            "id": 7444,
                            "name": "_calculatePrizesAwardable",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7651,
                            "src": "3421:25:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_array$_t_uint256_$dyn_memory_ptr_$_t_bytes32_$_t_array$_t_struct$_Draw_$10697_memory_ptr_$dyn_memory_ptr_$_t_array$_t_array$_t_uint64_$dyn_memory_ptr_$dyn_memory_ptr_$_t_array$_t_struct$_PrizeDistribution_$11103_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 IPrizeDistributionSource.PrizeDistribution memory[] memory) view returns (uint256[] memory,bytes memory)"
                            }
                          },
                          "id": 7450,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3421:193:40",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_array$_t_uint256_$dyn_memory_ptr_$_t_bytes_memory_ptr_$",
                            "typeString": "tuple(uint256[] memory,bytes memory)"
                          }
                        },
                        "functionReturnParameters": 7376,
                        "id": 7451,
                        "nodeType": "Return",
                        "src": "3414:200:40"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 7361,
                    "nodeType": "StructuredDocumentation",
                    "src": "2284:31:40",
                    "text": "@inheritdoc IDrawCalculator"
                  },
                  "functionSelector": "aaca392e",
                  "id": 7453,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "calculate",
                  "nameLocation": "2329:9:40",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 7370,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2463:8:40"
                  },
                  "parameters": {
                    "id": 7369,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7363,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "2356:5:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 7453,
                        "src": "2348:13:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 7362,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2348:7:40",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7366,
                        "mutability": "mutable",
                        "name": "_drawIds",
                        "nameLocation": "2389:8:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 7453,
                        "src": "2371:26:40",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                          "typeString": "uint32[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 7364,
                            "name": "uint32",
                            "nodeType": "ElementaryTypeName",
                            "src": "2371:6:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "id": 7365,
                          "nodeType": "ArrayTypeName",
                          "src": "2371:8:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint32_$dyn_storage_ptr",
                            "typeString": "uint32[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7368,
                        "mutability": "mutable",
                        "name": "_pickIndicesForDraws",
                        "nameLocation": "2422:20:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 7453,
                        "src": "2407:35:40",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_calldata_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 7367,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "2407:5:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2338:110:40"
                  },
                  "returnParameters": {
                    "id": 7376,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7373,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 7453,
                        "src": "2481:16:40",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 7371,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "2481:7:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 7372,
                          "nodeType": "ArrayTypeName",
                          "src": "2481:9:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7375,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 7453,
                        "src": "2499:12:40",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 7374,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "2499:5:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2480:32:40"
                  },
                  "scope": 8293,
                  "src": "2320:1301:40",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    10983
                  ],
                  "body": {
                    "id": 7463,
                    "nodeType": "Block",
                    "src": "3733:34:40",
                    "statements": [
                      {
                        "expression": {
                          "id": 7461,
                          "name": "drawBuffer",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 7277,
                          "src": "3750:10:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "functionReturnParameters": 7460,
                        "id": 7462,
                        "nodeType": "Return",
                        "src": "3743:17:40"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 7454,
                    "nodeType": "StructuredDocumentation",
                    "src": "3627:31:40",
                    "text": "@inheritdoc IDrawCalculator"
                  },
                  "functionSelector": "4019f2d6",
                  "id": 7464,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getDrawBuffer",
                  "nameLocation": "3672:13:40",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 7456,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3702:8:40"
                  },
                  "parameters": {
                    "id": 7455,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3685:2:40"
                  },
                  "returnParameters": {
                    "id": 7460,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7459,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 7464,
                        "src": "3720:11:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                          "typeString": "contract IDrawBuffer"
                        },
                        "typeName": {
                          "id": 7458,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 7457,
                            "name": "IDrawBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 10930,
                            "src": "3720:11:40"
                          },
                          "referencedDeclaration": 10930,
                          "src": "3720:11:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3719:13:40"
                  },
                  "scope": 8293,
                  "src": "3663:104:40",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    10990
                  ],
                  "body": {
                    "id": 7474,
                    "nodeType": "Block",
                    "src": "3941:47:40",
                    "statements": [
                      {
                        "expression": {
                          "id": 7472,
                          "name": "prizeDistributionBuffer",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 7285,
                          "src": "3958:23:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11079",
                            "typeString": "contract IPrizeDistributionBuffer"
                          }
                        },
                        "functionReturnParameters": 7471,
                        "id": 7473,
                        "nodeType": "Return",
                        "src": "3951:30:40"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 7465,
                    "nodeType": "StructuredDocumentation",
                    "src": "3773:31:40",
                    "text": "@inheritdoc IDrawCalculator"
                  },
                  "functionSelector": "bd97a252",
                  "id": 7475,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPrizeDistributionBuffer",
                  "nameLocation": "3818:26:40",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 7467,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3885:8:40"
                  },
                  "parameters": {
                    "id": 7466,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3844:2:40"
                  },
                  "returnParameters": {
                    "id": 7471,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7470,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 7475,
                        "src": "3911:24:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11079",
                          "typeString": "contract IPrizeDistributionBuffer"
                        },
                        "typeName": {
                          "id": 7469,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 7468,
                            "name": "IPrizeDistributionBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11079,
                            "src": "3911:24:40"
                          },
                          "referencedDeclaration": 11079,
                          "src": "3911:24:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11079",
                            "typeString": "contract IPrizeDistributionBuffer"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3910:26:40"
                  },
                  "scope": 8293,
                  "src": "3809:179:40",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11002
                  ],
                  "body": {
                    "id": 7516,
                    "nodeType": "Block",
                    "src": "4200:311:40",
                    "statements": [
                      {
                        "assignments": [
                          7493
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7493,
                            "mutability": "mutable",
                            "name": "_draws",
                            "nameLocation": "4236:6:40",
                            "nodeType": "VariableDeclaration",
                            "scope": 7516,
                            "src": "4210:32:40",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_Draw_$10697_memory_ptr_$dyn_memory_ptr",
                              "typeString": "struct IDrawBeacon.Draw[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 7491,
                                "nodeType": "UserDefinedTypeName",
                                "pathNode": {
                                  "id": 7490,
                                  "name": "IDrawBeacon.Draw",
                                  "nodeType": "IdentifierPath",
                                  "referencedDeclaration": 10697,
                                  "src": "4210:16:40"
                                },
                                "referencedDeclaration": 10697,
                                "src": "4210:16:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Draw_$10697_storage_ptr",
                                  "typeString": "struct IDrawBeacon.Draw"
                                }
                              },
                              "id": 7492,
                              "nodeType": "ArrayTypeName",
                              "src": "4210:18:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Draw_$10697_storage_$dyn_storage_ptr",
                                "typeString": "struct IDrawBeacon.Draw[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7498,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 7496,
                              "name": "_drawIds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7481,
                              "src": "4265:8:40",
                              "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": 7494,
                              "name": "drawBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7277,
                              "src": "4245:10:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                                "typeString": "contract IDrawBuffer"
                              }
                            },
                            "id": 7495,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getDraws",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 10891,
                            "src": "4245:19:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$_t_array$_t_uint32_$dyn_memory_ptr_$returns$_t_array$_t_struct$_Draw_$10697_memory_ptr_$dyn_memory_ptr_$",
                              "typeString": "function (uint32[] memory) view external returns (struct IDrawBeacon.Draw memory[] memory)"
                            }
                          },
                          "id": 7497,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4245:29:40",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Draw_$10697_memory_ptr_$dyn_memory_ptr",
                            "typeString": "struct IDrawBeacon.Draw memory[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4210:64:40"
                      },
                      {
                        "assignments": [
                          7504
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7504,
                            "mutability": "mutable",
                            "name": "_prizeDistributions",
                            "nameLocation": "4336:19:40",
                            "nodeType": "VariableDeclaration",
                            "scope": 7516,
                            "src": "4284:71:40",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11103_memory_ptr_$dyn_memory_ptr",
                              "typeString": "struct IPrizeDistributionSource.PrizeDistribution[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 7502,
                                "nodeType": "UserDefinedTypeName",
                                "pathNode": {
                                  "id": 7501,
                                  "name": "IPrizeDistributionBuffer.PrizeDistribution",
                                  "nodeType": "IdentifierPath",
                                  "referencedDeclaration": 11103,
                                  "src": "4284:42:40"
                                },
                                "referencedDeclaration": 11103,
                                "src": "4284:42:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_PrizeDistribution_$11103_storage_ptr",
                                  "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                                }
                              },
                              "id": 7503,
                              "nodeType": "ArrayTypeName",
                              "src": "4284:44:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11103_storage_$dyn_storage_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7509,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 7507,
                              "name": "_drawIds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7481,
                              "src": "4417:8:40",
                              "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": 7505,
                              "name": "prizeDistributionBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7285,
                              "src": "4358:23:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11079",
                                "typeString": "contract IPrizeDistributionBuffer"
                              }
                            },
                            "id": 7506,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getPrizeDistributions",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11114,
                            "src": "4358:58:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$_t_array$_t_uint32_$dyn_memory_ptr_$returns$_t_array$_t_struct$_PrizeDistribution_$11103_memory_ptr_$dyn_memory_ptr_$",
                              "typeString": "function (uint32[] memory) view external returns (struct IPrizeDistributionSource.PrizeDistribution memory[] memory)"
                            }
                          },
                          "id": 7508,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4358:68:40",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11103_memory_ptr_$dyn_memory_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4284:142:40"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 7511,
                              "name": "_user",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7478,
                              "src": "4469:5:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 7512,
                              "name": "_draws",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7493,
                              "src": "4476:6:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Draw_$10697_memory_ptr_$dyn_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory[] memory"
                              }
                            },
                            {
                              "id": 7513,
                              "name": "_prizeDistributions",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7504,
                              "src": "4484:19:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11103_memory_ptr_$dyn_memory_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory[] memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_array$_t_struct$_Draw_$10697_memory_ptr_$dyn_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory[] memory"
                              },
                              {
                                "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11103_memory_ptr_$dyn_memory_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory[] memory"
                              }
                            ],
                            "id": 7510,
                            "name": "_getNormalizedBalancesAt",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7837,
                            "src": "4444:24:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_address_$_t_array$_t_struct$_Draw_$10697_memory_ptr_$dyn_memory_ptr_$_t_array$_t_struct$_PrizeDistribution_$11103_memory_ptr_$dyn_memory_ptr_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$",
                              "typeString": "function (address,struct IDrawBeacon.Draw memory[] memory,struct IPrizeDistributionSource.PrizeDistribution memory[] memory) view returns (uint256[] memory)"
                            }
                          },
                          "id": 7514,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4444:60:40",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "functionReturnParameters": 7487,
                        "id": 7515,
                        "nodeType": "Return",
                        "src": "4437:67:40"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 7476,
                    "nodeType": "StructuredDocumentation",
                    "src": "3994:31:40",
                    "text": "@inheritdoc IDrawCalculator"
                  },
                  "functionSelector": "8045fbcf",
                  "id": 7517,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getNormalizedBalancesForDrawIds",
                  "nameLocation": "4039:31:40",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 7483,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "4152:8:40"
                  },
                  "parameters": {
                    "id": 7482,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7478,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "4079:5:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 7517,
                        "src": "4071:13:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 7477,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4071:7:40",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7481,
                        "mutability": "mutable",
                        "name": "_drawIds",
                        "nameLocation": "4104:8:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 7517,
                        "src": "4086:26:40",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                          "typeString": "uint32[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 7479,
                            "name": "uint32",
                            "nodeType": "ElementaryTypeName",
                            "src": "4086:6:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "id": 7480,
                          "nodeType": "ArrayTypeName",
                          "src": "4086:8:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint32_$dyn_storage_ptr",
                            "typeString": "uint32[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4070:43:40"
                  },
                  "returnParameters": {
                    "id": 7487,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7486,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 7517,
                        "src": "4178:16:40",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 7484,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "4178:7:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 7485,
                          "nodeType": "ArrayTypeName",
                          "src": "4178:9:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4177:18:40"
                  },
                  "scope": 8293,
                  "src": "4030:481:40",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 7650,
                    "nodeType": "Block",
                    "src": "5425:1109:40",
                    "statements": [
                      {
                        "assignments": [
                          7547
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7547,
                            "mutability": "mutable",
                            "name": "_prizesAwardable",
                            "nameLocation": "5453:16:40",
                            "nodeType": "VariableDeclaration",
                            "scope": 7650,
                            "src": "5436:33:40",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 7545,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "5436:7:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 7546,
                              "nodeType": "ArrayTypeName",
                              "src": "5436:9:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7554,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 7551,
                                "name": "_normalizedUserBalances",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 7521,
                                "src": "5486:23:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                  "typeString": "uint256[] memory"
                                }
                              },
                              "id": 7552,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "length",
                              "nodeType": "MemberAccess",
                              "src": "5486:30:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 7550,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "5472:13:40",
                            "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": 7548,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "5476:7:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 7549,
                              "nodeType": "ArrayTypeName",
                              "src": "5476:9:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            }
                          },
                          "id": 7553,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5472:45:40",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "5436:81:40"
                      },
                      {
                        "assignments": [
                          7560
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7560,
                            "mutability": "mutable",
                            "name": "_prizeCounts",
                            "nameLocation": "5546:12:40",
                            "nodeType": "VariableDeclaration",
                            "scope": 7650,
                            "src": "5527:31:40",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_array$_t_uint256_$dyn_memory_ptr_$dyn_memory_ptr",
                              "typeString": "uint256[][]"
                            },
                            "typeName": {
                              "baseType": {
                                "baseType": {
                                  "id": 7557,
                                  "name": "uint256",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "5527:7:40",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "id": 7558,
                                "nodeType": "ArrayTypeName",
                                "src": "5527:9:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                  "typeString": "uint256[]"
                                }
                              },
                              "id": 7559,
                              "nodeType": "ArrayTypeName",
                              "src": "5527:11:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_array$_t_uint256_$dyn_storage_$dyn_storage_ptr",
                                "typeString": "uint256[][]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7568,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 7565,
                                "name": "_normalizedUserBalances",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 7521,
                                "src": "5577:23:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                  "typeString": "uint256[] memory"
                                }
                              },
                              "id": 7566,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "length",
                              "nodeType": "MemberAccess",
                              "src": "5577:30:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 7564,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "5561:15:40",
                            "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": 7561,
                                  "name": "uint256",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "5565:7:40",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "id": 7562,
                                "nodeType": "ArrayTypeName",
                                "src": "5565:9:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                  "typeString": "uint256[]"
                                }
                              },
                              "id": 7563,
                              "nodeType": "ArrayTypeName",
                              "src": "5565:11:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_array$_t_uint256_$dyn_storage_$dyn_storage_ptr",
                                "typeString": "uint256[][]"
                              }
                            }
                          },
                          "id": 7567,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5561:47:40",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_array$_t_uint256_$dyn_memory_ptr_$dyn_memory_ptr",
                            "typeString": "uint256[] memory[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "5527:81:40"
                      },
                      {
                        "assignments": [
                          7570
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7570,
                            "mutability": "mutable",
                            "name": "timeNow",
                            "nameLocation": "5626:7:40",
                            "nodeType": "VariableDeclaration",
                            "scope": 7650,
                            "src": "5619:14:40",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            },
                            "typeName": {
                              "id": 7569,
                              "name": "uint64",
                              "nodeType": "ElementaryTypeName",
                              "src": "5619:6:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7576,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 7573,
                                "name": "block",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -4,
                                "src": "5643:5:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_block",
                                  "typeString": "block"
                                }
                              },
                              "id": 7574,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "timestamp",
                              "nodeType": "MemberAccess",
                              "src": "5643:15:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 7572,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "5636:6:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint64_$",
                              "typeString": "type(uint64)"
                            },
                            "typeName": {
                              "id": 7571,
                              "name": "uint64",
                              "nodeType": "ElementaryTypeName",
                              "src": "5636:6:40",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 7575,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5636:23:40",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "5619:40:40"
                      },
                      {
                        "body": {
                          "id": 7637,
                          "nodeType": "Block",
                          "src": "5796:639:40",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "commonType": {
                                      "typeIdentifier": "t_uint64",
                                      "typeString": "uint64"
                                    },
                                    "id": 7599,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "leftExpression": {
                                      "id": 7589,
                                      "name": "timeNow",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 7570,
                                      "src": "5818:7:40",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint64",
                                        "typeString": "uint64"
                                      }
                                    },
                                    "nodeType": "BinaryOperation",
                                    "operator": "<",
                                    "rightExpression": {
                                      "commonType": {
                                        "typeIdentifier": "t_uint64",
                                        "typeString": "uint64"
                                      },
                                      "id": 7598,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "expression": {
                                          "baseExpression": {
                                            "id": 7590,
                                            "name": "_draws",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 7527,
                                            "src": "5828:6:40",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_array$_t_struct$_Draw_$10697_memory_ptr_$dyn_memory_ptr",
                                              "typeString": "struct IDrawBeacon.Draw memory[] memory"
                                            }
                                          },
                                          "id": 7592,
                                          "indexExpression": {
                                            "id": 7591,
                                            "name": "drawIndex",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 7578,
                                            "src": "5835:9:40",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint32",
                                              "typeString": "uint32"
                                            }
                                          },
                                          "isConstant": false,
                                          "isLValue": true,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "nodeType": "IndexAccess",
                                          "src": "5828:17:40",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                                            "typeString": "struct IDrawBeacon.Draw memory"
                                          }
                                        },
                                        "id": 7593,
                                        "isConstant": false,
                                        "isLValue": true,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "memberName": "timestamp",
                                        "nodeType": "MemberAccess",
                                        "referencedDeclaration": 10692,
                                        "src": "5828:27:40",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint64",
                                          "typeString": "uint64"
                                        }
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": "+",
                                      "rightExpression": {
                                        "expression": {
                                          "baseExpression": {
                                            "id": 7594,
                                            "name": "_prizeDistributions",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 7535,
                                            "src": "5858:19:40",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11103_memory_ptr_$dyn_memory_ptr",
                                              "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory[] memory"
                                            }
                                          },
                                          "id": 7596,
                                          "indexExpression": {
                                            "id": 7595,
                                            "name": "drawIndex",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 7578,
                                            "src": "5878:9:40",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint32",
                                              "typeString": "uint32"
                                            }
                                          },
                                          "isConstant": false,
                                          "isLValue": true,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "nodeType": "IndexAccess",
                                          "src": "5858:30:40",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_struct$_PrizeDistribution_$11103_memory_ptr",
                                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                          }
                                        },
                                        "id": 7597,
                                        "isConstant": false,
                                        "isLValue": true,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "memberName": "expiryDuration",
                                        "nodeType": "MemberAccess",
                                        "referencedDeclaration": 11094,
                                        "src": "5858:45:40",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint32",
                                          "typeString": "uint32"
                                        }
                                      },
                                      "src": "5828:75:40",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint64",
                                        "typeString": "uint64"
                                      }
                                    },
                                    "src": "5818:85:40",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bool",
                                      "typeString": "bool"
                                    }
                                  },
                                  {
                                    "hexValue": "4472617743616c632f647261772d65787069726564",
                                    "id": 7600,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "string",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "5905:23:40",
                                    "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": 7588,
                                  "name": "require",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [
                                    -18,
                                    -18
                                  ],
                                  "referencedDeclaration": -18,
                                  "src": "5810:7:40",
                                  "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": "5810:119:40",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 7602,
                              "nodeType": "ExpressionStatement",
                              "src": "5810:119:40"
                            },
                            {
                              "assignments": [
                                7604
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 7604,
                                  "mutability": "mutable",
                                  "name": "totalUserPicks",
                                  "nameLocation": "5951:14:40",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 7637,
                                  "src": "5944:21:40",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint64",
                                    "typeString": "uint64"
                                  },
                                  "typeName": {
                                    "id": 7603,
                                    "name": "uint64",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "5944:6:40",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint64",
                                      "typeString": "uint64"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 7613,
                              "initialValue": {
                                "arguments": [
                                  {
                                    "baseExpression": {
                                      "id": 7606,
                                      "name": "_prizeDistributions",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 7535,
                                      "src": "6013:19:40",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11103_memory_ptr_$dyn_memory_ptr",
                                        "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory[] memory"
                                      }
                                    },
                                    "id": 7608,
                                    "indexExpression": {
                                      "id": 7607,
                                      "name": "drawIndex",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 7578,
                                      "src": "6033:9:40",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    },
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "nodeType": "IndexAccess",
                                    "src": "6013:30:40",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_PrizeDistribution_$11103_memory_ptr",
                                      "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                    }
                                  },
                                  {
                                    "baseExpression": {
                                      "id": 7609,
                                      "name": "_normalizedUserBalances",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 7521,
                                      "src": "6061:23:40",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                        "typeString": "uint256[] memory"
                                      }
                                    },
                                    "id": 7611,
                                    "indexExpression": {
                                      "id": 7610,
                                      "name": "drawIndex",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 7578,
                                      "src": "6085:9:40",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    },
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "nodeType": "IndexAccess",
                                    "src": "6061:34:40",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_struct$_PrizeDistribution_$11103_memory_ptr",
                                      "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                    },
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  ],
                                  "id": 7605,
                                  "name": "_calculateNumberOfUserPicks",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 7674,
                                  "src": "5968:27:40",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_pure$_t_struct$_PrizeDistribution_$11103_memory_ptr_$_t_uint256_$returns$_t_uint64_$",
                                    "typeString": "function (struct IPrizeDistributionSource.PrizeDistribution memory,uint256) pure returns (uint64)"
                                  }
                                },
                                "id": 7612,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "5968:141:40",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                }
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "5944:165:40"
                            },
                            {
                              "expression": {
                                "id": 7635,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "components": [
                                    {
                                      "baseExpression": {
                                        "id": 7614,
                                        "name": "_prizesAwardable",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 7547,
                                        "src": "6125:16:40",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                          "typeString": "uint256[] memory"
                                        }
                                      },
                                      "id": 7616,
                                      "indexExpression": {
                                        "id": 7615,
                                        "name": "drawIndex",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 7578,
                                        "src": "6142:9:40",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint32",
                                          "typeString": "uint32"
                                        }
                                      },
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": true,
                                      "nodeType": "IndexAccess",
                                      "src": "6125:27:40",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    {
                                      "baseExpression": {
                                        "id": 7617,
                                        "name": "_prizeCounts",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 7560,
                                        "src": "6154:12:40",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_array$_t_array$_t_uint256_$dyn_memory_ptr_$dyn_memory_ptr",
                                          "typeString": "uint256[] memory[] memory"
                                        }
                                      },
                                      "id": 7619,
                                      "indexExpression": {
                                        "id": 7618,
                                        "name": "drawIndex",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 7578,
                                        "src": "6167:9:40",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint32",
                                          "typeString": "uint32"
                                        }
                                      },
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": true,
                                      "nodeType": "IndexAccess",
                                      "src": "6154:23:40",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                        "typeString": "uint256[] memory"
                                      }
                                    }
                                  ],
                                  "id": 7620,
                                  "isConstant": false,
                                  "isInlineArray": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": true,
                                  "nodeType": "TupleExpression",
                                  "src": "6124:54:40",
                                  "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": 7622,
                                          "name": "_draws",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 7527,
                                          "src": "6209:6:40",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_array$_t_struct$_Draw_$10697_memory_ptr_$dyn_memory_ptr",
                                            "typeString": "struct IDrawBeacon.Draw memory[] memory"
                                          }
                                        },
                                        "id": 7624,
                                        "indexExpression": {
                                          "id": 7623,
                                          "name": "drawIndex",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 7578,
                                          "src": "6216:9:40",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint32",
                                            "typeString": "uint32"
                                          }
                                        },
                                        "isConstant": false,
                                        "isLValue": true,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "nodeType": "IndexAccess",
                                        "src": "6209:17:40",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                                          "typeString": "struct IDrawBeacon.Draw memory"
                                        }
                                      },
                                      "id": 7625,
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "memberName": "winningRandomNumber",
                                      "nodeType": "MemberAccess",
                                      "referencedDeclaration": 10688,
                                      "src": "6209:37:40",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    {
                                      "id": 7626,
                                      "name": "totalUserPicks",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 7604,
                                      "src": "6264:14:40",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint64",
                                        "typeString": "uint64"
                                      }
                                    },
                                    {
                                      "id": 7627,
                                      "name": "_userRandomNumber",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 7523,
                                      "src": "6296:17:40",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_bytes32",
                                        "typeString": "bytes32"
                                      }
                                    },
                                    {
                                      "baseExpression": {
                                        "id": 7628,
                                        "name": "_pickIndicesForDraws",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 7531,
                                        "src": "6331:20:40",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_array$_t_array$_t_uint64_$dyn_memory_ptr_$dyn_memory_ptr",
                                          "typeString": "uint64[] memory[] memory"
                                        }
                                      },
                                      "id": 7630,
                                      "indexExpression": {
                                        "id": 7629,
                                        "name": "drawIndex",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 7578,
                                        "src": "6352:9:40",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint32",
                                          "typeString": "uint32"
                                        }
                                      },
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "nodeType": "IndexAccess",
                                      "src": "6331:31:40",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                        "typeString": "uint64[] memory"
                                      }
                                    },
                                    {
                                      "baseExpression": {
                                        "id": 7631,
                                        "name": "_prizeDistributions",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 7535,
                                        "src": "6380:19:40",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11103_memory_ptr_$dyn_memory_ptr",
                                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory[] memory"
                                        }
                                      },
                                      "id": 7633,
                                      "indexExpression": {
                                        "id": 7632,
                                        "name": "drawIndex",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 7578,
                                        "src": "6400:9:40",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint32",
                                          "typeString": "uint32"
                                        }
                                      },
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "nodeType": "IndexAccess",
                                      "src": "6380:30:40",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_PrizeDistribution_$11103_memory_ptr",
                                        "typeString": "struct IPrizeDistributionSource.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_$11103_memory_ptr",
                                        "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                      }
                                    ],
                                    "id": 7621,
                                    "name": "_calculate",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 8039,
                                    "src": "6181:10:40",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$_t_bytes32_$_t_array$_t_uint64_$dyn_memory_ptr_$_t_struct$_PrizeDistribution_$11103_memory_ptr_$returns$_t_uint256_$_t_array$_t_uint256_$dyn_memory_ptr_$",
                                      "typeString": "function (uint256,uint256,bytes32,uint64[] memory,struct IPrizeDistributionSource.PrizeDistribution memory) pure returns (uint256,uint256[] memory)"
                                    }
                                  },
                                  "id": 7634,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "6181:243:40",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_tuple$_t_uint256_$_t_array$_t_uint256_$dyn_memory_ptr_$",
                                    "typeString": "tuple(uint256,uint256[] memory)"
                                  }
                                },
                                "src": "6124:300:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 7636,
                              "nodeType": "ExpressionStatement",
                              "src": "6124:300:40"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 7584,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 7581,
                            "name": "drawIndex",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7578,
                            "src": "5756:9:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "expression": {
                              "id": 7582,
                              "name": "_draws",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7527,
                              "src": "5768:6:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Draw_$10697_memory_ptr_$dyn_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory[] memory"
                              }
                            },
                            "id": 7583,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "length",
                            "nodeType": "MemberAccess",
                            "src": "5768:13:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "5756:25:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 7638,
                        "initializationExpression": {
                          "assignments": [
                            7578
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 7578,
                              "mutability": "mutable",
                              "name": "drawIndex",
                              "nameLocation": "5741:9:40",
                              "nodeType": "VariableDeclaration",
                              "scope": 7638,
                              "src": "5734:16:40",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              "typeName": {
                                "id": 7577,
                                "name": "uint32",
                                "nodeType": "ElementaryTypeName",
                                "src": "5734:6:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 7580,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 7579,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "5753:1:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "5734:20:40"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 7586,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "5783:11:40",
                            "subExpression": {
                              "id": 7585,
                              "name": "drawIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7578,
                              "src": "5783:9:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "id": 7587,
                          "nodeType": "ExpressionStatement",
                          "src": "5783:11:40"
                        },
                        "nodeType": "ForStatement",
                        "src": "5729:706:40"
                      },
                      {
                        "expression": {
                          "id": 7644,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 7639,
                            "name": "prizeCounts",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7541,
                            "src": "6445:11:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes_memory_ptr",
                              "typeString": "bytes memory"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "id": 7642,
                                "name": "_prizeCounts",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 7560,
                                "src": "6470:12:40",
                                "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": 7640,
                                "name": "abi",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -1,
                                "src": "6459:3:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_abi",
                                  "typeString": "abi"
                                }
                              },
                              "id": 7641,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "memberName": "encode",
                              "nodeType": "MemberAccess",
                              "src": "6459:10:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$",
                                "typeString": "function () pure returns (bytes memory)"
                              }
                            },
                            "id": 7643,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "6459:24:40",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes_memory_ptr",
                              "typeString": "bytes memory"
                            }
                          },
                          "src": "6445:38:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_memory_ptr",
                            "typeString": "bytes memory"
                          }
                        },
                        "id": 7645,
                        "nodeType": "ExpressionStatement",
                        "src": "6445:38:40"
                      },
                      {
                        "expression": {
                          "id": 7648,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 7646,
                            "name": "prizesAwardable",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7539,
                            "src": "6493:15:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[] memory"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 7647,
                            "name": "_prizesAwardable",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7547,
                            "src": "6511:16:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[] memory"
                            }
                          },
                          "src": "6493:34:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "id": 7649,
                        "nodeType": "ExpressionStatement",
                        "src": "6493:34:40"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 7518,
                    "nodeType": "StructuredDocumentation",
                    "src": "4573:467:40",
                    "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": 7651,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_calculatePrizesAwardable",
                  "nameLocation": "5054:25:40",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 7536,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7521,
                        "mutability": "mutable",
                        "name": "_normalizedUserBalances",
                        "nameLocation": "5106:23:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 7651,
                        "src": "5089:40:40",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 7519,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "5089:7:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 7520,
                          "nodeType": "ArrayTypeName",
                          "src": "5089:9:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7523,
                        "mutability": "mutable",
                        "name": "_userRandomNumber",
                        "nameLocation": "5147:17:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 7651,
                        "src": "5139:25:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 7522,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "5139:7:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7527,
                        "mutability": "mutable",
                        "name": "_draws",
                        "nameLocation": "5200:6:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 7651,
                        "src": "5174:32:40",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_Draw_$10697_memory_ptr_$dyn_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 7525,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 7524,
                              "name": "IDrawBeacon.Draw",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 10697,
                              "src": "5174:16:40"
                            },
                            "referencedDeclaration": 10697,
                            "src": "5174:16:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Draw_$10697_storage_ptr",
                              "typeString": "struct IDrawBeacon.Draw"
                            }
                          },
                          "id": 7526,
                          "nodeType": "ArrayTypeName",
                          "src": "5174:18:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Draw_$10697_storage_$dyn_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7531,
                        "mutability": "mutable",
                        "name": "_pickIndicesForDraws",
                        "nameLocation": "5234:20:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 7651,
                        "src": "5216:38:40",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_array$_t_uint64_$dyn_memory_ptr_$dyn_memory_ptr",
                          "typeString": "uint64[][]"
                        },
                        "typeName": {
                          "baseType": {
                            "baseType": {
                              "id": 7528,
                              "name": "uint64",
                              "nodeType": "ElementaryTypeName",
                              "src": "5216:6:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            },
                            "id": 7529,
                            "nodeType": "ArrayTypeName",
                            "src": "5216:8:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                              "typeString": "uint64[]"
                            }
                          },
                          "id": 7530,
                          "nodeType": "ArrayTypeName",
                          "src": "5216:10:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_array$_t_uint64_$dyn_storage_$dyn_storage_ptr",
                            "typeString": "uint64[][]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7535,
                        "mutability": "mutable",
                        "name": "_prizeDistributions",
                        "nameLocation": "5316:19:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 7651,
                        "src": "5264:71:40",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11103_memory_ptr_$dyn_memory_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 7533,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 7532,
                              "name": "IPrizeDistributionBuffer.PrizeDistribution",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 11103,
                              "src": "5264:42:40"
                            },
                            "referencedDeclaration": 11103,
                            "src": "5264:42:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeDistribution_$11103_storage_ptr",
                              "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                            }
                          },
                          "id": 7534,
                          "nodeType": "ArrayTypeName",
                          "src": "5264:44:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11103_storage_$dyn_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5079:262:40"
                  },
                  "returnParameters": {
                    "id": 7542,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7539,
                        "mutability": "mutable",
                        "name": "prizesAwardable",
                        "nameLocation": "5382:15:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 7651,
                        "src": "5365:32:40",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 7537,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "5365:7:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 7538,
                          "nodeType": "ArrayTypeName",
                          "src": "5365:9:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7541,
                        "mutability": "mutable",
                        "name": "prizeCounts",
                        "nameLocation": "5412:11:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 7651,
                        "src": "5399:24:40",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 7540,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "5399:5:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5364:60:40"
                  },
                  "scope": 8293,
                  "src": "5045:1489:40",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 7673,
                    "nodeType": "Block",
                    "src": "7187:101:40",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 7670,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "components": [
                                  {
                                    "commonType": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    },
                                    "id": 7667,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "leftExpression": {
                                      "id": 7664,
                                      "name": "_normalizedUserBalance",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 7657,
                                      "src": "7212:22:40",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "nodeType": "BinaryOperation",
                                    "operator": "*",
                                    "rightExpression": {
                                      "expression": {
                                        "id": 7665,
                                        "name": "_prizeDistribution",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 7655,
                                        "src": "7237:18:40",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_PrizeDistribution_$11103_memory_ptr",
                                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                        }
                                      },
                                      "id": 7666,
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "memberName": "numberOfPicks",
                                      "nodeType": "MemberAccess",
                                      "referencedDeclaration": 11096,
                                      "src": "7237:32:40",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint104",
                                        "typeString": "uint104"
                                      }
                                    },
                                    "src": "7212:57:40",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  }
                                ],
                                "id": 7668,
                                "isConstant": false,
                                "isInlineArray": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "TupleExpression",
                                "src": "7211:59:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "/",
                              "rightExpression": {
                                "hexValue": "31",
                                "id": 7669,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "7273:7:40",
                                "subdenomination": "ether",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_1000000000000000000_by_1",
                                  "typeString": "int_const 1000000000000000000"
                                },
                                "value": "1"
                              },
                              "src": "7211:69:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 7663,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "7204:6:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint64_$",
                              "typeString": "type(uint64)"
                            },
                            "typeName": {
                              "id": 7662,
                              "name": "uint64",
                              "nodeType": "ElementaryTypeName",
                              "src": "7204:6:40",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 7671,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7204:77:40",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "functionReturnParameters": 7661,
                        "id": 7672,
                        "nodeType": "Return",
                        "src": "7197:84:40"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 7652,
                    "nodeType": "StructuredDocumentation",
                    "src": "6540:450:40",
                    "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": 7674,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_calculateNumberOfUserPicks",
                  "nameLocation": "7004:27:40",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 7658,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7655,
                        "mutability": "mutable",
                        "name": "_prizeDistribution",
                        "nameLocation": "7091:18:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 7674,
                        "src": "7041:68:40",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$11103_memory_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 7654,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 7653,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11103,
                            "src": "7041:42:40"
                          },
                          "referencedDeclaration": 11103,
                          "src": "7041:42:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11103_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7657,
                        "mutability": "mutable",
                        "name": "_normalizedUserBalance",
                        "nameLocation": "7127:22:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 7674,
                        "src": "7119:30:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 7656,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "7119:7:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7031:124:40"
                  },
                  "returnParameters": {
                    "id": 7661,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7660,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 7674,
                        "src": "7179:6:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 7659,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "7179:6:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7178:8:40"
                  },
                  "scope": 8293,
                  "src": "6995:293:40",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 7836,
                    "nodeType": "Block",
                    "src": "7871:1472:40",
                    "statements": [
                      {
                        "assignments": [
                          7692
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7692,
                            "mutability": "mutable",
                            "name": "drawsLength",
                            "nameLocation": "7889:11:40",
                            "nodeType": "VariableDeclaration",
                            "scope": 7836,
                            "src": "7881:19:40",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 7691,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "7881:7:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7695,
                        "initialValue": {
                          "expression": {
                            "id": 7693,
                            "name": "_draws",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7681,
                            "src": "7903:6:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_Draw_$10697_memory_ptr_$dyn_memory_ptr",
                              "typeString": "struct IDrawBeacon.Draw memory[] memory"
                            }
                          },
                          "id": 7694,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "length",
                          "nodeType": "MemberAccess",
                          "src": "7903:13:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7881:35:40"
                      },
                      {
                        "assignments": [
                          7700
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7700,
                            "mutability": "mutable",
                            "name": "_timestampsWithStartCutoffTimes",
                            "nameLocation": "7942:31:40",
                            "nodeType": "VariableDeclaration",
                            "scope": 7836,
                            "src": "7926:47:40",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                              "typeString": "uint64[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 7698,
                                "name": "uint64",
                                "nodeType": "ElementaryTypeName",
                                "src": "7926:6:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                }
                              },
                              "id": 7699,
                              "nodeType": "ArrayTypeName",
                              "src": "7926:8:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                                "typeString": "uint64[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7706,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 7704,
                              "name": "drawsLength",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7692,
                              "src": "7989:11:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 7703,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "7976:12:40",
                            "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": 7701,
                                "name": "uint64",
                                "nodeType": "ElementaryTypeName",
                                "src": "7980:6:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                }
                              },
                              "id": 7702,
                              "nodeType": "ArrayTypeName",
                              "src": "7980:8:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                                "typeString": "uint64[]"
                              }
                            }
                          },
                          "id": 7705,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7976:25:40",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                            "typeString": "uint64[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7926:75:40"
                      },
                      {
                        "assignments": [
                          7711
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7711,
                            "mutability": "mutable",
                            "name": "_timestampsWithEndCutoffTimes",
                            "nameLocation": "8027:29:40",
                            "nodeType": "VariableDeclaration",
                            "scope": 7836,
                            "src": "8011:45:40",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                              "typeString": "uint64[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 7709,
                                "name": "uint64",
                                "nodeType": "ElementaryTypeName",
                                "src": "8011:6:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                }
                              },
                              "id": 7710,
                              "nodeType": "ArrayTypeName",
                              "src": "8011:8:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                                "typeString": "uint64[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7717,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 7715,
                              "name": "drawsLength",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7692,
                              "src": "8072:11:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 7714,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "8059:12:40",
                            "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": 7712,
                                "name": "uint64",
                                "nodeType": "ElementaryTypeName",
                                "src": "8063:6:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                }
                              },
                              "id": 7713,
                              "nodeType": "ArrayTypeName",
                              "src": "8063:8:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                                "typeString": "uint64[]"
                              }
                            }
                          },
                          "id": 7716,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8059:25:40",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                            "typeString": "uint64[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "8011:73:40"
                      },
                      {
                        "body": {
                          "id": 7757,
                          "nodeType": "Block",
                          "src": "8201:325:40",
                          "statements": [
                            {
                              "id": 7756,
                              "nodeType": "UncheckedBlock",
                              "src": "8215:301:40",
                              "statements": [
                                {
                                  "expression": {
                                    "id": 7740,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "leftHandSide": {
                                      "baseExpression": {
                                        "id": 7728,
                                        "name": "_timestampsWithStartCutoffTimes",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 7700,
                                        "src": "8243:31:40",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                          "typeString": "uint64[] memory"
                                        }
                                      },
                                      "id": 7730,
                                      "indexExpression": {
                                        "id": 7729,
                                        "name": "i",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 7719,
                                        "src": "8275:1:40",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint32",
                                          "typeString": "uint32"
                                        }
                                      },
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": true,
                                      "nodeType": "IndexAccess",
                                      "src": "8243:34:40",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint64",
                                        "typeString": "uint64"
                                      }
                                    },
                                    "nodeType": "Assignment",
                                    "operator": "=",
                                    "rightHandSide": {
                                      "commonType": {
                                        "typeIdentifier": "t_uint64",
                                        "typeString": "uint64"
                                      },
                                      "id": 7739,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "expression": {
                                          "baseExpression": {
                                            "id": 7731,
                                            "name": "_draws",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 7681,
                                            "src": "8300:6:40",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_array$_t_struct$_Draw_$10697_memory_ptr_$dyn_memory_ptr",
                                              "typeString": "struct IDrawBeacon.Draw memory[] memory"
                                            }
                                          },
                                          "id": 7733,
                                          "indexExpression": {
                                            "id": 7732,
                                            "name": "i",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 7719,
                                            "src": "8307:1:40",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint32",
                                              "typeString": "uint32"
                                            }
                                          },
                                          "isConstant": false,
                                          "isLValue": true,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "nodeType": "IndexAccess",
                                          "src": "8300:9:40",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                                            "typeString": "struct IDrawBeacon.Draw memory"
                                          }
                                        },
                                        "id": 7734,
                                        "isConstant": false,
                                        "isLValue": true,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "memberName": "timestamp",
                                        "nodeType": "MemberAccess",
                                        "referencedDeclaration": 10692,
                                        "src": "8300:19:40",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint64",
                                          "typeString": "uint64"
                                        }
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": "-",
                                      "rightExpression": {
                                        "expression": {
                                          "baseExpression": {
                                            "id": 7735,
                                            "name": "_prizeDistributions",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 7685,
                                            "src": "8322:19:40",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11103_memory_ptr_$dyn_memory_ptr",
                                              "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory[] memory"
                                            }
                                          },
                                          "id": 7737,
                                          "indexExpression": {
                                            "id": 7736,
                                            "name": "i",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 7719,
                                            "src": "8342:1:40",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint32",
                                              "typeString": "uint32"
                                            }
                                          },
                                          "isConstant": false,
                                          "isLValue": true,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "nodeType": "IndexAccess",
                                          "src": "8322:22:40",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_struct$_PrizeDistribution_$11103_memory_ptr",
                                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                          }
                                        },
                                        "id": 7738,
                                        "isConstant": false,
                                        "isLValue": true,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "memberName": "startTimestampOffset",
                                        "nodeType": "MemberAccess",
                                        "referencedDeclaration": 11088,
                                        "src": "8322:43:40",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint32",
                                          "typeString": "uint32"
                                        }
                                      },
                                      "src": "8300:65:40",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint64",
                                        "typeString": "uint64"
                                      }
                                    },
                                    "src": "8243:122:40",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint64",
                                      "typeString": "uint64"
                                    }
                                  },
                                  "id": 7741,
                                  "nodeType": "ExpressionStatement",
                                  "src": "8243:122:40"
                                },
                                {
                                  "expression": {
                                    "id": 7754,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "leftHandSide": {
                                      "baseExpression": {
                                        "id": 7742,
                                        "name": "_timestampsWithEndCutoffTimes",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 7711,
                                        "src": "8383:29:40",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                          "typeString": "uint64[] memory"
                                        }
                                      },
                                      "id": 7744,
                                      "indexExpression": {
                                        "id": 7743,
                                        "name": "i",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 7719,
                                        "src": "8413:1:40",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint32",
                                          "typeString": "uint32"
                                        }
                                      },
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": true,
                                      "nodeType": "IndexAccess",
                                      "src": "8383:32:40",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint64",
                                        "typeString": "uint64"
                                      }
                                    },
                                    "nodeType": "Assignment",
                                    "operator": "=",
                                    "rightHandSide": {
                                      "commonType": {
                                        "typeIdentifier": "t_uint64",
                                        "typeString": "uint64"
                                      },
                                      "id": 7753,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "expression": {
                                          "baseExpression": {
                                            "id": 7745,
                                            "name": "_draws",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 7681,
                                            "src": "8438:6:40",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_array$_t_struct$_Draw_$10697_memory_ptr_$dyn_memory_ptr",
                                              "typeString": "struct IDrawBeacon.Draw memory[] memory"
                                            }
                                          },
                                          "id": 7747,
                                          "indexExpression": {
                                            "id": 7746,
                                            "name": "i",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 7719,
                                            "src": "8445:1:40",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint32",
                                              "typeString": "uint32"
                                            }
                                          },
                                          "isConstant": false,
                                          "isLValue": true,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "nodeType": "IndexAccess",
                                          "src": "8438:9:40",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                                            "typeString": "struct IDrawBeacon.Draw memory"
                                          }
                                        },
                                        "id": 7748,
                                        "isConstant": false,
                                        "isLValue": true,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "memberName": "timestamp",
                                        "nodeType": "MemberAccess",
                                        "referencedDeclaration": 10692,
                                        "src": "8438:19:40",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint64",
                                          "typeString": "uint64"
                                        }
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": "-",
                                      "rightExpression": {
                                        "expression": {
                                          "baseExpression": {
                                            "id": 7749,
                                            "name": "_prizeDistributions",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 7685,
                                            "src": "8460:19:40",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11103_memory_ptr_$dyn_memory_ptr",
                                              "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory[] memory"
                                            }
                                          },
                                          "id": 7751,
                                          "indexExpression": {
                                            "id": 7750,
                                            "name": "i",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 7719,
                                            "src": "8480:1:40",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint32",
                                              "typeString": "uint32"
                                            }
                                          },
                                          "isConstant": false,
                                          "isLValue": true,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "nodeType": "IndexAccess",
                                          "src": "8460:22:40",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_struct$_PrizeDistribution_$11103_memory_ptr",
                                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                          }
                                        },
                                        "id": 7752,
                                        "isConstant": false,
                                        "isLValue": true,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "memberName": "endTimestampOffset",
                                        "nodeType": "MemberAccess",
                                        "referencedDeclaration": 11090,
                                        "src": "8460:41:40",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint32",
                                          "typeString": "uint32"
                                        }
                                      },
                                      "src": "8438:63:40",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint64",
                                        "typeString": "uint64"
                                      }
                                    },
                                    "src": "8383:118:40",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint64",
                                      "typeString": "uint64"
                                    }
                                  },
                                  "id": 7755,
                                  "nodeType": "ExpressionStatement",
                                  "src": "8383:118:40"
                                }
                              ]
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 7724,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 7722,
                            "name": "i",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7719,
                            "src": "8179:1:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "id": 7723,
                            "name": "drawsLength",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7692,
                            "src": "8183:11:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "8179:15:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 7758,
                        "initializationExpression": {
                          "assignments": [
                            7719
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 7719,
                              "mutability": "mutable",
                              "name": "i",
                              "nameLocation": "8172:1:40",
                              "nodeType": "VariableDeclaration",
                              "scope": 7758,
                              "src": "8165:8:40",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              "typeName": {
                                "id": 7718,
                                "name": "uint32",
                                "nodeType": "ElementaryTypeName",
                                "src": "8165:6:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 7721,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 7720,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "8176:1:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "8165:12:40"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 7726,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "8196:3:40",
                            "subExpression": {
                              "id": 7725,
                              "name": "i",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7719,
                              "src": "8196:1:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "id": 7727,
                          "nodeType": "ExpressionStatement",
                          "src": "8196:3:40"
                        },
                        "nodeType": "ForStatement",
                        "src": "8160:366:40"
                      },
                      {
                        "assignments": [
                          7763
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7763,
                            "mutability": "mutable",
                            "name": "balances",
                            "nameLocation": "8553:8:40",
                            "nodeType": "VariableDeclaration",
                            "scope": 7836,
                            "src": "8536:25:40",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 7761,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "8536:7:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 7762,
                              "nodeType": "ArrayTypeName",
                              "src": "8536:9:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7770,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 7766,
                              "name": "_user",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7677,
                              "src": "8610:5:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 7767,
                              "name": "_timestampsWithStartCutoffTimes",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7700,
                              "src": "8629:31:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                "typeString": "uint64[] memory"
                              }
                            },
                            {
                              "id": 7768,
                              "name": "_timestampsWithEndCutoffTimes",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7711,
                              "src": "8674:29:40",
                              "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": 7764,
                              "name": "ticket",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7281,
                              "src": "8564:6:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$11825",
                                "typeString": "contract ITicket"
                              }
                            },
                            "id": 7765,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getAverageBalancesBetween",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11793,
                            "src": "8564:32:40",
                            "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": 7769,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8564:149:40",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "8536:177:40"
                      },
                      {
                        "assignments": [
                          7775
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7775,
                            "mutability": "mutable",
                            "name": "totalSupplies",
                            "nameLocation": "8741:13:40",
                            "nodeType": "VariableDeclaration",
                            "scope": 7836,
                            "src": "8724:30:40",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 7773,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "8724:7:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 7774,
                              "nodeType": "ArrayTypeName",
                              "src": "8724:9:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7781,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 7778,
                              "name": "_timestampsWithStartCutoffTimes",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7700,
                              "src": "8808:31:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                "typeString": "uint64[] memory"
                              }
                            },
                            {
                              "id": 7779,
                              "name": "_timestampsWithEndCutoffTimes",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7711,
                              "src": "8853:29:40",
                              "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": 7776,
                              "name": "ticket",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7281,
                              "src": "8757:6:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$11825",
                                "typeString": "contract ITicket"
                              }
                            },
                            "id": 7777,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getAverageTotalSuppliesBetween",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11824,
                            "src": "8757:37:40",
                            "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": 7780,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8757:135:40",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "8724:168:40"
                      },
                      {
                        "assignments": [
                          7786
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7786,
                            "mutability": "mutable",
                            "name": "normalizedBalances",
                            "nameLocation": "8920:18:40",
                            "nodeType": "VariableDeclaration",
                            "scope": 7836,
                            "src": "8903:35:40",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 7784,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "8903:7:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 7785,
                              "nodeType": "ArrayTypeName",
                              "src": "8903:9:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7792,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 7790,
                              "name": "drawsLength",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7692,
                              "src": "8955:11:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 7789,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "8941:13:40",
                            "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": 7787,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "8945:7:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 7788,
                              "nodeType": "ArrayTypeName",
                              "src": "8945:9:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            }
                          },
                          "id": 7791,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8941:26:40",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "8903:64:40"
                      },
                      {
                        "body": {
                          "id": 7832,
                          "nodeType": "Block",
                          "src": "9077:224:40",
                          "statements": [
                            {
                              "condition": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 7807,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "baseExpression": {
                                    "id": 7803,
                                    "name": "totalSupplies",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 7775,
                                    "src": "9094:13:40",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                      "typeString": "uint256[] memory"
                                    }
                                  },
                                  "id": 7805,
                                  "indexExpression": {
                                    "id": 7804,
                                    "name": "i",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 7794,
                                    "src": "9108:1:40",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "IndexAccess",
                                  "src": "9094:16:40",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "==",
                                "rightExpression": {
                                  "hexValue": "30",
                                  "id": 7806,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "9114:1:40",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                },
                                "src": "9094:21:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "falseBody": {
                                "id": 7830,
                                "nodeType": "Block",
                                "src": "9192:99:40",
                                "statements": [
                                  {
                                    "expression": {
                                      "id": 7828,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftHandSide": {
                                        "baseExpression": {
                                          "id": 7815,
                                          "name": "normalizedBalances",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 7786,
                                          "src": "9210:18:40",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                            "typeString": "uint256[] memory"
                                          }
                                        },
                                        "id": 7817,
                                        "indexExpression": {
                                          "id": 7816,
                                          "name": "i",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 7794,
                                          "src": "9229:1:40",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "isConstant": false,
                                        "isLValue": true,
                                        "isPure": false,
                                        "lValueRequested": true,
                                        "nodeType": "IndexAccess",
                                        "src": "9210:21:40",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "nodeType": "Assignment",
                                      "operator": "=",
                                      "rightHandSide": {
                                        "commonType": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        },
                                        "id": 7827,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "leftExpression": {
                                          "components": [
                                            {
                                              "commonType": {
                                                "typeIdentifier": "t_uint256",
                                                "typeString": "uint256"
                                              },
                                              "id": 7822,
                                              "isConstant": false,
                                              "isLValue": false,
                                              "isPure": false,
                                              "lValueRequested": false,
                                              "leftExpression": {
                                                "baseExpression": {
                                                  "id": 7818,
                                                  "name": "balances",
                                                  "nodeType": "Identifier",
                                                  "overloadedDeclarations": [],
                                                  "referencedDeclaration": 7763,
                                                  "src": "9235:8:40",
                                                  "typeDescriptions": {
                                                    "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                                    "typeString": "uint256[] memory"
                                                  }
                                                },
                                                "id": 7820,
                                                "indexExpression": {
                                                  "id": 7819,
                                                  "name": "i",
                                                  "nodeType": "Identifier",
                                                  "overloadedDeclarations": [],
                                                  "referencedDeclaration": 7794,
                                                  "src": "9244:1:40",
                                                  "typeDescriptions": {
                                                    "typeIdentifier": "t_uint256",
                                                    "typeString": "uint256"
                                                  }
                                                },
                                                "isConstant": false,
                                                "isLValue": true,
                                                "isPure": false,
                                                "lValueRequested": false,
                                                "nodeType": "IndexAccess",
                                                "src": "9235:11:40",
                                                "typeDescriptions": {
                                                  "typeIdentifier": "t_uint256",
                                                  "typeString": "uint256"
                                                }
                                              },
                                              "nodeType": "BinaryOperation",
                                              "operator": "*",
                                              "rightExpression": {
                                                "hexValue": "31",
                                                "id": 7821,
                                                "isConstant": false,
                                                "isLValue": false,
                                                "isPure": true,
                                                "kind": "number",
                                                "lValueRequested": false,
                                                "nodeType": "Literal",
                                                "src": "9249:7:40",
                                                "subdenomination": "ether",
                                                "typeDescriptions": {
                                                  "typeIdentifier": "t_rational_1000000000000000000_by_1",
                                                  "typeString": "int_const 1000000000000000000"
                                                },
                                                "value": "1"
                                              },
                                              "src": "9235:21:40",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_uint256",
                                                "typeString": "uint256"
                                              }
                                            }
                                          ],
                                          "id": 7823,
                                          "isConstant": false,
                                          "isInlineArray": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "nodeType": "TupleExpression",
                                          "src": "9234:23:40",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "nodeType": "BinaryOperation",
                                        "operator": "/",
                                        "rightExpression": {
                                          "baseExpression": {
                                            "id": 7824,
                                            "name": "totalSupplies",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 7775,
                                            "src": "9260:13:40",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                              "typeString": "uint256[] memory"
                                            }
                                          },
                                          "id": 7826,
                                          "indexExpression": {
                                            "id": 7825,
                                            "name": "i",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 7794,
                                            "src": "9274:1:40",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            }
                                          },
                                          "isConstant": false,
                                          "isLValue": true,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "nodeType": "IndexAccess",
                                          "src": "9260:16:40",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "src": "9234:42:40",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "src": "9210:66:40",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "id": 7829,
                                    "nodeType": "ExpressionStatement",
                                    "src": "9210:66:40"
                                  }
                                ]
                              },
                              "id": 7831,
                              "nodeType": "IfStatement",
                              "src": "9091:200:40",
                              "trueBody": {
                                "id": 7814,
                                "nodeType": "Block",
                                "src": "9116:58:40",
                                "statements": [
                                  {
                                    "expression": {
                                      "id": 7812,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftHandSide": {
                                        "baseExpression": {
                                          "id": 7808,
                                          "name": "normalizedBalances",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 7786,
                                          "src": "9134:18:40",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                            "typeString": "uint256[] memory"
                                          }
                                        },
                                        "id": 7810,
                                        "indexExpression": {
                                          "id": 7809,
                                          "name": "i",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 7794,
                                          "src": "9153:1:40",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "isConstant": false,
                                        "isLValue": true,
                                        "isPure": false,
                                        "lValueRequested": true,
                                        "nodeType": "IndexAccess",
                                        "src": "9134:21:40",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "nodeType": "Assignment",
                                      "operator": "=",
                                      "rightHandSide": {
                                        "hexValue": "30",
                                        "id": 7811,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "kind": "number",
                                        "lValueRequested": false,
                                        "nodeType": "Literal",
                                        "src": "9158:1:40",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_rational_0_by_1",
                                          "typeString": "int_const 0"
                                        },
                                        "value": "0"
                                      },
                                      "src": "9134:25:40",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "id": 7813,
                                    "nodeType": "ExpressionStatement",
                                    "src": "9134:25:40"
                                  }
                                ]
                              }
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 7799,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 7797,
                            "name": "i",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7794,
                            "src": "9055:1:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "id": 7798,
                            "name": "drawsLength",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7692,
                            "src": "9059:11:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "9055:15:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 7833,
                        "initializationExpression": {
                          "assignments": [
                            7794
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 7794,
                              "mutability": "mutable",
                              "name": "i",
                              "nameLocation": "9048:1:40",
                              "nodeType": "VariableDeclaration",
                              "scope": 7833,
                              "src": "9040:9:40",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "typeName": {
                                "id": 7793,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "9040:7:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 7796,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 7795,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "9052:1:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "9040:13:40"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 7801,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "9072:3:40",
                            "subExpression": {
                              "id": 7800,
                              "name": "i",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7794,
                              "src": "9072:1:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 7802,
                          "nodeType": "ExpressionStatement",
                          "src": "9072:3:40"
                        },
                        "nodeType": "ForStatement",
                        "src": "9035:266:40"
                      },
                      {
                        "expression": {
                          "id": 7834,
                          "name": "normalizedBalances",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 7786,
                          "src": "9318:18:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "functionReturnParameters": 7690,
                        "id": 7835,
                        "nodeType": "Return",
                        "src": "9311:25:40"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 7675,
                    "nodeType": "StructuredDocumentation",
                    "src": "7294:345:40",
                    "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": 7837,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_getNormalizedBalancesAt",
                  "nameLocation": "7653:24:40",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 7686,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7677,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "7695:5:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 7837,
                        "src": "7687:13:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 7676,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "7687:7:40",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7681,
                        "mutability": "mutable",
                        "name": "_draws",
                        "nameLocation": "7736:6:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 7837,
                        "src": "7710:32:40",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_Draw_$10697_memory_ptr_$dyn_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 7679,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 7678,
                              "name": "IDrawBeacon.Draw",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 10697,
                              "src": "7710:16:40"
                            },
                            "referencedDeclaration": 10697,
                            "src": "7710:16:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Draw_$10697_storage_ptr",
                              "typeString": "struct IDrawBeacon.Draw"
                            }
                          },
                          "id": 7680,
                          "nodeType": "ArrayTypeName",
                          "src": "7710:18:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Draw_$10697_storage_$dyn_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7685,
                        "mutability": "mutable",
                        "name": "_prizeDistributions",
                        "nameLocation": "7804:19:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 7837,
                        "src": "7752:71:40",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11103_memory_ptr_$dyn_memory_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 7683,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 7682,
                              "name": "IPrizeDistributionBuffer.PrizeDistribution",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 11103,
                              "src": "7752:42:40"
                            },
                            "referencedDeclaration": 11103,
                            "src": "7752:42:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeDistribution_$11103_storage_ptr",
                              "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                            }
                          },
                          "id": 7684,
                          "nodeType": "ArrayTypeName",
                          "src": "7752:44:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11103_storage_$dyn_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7677:152:40"
                  },
                  "returnParameters": {
                    "id": 7690,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7689,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 7837,
                        "src": "7853:16:40",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 7687,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "7853:7:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 7688,
                          "nodeType": "ArrayTypeName",
                          "src": "7853:9:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7852:18:40"
                  },
                  "scope": 8293,
                  "src": "7644:1699:40",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 8038,
                    "nodeType": "Block",
                    "src": "10147:2388:40",
                    "statements": [
                      {
                        "assignments": [
                          7862
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7862,
                            "mutability": "mutable",
                            "name": "masks",
                            "nameLocation": "10228:5:40",
                            "nodeType": "VariableDeclaration",
                            "scope": 8038,
                            "src": "10211:22:40",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 7860,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "10211:7:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 7861,
                              "nodeType": "ArrayTypeName",
                              "src": "10211:9:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7866,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 7864,
                              "name": "_prizeDistribution",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7850,
                              "src": "10252:18:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$11103_memory_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$11103_memory_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                              }
                            ],
                            "id": 7863,
                            "name": "_createBitMasks",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8176,
                            "src": "10236:15:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_struct$_PrizeDistribution_$11103_memory_ptr_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$",
                              "typeString": "function (struct IPrizeDistributionSource.PrizeDistribution memory) pure returns (uint256[] memory)"
                            }
                          },
                          "id": 7865,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10236:35:40",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "10211:60:40"
                      },
                      {
                        "assignments": [
                          7868
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7868,
                            "mutability": "mutable",
                            "name": "picksLength",
                            "nameLocation": "10288:11:40",
                            "nodeType": "VariableDeclaration",
                            "scope": 8038,
                            "src": "10281:18:40",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "typeName": {
                              "id": 7867,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "10281:6:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7874,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 7871,
                                "name": "_picks",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 7847,
                                "src": "10309:6:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                  "typeString": "uint64[] memory"
                                }
                              },
                              "id": 7872,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "length",
                              "nodeType": "MemberAccess",
                              "src": "10309:13:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 7870,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "10302:6:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint32_$",
                              "typeString": "type(uint32)"
                            },
                            "typeName": {
                              "id": 7869,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "10302:6:40",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 7873,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10302:21:40",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "10281:42:40"
                      },
                      {
                        "assignments": [
                          7879
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7879,
                            "mutability": "mutable",
                            "name": "_prizeCounts",
                            "nameLocation": "10350:12:40",
                            "nodeType": "VariableDeclaration",
                            "scope": 8038,
                            "src": "10333:29:40",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 7877,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "10333:7:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 7878,
                              "nodeType": "ArrayTypeName",
                              "src": "10333:9:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7887,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "expression": {
                                  "id": 7883,
                                  "name": "_prizeDistribution",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 7850,
                                  "src": "10379:18:40",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_PrizeDistribution_$11103_memory_ptr",
                                    "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                  }
                                },
                                "id": 7884,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "tiers",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 11100,
                                "src": "10379:24:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_uint32_$16_memory_ptr",
                                  "typeString": "uint32[16] memory"
                                }
                              },
                              "id": 7885,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "length",
                              "nodeType": "MemberAccess",
                              "src": "10379:31:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 7882,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "10365:13:40",
                            "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": 7880,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "10369:7:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 7881,
                              "nodeType": "ArrayTypeName",
                              "src": "10369:9:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            }
                          },
                          "id": 7886,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10365:46:40",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "10333:78:40"
                      },
                      {
                        "assignments": [
                          7889
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7889,
                            "mutability": "mutable",
                            "name": "maxWinningTierIndex",
                            "nameLocation": "10428:19:40",
                            "nodeType": "VariableDeclaration",
                            "scope": 8038,
                            "src": "10422:25:40",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            },
                            "typeName": {
                              "id": 7888,
                              "name": "uint8",
                              "nodeType": "ElementaryTypeName",
                              "src": "10422:5:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7891,
                        "initialValue": {
                          "hexValue": "30",
                          "id": 7890,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "number",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "10450:1:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_rational_0_by_1",
                            "typeString": "int_const 0"
                          },
                          "value": "0"
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "10422:29:40"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              "id": 7896,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 7893,
                                "name": "picksLength",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 7868,
                                "src": "10483:11:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "expression": {
                                  "id": 7894,
                                  "name": "_prizeDistribution",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 7850,
                                  "src": "10498:18:40",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_PrizeDistribution_$11103_memory_ptr",
                                    "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                  }
                                },
                                "id": 7895,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "maxPicksPerUser",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 11092,
                                "src": "10498:34:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "src": "10483:49:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4472617743616c632f657863656564732d6d61782d757365722d7069636b73",
                              "id": 7897,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "10546:33:40",
                              "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": 7892,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "10462:7:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 7898,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10462:127:40",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 7899,
                        "nodeType": "ExpressionStatement",
                        "src": "10462:127:40"
                      },
                      {
                        "body": {
                          "id": 7979,
                          "nodeType": "Block",
                          "src": "10751:884:40",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "commonType": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    },
                                    "id": 7915,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "leftExpression": {
                                      "baseExpression": {
                                        "id": 7911,
                                        "name": "_picks",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 7847,
                                        "src": "10773:6:40",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                          "typeString": "uint64[] memory"
                                        }
                                      },
                                      "id": 7913,
                                      "indexExpression": {
                                        "id": 7912,
                                        "name": "index",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 7901,
                                        "src": "10780:5:40",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint32",
                                          "typeString": "uint32"
                                        }
                                      },
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "nodeType": "IndexAccess",
                                      "src": "10773:13:40",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint64",
                                        "typeString": "uint64"
                                      }
                                    },
                                    "nodeType": "BinaryOperation",
                                    "operator": "<",
                                    "rightExpression": {
                                      "id": 7914,
                                      "name": "_totalUserPicks",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 7842,
                                      "src": "10789:15:40",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "src": "10773:31:40",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bool",
                                      "typeString": "bool"
                                    }
                                  },
                                  {
                                    "hexValue": "4472617743616c632f696e73756666696369656e742d757365722d7069636b73",
                                    "id": 7916,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "string",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "10806:34:40",
                                    "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": 7910,
                                  "name": "require",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [
                                    -18,
                                    -18
                                  ],
                                  "referencedDeclaration": -18,
                                  "src": "10765:7:40",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                                    "typeString": "function (bool,string memory) pure"
                                  }
                                },
                                "id": 7917,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "10765:76:40",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 7918,
                              "nodeType": "ExpressionStatement",
                              "src": "10765:76:40"
                            },
                            {
                              "condition": {
                                "commonType": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                },
                                "id": 7921,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 7919,
                                  "name": "index",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 7901,
                                  "src": "10860:5:40",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": ">",
                                "rightExpression": {
                                  "hexValue": "30",
                                  "id": 7920,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "10868:1:40",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                },
                                "src": "10860:9:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "id": 7936,
                              "nodeType": "IfStatement",
                              "src": "10856:118:40",
                              "trueBody": {
                                "id": 7935,
                                "nodeType": "Block",
                                "src": "10871:103:40",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "commonType": {
                                            "typeIdentifier": "t_uint64",
                                            "typeString": "uint64"
                                          },
                                          "id": 7931,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "leftExpression": {
                                            "baseExpression": {
                                              "id": 7923,
                                              "name": "_picks",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 7847,
                                              "src": "10897:6:40",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                                "typeString": "uint64[] memory"
                                              }
                                            },
                                            "id": 7925,
                                            "indexExpression": {
                                              "id": 7924,
                                              "name": "index",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 7901,
                                              "src": "10904:5:40",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_uint32",
                                                "typeString": "uint32"
                                              }
                                            },
                                            "isConstant": false,
                                            "isLValue": true,
                                            "isPure": false,
                                            "lValueRequested": false,
                                            "nodeType": "IndexAccess",
                                            "src": "10897:13:40",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint64",
                                              "typeString": "uint64"
                                            }
                                          },
                                          "nodeType": "BinaryOperation",
                                          "operator": ">",
                                          "rightExpression": {
                                            "baseExpression": {
                                              "id": 7926,
                                              "name": "_picks",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 7847,
                                              "src": "10913:6:40",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                                "typeString": "uint64[] memory"
                                              }
                                            },
                                            "id": 7930,
                                            "indexExpression": {
                                              "commonType": {
                                                "typeIdentifier": "t_uint32",
                                                "typeString": "uint32"
                                              },
                                              "id": 7929,
                                              "isConstant": false,
                                              "isLValue": false,
                                              "isPure": false,
                                              "lValueRequested": false,
                                              "leftExpression": {
                                                "id": 7927,
                                                "name": "index",
                                                "nodeType": "Identifier",
                                                "overloadedDeclarations": [],
                                                "referencedDeclaration": 7901,
                                                "src": "10920:5:40",
                                                "typeDescriptions": {
                                                  "typeIdentifier": "t_uint32",
                                                  "typeString": "uint32"
                                                }
                                              },
                                              "nodeType": "BinaryOperation",
                                              "operator": "-",
                                              "rightExpression": {
                                                "hexValue": "31",
                                                "id": 7928,
                                                "isConstant": false,
                                                "isLValue": false,
                                                "isPure": true,
                                                "kind": "number",
                                                "lValueRequested": false,
                                                "nodeType": "Literal",
                                                "src": "10928:1:40",
                                                "typeDescriptions": {
                                                  "typeIdentifier": "t_rational_1_by_1",
                                                  "typeString": "int_const 1"
                                                },
                                                "value": "1"
                                              },
                                              "src": "10920:9:40",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_uint32",
                                                "typeString": "uint32"
                                              }
                                            },
                                            "isConstant": false,
                                            "isLValue": true,
                                            "isPure": false,
                                            "lValueRequested": false,
                                            "nodeType": "IndexAccess",
                                            "src": "10913:17:40",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint64",
                                              "typeString": "uint64"
                                            }
                                          },
                                          "src": "10897:33:40",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_bool",
                                            "typeString": "bool"
                                          }
                                        },
                                        {
                                          "hexValue": "4472617743616c632f7069636b732d617363656e64696e67",
                                          "id": 7932,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": true,
                                          "kind": "string",
                                          "lValueRequested": false,
                                          "nodeType": "Literal",
                                          "src": "10932:26:40",
                                          "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": 7922,
                                        "name": "require",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [
                                          -18,
                                          -18
                                        ],
                                        "referencedDeclaration": -18,
                                        "src": "10889:7:40",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                                          "typeString": "function (bool,string memory) pure"
                                        }
                                      },
                                      "id": 7933,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "functionCall",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "10889:70:40",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_tuple$__$",
                                        "typeString": "tuple()"
                                      }
                                    },
                                    "id": 7934,
                                    "nodeType": "ExpressionStatement",
                                    "src": "10889:70:40"
                                  }
                                ]
                              }
                            },
                            {
                              "assignments": [
                                7938
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 7938,
                                  "mutability": "mutable",
                                  "name": "randomNumberThisPick",
                                  "nameLocation": "11059:20:40",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 7979,
                                  "src": "11051:28:40",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "typeName": {
                                    "id": 7937,
                                    "name": "uint256",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "11051:7:40",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 7951,
                              "initialValue": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "id": 7944,
                                            "name": "_userRandomNumber",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 7844,
                                            "src": "11128:17:40",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_bytes32",
                                              "typeString": "bytes32"
                                            }
                                          },
                                          {
                                            "baseExpression": {
                                              "id": 7945,
                                              "name": "_picks",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 7847,
                                              "src": "11147:6:40",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                                                "typeString": "uint64[] memory"
                                              }
                                            },
                                            "id": 7947,
                                            "indexExpression": {
                                              "id": 7946,
                                              "name": "index",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 7901,
                                              "src": "11154:5:40",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_uint32",
                                                "typeString": "uint32"
                                              }
                                            },
                                            "isConstant": false,
                                            "isLValue": true,
                                            "isPure": false,
                                            "lValueRequested": false,
                                            "nodeType": "IndexAccess",
                                            "src": "11147:13:40",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint64",
                                              "typeString": "uint64"
                                            }
                                          }
                                        ],
                                        "expression": {
                                          "argumentTypes": [
                                            {
                                              "typeIdentifier": "t_bytes32",
                                              "typeString": "bytes32"
                                            },
                                            {
                                              "typeIdentifier": "t_uint64",
                                              "typeString": "uint64"
                                            }
                                          ],
                                          "expression": {
                                            "id": 7942,
                                            "name": "abi",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": -1,
                                            "src": "11117:3:40",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_magic_abi",
                                              "typeString": "abi"
                                            }
                                          },
                                          "id": 7943,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": true,
                                          "lValueRequested": false,
                                          "memberName": "encode",
                                          "nodeType": "MemberAccess",
                                          "src": "11117:10:40",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$",
                                            "typeString": "function () pure returns (bytes memory)"
                                          }
                                        },
                                        "id": 7948,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "kind": "functionCall",
                                        "lValueRequested": false,
                                        "names": [],
                                        "nodeType": "FunctionCall",
                                        "src": "11117:44:40",
                                        "tryCall": false,
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_bytes_memory_ptr",
                                          "typeString": "bytes memory"
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_bytes_memory_ptr",
                                          "typeString": "bytes memory"
                                        }
                                      ],
                                      "id": 7941,
                                      "name": "keccak256",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -8,
                                      "src": "11107:9:40",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$",
                                        "typeString": "function (bytes memory) pure returns (bytes32)"
                                      }
                                    },
                                    "id": 7949,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "kind": "functionCall",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "11107:55:40",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bytes32",
                                      "typeString": "bytes32"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_bytes32",
                                      "typeString": "bytes32"
                                    }
                                  ],
                                  "id": 7940,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "11082:7:40",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_uint256_$",
                                    "typeString": "type(uint256)"
                                  },
                                  "typeName": {
                                    "id": 7939,
                                    "name": "uint256",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "11082:7:40",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 7950,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "11082:94:40",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "11051:125:40"
                            },
                            {
                              "assignments": [
                                7953
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 7953,
                                  "mutability": "mutable",
                                  "name": "tiersIndex",
                                  "nameLocation": "11197:10:40",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 7979,
                                  "src": "11191:16:40",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint8",
                                    "typeString": "uint8"
                                  },
                                  "typeName": {
                                    "id": 7952,
                                    "name": "uint8",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "11191:5:40",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint8",
                                      "typeString": "uint8"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 7959,
                              "initialValue": {
                                "arguments": [
                                  {
                                    "id": 7955,
                                    "name": "randomNumberThisPick",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 7938,
                                    "src": "11247:20:40",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  {
                                    "id": 7956,
                                    "name": "_winningRandomNumber",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 7840,
                                    "src": "11285:20:40",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  {
                                    "id": 7957,
                                    "name": "masks",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 7862,
                                    "src": "11323:5:40",
                                    "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": 7954,
                                  "name": "_calculateTierIndex",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 8113,
                                  "src": "11210:19:40",
                                  "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": 7958,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "11210:132:40",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                }
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "11191:151:40"
                            },
                            {
                              "condition": {
                                "commonType": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                },
                                "id": 7962,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 7960,
                                  "name": "tiersIndex",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 7953,
                                  "src": "11411:10:40",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint8",
                                    "typeString": "uint8"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "<",
                                "rightExpression": {
                                  "id": 7961,
                                  "name": "TIERS_LENGTH",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 7289,
                                  "src": "11424:12:40",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint8",
                                    "typeString": "uint8"
                                  }
                                },
                                "src": "11411:25:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "id": 7978,
                              "nodeType": "IfStatement",
                              "src": "11407:218:40",
                              "trueBody": {
                                "id": 7977,
                                "nodeType": "Block",
                                "src": "11438:187:40",
                                "statements": [
                                  {
                                    "condition": {
                                      "commonType": {
                                        "typeIdentifier": "t_uint8",
                                        "typeString": "uint8"
                                      },
                                      "id": 7965,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "id": 7963,
                                        "name": "tiersIndex",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 7953,
                                        "src": "11460:10:40",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint8",
                                          "typeString": "uint8"
                                        }
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": ">",
                                      "rightExpression": {
                                        "id": 7964,
                                        "name": "maxWinningTierIndex",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 7889,
                                        "src": "11473:19:40",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint8",
                                          "typeString": "uint8"
                                        }
                                      },
                                      "src": "11460:32:40",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_bool",
                                        "typeString": "bool"
                                      }
                                    },
                                    "id": 7971,
                                    "nodeType": "IfStatement",
                                    "src": "11456:111:40",
                                    "trueBody": {
                                      "id": 7970,
                                      "nodeType": "Block",
                                      "src": "11494:73:40",
                                      "statements": [
                                        {
                                          "expression": {
                                            "id": 7968,
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": false,
                                            "lValueRequested": false,
                                            "leftHandSide": {
                                              "id": 7966,
                                              "name": "maxWinningTierIndex",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 7889,
                                              "src": "11516:19:40",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_uint8",
                                                "typeString": "uint8"
                                              }
                                            },
                                            "nodeType": "Assignment",
                                            "operator": "=",
                                            "rightHandSide": {
                                              "id": 7967,
                                              "name": "tiersIndex",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 7953,
                                              "src": "11538:10:40",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_uint8",
                                                "typeString": "uint8"
                                              }
                                            },
                                            "src": "11516:32:40",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint8",
                                              "typeString": "uint8"
                                            }
                                          },
                                          "id": 7969,
                                          "nodeType": "ExpressionStatement",
                                          "src": "11516:32:40"
                                        }
                                      ]
                                    }
                                  },
                                  {
                                    "expression": {
                                      "id": 7975,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "nodeType": "UnaryOperation",
                                      "operator": "++",
                                      "prefix": false,
                                      "src": "11584:26:40",
                                      "subExpression": {
                                        "baseExpression": {
                                          "id": 7972,
                                          "name": "_prizeCounts",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 7879,
                                          "src": "11584:12:40",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                            "typeString": "uint256[] memory"
                                          }
                                        },
                                        "id": 7974,
                                        "indexExpression": {
                                          "id": 7973,
                                          "name": "tiersIndex",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 7953,
                                          "src": "11597:10:40",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint8",
                                            "typeString": "uint8"
                                          }
                                        },
                                        "isConstant": false,
                                        "isLValue": true,
                                        "isPure": false,
                                        "lValueRequested": true,
                                        "nodeType": "IndexAccess",
                                        "src": "11584:24:40",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "id": 7976,
                                    "nodeType": "ExpressionStatement",
                                    "src": "11584:26:40"
                                  }
                                ]
                              }
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          },
                          "id": 7906,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 7904,
                            "name": "index",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7901,
                            "src": "10721:5:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "id": 7905,
                            "name": "picksLength",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7868,
                            "src": "10729:11:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "10721:19:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 7980,
                        "initializationExpression": {
                          "assignments": [
                            7901
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 7901,
                              "mutability": "mutable",
                              "name": "index",
                              "nameLocation": "10710:5:40",
                              "nodeType": "VariableDeclaration",
                              "scope": 7980,
                              "src": "10703:12:40",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              "typeName": {
                                "id": 7900,
                                "name": "uint32",
                                "nodeType": "ElementaryTypeName",
                                "src": "10703:6:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 7903,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 7902,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "10718:1:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "10703:16:40"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 7908,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "10742:7:40",
                            "subExpression": {
                              "id": 7907,
                              "name": "index",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7901,
                              "src": "10742:5:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "id": 7909,
                          "nodeType": "ExpressionStatement",
                          "src": "10742:7:40"
                        },
                        "nodeType": "ForStatement",
                        "src": "10698:937:40"
                      },
                      {
                        "assignments": [
                          7982
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7982,
                            "mutability": "mutable",
                            "name": "prizeFraction",
                            "nameLocation": "11710:13:40",
                            "nodeType": "VariableDeclaration",
                            "scope": 8038,
                            "src": "11702:21:40",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 7981,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "11702:7:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7984,
                        "initialValue": {
                          "hexValue": "30",
                          "id": 7983,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "number",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "11726:1:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_rational_0_by_1",
                            "typeString": "int_const 0"
                          },
                          "value": "0"
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "11702:25:40"
                      },
                      {
                        "assignments": [
                          7989
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 7989,
                            "mutability": "mutable",
                            "name": "prizeTiersFractions",
                            "nameLocation": "11754:19:40",
                            "nodeType": "VariableDeclaration",
                            "scope": 8038,
                            "src": "11737:36:40",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 7987,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "11737:7:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 7988,
                              "nodeType": "ArrayTypeName",
                              "src": "11737:9:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 7994,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 7991,
                              "name": "_prizeDistribution",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7850,
                              "src": "11818:18:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$11103_memory_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                              }
                            },
                            {
                              "id": 7992,
                              "name": "maxWinningTierIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7889,
                              "src": "11850:19:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$11103_memory_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                              },
                              {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            ],
                            "id": 7990,
                            "name": "_calculatePrizeTierFractions",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8256,
                            "src": "11776:28:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_struct$_PrizeDistribution_$11103_memory_ptr_$_t_uint8_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$",
                              "typeString": "function (struct IPrizeDistributionSource.PrizeDistribution memory,uint8) pure returns (uint256[] memory)"
                            }
                          },
                          "id": 7993,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "11776:103:40",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "11737:142:40"
                      },
                      {
                        "body": {
                          "id": 8022,
                          "nodeType": "Block",
                          "src": "12098:221:40",
                          "statements": [
                            {
                              "condition": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 8009,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "baseExpression": {
                                    "id": 8005,
                                    "name": "_prizeCounts",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 7879,
                                    "src": "12116:12:40",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                      "typeString": "uint256[] memory"
                                    }
                                  },
                                  "id": 8007,
                                  "indexExpression": {
                                    "id": 8006,
                                    "name": "prizeCountIndex",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 7996,
                                    "src": "12129:15:40",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "IndexAccess",
                                  "src": "12116:29:40",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": ">",
                                "rightExpression": {
                                  "hexValue": "30",
                                  "id": 8008,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "12148:1:40",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                },
                                "src": "12116:33:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "id": 8021,
                              "nodeType": "IfStatement",
                              "src": "12112:197:40",
                              "trueBody": {
                                "id": 8020,
                                "nodeType": "Block",
                                "src": "12151:158:40",
                                "statements": [
                                  {
                                    "expression": {
                                      "id": 8018,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftHandSide": {
                                        "id": 8010,
                                        "name": "prizeFraction",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 7982,
                                        "src": "12169:13:40",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "nodeType": "Assignment",
                                      "operator": "+=",
                                      "rightHandSide": {
                                        "commonType": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        },
                                        "id": 8017,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "leftExpression": {
                                          "baseExpression": {
                                            "id": 8011,
                                            "name": "prizeTiersFractions",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 7989,
                                            "src": "12206:19:40",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                              "typeString": "uint256[] memory"
                                            }
                                          },
                                          "id": 8013,
                                          "indexExpression": {
                                            "id": 8012,
                                            "name": "prizeCountIndex",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 7996,
                                            "src": "12226:15:40",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            }
                                          },
                                          "isConstant": false,
                                          "isLValue": true,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "nodeType": "IndexAccess",
                                          "src": "12206:36:40",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "nodeType": "BinaryOperation",
                                        "operator": "*",
                                        "rightExpression": {
                                          "baseExpression": {
                                            "id": 8014,
                                            "name": "_prizeCounts",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 7879,
                                            "src": "12265:12:40",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                              "typeString": "uint256[] memory"
                                            }
                                          },
                                          "id": 8016,
                                          "indexExpression": {
                                            "id": 8015,
                                            "name": "prizeCountIndex",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 7996,
                                            "src": "12278:15:40",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            }
                                          },
                                          "isConstant": false,
                                          "isLValue": true,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "nodeType": "IndexAccess",
                                          "src": "12265:29:40",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "src": "12206:88:40",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "src": "12169:125:40",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "id": 8019,
                                    "nodeType": "ExpressionStatement",
                                    "src": "12169:125:40"
                                  }
                                ]
                              }
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 8001,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 7999,
                            "name": "prizeCountIndex",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7996,
                            "src": "12018:15:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<=",
                          "rightExpression": {
                            "id": 8000,
                            "name": "maxWinningTierIndex",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7889,
                            "src": "12037:19:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "src": "12018:38:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 8023,
                        "initializationExpression": {
                          "assignments": [
                            7996
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 7996,
                              "mutability": "mutable",
                              "name": "prizeCountIndex",
                              "nameLocation": "11985:15:40",
                              "nodeType": "VariableDeclaration",
                              "scope": 8023,
                              "src": "11977:23:40",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "typeName": {
                                "id": 7995,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "11977:7:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 7998,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 7997,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "12003:1:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "11977:27:40"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 8003,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "12070:17:40",
                            "subExpression": {
                              "id": 8002,
                              "name": "prizeCountIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 7996,
                              "src": "12070:15:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 8004,
                          "nodeType": "ExpressionStatement",
                          "src": "12070:17:40"
                        },
                        "nodeType": "ForStatement",
                        "src": "11959:360:40"
                      },
                      {
                        "expression": {
                          "id": 8032,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 8024,
                            "name": "prize",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7853,
                            "src": "12436:5:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "commonType": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "id": 8031,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "components": [
                                {
                                  "commonType": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "id": 8028,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "id": 8025,
                                    "name": "prizeFraction",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 7982,
                                    "src": "12445:13:40",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": "*",
                                  "rightExpression": {
                                    "expression": {
                                      "id": 8026,
                                      "name": "_prizeDistribution",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 7850,
                                      "src": "12461:18:40",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_PrizeDistribution_$11103_memory_ptr",
                                        "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                      }
                                    },
                                    "id": 8027,
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "prize",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 11102,
                                    "src": "12461:24:40",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "src": "12445:40:40",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "id": 8029,
                              "isConstant": false,
                              "isInlineArray": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "nodeType": "TupleExpression",
                              "src": "12444:42:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "/",
                            "rightExpression": {
                              "hexValue": "316539",
                              "id": 8030,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "12489:3:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_1000000000_by_1",
                                "typeString": "int_const 1000000000"
                              },
                              "value": "1e9"
                            },
                            "src": "12444:48:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "12436:56:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 8033,
                        "nodeType": "ExpressionStatement",
                        "src": "12436:56:40"
                      },
                      {
                        "expression": {
                          "id": 8036,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 8034,
                            "name": "prizeCounts",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7856,
                            "src": "12502:11:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[] memory"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 8035,
                            "name": "_prizeCounts",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 7879,
                            "src": "12516:12:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[] memory"
                            }
                          },
                          "src": "12502:26:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "id": 8037,
                        "nodeType": "ExpressionStatement",
                        "src": "12502:26:40"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 7838,
                    "nodeType": "StructuredDocumentation",
                    "src": "9349:483:40",
                    "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": 8039,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_calculate",
                  "nameLocation": "9846:10:40",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 7851,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7840,
                        "mutability": "mutable",
                        "name": "_winningRandomNumber",
                        "nameLocation": "9874:20:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 8039,
                        "src": "9866:28:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 7839,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "9866:7:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7842,
                        "mutability": "mutable",
                        "name": "_totalUserPicks",
                        "nameLocation": "9912:15:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 8039,
                        "src": "9904:23:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 7841,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "9904:7:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7844,
                        "mutability": "mutable",
                        "name": "_userRandomNumber",
                        "nameLocation": "9945:17:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 8039,
                        "src": "9937:25:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 7843,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "9937:7:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7847,
                        "mutability": "mutable",
                        "name": "_picks",
                        "nameLocation": "9988:6:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 8039,
                        "src": "9972:22:40",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint64_$dyn_memory_ptr",
                          "typeString": "uint64[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 7845,
                            "name": "uint64",
                            "nodeType": "ElementaryTypeName",
                            "src": "9972:6:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "id": 7846,
                          "nodeType": "ArrayTypeName",
                          "src": "9972:8:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                            "typeString": "uint64[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7850,
                        "mutability": "mutable",
                        "name": "_prizeDistribution",
                        "nameLocation": "10054:18:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 8039,
                        "src": "10004:68:40",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$11103_memory_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 7849,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 7848,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11103,
                            "src": "10004:42:40"
                          },
                          "referencedDeclaration": 11103,
                          "src": "10004:42:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11103_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9856:222:40"
                  },
                  "returnParameters": {
                    "id": 7857,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 7853,
                        "mutability": "mutable",
                        "name": "prize",
                        "nameLocation": "10110:5:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 8039,
                        "src": "10102:13:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 7852,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "10102:7:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 7856,
                        "mutability": "mutable",
                        "name": "prizeCounts",
                        "nameLocation": "10134:11:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 8039,
                        "src": "10117:28:40",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 7854,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "10117:7:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 7855,
                          "nodeType": "ArrayTypeName",
                          "src": "10117:9:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "10101:45:40"
                  },
                  "scope": 8293,
                  "src": "9837:2698:40",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 8112,
                    "nodeType": "Block",
                    "src": "13103:757:40",
                    "statements": [
                      {
                        "assignments": [
                          8053
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 8053,
                            "mutability": "mutable",
                            "name": "numberOfMatches",
                            "nameLocation": "13119:15:40",
                            "nodeType": "VariableDeclaration",
                            "scope": 8112,
                            "src": "13113:21:40",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            },
                            "typeName": {
                              "id": 8052,
                              "name": "uint8",
                              "nodeType": "ElementaryTypeName",
                              "src": "13113:5:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 8055,
                        "initialValue": {
                          "hexValue": "30",
                          "id": 8054,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "number",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "13137:1:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_rational_0_by_1",
                            "typeString": "int_const 0"
                          },
                          "value": "0"
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "13113:25:40"
                      },
                      {
                        "assignments": [
                          8057
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 8057,
                            "mutability": "mutable",
                            "name": "masksLength",
                            "nameLocation": "13154:11:40",
                            "nodeType": "VariableDeclaration",
                            "scope": 8112,
                            "src": "13148:17:40",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            },
                            "typeName": {
                              "id": 8056,
                              "name": "uint8",
                              "nodeType": "ElementaryTypeName",
                              "src": "13148:5:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 8063,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 8060,
                                "name": "_masks",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 8047,
                                "src": "13174:6:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                  "typeString": "uint256[] memory"
                                }
                              },
                              "id": 8061,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "length",
                              "nodeType": "MemberAccess",
                              "src": "13174:13:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 8059,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "13168:5:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint8_$",
                              "typeString": "type(uint8)"
                            },
                            "typeName": {
                              "id": 8058,
                              "name": "uint8",
                              "nodeType": "ElementaryTypeName",
                              "src": "13168:5:40",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 8062,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "13168:20:40",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "13148:40:40"
                      },
                      {
                        "body": {
                          "id": 8106,
                          "nodeType": "Block",
                          "src": "13303:504:40",
                          "statements": [
                            {
                              "assignments": [
                                8075
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 8075,
                                  "mutability": "mutable",
                                  "name": "mask",
                                  "nameLocation": "13325:4:40",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 8106,
                                  "src": "13317:12:40",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "typeName": {
                                    "id": 8074,
                                    "name": "uint256",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "13317:7:40",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 8079,
                              "initialValue": {
                                "baseExpression": {
                                  "id": 8076,
                                  "name": "_masks",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 8047,
                                  "src": "13332:6:40",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                    "typeString": "uint256[] memory"
                                  }
                                },
                                "id": 8078,
                                "indexExpression": {
                                  "id": 8077,
                                  "name": "matchIndex",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 8065,
                                  "src": "13339:10:40",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint8",
                                    "typeString": "uint8"
                                  }
                                },
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "IndexAccess",
                                "src": "13332:18:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "13317:33:40"
                            },
                            {
                              "condition": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 8088,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "components": [
                                    {
                                      "commonType": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      },
                                      "id": 8082,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "id": 8080,
                                        "name": "_randomNumberThisPick",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 8042,
                                        "src": "13370:21:40",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": "&",
                                      "rightExpression": {
                                        "id": 8081,
                                        "name": "mask",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 8075,
                                        "src": "13394:4:40",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "src": "13370:28:40",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    }
                                  ],
                                  "id": 8083,
                                  "isConstant": false,
                                  "isInlineArray": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "TupleExpression",
                                  "src": "13369:30:40",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "!=",
                                "rightExpression": {
                                  "components": [
                                    {
                                      "commonType": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      },
                                      "id": 8086,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "id": 8084,
                                        "name": "_winningRandomNumber",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 8044,
                                        "src": "13404:20:40",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": "&",
                                      "rightExpression": {
                                        "id": 8085,
                                        "name": "mask",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 8075,
                                        "src": "13427:4:40",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "src": "13404:27:40",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    }
                                  ],
                                  "id": 8087,
                                  "isConstant": false,
                                  "isInlineArray": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "TupleExpression",
                                  "src": "13403:29:40",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "13369:63:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "id": 8102,
                              "nodeType": "IfStatement",
                              "src": "13365:362:40",
                              "trueBody": {
                                "id": 8101,
                                "nodeType": "Block",
                                "src": "13434:293:40",
                                "statements": [
                                  {
                                    "condition": {
                                      "commonType": {
                                        "typeIdentifier": "t_uint8",
                                        "typeString": "uint8"
                                      },
                                      "id": 8091,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "id": 8089,
                                        "name": "masksLength",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 8057,
                                        "src": "13549:11:40",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint8",
                                          "typeString": "uint8"
                                        }
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": "==",
                                      "rightExpression": {
                                        "id": 8090,
                                        "name": "numberOfMatches",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 8053,
                                        "src": "13564:15:40",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint8",
                                          "typeString": "uint8"
                                        }
                                      },
                                      "src": "13549:30:40",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_bool",
                                        "typeString": "bool"
                                      }
                                    },
                                    "falseBody": {
                                      "id": 8099,
                                      "nodeType": "Block",
                                      "src": "13636:77:40",
                                      "statements": [
                                        {
                                          "expression": {
                                            "commonType": {
                                              "typeIdentifier": "t_uint8",
                                              "typeString": "uint8"
                                            },
                                            "id": 8097,
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": false,
                                            "lValueRequested": false,
                                            "leftExpression": {
                                              "id": 8095,
                                              "name": "masksLength",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 8057,
                                              "src": "13665:11:40",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_uint8",
                                                "typeString": "uint8"
                                              }
                                            },
                                            "nodeType": "BinaryOperation",
                                            "operator": "-",
                                            "rightExpression": {
                                              "id": 8096,
                                              "name": "numberOfMatches",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 8053,
                                              "src": "13679:15:40",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_uint8",
                                                "typeString": "uint8"
                                              }
                                            },
                                            "src": "13665:29:40",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint8",
                                              "typeString": "uint8"
                                            }
                                          },
                                          "functionReturnParameters": 8051,
                                          "id": 8098,
                                          "nodeType": "Return",
                                          "src": "13658:36:40"
                                        }
                                      ]
                                    },
                                    "id": 8100,
                                    "nodeType": "IfStatement",
                                    "src": "13545:168:40",
                                    "trueBody": {
                                      "id": 8094,
                                      "nodeType": "Block",
                                      "src": "13581:49:40",
                                      "statements": [
                                        {
                                          "expression": {
                                            "hexValue": "30",
                                            "id": 8092,
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": true,
                                            "kind": "number",
                                            "lValueRequested": false,
                                            "nodeType": "Literal",
                                            "src": "13610:1:40",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_rational_0_by_1",
                                              "typeString": "int_const 0"
                                            },
                                            "value": "0"
                                          },
                                          "functionReturnParameters": 8051,
                                          "id": 8093,
                                          "nodeType": "Return",
                                          "src": "13603:8:40"
                                        }
                                      ]
                                    }
                                  }
                                ]
                              }
                            },
                            {
                              "expression": {
                                "id": 8104,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "UnaryOperation",
                                "operator": "++",
                                "prefix": false,
                                "src": "13779:17:40",
                                "subExpression": {
                                  "id": 8103,
                                  "name": "numberOfMatches",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 8053,
                                  "src": "13779:15:40",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint8",
                                    "typeString": "uint8"
                                  }
                                },
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                }
                              },
                              "id": 8105,
                              "nodeType": "ExpressionStatement",
                              "src": "13779:17:40"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          },
                          "id": 8070,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 8068,
                            "name": "matchIndex",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8065,
                            "src": "13263:10:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "id": 8069,
                            "name": "masksLength",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8057,
                            "src": "13276:11:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "src": "13263:24:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 8107,
                        "initializationExpression": {
                          "assignments": [
                            8065
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 8065,
                              "mutability": "mutable",
                              "name": "matchIndex",
                              "nameLocation": "13247:10:40",
                              "nodeType": "VariableDeclaration",
                              "scope": 8107,
                              "src": "13241:16:40",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              },
                              "typeName": {
                                "id": 8064,
                                "name": "uint8",
                                "nodeType": "ElementaryTypeName",
                                "src": "13241:5:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 8067,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 8066,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "13260:1:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "13241:20:40"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 8072,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "13289:12:40",
                            "subExpression": {
                              "id": 8071,
                              "name": "matchIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8065,
                              "src": "13289:10:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "id": 8073,
                          "nodeType": "ExpressionStatement",
                          "src": "13289:12:40"
                        },
                        "nodeType": "ForStatement",
                        "src": "13236:571:40"
                      },
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          },
                          "id": 8110,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 8108,
                            "name": "masksLength",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8057,
                            "src": "13824:11:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "-",
                          "rightExpression": {
                            "id": 8109,
                            "name": "numberOfMatches",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8053,
                            "src": "13838:15:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "src": "13824:29:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "functionReturnParameters": 8051,
                        "id": 8111,
                        "nodeType": "Return",
                        "src": "13817:36:40"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 8040,
                    "nodeType": "StructuredDocumentation",
                    "src": "12541:382:40",
                    "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": 8113,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_calculateTierIndex",
                  "nameLocation": "12937:19:40",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8048,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8042,
                        "mutability": "mutable",
                        "name": "_randomNumberThisPick",
                        "nameLocation": "12974:21:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 8113,
                        "src": "12966:29:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 8041,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "12966:7:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8044,
                        "mutability": "mutable",
                        "name": "_winningRandomNumber",
                        "nameLocation": "13013:20:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 8113,
                        "src": "13005:28:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 8043,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "13005:7:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8047,
                        "mutability": "mutable",
                        "name": "_masks",
                        "nameLocation": "13060:6:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 8113,
                        "src": "13043:23:40",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 8045,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "13043:7:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 8046,
                          "nodeType": "ArrayTypeName",
                          "src": "13043:9:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "12956:116:40"
                  },
                  "returnParameters": {
                    "id": 8051,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8050,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8113,
                        "src": "13096:5:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 8049,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "13096:5:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "13095:7:40"
                  },
                  "scope": 8293,
                  "src": "12928:932:40",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 8175,
                    "nodeType": "Block",
                    "src": "14265:457:40",
                    "statements": [
                      {
                        "assignments": [
                          8127
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 8127,
                            "mutability": "mutable",
                            "name": "masks",
                            "nameLocation": "14292:5:40",
                            "nodeType": "VariableDeclaration",
                            "scope": 8175,
                            "src": "14275:22:40",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 8125,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "14275:7:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 8126,
                              "nodeType": "ArrayTypeName",
                              "src": "14275:9:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 8134,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 8131,
                                "name": "_prizeDistribution",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 8117,
                                "src": "14314:18:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_PrizeDistribution_$11103_memory_ptr",
                                  "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                }
                              },
                              "id": 8132,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "matchCardinality",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 11086,
                              "src": "14314:35:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            ],
                            "id": 8130,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "14300:13:40",
                            "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": 8128,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "14304:7:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 8129,
                              "nodeType": "ArrayTypeName",
                              "src": "14304:9:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            }
                          },
                          "id": 8133,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "14300:50:40",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "14275:75:40"
                      },
                      {
                        "expression": {
                          "id": 8145,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "id": 8135,
                              "name": "masks",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8127,
                              "src": "14360:5:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                "typeString": "uint256[] memory"
                              }
                            },
                            "id": 8137,
                            "indexExpression": {
                              "hexValue": "30",
                              "id": 8136,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "14366:1:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_0_by_1",
                                "typeString": "int_const 0"
                              },
                              "value": "0"
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "14360:8:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "commonType": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "id": 8144,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "components": [
                                {
                                  "commonType": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "id": 8141,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "hexValue": "32",
                                    "id": 8138,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "14373:1:40",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_2_by_1",
                                      "typeString": "int_const 2"
                                    },
                                    "value": "2"
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": "**",
                                  "rightExpression": {
                                    "expression": {
                                      "id": 8139,
                                      "name": "_prizeDistribution",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 8117,
                                      "src": "14376:18:40",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_PrizeDistribution_$11103_memory_ptr",
                                        "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                      }
                                    },
                                    "id": 8140,
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "bitRangeSize",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 11084,
                                    "src": "14376:31:40",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint8",
                                      "typeString": "uint8"
                                    }
                                  },
                                  "src": "14373:34:40",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "id": 8142,
                              "isConstant": false,
                              "isInlineArray": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "nodeType": "TupleExpression",
                              "src": "14372:36:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "-",
                            "rightExpression": {
                              "hexValue": "31",
                              "id": 8143,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "14411:1:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_1_by_1",
                                "typeString": "int_const 1"
                              },
                              "value": "1"
                            },
                            "src": "14372:40:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "14360:52:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 8146,
                        "nodeType": "ExpressionStatement",
                        "src": "14360:52:40"
                      },
                      {
                        "body": {
                          "id": 8171,
                          "nodeType": "Block",
                          "src": "14511:182:40",
                          "statements": [
                            {
                              "expression": {
                                "id": 8169,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "baseExpression": {
                                    "id": 8158,
                                    "name": "masks",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 8127,
                                    "src": "14608:5:40",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                      "typeString": "uint256[] memory"
                                    }
                                  },
                                  "id": 8160,
                                  "indexExpression": {
                                    "id": 8159,
                                    "name": "maskIndex",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 8148,
                                    "src": "14614:9:40",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint8",
                                      "typeString": "uint8"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": true,
                                  "nodeType": "IndexAccess",
                                  "src": "14608:16:40",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "commonType": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "id": 8168,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "baseExpression": {
                                      "id": 8161,
                                      "name": "masks",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 8127,
                                      "src": "14627:5:40",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                        "typeString": "uint256[] memory"
                                      }
                                    },
                                    "id": 8165,
                                    "indexExpression": {
                                      "commonType": {
                                        "typeIdentifier": "t_uint8",
                                        "typeString": "uint8"
                                      },
                                      "id": 8164,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "id": 8162,
                                        "name": "maskIndex",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 8148,
                                        "src": "14633:9:40",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint8",
                                          "typeString": "uint8"
                                        }
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": "-",
                                      "rightExpression": {
                                        "hexValue": "31",
                                        "id": 8163,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "kind": "number",
                                        "lValueRequested": false,
                                        "nodeType": "Literal",
                                        "src": "14645:1:40",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_rational_1_by_1",
                                          "typeString": "int_const 1"
                                        },
                                        "value": "1"
                                      },
                                      "src": "14633:13:40",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint8",
                                        "typeString": "uint8"
                                      }
                                    },
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "nodeType": "IndexAccess",
                                    "src": "14627:20:40",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": "<<",
                                  "rightExpression": {
                                    "expression": {
                                      "id": 8166,
                                      "name": "_prizeDistribution",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 8117,
                                      "src": "14651:18:40",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_PrizeDistribution_$11103_memory_ptr",
                                        "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                      }
                                    },
                                    "id": 8167,
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "bitRangeSize",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 11084,
                                    "src": "14651:31:40",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint8",
                                      "typeString": "uint8"
                                    }
                                  },
                                  "src": "14627:55:40",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "14608:74:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 8170,
                              "nodeType": "ExpressionStatement",
                              "src": "14608:74:40"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          },
                          "id": 8154,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 8151,
                            "name": "maskIndex",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8148,
                            "src": "14449:9:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "expression": {
                              "id": 8152,
                              "name": "_prizeDistribution",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8117,
                              "src": "14461:18:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$11103_memory_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                              }
                            },
                            "id": 8153,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "matchCardinality",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11086,
                            "src": "14461:35:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "src": "14449:47:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 8172,
                        "initializationExpression": {
                          "assignments": [
                            8148
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 8148,
                              "mutability": "mutable",
                              "name": "maskIndex",
                              "nameLocation": "14434:9:40",
                              "nodeType": "VariableDeclaration",
                              "scope": 8172,
                              "src": "14428:15:40",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              },
                              "typeName": {
                                "id": 8147,
                                "name": "uint8",
                                "nodeType": "ElementaryTypeName",
                                "src": "14428:5:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 8150,
                          "initialValue": {
                            "hexValue": "31",
                            "id": 8149,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "14446:1:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_1_by_1",
                              "typeString": "int_const 1"
                            },
                            "value": "1"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "14428:19:40"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 8156,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "14498:11:40",
                            "subExpression": {
                              "id": 8155,
                              "name": "maskIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8148,
                              "src": "14498:9:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "id": 8157,
                          "nodeType": "ExpressionStatement",
                          "src": "14498:11:40"
                        },
                        "nodeType": "ForStatement",
                        "src": "14423:270:40"
                      },
                      {
                        "expression": {
                          "id": 8173,
                          "name": "masks",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 8127,
                          "src": "14710:5:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "functionReturnParameters": 8122,
                        "id": 8174,
                        "nodeType": "Return",
                        "src": "14703:12:40"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 8114,
                    "nodeType": "StructuredDocumentation",
                    "src": "13866:230:40",
                    "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": 8176,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_createBitMasks",
                  "nameLocation": "14110:15:40",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8118,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8117,
                        "mutability": "mutable",
                        "name": "_prizeDistribution",
                        "nameLocation": "14176:18:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 8176,
                        "src": "14126:68:40",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$11103_memory_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 8116,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8115,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11103,
                            "src": "14126:42:40"
                          },
                          "referencedDeclaration": 11103,
                          "src": "14126:42:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11103_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "14125:70:40"
                  },
                  "returnParameters": {
                    "id": 8122,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8121,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8176,
                        "src": "14243:16:40",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 8119,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "14243:7:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 8120,
                          "nodeType": "ArrayTypeName",
                          "src": "14243:9:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "14242:18:40"
                  },
                  "scope": 8293,
                  "src": "14101:621:40",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 8206,
                    "nodeType": "Block",
                    "src": "15248:391:40",
                    "statements": [
                      {
                        "assignments": [
                          8188
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 8188,
                            "mutability": "mutable",
                            "name": "prizeFraction",
                            "nameLocation": "15315:13:40",
                            "nodeType": "VariableDeclaration",
                            "scope": 8206,
                            "src": "15307:21:40",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 8187,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "15307:7:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 8193,
                        "initialValue": {
                          "baseExpression": {
                            "expression": {
                              "id": 8189,
                              "name": "_prizeDistribution",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8180,
                              "src": "15331:18:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$11103_memory_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                              }
                            },
                            "id": 8190,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "tiers",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11100,
                            "src": "15331:24:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint32_$16_memory_ptr",
                              "typeString": "uint32[16] memory"
                            }
                          },
                          "id": 8192,
                          "indexExpression": {
                            "id": 8191,
                            "name": "_prizeTierIndex",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8182,
                            "src": "15356:15:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "15331:41:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "15307:65:40"
                      },
                      {
                        "assignments": [
                          8195
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 8195,
                            "mutability": "mutable",
                            "name": "numberOfPrizesForIndex",
                            "nameLocation": "15444:22:40",
                            "nodeType": "VariableDeclaration",
                            "scope": 8206,
                            "src": "15436:30:40",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 8194,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "15436:7:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 8201,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 8197,
                                "name": "_prizeDistribution",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 8180,
                                "src": "15506:18:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_PrizeDistribution_$11103_memory_ptr",
                                  "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                }
                              },
                              "id": 8198,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "bitRangeSize",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 11084,
                              "src": "15506:31:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            {
                              "id": 8199,
                              "name": "_prizeTierIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8182,
                              "src": "15551:15:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 8196,
                            "name": "_numberOfPrizesForIndex",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8292,
                            "src": "15469:23:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint8_$_t_uint256_$returns$_t_uint256_$",
                              "typeString": "function (uint8,uint256) pure returns (uint256)"
                            }
                          },
                          "id": 8200,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "15469:107:40",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "15436:140:40"
                      },
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 8204,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 8202,
                            "name": "prizeFraction",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8188,
                            "src": "15594:13:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "/",
                          "rightExpression": {
                            "id": 8203,
                            "name": "numberOfPrizesForIndex",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8195,
                            "src": "15610:22:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "15594:38:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 8186,
                        "id": 8205,
                        "nodeType": "Return",
                        "src": "15587:45:40"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 8177,
                    "nodeType": "StructuredDocumentation",
                    "src": "14728:329:40",
                    "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": 8207,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_calculatePrizeTierFraction",
                  "nameLocation": "15071:27:40",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8183,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8180,
                        "mutability": "mutable",
                        "name": "_prizeDistribution",
                        "nameLocation": "15158:18:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 8207,
                        "src": "15108:68:40",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$11103_memory_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 8179,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8178,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11103,
                            "src": "15108:42:40"
                          },
                          "referencedDeclaration": 11103,
                          "src": "15108:42:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11103_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8182,
                        "mutability": "mutable",
                        "name": "_prizeTierIndex",
                        "nameLocation": "15194:15:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 8207,
                        "src": "15186:23:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 8181,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "15186:7:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "15098:117:40"
                  },
                  "returnParameters": {
                    "id": 8186,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8185,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8207,
                        "src": "15239:7:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 8184,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "15239:7:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "15238:9:40"
                  },
                  "scope": 8293,
                  "src": "15062:577:40",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 8255,
                    "nodeType": "Block",
                    "src": "16112:379:40",
                    "statements": [
                      {
                        "assignments": [
                          8223
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 8223,
                            "mutability": "mutable",
                            "name": "prizeDistributionFractions",
                            "nameLocation": "16139:26:40",
                            "nodeType": "VariableDeclaration",
                            "scope": 8255,
                            "src": "16122:43:40",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 8221,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "16122:7:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 8222,
                              "nodeType": "ArrayTypeName",
                              "src": "16122:9:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 8231,
                        "initialValue": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              },
                              "id": 8229,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 8227,
                                "name": "maxWinningTierIndex",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 8213,
                                "src": "16195:19:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "+",
                              "rightExpression": {
                                "hexValue": "31",
                                "id": 8228,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "16217:1:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_1_by_1",
                                  "typeString": "int_const 1"
                                },
                                "value": "1"
                              },
                              "src": "16195:23:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            ],
                            "id": 8226,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "16168:13:40",
                            "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": 8224,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "16172:7:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 8225,
                              "nodeType": "ArrayTypeName",
                              "src": "16172:9:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            }
                          },
                          "id": 8230,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "16168:60:40",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "16122:106:40"
                      },
                      {
                        "body": {
                          "id": 8251,
                          "nodeType": "Block",
                          "src": "16288:153:40",
                          "statements": [
                            {
                              "expression": {
                                "id": 8249,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "baseExpression": {
                                    "id": 8242,
                                    "name": "prizeDistributionFractions",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 8223,
                                    "src": "16302:26:40",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                      "typeString": "uint256[] memory"
                                    }
                                  },
                                  "id": 8244,
                                  "indexExpression": {
                                    "id": 8243,
                                    "name": "i",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 8233,
                                    "src": "16329:1:40",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint8",
                                      "typeString": "uint8"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": true,
                                  "nodeType": "IndexAccess",
                                  "src": "16302:29:40",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "arguments": [
                                    {
                                      "id": 8246,
                                      "name": "_prizeDistribution",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 8211,
                                      "src": "16379:18:40",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_PrizeDistribution_$11103_memory_ptr",
                                        "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                      }
                                    },
                                    {
                                      "id": 8247,
                                      "name": "i",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 8233,
                                      "src": "16415:1:40",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint8",
                                        "typeString": "uint8"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_struct$_PrizeDistribution_$11103_memory_ptr",
                                        "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                      },
                                      {
                                        "typeIdentifier": "t_uint8",
                                        "typeString": "uint8"
                                      }
                                    ],
                                    "id": 8245,
                                    "name": "_calculatePrizeTierFraction",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 8207,
                                    "src": "16334:27:40",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_pure$_t_struct$_PrizeDistribution_$11103_memory_ptr_$_t_uint256_$returns$_t_uint256_$",
                                      "typeString": "function (struct IPrizeDistributionSource.PrizeDistribution memory,uint256) pure returns (uint256)"
                                    }
                                  },
                                  "id": 8248,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "16334:96:40",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "16302:128:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 8250,
                              "nodeType": "ExpressionStatement",
                              "src": "16302:128:40"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          },
                          "id": 8238,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 8236,
                            "name": "i",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8233,
                            "src": "16257:1:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<=",
                          "rightExpression": {
                            "id": 8237,
                            "name": "maxWinningTierIndex",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8213,
                            "src": "16262:19:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "src": "16257:24:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 8252,
                        "initializationExpression": {
                          "assignments": [
                            8233
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 8233,
                              "mutability": "mutable",
                              "name": "i",
                              "nameLocation": "16250:1:40",
                              "nodeType": "VariableDeclaration",
                              "scope": 8252,
                              "src": "16244:7:40",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              },
                              "typeName": {
                                "id": 8232,
                                "name": "uint8",
                                "nodeType": "ElementaryTypeName",
                                "src": "16244:5:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 8235,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 8234,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "16254:1:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "16244:11:40"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 8240,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "16283:3:40",
                            "subExpression": {
                              "id": 8239,
                              "name": "i",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8233,
                              "src": "16283:1:40",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "id": 8241,
                          "nodeType": "ExpressionStatement",
                          "src": "16283:3:40"
                        },
                        "nodeType": "ForStatement",
                        "src": "16239:202:40"
                      },
                      {
                        "expression": {
                          "id": 8253,
                          "name": "prizeDistributionFractions",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 8223,
                          "src": "16458:26:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "functionReturnParameters": 8218,
                        "id": 8254,
                        "nodeType": "Return",
                        "src": "16451:33:40"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 8208,
                    "nodeType": "StructuredDocumentation",
                    "src": "15645:264:40",
                    "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": 8256,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_calculatePrizeTierFractions",
                  "nameLocation": "15923:28:40",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8214,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8211,
                        "mutability": "mutable",
                        "name": "_prizeDistribution",
                        "nameLocation": "16011:18:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 8256,
                        "src": "15961:68:40",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$11103_memory_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 8210,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8209,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11103,
                            "src": "15961:42:40"
                          },
                          "referencedDeclaration": 11103,
                          "src": "15961:42:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11103_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8213,
                        "mutability": "mutable",
                        "name": "maxWinningTierIndex",
                        "nameLocation": "16045:19:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 8256,
                        "src": "16039:25:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 8212,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "16039:5:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "15951:119:40"
                  },
                  "returnParameters": {
                    "id": 8218,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8217,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8256,
                        "src": "16094:16:40",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 8215,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "16094:7:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 8216,
                          "nodeType": "ArrayTypeName",
                          "src": "16094:9:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "16093:18:40"
                  },
                  "scope": 8293,
                  "src": "15914:577:40",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 8291,
                    "nodeType": "Block",
                    "src": "16926:201:40",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 8268,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 8266,
                            "name": "_prizeTierIndex",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8261,
                            "src": "16940:15:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": ">",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 8267,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "16958:1:40",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "16940:19:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "falseBody": {
                          "id": 8289,
                          "nodeType": "Block",
                          "src": "17088:33:40",
                          "statements": [
                            {
                              "expression": {
                                "hexValue": "31",
                                "id": 8287,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "17109:1:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_1_by_1",
                                  "typeString": "int_const 1"
                                },
                                "value": "1"
                              },
                              "functionReturnParameters": 8265,
                              "id": 8288,
                              "nodeType": "Return",
                              "src": "17102:8:40"
                            }
                          ]
                        },
                        "id": 8290,
                        "nodeType": "IfStatement",
                        "src": "16936:185:40",
                        "trueBody": {
                          "id": 8286,
                          "nodeType": "Block",
                          "src": "16961:121:40",
                          "statements": [
                            {
                              "expression": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 8284,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "components": [
                                    {
                                      "commonType": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      },
                                      "id": 8273,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "hexValue": "31",
                                        "id": 8269,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "kind": "number",
                                        "lValueRequested": false,
                                        "nodeType": "Literal",
                                        "src": "16984:1:40",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_rational_1_by_1",
                                          "typeString": "int_const 1"
                                        },
                                        "value": "1"
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": "<<",
                                      "rightExpression": {
                                        "commonType": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        },
                                        "id": 8272,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "leftExpression": {
                                          "id": 8270,
                                          "name": "_bitRangeSize",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 8259,
                                          "src": "16989:13:40",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint8",
                                            "typeString": "uint8"
                                          }
                                        },
                                        "nodeType": "BinaryOperation",
                                        "operator": "*",
                                        "rightExpression": {
                                          "id": 8271,
                                          "name": "_prizeTierIndex",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 8261,
                                          "src": "17005:15:40",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "src": "16989:31:40",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "src": "16984:36:40",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    }
                                  ],
                                  "id": 8274,
                                  "isConstant": false,
                                  "isInlineArray": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "TupleExpression",
                                  "src": "16982:40:40",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "-",
                                "rightExpression": {
                                  "components": [
                                    {
                                      "commonType": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      },
                                      "id": 8282,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "hexValue": "31",
                                        "id": 8275,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "kind": "number",
                                        "lValueRequested": false,
                                        "nodeType": "Literal",
                                        "src": "17027:1:40",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_rational_1_by_1",
                                          "typeString": "int_const 1"
                                        },
                                        "value": "1"
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": "<<",
                                      "rightExpression": {
                                        "commonType": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        },
                                        "id": 8281,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "leftExpression": {
                                          "id": 8276,
                                          "name": "_bitRangeSize",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 8259,
                                          "src": "17032:13:40",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint8",
                                            "typeString": "uint8"
                                          }
                                        },
                                        "nodeType": "BinaryOperation",
                                        "operator": "*",
                                        "rightExpression": {
                                          "components": [
                                            {
                                              "commonType": {
                                                "typeIdentifier": "t_uint256",
                                                "typeString": "uint256"
                                              },
                                              "id": 8279,
                                              "isConstant": false,
                                              "isLValue": false,
                                              "isPure": false,
                                              "lValueRequested": false,
                                              "leftExpression": {
                                                "id": 8277,
                                                "name": "_prizeTierIndex",
                                                "nodeType": "Identifier",
                                                "overloadedDeclarations": [],
                                                "referencedDeclaration": 8261,
                                                "src": "17049:15:40",
                                                "typeDescriptions": {
                                                  "typeIdentifier": "t_uint256",
                                                  "typeString": "uint256"
                                                }
                                              },
                                              "nodeType": "BinaryOperation",
                                              "operator": "-",
                                              "rightExpression": {
                                                "hexValue": "31",
                                                "id": 8278,
                                                "isConstant": false,
                                                "isLValue": false,
                                                "isPure": true,
                                                "kind": "number",
                                                "lValueRequested": false,
                                                "nodeType": "Literal",
                                                "src": "17067:1:40",
                                                "typeDescriptions": {
                                                  "typeIdentifier": "t_rational_1_by_1",
                                                  "typeString": "int_const 1"
                                                },
                                                "value": "1"
                                              },
                                              "src": "17049:19:40",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_uint256",
                                                "typeString": "uint256"
                                              }
                                            }
                                          ],
                                          "id": 8280,
                                          "isConstant": false,
                                          "isInlineArray": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "nodeType": "TupleExpression",
                                          "src": "17048:21:40",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "src": "17032:37:40",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "src": "17027:42:40",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    }
                                  ],
                                  "id": 8283,
                                  "isConstant": false,
                                  "isInlineArray": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "TupleExpression",
                                  "src": "17025:46:40",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "16982:89:40",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "functionReturnParameters": 8265,
                              "id": 8285,
                              "nodeType": "Return",
                              "src": "16975:96:40"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 8257,
                    "nodeType": "StructuredDocumentation",
                    "src": "16497:285:40",
                    "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": 8292,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_numberOfPrizesForIndex",
                  "nameLocation": "16796:23:40",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8262,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8259,
                        "mutability": "mutable",
                        "name": "_bitRangeSize",
                        "nameLocation": "16826:13:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 8292,
                        "src": "16820:19:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 8258,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "16820:5:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8261,
                        "mutability": "mutable",
                        "name": "_prizeTierIndex",
                        "nameLocation": "16849:15:40",
                        "nodeType": "VariableDeclaration",
                        "scope": 8292,
                        "src": "16841:23:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 8260,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "16841:7:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "16819:46:40"
                  },
                  "returnParameters": {
                    "id": 8265,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8264,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8292,
                        "src": "16913:7:40",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 8263,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "16913:7:40",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "16912:9:40"
                  },
                  "scope": 8293,
                  "src": "16787:340:40",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 8294,
              "src": "876:16253:40",
              "usedErrors": []
            }
          ],
          "src": "37:17093:40"
        },
        "id": 40
      },
      "@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol",
          "exportedSymbols": {
            "DrawRingBufferLib": [
              11966
            ],
            "IPrizeDistributionBuffer": [
              11079
            ],
            "IPrizeDistributionSource": [
              11115
            ],
            "Manageable": [
              5200
            ],
            "Ownable": [
              5355
            ],
            "PrizeDistributionBuffer": [
              8796
            ],
            "RingBufferLib": [
              12461
            ]
          },
          "id": 8797,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 8295,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:41"
            },
            {
              "absolutePath": "@pooltogether/owner-manager-contracts/contracts/Manageable.sol",
              "file": "@pooltogether/owner-manager-contracts/contracts/Manageable.sol",
              "id": 8296,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 8797,
              "sourceUnit": 5201,
              "src": "61:72:41",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/libraries/DrawRingBufferLib.sol",
              "file": "./libraries/DrawRingBufferLib.sol",
              "id": 8297,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 8797,
              "sourceUnit": 11967,
              "src": "135:43:41",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionBuffer.sol",
              "file": "./interfaces/IPrizeDistributionBuffer.sol",
              "id": 8298,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 8797,
              "sourceUnit": 11080,
              "src": "179:51:41",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 8300,
                    "name": "IPrizeDistributionBuffer",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 11079,
                    "src": "940:24:41"
                  },
                  "id": 8301,
                  "nodeType": "InheritanceSpecifier",
                  "src": "940:24:41"
                },
                {
                  "baseName": {
                    "id": 8302,
                    "name": "Manageable",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 5200,
                    "src": "966:10:41"
                  },
                  "id": 8303,
                  "nodeType": "InheritanceSpecifier",
                  "src": "966:10:41"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 8299,
                "nodeType": "StructuredDocumentation",
                "src": "232:671:41",
                "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": 8796,
              "linearizedBaseContracts": [
                8796,
                5200,
                5355,
                11079,
                11115
              ],
              "name": "PrizeDistributionBuffer",
              "nameLocation": "913:23:41",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "id": 8307,
                  "libraryName": {
                    "id": 8304,
                    "name": "DrawRingBufferLib",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 11966,
                    "src": "989:17:41"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "983:53:41",
                  "typeName": {
                    "id": 8306,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 8305,
                      "name": "DrawRingBufferLib.Buffer",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 11836,
                      "src": "1011:24:41"
                    },
                    "referencedDeclaration": 11836,
                    "src": "1011:24:41",
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_Buffer_$11836_storage_ptr",
                      "typeString": "struct DrawRingBufferLib.Buffer"
                    }
                  }
                },
                {
                  "constant": true,
                  "documentation": {
                    "id": 8308,
                    "nodeType": "StructuredDocumentation",
                    "src": "1042:153:41",
                    "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": 8311,
                  "mutability": "constant",
                  "name": "MAX_CARDINALITY",
                  "nameLocation": "1226:15:41",
                  "nodeType": "VariableDeclaration",
                  "scope": 8796,
                  "src": "1200:47:41",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 8309,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "1200:7:41",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": {
                    "hexValue": "323536",
                    "id": 8310,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "number",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "1244:3:41",
                    "typeDescriptions": {
                      "typeIdentifier": "t_rational_256_by_1",
                      "typeString": "int_const 256"
                    },
                    "value": "256"
                  },
                  "visibility": "internal"
                },
                {
                  "constant": true,
                  "documentation": {
                    "id": 8312,
                    "nodeType": "StructuredDocumentation",
                    "src": "1254:145:41",
                    "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": 8315,
                  "mutability": "constant",
                  "name": "TIERS_CEILING",
                  "nameLocation": "1430:13:41",
                  "nodeType": "VariableDeclaration",
                  "scope": 8796,
                  "src": "1404:45:41",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 8313,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "1404:7:41",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": {
                    "hexValue": "316539",
                    "id": 8314,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "number",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "1446:3:41",
                    "typeDescriptions": {
                      "typeIdentifier": "t_rational_1000000000_by_1",
                      "typeString": "int_const 1000000000"
                    },
                    "value": "1e9"
                  },
                  "visibility": "internal"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 8316,
                    "nodeType": "StructuredDocumentation",
                    "src": "1456:150:41",
                    "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": 8320,
                  "name": "Deployed",
                  "nameLocation": "1617:8:41",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 8319,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8318,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "cardinality",
                        "nameLocation": "1632:11:41",
                        "nodeType": "VariableDeclaration",
                        "scope": 8320,
                        "src": "1626:17:41",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 8317,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "1626:5:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1625:19:41"
                  },
                  "src": "1611:34:41"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 8321,
                    "nodeType": "StructuredDocumentation",
                    "src": "1651:50:41",
                    "text": "@notice PrizeDistribution ring buffer history."
                  },
                  "id": 8326,
                  "mutability": "mutable",
                  "name": "prizeDistributionRingBuffer",
                  "nameLocation": "1783:27:41",
                  "nodeType": "VariableDeclaration",
                  "scope": 8796,
                  "src": "1706:104:41",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11103_storage_$256_storage",
                    "typeString": "struct IPrizeDistributionSource.PrizeDistribution[256]"
                  },
                  "typeName": {
                    "baseType": {
                      "id": 8323,
                      "nodeType": "UserDefinedTypeName",
                      "pathNode": {
                        "id": 8322,
                        "name": "IPrizeDistributionBuffer.PrizeDistribution",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 11103,
                        "src": "1706:42:41"
                      },
                      "referencedDeclaration": 11103,
                      "src": "1706:42:41",
                      "typeDescriptions": {
                        "typeIdentifier": "t_struct$_PrizeDistribution_$11103_storage_ptr",
                        "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                      }
                    },
                    "id": 8325,
                    "length": {
                      "id": 8324,
                      "name": "MAX_CARDINALITY",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 8311,
                      "src": "1749:15:41",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint256",
                        "typeString": "uint256"
                      }
                    },
                    "nodeType": "ArrayTypeName",
                    "src": "1706:59:41",
                    "typeDescriptions": {
                      "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11103_storage_$256_storage_ptr",
                      "typeString": "struct IPrizeDistributionSource.PrizeDistribution[256]"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 8327,
                    "nodeType": "StructuredDocumentation",
                    "src": "1817:65:41",
                    "text": "@notice Ring buffer metadata (nextIndex, lastId, cardinality)"
                  },
                  "id": 8330,
                  "mutability": "mutable",
                  "name": "bufferMetadata",
                  "nameLocation": "1921:14:41",
                  "nodeType": "VariableDeclaration",
                  "scope": 8796,
                  "src": "1887:48:41",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_struct$_Buffer_$11836_storage",
                    "typeString": "struct DrawRingBufferLib.Buffer"
                  },
                  "typeName": {
                    "id": 8329,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 8328,
                      "name": "DrawRingBufferLib.Buffer",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 11836,
                      "src": "1887:24:41"
                    },
                    "referencedDeclaration": 11836,
                    "src": "1887:24:41",
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_Buffer_$11836_storage_ptr",
                      "typeString": "struct DrawRingBufferLib.Buffer"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 8351,
                    "nodeType": "Block",
                    "src": "2255:95:41",
                    "statements": [
                      {
                        "expression": {
                          "id": 8345,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "expression": {
                              "id": 8341,
                              "name": "bufferMetadata",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8330,
                              "src": "2265:14:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$11836_storage",
                                "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                              }
                            },
                            "id": 8343,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "memberName": "cardinality",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11835,
                            "src": "2265:26:41",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 8344,
                            "name": "_cardinality",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8335,
                            "src": "2294:12:41",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "src": "2265:41:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "id": 8346,
                        "nodeType": "ExpressionStatement",
                        "src": "2265:41:41"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 8348,
                              "name": "_cardinality",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8335,
                              "src": "2330:12:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            ],
                            "id": 8347,
                            "name": "Deployed",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8320,
                            "src": "2321:8:41",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint8_$returns$__$",
                              "typeString": "function (uint8)"
                            }
                          },
                          "id": 8349,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2321:22:41",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 8350,
                        "nodeType": "EmitStatement",
                        "src": "2316:27:41"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 8331,
                    "nodeType": "StructuredDocumentation",
                    "src": "1991:195:41",
                    "text": " @notice Constructor for PrizeDistributionBuffer\n @param _owner Address of the PrizeDistributionBuffer owner\n @param _cardinality Cardinality of the `bufferMetadata`"
                  },
                  "id": 8352,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 8338,
                          "name": "_owner",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 8333,
                          "src": "2247:6:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        }
                      ],
                      "id": 8339,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 8337,
                        "name": "Ownable",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5355,
                        "src": "2239:7:41"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "2239:15:41"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8336,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8333,
                        "mutability": "mutable",
                        "name": "_owner",
                        "nameLocation": "2211:6:41",
                        "nodeType": "VariableDeclaration",
                        "scope": 8352,
                        "src": "2203:14:41",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 8332,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2203:7:41",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8335,
                        "mutability": "mutable",
                        "name": "_cardinality",
                        "nameLocation": "2225:12:41",
                        "nodeType": "VariableDeclaration",
                        "scope": 8352,
                        "src": "2219:18:41",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 8334,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "2219:5:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2202:36:41"
                  },
                  "returnParameters": {
                    "id": 8340,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2255:0:41"
                  },
                  "scope": 8796,
                  "src": "2191:159:41",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    11023
                  ],
                  "body": {
                    "id": 8362,
                    "nodeType": "Block",
                    "src": "2529:50:41",
                    "statements": [
                      {
                        "expression": {
                          "expression": {
                            "id": 8359,
                            "name": "bufferMetadata",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8330,
                            "src": "2546:14:41",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Buffer_$11836_storage",
                              "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                            }
                          },
                          "id": 8360,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "cardinality",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 11835,
                          "src": "2546:26:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "functionReturnParameters": 8358,
                        "id": 8361,
                        "nodeType": "Return",
                        "src": "2539:33:41"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 8353,
                    "nodeType": "StructuredDocumentation",
                    "src": "2412:40:41",
                    "text": "@inheritdoc IPrizeDistributionBuffer"
                  },
                  "functionSelector": "caeef7ec",
                  "id": 8363,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getBufferCardinality",
                  "nameLocation": "2466:20:41",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 8355,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2503:8:41"
                  },
                  "parameters": {
                    "id": 8354,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2486:2:41"
                  },
                  "returnParameters": {
                    "id": 8358,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8357,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8363,
                        "src": "2521:6:41",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 8356,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2521:6:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2520:8:41"
                  },
                  "scope": 8796,
                  "src": "2457:122:41",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11050
                  ],
                  "body": {
                    "id": 8378,
                    "nodeType": "Block",
                    "src": "2795:70:41",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 8374,
                              "name": "bufferMetadata",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8330,
                              "src": "2834:14:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$11836_storage",
                                "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                              }
                            },
                            {
                              "id": 8375,
                              "name": "_drawId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8366,
                              "src": "2850:7:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Buffer_$11836_storage",
                                "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "id": 8373,
                            "name": "_getPrizeDistribution",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8665,
                            "src": "2812:21:41",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_struct$_Buffer_$11836_memory_ptr_$_t_uint32_$returns$_t_struct$_PrizeDistribution_$11103_memory_ptr_$",
                              "typeString": "function (struct DrawRingBufferLib.Buffer memory,uint32) view returns (struct IPrizeDistributionSource.PrizeDistribution memory)"
                            }
                          },
                          "id": 8376,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2812:46:41",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11103_memory_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                          }
                        },
                        "functionReturnParameters": 8372,
                        "id": 8377,
                        "nodeType": "Return",
                        "src": "2805:53:41"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 8364,
                    "nodeType": "StructuredDocumentation",
                    "src": "2585:40:41",
                    "text": "@inheritdoc IPrizeDistributionBuffer"
                  },
                  "functionSelector": "3cd8e2d5",
                  "id": 8379,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPrizeDistribution",
                  "nameLocation": "2639:20:41",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 8368,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2714:8:41"
                  },
                  "parameters": {
                    "id": 8367,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8366,
                        "mutability": "mutable",
                        "name": "_drawId",
                        "nameLocation": "2667:7:41",
                        "nodeType": "VariableDeclaration",
                        "scope": 8379,
                        "src": "2660:14:41",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 8365,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2660:6:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2659:16:41"
                  },
                  "returnParameters": {
                    "id": 8372,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8371,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8379,
                        "src": "2740:49:41",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$11103_memory_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 8370,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8369,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11103,
                            "src": "2740:42:41"
                          },
                          "referencedDeclaration": 11103,
                          "src": "2740:42:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11103_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2739:51:41"
                  },
                  "scope": 8796,
                  "src": "2630:235:41",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11114
                  ],
                  "body": {
                    "id": 8441,
                    "nodeType": "Block",
                    "src": "3096:493:41",
                    "statements": [
                      {
                        "assignments": [
                          8392
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 8392,
                            "mutability": "mutable",
                            "name": "drawIdsLength",
                            "nameLocation": "3114:13:41",
                            "nodeType": "VariableDeclaration",
                            "scope": 8441,
                            "src": "3106:21:41",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 8391,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "3106:7:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 8395,
                        "initialValue": {
                          "expression": {
                            "id": 8393,
                            "name": "_drawIds",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8383,
                            "src": "3130:8:41",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                              "typeString": "uint32[] calldata"
                            }
                          },
                          "id": 8394,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "length",
                          "nodeType": "MemberAccess",
                          "src": "3130:15:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3106:39:41"
                      },
                      {
                        "assignments": [
                          8400
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 8400,
                            "mutability": "mutable",
                            "name": "buffer",
                            "nameLocation": "3187:6:41",
                            "nodeType": "VariableDeclaration",
                            "scope": 8441,
                            "src": "3155:38:41",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                              "typeString": "struct DrawRingBufferLib.Buffer"
                            },
                            "typeName": {
                              "id": 8399,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 8398,
                                "name": "DrawRingBufferLib.Buffer",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 11836,
                                "src": "3155:24:41"
                              },
                              "referencedDeclaration": 11836,
                              "src": "3155:24:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$11836_storage_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 8402,
                        "initialValue": {
                          "id": 8401,
                          "name": "bufferMetadata",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 8330,
                          "src": "3196:14:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$11836_storage",
                            "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3155:55:41"
                      },
                      {
                        "assignments": [
                          8408
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 8408,
                            "mutability": "mutable",
                            "name": "_prizeDistributions",
                            "nameLocation": "3284:19:41",
                            "nodeType": "VariableDeclaration",
                            "scope": 8441,
                            "src": "3220:83:41",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11103_memory_ptr_$dyn_memory_ptr",
                              "typeString": "struct IPrizeDistributionSource.PrizeDistribution[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 8406,
                                "nodeType": "UserDefinedTypeName",
                                "pathNode": {
                                  "id": 8405,
                                  "name": "IPrizeDistributionBuffer.PrizeDistribution",
                                  "nodeType": "IdentifierPath",
                                  "referencedDeclaration": 11103,
                                  "src": "3220:42:41"
                                },
                                "referencedDeclaration": 11103,
                                "src": "3220:42:41",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_PrizeDistribution_$11103_storage_ptr",
                                  "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                                }
                              },
                              "id": 8407,
                              "nodeType": "ArrayTypeName",
                              "src": "3220:44:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11103_storage_$dyn_storage_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 8415,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 8413,
                              "name": "drawIdsLength",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8392,
                              "src": "3372:13:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 8412,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "3306:48:41",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_struct$_PrizeDistribution_$11103_memory_ptr_$dyn_memory_ptr_$",
                              "typeString": "function (uint256) pure returns (struct IPrizeDistributionSource.PrizeDistribution memory[] memory)"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 8410,
                                "nodeType": "UserDefinedTypeName",
                                "pathNode": {
                                  "id": 8409,
                                  "name": "IPrizeDistributionBuffer.PrizeDistribution",
                                  "nodeType": "IdentifierPath",
                                  "referencedDeclaration": 11103,
                                  "src": "3310:42:41"
                                },
                                "referencedDeclaration": 11103,
                                "src": "3310:42:41",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_PrizeDistribution_$11103_storage_ptr",
                                  "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                                }
                              },
                              "id": 8411,
                              "nodeType": "ArrayTypeName",
                              "src": "3310:44:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11103_storage_$dyn_storage_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution[]"
                              }
                            }
                          },
                          "id": 8414,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3306:93:41",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11103_memory_ptr_$dyn_memory_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3220:179:41"
                      },
                      {
                        "body": {
                          "id": 8437,
                          "nodeType": "Block",
                          "src": "3454:92:41",
                          "statements": [
                            {
                              "expression": {
                                "id": 8435,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "baseExpression": {
                                    "id": 8426,
                                    "name": "_prizeDistributions",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 8408,
                                    "src": "3468:19:41",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11103_memory_ptr_$dyn_memory_ptr",
                                      "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory[] memory"
                                    }
                                  },
                                  "id": 8428,
                                  "indexExpression": {
                                    "id": 8427,
                                    "name": "i",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 8417,
                                    "src": "3488:1:41",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": true,
                                  "nodeType": "IndexAccess",
                                  "src": "3468:22:41",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_PrizeDistribution_$11103_memory_ptr",
                                    "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "arguments": [
                                    {
                                      "id": 8430,
                                      "name": "buffer",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 8400,
                                      "src": "3515:6:41",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                                        "typeString": "struct DrawRingBufferLib.Buffer memory"
                                      }
                                    },
                                    {
                                      "baseExpression": {
                                        "id": 8431,
                                        "name": "_drawIds",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 8383,
                                        "src": "3523:8:41",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                                          "typeString": "uint32[] calldata"
                                        }
                                      },
                                      "id": 8433,
                                      "indexExpression": {
                                        "id": 8432,
                                        "name": "i",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 8417,
                                        "src": "3532:1:41",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "nodeType": "IndexAccess",
                                      "src": "3523:11:41",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                                        "typeString": "struct DrawRingBufferLib.Buffer memory"
                                      },
                                      {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    ],
                                    "id": 8429,
                                    "name": "_getPrizeDistribution",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 8665,
                                    "src": "3493:21:41",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_view$_t_struct$_Buffer_$11836_memory_ptr_$_t_uint32_$returns$_t_struct$_PrizeDistribution_$11103_memory_ptr_$",
                                      "typeString": "function (struct DrawRingBufferLib.Buffer memory,uint32) view returns (struct IPrizeDistributionSource.PrizeDistribution memory)"
                                    }
                                  },
                                  "id": 8434,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "3493:42:41",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_PrizeDistribution_$11103_memory_ptr",
                                    "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                  }
                                },
                                "src": "3468:67:41",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_PrizeDistribution_$11103_memory_ptr",
                                  "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                }
                              },
                              "id": 8436,
                              "nodeType": "ExpressionStatement",
                              "src": "3468:67:41"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 8422,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 8420,
                            "name": "i",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8417,
                            "src": "3430:1:41",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "id": 8421,
                            "name": "drawIdsLength",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8392,
                            "src": "3434:13:41",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "3430:17:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 8438,
                        "initializationExpression": {
                          "assignments": [
                            8417
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 8417,
                              "mutability": "mutable",
                              "name": "i",
                              "nameLocation": "3423:1:41",
                              "nodeType": "VariableDeclaration",
                              "scope": 8438,
                              "src": "3415:9:41",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "typeName": {
                                "id": 8416,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "3415:7:41",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 8419,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 8418,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "3427:1:41",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "3415:13:41"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 8424,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "3449:3:41",
                            "subExpression": {
                              "id": 8423,
                              "name": "i",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8417,
                              "src": "3449:1:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 8425,
                          "nodeType": "ExpressionStatement",
                          "src": "3449:3:41"
                        },
                        "nodeType": "ForStatement",
                        "src": "3410:136:41"
                      },
                      {
                        "expression": {
                          "id": 8439,
                          "name": "_prizeDistributions",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 8408,
                          "src": "3563:19:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11103_memory_ptr_$dyn_memory_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory[] memory"
                          }
                        },
                        "functionReturnParameters": 8390,
                        "id": 8440,
                        "nodeType": "Return",
                        "src": "3556:26:41"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 8380,
                    "nodeType": "StructuredDocumentation",
                    "src": "2871:40:41",
                    "text": "@inheritdoc IPrizeDistributionSource"
                  },
                  "functionSelector": "d30a5daf",
                  "id": 8442,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPrizeDistributions",
                  "nameLocation": "2925:21:41",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 8385,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3013:8:41"
                  },
                  "parameters": {
                    "id": 8384,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8383,
                        "mutability": "mutable",
                        "name": "_drawIds",
                        "nameLocation": "2965:8:41",
                        "nodeType": "VariableDeclaration",
                        "scope": 8442,
                        "src": "2947:26:41",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                          "typeString": "uint32[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 8381,
                            "name": "uint32",
                            "nodeType": "ElementaryTypeName",
                            "src": "2947:6:41",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "id": 8382,
                          "nodeType": "ArrayTypeName",
                          "src": "2947:8:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint32_$dyn_storage_ptr",
                            "typeString": "uint32[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2946:28:41"
                  },
                  "returnParameters": {
                    "id": 8390,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8389,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8442,
                        "src": "3039:51:41",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11103_memory_ptr_$dyn_memory_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 8387,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 8386,
                              "name": "IPrizeDistributionBuffer.PrizeDistribution",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 11103,
                              "src": "3039:42:41"
                            },
                            "referencedDeclaration": 11103,
                            "src": "3039:42:41",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeDistribution_$11103_storage_ptr",
                              "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                            }
                          },
                          "id": 8388,
                          "nodeType": "ArrayTypeName",
                          "src": "3039:44:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11103_storage_$dyn_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3038:53:41"
                  },
                  "scope": 8796,
                  "src": "2916:673:41",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11056
                  ],
                  "body": {
                    "id": 8483,
                    "nodeType": "Block",
                    "src": "3717:462:41",
                    "statements": [
                      {
                        "assignments": [
                          8453
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 8453,
                            "mutability": "mutable",
                            "name": "buffer",
                            "nameLocation": "3759:6:41",
                            "nodeType": "VariableDeclaration",
                            "scope": 8483,
                            "src": "3727:38:41",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                              "typeString": "struct DrawRingBufferLib.Buffer"
                            },
                            "typeName": {
                              "id": 8452,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 8451,
                                "name": "DrawRingBufferLib.Buffer",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 11836,
                                "src": "3727:24:41"
                              },
                              "referencedDeclaration": 11836,
                              "src": "3727:24:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$11836_storage_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 8455,
                        "initialValue": {
                          "id": 8454,
                          "name": "bufferMetadata",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 8330,
                          "src": "3768:14:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$11836_storage",
                            "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3727:55:41"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          },
                          "id": 8459,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 8456,
                              "name": "buffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8453,
                              "src": "3797:6:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer memory"
                              }
                            },
                            "id": 8457,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "lastDrawId",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11831,
                            "src": "3797:17:41",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 8458,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "3818:1:41",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "3797:22:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 8463,
                        "nodeType": "IfStatement",
                        "src": "3793:61:41",
                        "trueBody": {
                          "id": 8462,
                          "nodeType": "Block",
                          "src": "3821:33:41",
                          "statements": [
                            {
                              "expression": {
                                "hexValue": "30",
                                "id": 8460,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "3842:1:41",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "functionReturnParameters": 8448,
                              "id": 8461,
                              "nodeType": "Return",
                              "src": "3835:8:41"
                            }
                          ]
                        }
                      },
                      {
                        "assignments": [
                          8465
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 8465,
                            "mutability": "mutable",
                            "name": "bufferNextIndex",
                            "nameLocation": "3871:15:41",
                            "nodeType": "VariableDeclaration",
                            "scope": 8483,
                            "src": "3864:22:41",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "typeName": {
                              "id": 8464,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "3864:6:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 8468,
                        "initialValue": {
                          "expression": {
                            "id": 8466,
                            "name": "buffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8453,
                            "src": "3889:6:41",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                              "typeString": "struct DrawRingBufferLib.Buffer memory"
                            }
                          },
                          "id": 8467,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "nextIndex",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 11833,
                          "src": "3889:16:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3864:41:41"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          },
                          "id": 8474,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "baseExpression": {
                                "id": 8469,
                                "name": "prizeDistributionRingBuffer",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 8326,
                                "src": "4002:27:41",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11103_storage_$256_storage",
                                  "typeString": "struct IPrizeDistributionSource.PrizeDistribution storage ref[256] storage ref"
                                }
                              },
                              "id": 8471,
                              "indexExpression": {
                                "id": 8470,
                                "name": "bufferNextIndex",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 8465,
                                "src": "4030:15:41",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "nodeType": "IndexAccess",
                              "src": "4002:44:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$11103_storage",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution storage ref"
                              }
                            },
                            "id": 8472,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "matchCardinality",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11086,
                            "src": "4002:61:41",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "!=",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 8473,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "4067:1:41",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "4002:66:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "falseBody": {
                          "id": 8481,
                          "nodeType": "Block",
                          "src": "4126:47:41",
                          "statements": [
                            {
                              "expression": {
                                "id": 8479,
                                "name": "bufferNextIndex",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 8465,
                                "src": "4147:15:41",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "functionReturnParameters": 8448,
                              "id": 8480,
                              "nodeType": "Return",
                              "src": "4140:22:41"
                            }
                          ]
                        },
                        "id": 8482,
                        "nodeType": "IfStatement",
                        "src": "3998:175:41",
                        "trueBody": {
                          "id": 8478,
                          "nodeType": "Block",
                          "src": "4070:50:41",
                          "statements": [
                            {
                              "expression": {
                                "expression": {
                                  "id": 8475,
                                  "name": "buffer",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 8453,
                                  "src": "4091:6:41",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                                    "typeString": "struct DrawRingBufferLib.Buffer memory"
                                  }
                                },
                                "id": 8476,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "cardinality",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 11835,
                                "src": "4091:18:41",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "functionReturnParameters": 8448,
                              "id": 8477,
                              "nodeType": "Return",
                              "src": "4084:25:41"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 8443,
                    "nodeType": "StructuredDocumentation",
                    "src": "3595:40:41",
                    "text": "@inheritdoc IPrizeDistributionBuffer"
                  },
                  "functionSelector": "21e98ad9",
                  "id": 8484,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPrizeDistributionCount",
                  "nameLocation": "3649:25:41",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 8445,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3691:8:41"
                  },
                  "parameters": {
                    "id": 8444,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3674:2:41"
                  },
                  "returnParameters": {
                    "id": 8448,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8447,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8484,
                        "src": "3709:6:41",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 8446,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "3709:6:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3708:8:41"
                  },
                  "scope": 8796,
                  "src": "3640:539:41",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11032
                  ],
                  "body": {
                    "id": 8512,
                    "nodeType": "Block",
                    "src": "4420:174:41",
                    "statements": [
                      {
                        "assignments": [
                          8498
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 8498,
                            "mutability": "mutable",
                            "name": "buffer",
                            "nameLocation": "4462:6:41",
                            "nodeType": "VariableDeclaration",
                            "scope": 8512,
                            "src": "4430:38:41",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                              "typeString": "struct DrawRingBufferLib.Buffer"
                            },
                            "typeName": {
                              "id": 8497,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 8496,
                                "name": "DrawRingBufferLib.Buffer",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 11836,
                                "src": "4430:24:41"
                              },
                              "referencedDeclaration": 11836,
                              "src": "4430:24:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$11836_storage_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 8500,
                        "initialValue": {
                          "id": 8499,
                          "name": "bufferMetadata",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 8330,
                          "src": "4471:14:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$11836_storage",
                            "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4430:55:41"
                      },
                      {
                        "expression": {
                          "components": [
                            {
                              "baseExpression": {
                                "id": 8501,
                                "name": "prizeDistributionRingBuffer",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 8326,
                                "src": "4504:27:41",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11103_storage_$256_storage",
                                  "typeString": "struct IPrizeDistributionSource.PrizeDistribution storage ref[256] storage ref"
                                }
                              },
                              "id": 8507,
                              "indexExpression": {
                                "arguments": [
                                  {
                                    "expression": {
                                      "id": 8504,
                                      "name": "buffer",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 8498,
                                      "src": "4548:6:41",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                                        "typeString": "struct DrawRingBufferLib.Buffer memory"
                                      }
                                    },
                                    "id": 8505,
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "lastDrawId",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 11831,
                                    "src": "4548:17:41",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  ],
                                  "expression": {
                                    "id": 8502,
                                    "name": "buffer",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 8498,
                                    "src": "4532:6:41",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                                      "typeString": "struct DrawRingBufferLib.Buffer memory"
                                    }
                                  },
                                  "id": 8503,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "getIndex",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 11965,
                                  "src": "4532:15:41",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_pure$_t_struct$_Buffer_$11836_memory_ptr_$_t_uint32_$returns$_t_uint32_$bound_to$_t_struct$_Buffer_$11836_memory_ptr_$",
                                    "typeString": "function (struct DrawRingBufferLib.Buffer memory,uint32) pure returns (uint32)"
                                  }
                                },
                                "id": 8506,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "4532:34:41",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "nodeType": "IndexAccess",
                              "src": "4504:63:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$11103_storage",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution storage ref"
                              }
                            },
                            {
                              "expression": {
                                "id": 8508,
                                "name": "buffer",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 8498,
                                "src": "4569:6:41",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                                  "typeString": "struct DrawRingBufferLib.Buffer memory"
                                }
                              },
                              "id": 8509,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "lastDrawId",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 11831,
                              "src": "4569:17:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "id": 8510,
                          "isConstant": false,
                          "isInlineArray": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "TupleExpression",
                          "src": "4503:84:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_struct$_PrizeDistribution_$11103_storage_$_t_uint32_$",
                            "typeString": "tuple(struct IPrizeDistributionSource.PrizeDistribution storage ref,uint32)"
                          }
                        },
                        "functionReturnParameters": 8493,
                        "id": 8511,
                        "nodeType": "Return",
                        "src": "4496:91:41"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 8485,
                    "nodeType": "StructuredDocumentation",
                    "src": "4185:40:41",
                    "text": "@inheritdoc IPrizeDistributionBuffer"
                  },
                  "functionSelector": "24c21446",
                  "id": 8513,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getNewestPrizeDistribution",
                  "nameLocation": "4239:26:41",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 8487,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "4306:8:41"
                  },
                  "parameters": {
                    "id": 8486,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4265:2:41"
                  },
                  "returnParameters": {
                    "id": 8493,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8490,
                        "mutability": "mutable",
                        "name": "prizeDistribution",
                        "nameLocation": "4382:17:41",
                        "nodeType": "VariableDeclaration",
                        "scope": 8513,
                        "src": "4332:67:41",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$11103_memory_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 8489,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8488,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11103,
                            "src": "4332:42:41"
                          },
                          "referencedDeclaration": 11103,
                          "src": "4332:42:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11103_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8492,
                        "mutability": "mutable",
                        "name": "drawId",
                        "nameLocation": "4408:6:41",
                        "nodeType": "VariableDeclaration",
                        "scope": 8513,
                        "src": "4401:13:41",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 8491,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4401:6:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4331:84:41"
                  },
                  "scope": 8796,
                  "src": "4230:364:41",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11041
                  ],
                  "body": {
                    "id": 8582,
                    "nodeType": "Block",
                    "src": "4835:998:41",
                    "statements": [
                      {
                        "assignments": [
                          8527
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 8527,
                            "mutability": "mutable",
                            "name": "buffer",
                            "nameLocation": "4877:6:41",
                            "nodeType": "VariableDeclaration",
                            "scope": 8582,
                            "src": "4845:38:41",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                              "typeString": "struct DrawRingBufferLib.Buffer"
                            },
                            "typeName": {
                              "id": 8526,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 8525,
                                "name": "DrawRingBufferLib.Buffer",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 11836,
                                "src": "4845:24:41"
                              },
                              "referencedDeclaration": 11836,
                              "src": "4845:24:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$11836_storage_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 8529,
                        "initialValue": {
                          "id": 8528,
                          "name": "bufferMetadata",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 8330,
                          "src": "4886:14:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$11836_storage",
                            "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4845:55:41"
                      },
                      {
                        "expression": {
                          "id": 8535,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 8530,
                            "name": "prizeDistribution",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8519,
                            "src": "4981:17:41",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeDistribution_$11103_memory_ptr",
                              "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "baseExpression": {
                              "id": 8531,
                              "name": "prizeDistributionRingBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8326,
                              "src": "5001:27:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11103_storage_$256_storage",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution storage ref[256] storage ref"
                              }
                            },
                            "id": 8534,
                            "indexExpression": {
                              "expression": {
                                "id": 8532,
                                "name": "buffer",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 8527,
                                "src": "5029:6:41",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                                  "typeString": "struct DrawRingBufferLib.Buffer memory"
                                }
                              },
                              "id": 8533,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "nextIndex",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 11833,
                              "src": "5029:16:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "IndexAccess",
                            "src": "5001:45:41",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeDistribution_$11103_storage",
                              "typeString": "struct IPrizeDistributionSource.PrizeDistribution storage ref"
                            }
                          },
                          "src": "4981:65:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11103_memory_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                          }
                        },
                        "id": 8536,
                        "nodeType": "ExpressionStatement",
                        "src": "4981:65:41"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          },
                          "id": 8540,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 8537,
                              "name": "buffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8527,
                              "src": "5149:6:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer memory"
                              }
                            },
                            "id": 8538,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "lastDrawId",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11831,
                            "src": "5149:17:41",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 8539,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "5170:1:41",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "5149:22:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "falseBody": {
                          "condition": {
                            "commonType": {
                              "typeIdentifier": "t_uint8",
                              "typeString": "uint8"
                            },
                            "id": 8549,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "expression": {
                                "id": 8546,
                                "name": "prizeDistribution",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 8519,
                                "src": "5283:17:41",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_PrizeDistribution_$11103_memory_ptr",
                                  "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                }
                              },
                              "id": 8547,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "bitRangeSize",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 11084,
                              "src": "5283:30:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "==",
                            "rightExpression": {
                              "hexValue": "30",
                              "id": 8548,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "5317:1:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_0_by_1",
                                "typeString": "int_const 0"
                              },
                              "value": "0"
                            },
                            "src": "5283:35:41",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "falseBody": {
                            "id": 8579,
                            "nodeType": "Block",
                            "src": "5601:226:41",
                            "statements": [
                              {
                                "expression": {
                                  "id": 8577,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftHandSide": {
                                    "id": 8568,
                                    "name": "drawId",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 8521,
                                    "src": "5763:6:41",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  },
                                  "nodeType": "Assignment",
                                  "operator": "=",
                                  "rightHandSide": {
                                    "commonType": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    },
                                    "id": 8576,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "leftExpression": {
                                      "components": [
                                        {
                                          "commonType": {
                                            "typeIdentifier": "t_uint32",
                                            "typeString": "uint32"
                                          },
                                          "id": 8572,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "leftExpression": {
                                            "expression": {
                                              "id": 8569,
                                              "name": "buffer",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 8527,
                                              "src": "5773:6:41",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                                                "typeString": "struct DrawRingBufferLib.Buffer memory"
                                              }
                                            },
                                            "id": 8570,
                                            "isConstant": false,
                                            "isLValue": true,
                                            "isPure": false,
                                            "lValueRequested": false,
                                            "memberName": "lastDrawId",
                                            "nodeType": "MemberAccess",
                                            "referencedDeclaration": 11831,
                                            "src": "5773:17:41",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint32",
                                              "typeString": "uint32"
                                            }
                                          },
                                          "nodeType": "BinaryOperation",
                                          "operator": "+",
                                          "rightExpression": {
                                            "hexValue": "31",
                                            "id": 8571,
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": true,
                                            "kind": "number",
                                            "lValueRequested": false,
                                            "nodeType": "Literal",
                                            "src": "5793:1:41",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_rational_1_by_1",
                                              "typeString": "int_const 1"
                                            },
                                            "value": "1"
                                          },
                                          "src": "5773:21:41",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint32",
                                            "typeString": "uint32"
                                          }
                                        }
                                      ],
                                      "id": 8573,
                                      "isConstant": false,
                                      "isInlineArray": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "nodeType": "TupleExpression",
                                      "src": "5772:23:41",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    },
                                    "nodeType": "BinaryOperation",
                                    "operator": "-",
                                    "rightExpression": {
                                      "expression": {
                                        "id": 8574,
                                        "name": "buffer",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 8527,
                                        "src": "5798:6:41",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                                          "typeString": "struct DrawRingBufferLib.Buffer memory"
                                        }
                                      },
                                      "id": 8575,
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "memberName": "cardinality",
                                      "nodeType": "MemberAccess",
                                      "referencedDeclaration": 11835,
                                      "src": "5798:18:41",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    },
                                    "src": "5772:44:41",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  },
                                  "src": "5763:53:41",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                "id": 8578,
                                "nodeType": "ExpressionStatement",
                                "src": "5763:53:41"
                              }
                            ]
                          },
                          "id": 8580,
                          "nodeType": "IfStatement",
                          "src": "5279:548:41",
                          "trueBody": {
                            "id": 8567,
                            "nodeType": "Block",
                            "src": "5320:275:41",
                            "statements": [
                              {
                                "expression": {
                                  "id": 8554,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftHandSide": {
                                    "id": 8550,
                                    "name": "prizeDistribution",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 8519,
                                    "src": "5469:17:41",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_PrizeDistribution_$11103_memory_ptr",
                                      "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                    }
                                  },
                                  "nodeType": "Assignment",
                                  "operator": "=",
                                  "rightHandSide": {
                                    "baseExpression": {
                                      "id": 8551,
                                      "name": "prizeDistributionRingBuffer",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 8326,
                                      "src": "5489:27:41",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11103_storage_$256_storage",
                                        "typeString": "struct IPrizeDistributionSource.PrizeDistribution storage ref[256] storage ref"
                                      }
                                    },
                                    "id": 8553,
                                    "indexExpression": {
                                      "hexValue": "30",
                                      "id": 8552,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "kind": "number",
                                      "lValueRequested": false,
                                      "nodeType": "Literal",
                                      "src": "5517:1:41",
                                      "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:41",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_PrizeDistribution_$11103_storage",
                                      "typeString": "struct IPrizeDistributionSource.PrizeDistribution storage ref"
                                    }
                                  },
                                  "src": "5469:50:41",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_PrizeDistribution_$11103_memory_ptr",
                                    "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                                  }
                                },
                                "id": 8555,
                                "nodeType": "ExpressionStatement",
                                "src": "5469:50:41"
                              },
                              {
                                "expression": {
                                  "id": 8565,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftHandSide": {
                                    "id": 8556,
                                    "name": "drawId",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 8521,
                                    "src": "5533:6:41",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  },
                                  "nodeType": "Assignment",
                                  "operator": "=",
                                  "rightHandSide": {
                                    "commonType": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    },
                                    "id": 8564,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "leftExpression": {
                                      "components": [
                                        {
                                          "commonType": {
                                            "typeIdentifier": "t_uint32",
                                            "typeString": "uint32"
                                          },
                                          "id": 8560,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "leftExpression": {
                                            "expression": {
                                              "id": 8557,
                                              "name": "buffer",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 8527,
                                              "src": "5543:6:41",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                                                "typeString": "struct DrawRingBufferLib.Buffer memory"
                                              }
                                            },
                                            "id": 8558,
                                            "isConstant": false,
                                            "isLValue": true,
                                            "isPure": false,
                                            "lValueRequested": false,
                                            "memberName": "lastDrawId",
                                            "nodeType": "MemberAccess",
                                            "referencedDeclaration": 11831,
                                            "src": "5543:17:41",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint32",
                                              "typeString": "uint32"
                                            }
                                          },
                                          "nodeType": "BinaryOperation",
                                          "operator": "+",
                                          "rightExpression": {
                                            "hexValue": "31",
                                            "id": 8559,
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": true,
                                            "kind": "number",
                                            "lValueRequested": false,
                                            "nodeType": "Literal",
                                            "src": "5563:1:41",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_rational_1_by_1",
                                              "typeString": "int_const 1"
                                            },
                                            "value": "1"
                                          },
                                          "src": "5543:21:41",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint32",
                                            "typeString": "uint32"
                                          }
                                        }
                                      ],
                                      "id": 8561,
                                      "isConstant": false,
                                      "isInlineArray": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "nodeType": "TupleExpression",
                                      "src": "5542:23:41",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    },
                                    "nodeType": "BinaryOperation",
                                    "operator": "-",
                                    "rightExpression": {
                                      "expression": {
                                        "id": 8562,
                                        "name": "buffer",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 8527,
                                        "src": "5568:6:41",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                                          "typeString": "struct DrawRingBufferLib.Buffer memory"
                                        }
                                      },
                                      "id": 8563,
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "memberName": "nextIndex",
                                      "nodeType": "MemberAccess",
                                      "referencedDeclaration": 11833,
                                      "src": "5568:16:41",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    },
                                    "src": "5542:42:41",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  },
                                  "src": "5533:51:41",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                "id": 8566,
                                "nodeType": "ExpressionStatement",
                                "src": "5533:51:41"
                              }
                            ]
                          }
                        },
                        "id": 8581,
                        "nodeType": "IfStatement",
                        "src": "5145:682:41",
                        "trueBody": {
                          "id": 8545,
                          "nodeType": "Block",
                          "src": "5173:100:41",
                          "statements": [
                            {
                              "expression": {
                                "id": 8543,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 8541,
                                  "name": "drawId",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 8521,
                                  "src": "5187:6:41",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "hexValue": "30",
                                  "id": 8542,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "5196:1:41",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                },
                                "src": "5187:10:41",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "id": 8544,
                              "nodeType": "ExpressionStatement",
                              "src": "5187:10:41"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 8514,
                    "nodeType": "StructuredDocumentation",
                    "src": "4600:40:41",
                    "text": "@inheritdoc IPrizeDistributionBuffer"
                  },
                  "functionSelector": "2439093a",
                  "id": 8583,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getOldestPrizeDistribution",
                  "nameLocation": "4654:26:41",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 8516,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "4721:8:41"
                  },
                  "parameters": {
                    "id": 8515,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4680:2:41"
                  },
                  "returnParameters": {
                    "id": 8522,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8519,
                        "mutability": "mutable",
                        "name": "prizeDistribution",
                        "nameLocation": "4797:17:41",
                        "nodeType": "VariableDeclaration",
                        "scope": 8583,
                        "src": "4747:67:41",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$11103_memory_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 8518,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8517,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11103,
                            "src": "4747:42:41"
                          },
                          "referencedDeclaration": 11103,
                          "src": "4747:42:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11103_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8521,
                        "mutability": "mutable",
                        "name": "drawId",
                        "nameLocation": "4823:6:41",
                        "nodeType": "VariableDeclaration",
                        "scope": 8583,
                        "src": "4816:13:41",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 8520,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4816:6:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4746:84:41"
                  },
                  "scope": 8796,
                  "src": "4645:1188:41",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11067
                  ],
                  "body": {
                    "id": 8602,
                    "nodeType": "Block",
                    "src": "6077:75:41",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 8598,
                              "name": "_drawId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8586,
                              "src": "6117:7:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 8599,
                              "name": "_prizeDistribution",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8589,
                              "src": "6126:18:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$11103_calldata_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution calldata"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$11103_calldata_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution calldata"
                              }
                            ],
                            "id": 8597,
                            "name": "_pushPrizeDistribution",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8795,
                            "src": "6094:22:41",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_uint32_$_t_struct$_PrizeDistribution_$11103_calldata_ptr_$returns$_t_bool_$",
                              "typeString": "function (uint32,struct IPrizeDistributionSource.PrizeDistribution calldata) returns (bool)"
                            }
                          },
                          "id": 8600,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6094:51:41",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 8596,
                        "id": 8601,
                        "nodeType": "Return",
                        "src": "6087:58:41"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 8584,
                    "nodeType": "StructuredDocumentation",
                    "src": "5839:40:41",
                    "text": "@inheritdoc IPrizeDistributionBuffer"
                  },
                  "functionSelector": "1124e1dc",
                  "id": 8603,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 8593,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 8592,
                        "name": "onlyManagerOrOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5199,
                        "src": "6043:18:41"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "6043:18:41"
                    }
                  ],
                  "name": "pushPrizeDistribution",
                  "nameLocation": "5893:21:41",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 8591,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "6034:8:41"
                  },
                  "parameters": {
                    "id": 8590,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8586,
                        "mutability": "mutable",
                        "name": "_drawId",
                        "nameLocation": "5931:7:41",
                        "nodeType": "VariableDeclaration",
                        "scope": 8603,
                        "src": "5924:14:41",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 8585,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "5924:6:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8589,
                        "mutability": "mutable",
                        "name": "_prizeDistribution",
                        "nameLocation": "6000:18:41",
                        "nodeType": "VariableDeclaration",
                        "scope": 8603,
                        "src": "5948:70:41",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$11103_calldata_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 8588,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8587,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11103,
                            "src": "5948:42:41"
                          },
                          "referencedDeclaration": 11103,
                          "src": "5948:42:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11103_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5914:110:41"
                  },
                  "returnParameters": {
                    "id": 8596,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8595,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8603,
                        "src": "6071:4:41",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 8594,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "6071:4:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6070:6:41"
                  },
                  "scope": 8796,
                  "src": "5884:268:41",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11078
                  ],
                  "body": {
                    "id": 8644,
                    "nodeType": "Block",
                    "src": "6388:276:41",
                    "statements": [
                      {
                        "assignments": [
                          8621
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 8621,
                            "mutability": "mutable",
                            "name": "buffer",
                            "nameLocation": "6430:6:41",
                            "nodeType": "VariableDeclaration",
                            "scope": 8644,
                            "src": "6398:38:41",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                              "typeString": "struct DrawRingBufferLib.Buffer"
                            },
                            "typeName": {
                              "id": 8620,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 8619,
                                "name": "DrawRingBufferLib.Buffer",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 11836,
                                "src": "6398:24:41"
                              },
                              "referencedDeclaration": 11836,
                              "src": "6398:24:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$11836_storage_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 8623,
                        "initialValue": {
                          "id": 8622,
                          "name": "bufferMetadata",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 8330,
                          "src": "6439:14:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$11836_storage",
                            "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "6398:55:41"
                      },
                      {
                        "assignments": [
                          8625
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 8625,
                            "mutability": "mutable",
                            "name": "index",
                            "nameLocation": "6470:5:41",
                            "nodeType": "VariableDeclaration",
                            "scope": 8644,
                            "src": "6463:12:41",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "typeName": {
                              "id": 8624,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "6463:6:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 8630,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 8628,
                              "name": "_drawId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8606,
                              "src": "6494:7:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 8626,
                              "name": "buffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8621,
                              "src": "6478:6:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer memory"
                              }
                            },
                            "id": 8627,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getIndex",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11965,
                            "src": "6478:15:41",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_struct$_Buffer_$11836_memory_ptr_$_t_uint32_$returns$_t_uint32_$bound_to$_t_struct$_Buffer_$11836_memory_ptr_$",
                              "typeString": "function (struct DrawRingBufferLib.Buffer memory,uint32) pure returns (uint32)"
                            }
                          },
                          "id": 8629,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6478:24:41",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "6463:39:41"
                      },
                      {
                        "expression": {
                          "id": 8635,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "id": 8631,
                              "name": "prizeDistributionRingBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8326,
                              "src": "6512:27:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11103_storage_$256_storage",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution storage ref[256] storage ref"
                              }
                            },
                            "id": 8633,
                            "indexExpression": {
                              "id": 8632,
                              "name": "index",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8625,
                              "src": "6540:5:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "6512:34:41",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeDistribution_$11103_storage",
                              "typeString": "struct IPrizeDistributionSource.PrizeDistribution storage ref"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 8634,
                            "name": "_prizeDistribution",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8609,
                            "src": "6549:18:41",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeDistribution_$11103_calldata_ptr",
                              "typeString": "struct IPrizeDistributionSource.PrizeDistribution calldata"
                            }
                          },
                          "src": "6512:55:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11103_storage",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution storage ref"
                          }
                        },
                        "id": 8636,
                        "nodeType": "ExpressionStatement",
                        "src": "6512:55:41"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 8638,
                              "name": "_drawId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8606,
                              "src": "6604:7:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 8639,
                              "name": "_prizeDistribution",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8609,
                              "src": "6613:18:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$11103_calldata_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution calldata"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$11103_calldata_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution calldata"
                              }
                            ],
                            "id": 8637,
                            "name": "PrizeDistributionSet",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11017,
                            "src": "6583:20:41",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint32_$_t_struct$_PrizeDistribution_$11103_memory_ptr_$returns$__$",
                              "typeString": "function (uint32,struct IPrizeDistributionSource.PrizeDistribution memory)"
                            }
                          },
                          "id": 8640,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6583:49:41",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 8641,
                        "nodeType": "EmitStatement",
                        "src": "6578:54:41"
                      },
                      {
                        "expression": {
                          "id": 8642,
                          "name": "_drawId",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 8606,
                          "src": "6650:7:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "functionReturnParameters": 8616,
                        "id": 8643,
                        "nodeType": "Return",
                        "src": "6643:14:41"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 8604,
                    "nodeType": "StructuredDocumentation",
                    "src": "6158:40:41",
                    "text": "@inheritdoc IPrizeDistributionBuffer"
                  },
                  "functionSelector": "ce336ce9",
                  "id": 8645,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 8613,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 8612,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5341,
                        "src": "6361:9:41"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "6361:9:41"
                    }
                  ],
                  "name": "setPrizeDistribution",
                  "nameLocation": "6212:20:41",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 8611,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "6352:8:41"
                  },
                  "parameters": {
                    "id": 8610,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8606,
                        "mutability": "mutable",
                        "name": "_drawId",
                        "nameLocation": "6249:7:41",
                        "nodeType": "VariableDeclaration",
                        "scope": 8645,
                        "src": "6242:14:41",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 8605,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "6242:6:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8609,
                        "mutability": "mutable",
                        "name": "_prizeDistribution",
                        "nameLocation": "6318:18:41",
                        "nodeType": "VariableDeclaration",
                        "scope": 8645,
                        "src": "6266:70:41",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$11103_calldata_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 8608,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8607,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11103,
                            "src": "6266:42:41"
                          },
                          "referencedDeclaration": 11103,
                          "src": "6266:42:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11103_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6232:110:41"
                  },
                  "returnParameters": {
                    "id": 8616,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8615,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8645,
                        "src": "6380:6:41",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 8614,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "6380:6:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6379:8:41"
                  },
                  "scope": 8796,
                  "src": "6203:461:41",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 8664,
                    "nodeType": "Block",
                    "src": "7069:78:41",
                    "statements": [
                      {
                        "expression": {
                          "baseExpression": {
                            "id": 8657,
                            "name": "prizeDistributionRingBuffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8326,
                            "src": "7086:27:41",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11103_storage_$256_storage",
                              "typeString": "struct IPrizeDistributionSource.PrizeDistribution storage ref[256] storage ref"
                            }
                          },
                          "id": 8662,
                          "indexExpression": {
                            "arguments": [
                              {
                                "id": 8660,
                                "name": "_drawId",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 8651,
                                "src": "7131:7:41",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              ],
                              "expression": {
                                "id": 8658,
                                "name": "_buffer",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 8649,
                                "src": "7114:7:41",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                                  "typeString": "struct DrawRingBufferLib.Buffer memory"
                                }
                              },
                              "id": 8659,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "getIndex",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 11965,
                              "src": "7114:16:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_pure$_t_struct$_Buffer_$11836_memory_ptr_$_t_uint32_$returns$_t_uint32_$bound_to$_t_struct$_Buffer_$11836_memory_ptr_$",
                                "typeString": "function (struct DrawRingBufferLib.Buffer memory,uint32) pure returns (uint32)"
                              }
                            },
                            "id": 8661,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "7114:25:41",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "7086:54:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11103_storage",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution storage ref"
                          }
                        },
                        "functionReturnParameters": 8656,
                        "id": 8663,
                        "nodeType": "Return",
                        "src": "7079:61:41"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 8646,
                    "nodeType": "StructuredDocumentation",
                    "src": "6726:148:41",
                    "text": " @notice Gets the PrizeDistributionBuffer for a drawId\n @param _buffer DrawRingBufferLib.Buffer\n @param _drawId drawId"
                  },
                  "id": 8665,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_getPrizeDistribution",
                  "nameLocation": "6888:21:41",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8652,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8649,
                        "mutability": "mutable",
                        "name": "_buffer",
                        "nameLocation": "6942:7:41",
                        "nodeType": "VariableDeclaration",
                        "scope": 8665,
                        "src": "6910:39:41",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                          "typeString": "struct DrawRingBufferLib.Buffer"
                        },
                        "typeName": {
                          "id": 8648,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8647,
                            "name": "DrawRingBufferLib.Buffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11836,
                            "src": "6910:24:41"
                          },
                          "referencedDeclaration": 11836,
                          "src": "6910:24:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$11836_storage_ptr",
                            "typeString": "struct DrawRingBufferLib.Buffer"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8651,
                        "mutability": "mutable",
                        "name": "_drawId",
                        "nameLocation": "6958:7:41",
                        "nodeType": "VariableDeclaration",
                        "scope": 8665,
                        "src": "6951:14:41",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 8650,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "6951:6:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6909:57:41"
                  },
                  "returnParameters": {
                    "id": 8656,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8655,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8665,
                        "src": "7014:49:41",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$11103_memory_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 8654,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8653,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11103,
                            "src": "7014:42:41"
                          },
                          "referencedDeclaration": 11103,
                          "src": "7014:42:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11103_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7013:51:41"
                  },
                  "scope": 8796,
                  "src": "6879:268:41",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 8794,
                    "nodeType": "Block",
                    "src": "7508:1432:41",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              "id": 8679,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 8677,
                                "name": "_drawId",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 8668,
                                "src": "7526:7:41",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">",
                              "rightExpression": {
                                "hexValue": "30",
                                "id": 8678,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "7536:1:41",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "src": "7526:11:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4472617743616c632f647261772d69642d67742d30",
                              "id": 8680,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "7539:23:41",
                              "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": 8676,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "7518:7:41",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 8681,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7518:45:41",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 8682,
                        "nodeType": "ExpressionStatement",
                        "src": "7518:45:41"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              },
                              "id": 8687,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 8684,
                                  "name": "_prizeDistribution",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 8671,
                                  "src": "7581:18:41",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_PrizeDistribution_$11103_calldata_ptr",
                                    "typeString": "struct IPrizeDistributionSource.PrizeDistribution calldata"
                                  }
                                },
                                "id": 8685,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "matchCardinality",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 11086,
                                "src": "7581:35:41",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">",
                              "rightExpression": {
                                "hexValue": "30",
                                "id": 8686,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "7619:1:41",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "src": "7581:39:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4472617743616c632f6d6174636843617264696e616c6974792d67742d30",
                              "id": 8688,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "7622:32:41",
                              "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": 8683,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "7573:7:41",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 8689,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7573:82:41",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 8690,
                        "nodeType": "ExpressionStatement",
                        "src": "7573:82:41"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint16",
                                "typeString": "uint16"
                              },
                              "id": 8698,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 8692,
                                  "name": "_prizeDistribution",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 8671,
                                  "src": "7686:18:41",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_PrizeDistribution_$11103_calldata_ptr",
                                    "typeString": "struct IPrizeDistributionSource.PrizeDistribution calldata"
                                  }
                                },
                                "id": 8693,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "bitRangeSize",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 11084,
                                "src": "7686:31:41",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_uint16",
                                  "typeString": "uint16"
                                },
                                "id": 8697,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "hexValue": "323536",
                                  "id": 8694,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "7721:3:41",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_256_by_1",
                                    "typeString": "int_const 256"
                                  },
                                  "value": "256"
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "/",
                                "rightExpression": {
                                  "expression": {
                                    "id": 8695,
                                    "name": "_prizeDistribution",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 8671,
                                    "src": "7727:18:41",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_PrizeDistribution_$11103_calldata_ptr",
                                      "typeString": "struct IPrizeDistributionSource.PrizeDistribution calldata"
                                    }
                                  },
                                  "id": 8696,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "matchCardinality",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 11086,
                                  "src": "7727:35:41",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint8",
                                    "typeString": "uint8"
                                  }
                                },
                                "src": "7721:41:41",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint16",
                                  "typeString": "uint16"
                                }
                              },
                              "src": "7686:76:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4472617743616c632f62697452616e676553697a652d746f6f2d6c61726765",
                              "id": 8699,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "7776:33:41",
                              "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": 8691,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "7665:7:41",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 8700,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7665:154:41",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 8701,
                        "nodeType": "ExpressionStatement",
                        "src": "7665:154:41"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              },
                              "id": 8706,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 8703,
                                  "name": "_prizeDistribution",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 8671,
                                  "src": "7838:18:41",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_PrizeDistribution_$11103_calldata_ptr",
                                    "typeString": "struct IPrizeDistributionSource.PrizeDistribution calldata"
                                  }
                                },
                                "id": 8704,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "bitRangeSize",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 11084,
                                "src": "7838:31:41",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">",
                              "rightExpression": {
                                "hexValue": "30",
                                "id": 8705,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "7872:1:41",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "src": "7838:35:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4472617743616c632f62697452616e676553697a652d67742d30",
                              "id": 8707,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "7875:28:41",
                              "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": 8702,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "7830:7:41",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 8708,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7830:74:41",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 8709,
                        "nodeType": "ExpressionStatement",
                        "src": "7830:74:41"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              "id": 8714,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 8711,
                                  "name": "_prizeDistribution",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 8671,
                                  "src": "7922:18:41",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_PrizeDistribution_$11103_calldata_ptr",
                                    "typeString": "struct IPrizeDistributionSource.PrizeDistribution calldata"
                                  }
                                },
                                "id": 8712,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "maxPicksPerUser",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 11092,
                                "src": "7922:34:41",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">",
                              "rightExpression": {
                                "hexValue": "30",
                                "id": 8713,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "7959:1:41",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "src": "7922:38:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4472617743616c632f6d61785069636b73506572557365722d67742d30",
                              "id": 8715,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "7962:31:41",
                              "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": 8710,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "7914:7:41",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 8716,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7914:80:41",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 8717,
                        "nodeType": "ExpressionStatement",
                        "src": "7914:80:41"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              "id": 8722,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 8719,
                                  "name": "_prizeDistribution",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 8671,
                                  "src": "8012:18:41",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_PrizeDistribution_$11103_calldata_ptr",
                                    "typeString": "struct IPrizeDistributionSource.PrizeDistribution calldata"
                                  }
                                },
                                "id": 8720,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "expiryDuration",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 11094,
                                "src": "8012:33:41",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">",
                              "rightExpression": {
                                "hexValue": "30",
                                "id": 8721,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "8048:1:41",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "src": "8012:37:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4472617743616c632f6578706972794475726174696f6e2d67742d30",
                              "id": 8723,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "8051:30:41",
                              "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": 8718,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "8004:7:41",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 8724,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8004:78:41",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 8725,
                        "nodeType": "ExpressionStatement",
                        "src": "8004:78:41"
                      },
                      {
                        "assignments": [
                          8727
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 8727,
                            "mutability": "mutable",
                            "name": "sumTotalTiers",
                            "nameLocation": "8161:13:41",
                            "nodeType": "VariableDeclaration",
                            "scope": 8794,
                            "src": "8153:21:41",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 8726,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "8153:7:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 8729,
                        "initialValue": {
                          "hexValue": "30",
                          "id": 8728,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "number",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "8177:1:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_rational_0_by_1",
                            "typeString": "int_const 0"
                          },
                          "value": "0"
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "8153:25:41"
                      },
                      {
                        "assignments": [
                          8731
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 8731,
                            "mutability": "mutable",
                            "name": "tiersLength",
                            "nameLocation": "8196:11:41",
                            "nodeType": "VariableDeclaration",
                            "scope": 8794,
                            "src": "8188:19:41",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 8730,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "8188:7:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 8735,
                        "initialValue": {
                          "expression": {
                            "expression": {
                              "id": 8732,
                              "name": "_prizeDistribution",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8671,
                              "src": "8210:18:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$11103_calldata_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution calldata"
                              }
                            },
                            "id": 8733,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "tiers",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11100,
                            "src": "8210:24:41",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint32_$16_calldata_ptr",
                              "typeString": "uint32[16] calldata"
                            }
                          },
                          "id": 8734,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "length",
                          "nodeType": "MemberAccess",
                          "src": "8210:31:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "8188:53:41"
                      },
                      {
                        "body": {
                          "id": 8757,
                          "nodeType": "Block",
                          "src": "8306:106:41",
                          "statements": [
                            {
                              "assignments": [
                                8747
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 8747,
                                  "mutability": "mutable",
                                  "name": "tier",
                                  "nameLocation": "8328:4:41",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 8757,
                                  "src": "8320:12:41",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "typeName": {
                                    "id": 8746,
                                    "name": "uint256",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "8320:7:41",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 8752,
                              "initialValue": {
                                "baseExpression": {
                                  "expression": {
                                    "id": 8748,
                                    "name": "_prizeDistribution",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 8671,
                                    "src": "8335:18:41",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_PrizeDistribution_$11103_calldata_ptr",
                                      "typeString": "struct IPrizeDistributionSource.PrizeDistribution calldata"
                                    }
                                  },
                                  "id": 8749,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "tiers",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 11100,
                                  "src": "8335:24:41",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_array$_t_uint32_$16_calldata_ptr",
                                    "typeString": "uint32[16] calldata"
                                  }
                                },
                                "id": 8751,
                                "indexExpression": {
                                  "id": 8750,
                                  "name": "index",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 8737,
                                  "src": "8360:5:41",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "IndexAccess",
                                "src": "8335:31:41",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "8320:46:41"
                            },
                            {
                              "expression": {
                                "id": 8755,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 8753,
                                  "name": "sumTotalTiers",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 8727,
                                  "src": "8380:13:41",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "+=",
                                "rightHandSide": {
                                  "id": 8754,
                                  "name": "tier",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 8747,
                                  "src": "8397:4:41",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "8380:21:41",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 8756,
                              "nodeType": "ExpressionStatement",
                              "src": "8380:21:41"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 8742,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 8740,
                            "name": "index",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8737,
                            "src": "8276:5:41",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "id": 8741,
                            "name": "tiersLength",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8731,
                            "src": "8284:11:41",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "8276:19:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 8758,
                        "initializationExpression": {
                          "assignments": [
                            8737
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 8737,
                              "mutability": "mutable",
                              "name": "index",
                              "nameLocation": "8265:5:41",
                              "nodeType": "VariableDeclaration",
                              "scope": 8758,
                              "src": "8257:13:41",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "typeName": {
                                "id": 8736,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "8257:7:41",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 8739,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 8738,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "8273:1:41",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "8257:17:41"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 8744,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "8297:7:41",
                            "subExpression": {
                              "id": 8743,
                              "name": "index",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8737,
                              "src": "8297:5:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 8745,
                          "nodeType": "ExpressionStatement",
                          "src": "8297:7:41"
                        },
                        "nodeType": "ForStatement",
                        "src": "8252:160:41"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 8762,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 8760,
                                "name": "sumTotalTiers",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 8727,
                                "src": "8501:13:41",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "id": 8761,
                                "name": "TIERS_CEILING",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 8315,
                                "src": "8518:13:41",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "8501:30:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4472617743616c632f74696572732d67742d31303025",
                              "id": 8763,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "8533:24:41",
                              "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": 8759,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "8493:7:41",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 8764,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8493:65:41",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 8765,
                        "nodeType": "ExpressionStatement",
                        "src": "8493:65:41"
                      },
                      {
                        "assignments": [
                          8770
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 8770,
                            "mutability": "mutable",
                            "name": "buffer",
                            "nameLocation": "8601:6:41",
                            "nodeType": "VariableDeclaration",
                            "scope": 8794,
                            "src": "8569:38:41",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                              "typeString": "struct DrawRingBufferLib.Buffer"
                            },
                            "typeName": {
                              "id": 8769,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 8768,
                                "name": "DrawRingBufferLib.Buffer",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 11836,
                                "src": "8569:24:41"
                              },
                              "referencedDeclaration": 11836,
                              "src": "8569:24:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$11836_storage_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 8772,
                        "initialValue": {
                          "id": 8771,
                          "name": "bufferMetadata",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 8330,
                          "src": "8610:14:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$11836_storage",
                            "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "8569:55:41"
                      },
                      {
                        "expression": {
                          "id": 8778,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "id": 8773,
                              "name": "prizeDistributionRingBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8326,
                              "src": "8693:27:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11103_storage_$256_storage",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution storage ref[256] storage ref"
                              }
                            },
                            "id": 8776,
                            "indexExpression": {
                              "expression": {
                                "id": 8774,
                                "name": "buffer",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 8770,
                                "src": "8721:6:41",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                                  "typeString": "struct DrawRingBufferLib.Buffer memory"
                                }
                              },
                              "id": 8775,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "nextIndex",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 11833,
                              "src": "8721:16:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "8693:45:41",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeDistribution_$11103_storage",
                              "typeString": "struct IPrizeDistributionSource.PrizeDistribution storage ref"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 8777,
                            "name": "_prizeDistribution",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8671,
                            "src": "8741:18:41",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeDistribution_$11103_calldata_ptr",
                              "typeString": "struct IPrizeDistributionSource.PrizeDistribution calldata"
                            }
                          },
                          "src": "8693:66:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11103_storage",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution storage ref"
                          }
                        },
                        "id": 8779,
                        "nodeType": "ExpressionStatement",
                        "src": "8693:66:41"
                      },
                      {
                        "expression": {
                          "id": 8785,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 8780,
                            "name": "bufferMetadata",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8330,
                            "src": "8809:14:41",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Buffer_$11836_storage",
                              "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "id": 8783,
                                "name": "_drawId",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 8668,
                                "src": "8838:7:41",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              ],
                              "expression": {
                                "id": 8781,
                                "name": "buffer",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 8770,
                                "src": "8826:6:41",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                                  "typeString": "struct DrawRingBufferLib.Buffer memory"
                                }
                              },
                              "id": 8782,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "push",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 11902,
                              "src": "8826:11:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_pure$_t_struct$_Buffer_$11836_memory_ptr_$_t_uint32_$returns$_t_struct$_Buffer_$11836_memory_ptr_$bound_to$_t_struct$_Buffer_$11836_memory_ptr_$",
                                "typeString": "function (struct DrawRingBufferLib.Buffer memory,uint32) pure returns (struct DrawRingBufferLib.Buffer memory)"
                              }
                            },
                            "id": 8784,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "8826:20:41",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                              "typeString": "struct DrawRingBufferLib.Buffer memory"
                            }
                          },
                          "src": "8809:37:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$11836_storage",
                            "typeString": "struct DrawRingBufferLib.Buffer storage ref"
                          }
                        },
                        "id": 8786,
                        "nodeType": "ExpressionStatement",
                        "src": "8809:37:41"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 8788,
                              "name": "_drawId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8668,
                              "src": "8883:7:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 8789,
                              "name": "_prizeDistribution",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8671,
                              "src": "8892:18:41",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$11103_calldata_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution calldata"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$11103_calldata_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution calldata"
                              }
                            ],
                            "id": 8787,
                            "name": "PrizeDistributionSet",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11017,
                            "src": "8862:20:41",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint32_$_t_struct$_PrizeDistribution_$11103_memory_ptr_$returns$__$",
                              "typeString": "function (uint32,struct IPrizeDistributionSource.PrizeDistribution memory)"
                            }
                          },
                          "id": 8790,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8862:49:41",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 8791,
                        "nodeType": "EmitStatement",
                        "src": "8857:54:41"
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 8792,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "8929:4:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 8675,
                        "id": 8793,
                        "nodeType": "Return",
                        "src": "8922:11:41"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 8666,
                    "nodeType": "StructuredDocumentation",
                    "src": "7153:184:41",
                    "text": " @notice Set newest PrizeDistributionBuffer in ring buffer storage.\n @param _drawId       drawId\n @param _prizeDistribution PrizeDistributionBuffer struct"
                  },
                  "id": 8795,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_pushPrizeDistribution",
                  "nameLocation": "7351:22:41",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8672,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8668,
                        "mutability": "mutable",
                        "name": "_drawId",
                        "nameLocation": "7390:7:41",
                        "nodeType": "VariableDeclaration",
                        "scope": 8795,
                        "src": "7383:14:41",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 8667,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "7383:6:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8671,
                        "mutability": "mutable",
                        "name": "_prizeDistribution",
                        "nameLocation": "7459:18:41",
                        "nodeType": "VariableDeclaration",
                        "scope": 8795,
                        "src": "7407:70:41",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$11103_calldata_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 8670,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8669,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11103,
                            "src": "7407:42:41"
                          },
                          "referencedDeclaration": 11103,
                          "src": "7407:42:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11103_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7373:110:41"
                  },
                  "returnParameters": {
                    "id": 8675,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8674,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8795,
                        "src": "7502:4:41",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 8673,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "7502:4:41",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7501:6:41"
                  },
                  "scope": 8796,
                  "src": "7342:1598:41",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 8797,
              "src": "904:8038:41",
              "usedErrors": []
            }
          ],
          "src": "37:8906:41"
        },
        "id": 41
      },
      "@pooltogether/v4-core/contracts/PrizeDistributor.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/PrizeDistributor.sol",
          "exportedSymbols": {
            "Address": [
              1775
            ],
            "IDrawBeacon": [
              10853
            ],
            "IDrawBuffer": [
              10930
            ],
            "IDrawCalculator": [
              11003
            ],
            "IERC20": [
              890
            ],
            "IPrizeDistributor": [
              11213
            ],
            "Ownable": [
              5355
            ],
            "PrizeDistributor": [
              9169
            ],
            "SafeERC20": [
              1344
            ]
          },
          "id": 9170,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 8798,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:42"
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "id": 8799,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 9170,
              "sourceUnit": 891,
              "src": "61:56:42",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol",
              "id": 8800,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 9170,
              "sourceUnit": 1345,
              "src": "118:65:42",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/owner-manager-contracts/contracts/Ownable.sol",
              "file": "@pooltogether/owner-manager-contracts/contracts/Ownable.sol",
              "id": 8801,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 9170,
              "sourceUnit": 5356,
              "src": "184:69:42",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IPrizeDistributor.sol",
              "file": "./interfaces/IPrizeDistributor.sol",
              "id": 8802,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 9170,
              "sourceUnit": 11214,
              "src": "255:44:42",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IDrawCalculator.sol",
              "file": "./interfaces/IDrawCalculator.sol",
              "id": 8803,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 9170,
              "sourceUnit": 11004,
              "src": "300:42:42",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 8805,
                    "name": "IPrizeDistributor",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 11213,
                    "src": "1063:17:42"
                  },
                  "id": 8806,
                  "nodeType": "InheritanceSpecifier",
                  "src": "1063:17:42"
                },
                {
                  "baseName": {
                    "id": 8807,
                    "name": "Ownable",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 5355,
                    "src": "1082:7:42"
                  },
                  "id": 8808,
                  "nodeType": "InheritanceSpecifier",
                  "src": "1082:7:42"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 8804,
                "nodeType": "StructuredDocumentation",
                "src": "344:689:42",
                "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": 9169,
              "linearizedBaseContracts": [
                9169,
                5355,
                11213
              ],
              "name": "PrizeDistributor",
              "nameLocation": "1043:16:42",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "id": 8812,
                  "libraryName": {
                    "id": 8809,
                    "name": "SafeERC20",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 1344,
                    "src": "1102:9:42"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "1096:27:42",
                  "typeName": {
                    "id": 8811,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 8810,
                      "name": "IERC20",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 890,
                      "src": "1116:6:42"
                    },
                    "referencedDeclaration": 890,
                    "src": "1116:6:42",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IERC20_$890",
                      "typeString": "contract IERC20"
                    }
                  }
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 8813,
                    "nodeType": "StructuredDocumentation",
                    "src": "1183:34:42",
                    "text": "@notice DrawCalculator address"
                  },
                  "id": 8816,
                  "mutability": "mutable",
                  "name": "drawCalculator",
                  "nameLocation": "1247:14:42",
                  "nodeType": "VariableDeclaration",
                  "scope": 9169,
                  "src": "1222:39:42",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IDrawCalculator_$11003",
                    "typeString": "contract IDrawCalculator"
                  },
                  "typeName": {
                    "id": 8815,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 8814,
                      "name": "IDrawCalculator",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 11003,
                      "src": "1222:15:42"
                    },
                    "referencedDeclaration": 11003,
                    "src": "1222:15:42",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IDrawCalculator_$11003",
                      "typeString": "contract IDrawCalculator"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 8817,
                    "nodeType": "StructuredDocumentation",
                    "src": "1268:25:42",
                    "text": "@notice Token address"
                  },
                  "id": 8820,
                  "mutability": "immutable",
                  "name": "token",
                  "nameLocation": "1324:5:42",
                  "nodeType": "VariableDeclaration",
                  "scope": 9169,
                  "src": "1298:31:42",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IERC20_$890",
                    "typeString": "contract IERC20"
                  },
                  "typeName": {
                    "id": 8819,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 8818,
                      "name": "IERC20",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 890,
                      "src": "1298:6:42"
                    },
                    "referencedDeclaration": 890,
                    "src": "1298:6:42",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IERC20_$890",
                      "typeString": "contract IERC20"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 8821,
                    "nodeType": "StructuredDocumentation",
                    "src": "1336:52:42",
                    "text": "@notice Maps users => drawId => paid out balance"
                  },
                  "id": 8827,
                  "mutability": "mutable",
                  "name": "userDrawPayouts",
                  "nameLocation": "1450:15:42",
                  "nodeType": "VariableDeclaration",
                  "scope": 9169,
                  "src": "1393:72:42",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_uint256_$_$",
                    "typeString": "mapping(address => mapping(uint256 => uint256))"
                  },
                  "typeName": {
                    "id": 8826,
                    "keyType": {
                      "id": 8822,
                      "name": "address",
                      "nodeType": "ElementaryTypeName",
                      "src": "1401:7:42",
                      "typeDescriptions": {
                        "typeIdentifier": "t_address",
                        "typeString": "address"
                      }
                    },
                    "nodeType": "Mapping",
                    "src": "1393:47:42",
                    "typeDescriptions": {
                      "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_uint256_$_$",
                      "typeString": "mapping(address => mapping(uint256 => uint256))"
                    },
                    "valueType": {
                      "id": 8825,
                      "keyType": {
                        "id": 8823,
                        "name": "uint256",
                        "nodeType": "ElementaryTypeName",
                        "src": "1420:7:42",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        }
                      },
                      "nodeType": "Mapping",
                      "src": "1412:27:42",
                      "typeDescriptions": {
                        "typeIdentifier": "t_mapping$_t_uint256_$_t_uint256_$",
                        "typeString": "mapping(uint256 => uint256)"
                      },
                      "valueType": {
                        "id": 8824,
                        "name": "uint256",
                        "nodeType": "ElementaryTypeName",
                        "src": "1431:7:42",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        }
                      }
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 8867,
                    "nodeType": "Block",
                    "src": "1858:198:42",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 8843,
                              "name": "_drawCalculator",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8836,
                              "src": "1887:15:42",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawCalculator_$11003",
                                "typeString": "contract IDrawCalculator"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IDrawCalculator_$11003",
                                "typeString": "contract IDrawCalculator"
                              }
                            ],
                            "id": 8842,
                            "name": "_setDrawCalculator",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9152,
                            "src": "1868:18:42",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IDrawCalculator_$11003_$returns$__$",
                              "typeString": "function (contract IDrawCalculator)"
                            }
                          },
                          "id": 8844,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1868:35:42",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 8845,
                        "nodeType": "ExpressionStatement",
                        "src": "1868:35:42"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 8855,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 8849,
                                    "name": "_token",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 8833,
                                    "src": "1929:6:42",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_IERC20_$890",
                                      "typeString": "contract IERC20"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_IERC20_$890",
                                      "typeString": "contract IERC20"
                                    }
                                  ],
                                  "id": 8848,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "1921:7:42",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 8847,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "1921:7:42",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 8850,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1921:15:42",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 8853,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "1948:1:42",
                                    "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": 8852,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "1940:7:42",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 8851,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "1940:7:42",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 8854,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1940:10:42",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "1921:29:42",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a654469737472696275746f722f746f6b656e2d6e6f742d7a65726f2d61646472657373",
                              "id": 8856,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1952:41:42",
                              "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": 8846,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1913:7:42",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 8857,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1913:81:42",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 8858,
                        "nodeType": "ExpressionStatement",
                        "src": "1913:81:42"
                      },
                      {
                        "expression": {
                          "id": 8861,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 8859,
                            "name": "token",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8820,
                            "src": "2004:5:42",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IERC20_$890",
                              "typeString": "contract IERC20"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 8860,
                            "name": "_token",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8833,
                            "src": "2012:6:42",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IERC20_$890",
                              "typeString": "contract IERC20"
                            }
                          },
                          "src": "2004:14:42",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$890",
                            "typeString": "contract IERC20"
                          }
                        },
                        "id": 8862,
                        "nodeType": "ExpressionStatement",
                        "src": "2004:14:42"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 8864,
                              "name": "_token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8833,
                              "src": "2042:6:42",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$890",
                                "typeString": "contract IERC20"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IERC20_$890",
                                "typeString": "contract IERC20"
                              }
                            ],
                            "id": 8863,
                            "name": "TokenSet",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11142,
                            "src": "2033:8:42",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_contract$_IERC20_$890_$returns$__$",
                              "typeString": "function (contract IERC20)"
                            }
                          },
                          "id": 8865,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2033:16:42",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 8866,
                        "nodeType": "EmitStatement",
                        "src": "2028:21:42"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 8828,
                    "nodeType": "StructuredDocumentation",
                    "src": "1520:211:42",
                    "text": " @notice Initialize PrizeDistributor smart contract.\n @param _owner          Owner address\n @param _token          Token address\n @param _drawCalculator DrawCalculator address"
                  },
                  "id": 8868,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 8839,
                          "name": "_owner",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 8830,
                          "src": "1850:6:42",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        }
                      ],
                      "id": 8840,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 8838,
                        "name": "Ownable",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5355,
                        "src": "1842:7:42"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "1842:15:42"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 8837,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8830,
                        "mutability": "mutable",
                        "name": "_owner",
                        "nameLocation": "1765:6:42",
                        "nodeType": "VariableDeclaration",
                        "scope": 8868,
                        "src": "1757:14:42",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 8829,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1757:7:42",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8833,
                        "mutability": "mutable",
                        "name": "_token",
                        "nameLocation": "1788:6:42",
                        "nodeType": "VariableDeclaration",
                        "scope": 8868,
                        "src": "1781:13:42",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$890",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 8832,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8831,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 890,
                            "src": "1781:6:42"
                          },
                          "referencedDeclaration": 890,
                          "src": "1781:6:42",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$890",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8836,
                        "mutability": "mutable",
                        "name": "_drawCalculator",
                        "nameLocation": "1820:15:42",
                        "nodeType": "VariableDeclaration",
                        "scope": 8868,
                        "src": "1804:31:42",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawCalculator_$11003",
                          "typeString": "contract IDrawCalculator"
                        },
                        "typeName": {
                          "id": 8835,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8834,
                            "name": "IDrawCalculator",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11003,
                            "src": "1804:15:42"
                          },
                          "referencedDeclaration": 11003,
                          "src": "1804:15:42",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculator_$11003",
                            "typeString": "contract IDrawCalculator"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1747:94:42"
                  },
                  "returnParameters": {
                    "id": 8841,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1858:0:42"
                  },
                  "scope": 9169,
                  "src": "1736:320:42",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    11165
                  ],
                  "body": {
                    "id": 8974,
                    "nodeType": "Block",
                    "src": "2302:1056:42",
                    "statements": [
                      {
                        "assignments": [
                          8883
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 8883,
                            "mutability": "mutable",
                            "name": "totalPayout",
                            "nameLocation": "2329:11:42",
                            "nodeType": "VariableDeclaration",
                            "scope": 8974,
                            "src": "2321:19:42",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 8882,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "2321:7:42",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 8884,
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2321:19:42"
                      },
                      {
                        "assignments": [
                          8889,
                          null
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 8889,
                            "mutability": "mutable",
                            "name": "drawPayouts",
                            "nameLocation": "2377:11:42",
                            "nodeType": "VariableDeclaration",
                            "scope": 8974,
                            "src": "2360:28:42",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 8887,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "2360:7:42",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 8888,
                              "nodeType": "ArrayTypeName",
                              "src": "2360:9:42",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            },
                            "visibility": "internal"
                          },
                          null
                        ],
                        "id": 8896,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 8892,
                              "name": "_user",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8871,
                              "src": "2419:5:42",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 8893,
                              "name": "_drawIds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8874,
                              "src": "2426:8:42",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                                "typeString": "uint32[] calldata"
                              }
                            },
                            {
                              "id": 8894,
                              "name": "_data",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8876,
                              "src": "2436:5:42",
                              "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": 8890,
                              "name": "drawCalculator",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8816,
                              "src": "2394:14:42",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawCalculator_$11003",
                                "typeString": "contract IDrawCalculator"
                              }
                            },
                            "id": 8891,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "calculate",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 10976,
                            "src": "2394:24:42",
                            "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": 8895,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2394:48:42",
                          "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:42"
                      },
                      {
                        "assignments": [
                          8898
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 8898,
                            "mutability": "mutable",
                            "name": "drawPayoutsLength",
                            "nameLocation": "2529:17:42",
                            "nodeType": "VariableDeclaration",
                            "scope": 8974,
                            "src": "2521:25:42",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 8897,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "2521:7:42",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 8901,
                        "initialValue": {
                          "expression": {
                            "id": 8899,
                            "name": "drawPayouts",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8889,
                            "src": "2549:11:42",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[] memory"
                            }
                          },
                          "id": 8900,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "length",
                          "nodeType": "MemberAccess",
                          "src": "2549:18:42",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2521:46:42"
                      },
                      {
                        "body": {
                          "id": 8965,
                          "nodeType": "Block",
                          "src": "2655:625:42",
                          "statements": [
                            {
                              "assignments": [
                                8913
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 8913,
                                  "mutability": "mutable",
                                  "name": "drawId",
                                  "nameLocation": "2676:6:42",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 8965,
                                  "src": "2669:13:42",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  },
                                  "typeName": {
                                    "id": 8912,
                                    "name": "uint32",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "2669:6:42",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 8917,
                              "initialValue": {
                                "baseExpression": {
                                  "id": 8914,
                                  "name": "_drawIds",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 8874,
                                  "src": "2685:8:42",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                                    "typeString": "uint32[] calldata"
                                  }
                                },
                                "id": 8916,
                                "indexExpression": {
                                  "id": 8915,
                                  "name": "payoutIndex",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 8903,
                                  "src": "2694:11:42",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "IndexAccess",
                                "src": "2685:21:42",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "2669:37:42"
                            },
                            {
                              "assignments": [
                                8919
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 8919,
                                  "mutability": "mutable",
                                  "name": "payout",
                                  "nameLocation": "2728:6:42",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 8965,
                                  "src": "2720:14:42",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "typeName": {
                                    "id": 8918,
                                    "name": "uint256",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "2720:7:42",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 8923,
                              "initialValue": {
                                "baseExpression": {
                                  "id": 8920,
                                  "name": "drawPayouts",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 8889,
                                  "src": "2737:11:42",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                    "typeString": "uint256[] memory"
                                  }
                                },
                                "id": 8922,
                                "indexExpression": {
                                  "id": 8921,
                                  "name": "payoutIndex",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 8903,
                                  "src": "2749:11:42",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "IndexAccess",
                                "src": "2737:24:42",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "2720:41:42"
                            },
                            {
                              "assignments": [
                                8925
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 8925,
                                  "mutability": "mutable",
                                  "name": "oldPayout",
                                  "nameLocation": "2783:9:42",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 8965,
                                  "src": "2775:17:42",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "typeName": {
                                    "id": 8924,
                                    "name": "uint256",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "2775:7:42",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 8930,
                              "initialValue": {
                                "arguments": [
                                  {
                                    "id": 8927,
                                    "name": "_user",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 8871,
                                    "src": "2819:5:42",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "id": 8928,
                                    "name": "drawId",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 8913,
                                    "src": "2826:6:42",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  ],
                                  "id": 8926,
                                  "name": "_getDrawPayoutBalanceOf",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 9105,
                                  "src": "2795:23:42",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_view$_t_address_$_t_uint32_$returns$_t_uint256_$",
                                    "typeString": "function (address,uint32) view returns (uint256)"
                                  }
                                },
                                "id": 8929,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "2795:38:42",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "2775:58:42"
                            },
                            {
                              "assignments": [
                                8932
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 8932,
                                  "mutability": "mutable",
                                  "name": "payoutDiff",
                                  "nameLocation": "2855:10:42",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 8965,
                                  "src": "2847:18:42",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "typeName": {
                                    "id": 8931,
                                    "name": "uint256",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "2847:7:42",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 8934,
                              "initialValue": {
                                "hexValue": "30",
                                "id": 8933,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "2868:1:42",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "2847:22:42"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "commonType": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    },
                                    "id": 8938,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "leftExpression": {
                                      "id": 8936,
                                      "name": "payout",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 8919,
                                      "src": "2971:6:42",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "nodeType": "BinaryOperation",
                                    "operator": ">",
                                    "rightExpression": {
                                      "id": 8937,
                                      "name": "oldPayout",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 8925,
                                      "src": "2980:9:42",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "src": "2971:18:42",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bool",
                                      "typeString": "bool"
                                    }
                                  },
                                  {
                                    "hexValue": "5072697a654469737472696275746f722f7a65726f2d7061796f7574",
                                    "id": 8939,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "string",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "2991:30:42",
                                    "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": 8935,
                                  "name": "require",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [
                                    -18,
                                    -18
                                  ],
                                  "referencedDeclaration": -18,
                                  "src": "2963:7:42",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                                    "typeString": "function (bool,string memory) pure"
                                  }
                                },
                                "id": 8940,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "2963:59:42",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 8941,
                              "nodeType": "ExpressionStatement",
                              "src": "2963:59:42"
                            },
                            {
                              "id": 8948,
                              "nodeType": "UncheckedBlock",
                              "src": "3037:74:42",
                              "statements": [
                                {
                                  "expression": {
                                    "id": 8946,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "leftHandSide": {
                                      "id": 8942,
                                      "name": "payoutDiff",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 8932,
                                      "src": "3065:10:42",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "nodeType": "Assignment",
                                    "operator": "=",
                                    "rightHandSide": {
                                      "commonType": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      },
                                      "id": 8945,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "id": 8943,
                                        "name": "payout",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 8919,
                                        "src": "3078:6:42",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": "-",
                                      "rightExpression": {
                                        "id": 8944,
                                        "name": "oldPayout",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 8925,
                                        "src": "3087:9:42",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "src": "3078:18:42",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "src": "3065:31:42",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "id": 8947,
                                  "nodeType": "ExpressionStatement",
                                  "src": "3065:31:42"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "id": 8950,
                                    "name": "_user",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 8871,
                                    "src": "3149:5:42",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "id": 8951,
                                    "name": "drawId",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 8913,
                                    "src": "3156:6:42",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  },
                                  {
                                    "id": 8952,
                                    "name": "payout",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 8919,
                                    "src": "3164:6:42",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    },
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  ],
                                  "id": 8949,
                                  "name": "_setDrawPayoutBalanceOf",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 9123,
                                  "src": "3125:23:42",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint32_$_t_uint256_$returns$__$",
                                    "typeString": "function (address,uint32,uint256)"
                                  }
                                },
                                "id": 8953,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "3125:46:42",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 8954,
                              "nodeType": "ExpressionStatement",
                              "src": "3125:46:42"
                            },
                            {
                              "expression": {
                                "id": 8957,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 8955,
                                  "name": "totalPayout",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 8883,
                                  "src": "3186:11:42",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "+=",
                                "rightHandSide": {
                                  "id": 8956,
                                  "name": "payoutDiff",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 8932,
                                  "src": "3201:10:42",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "3186:25:42",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 8958,
                              "nodeType": "ExpressionStatement",
                              "src": "3186:25:42"
                            },
                            {
                              "eventCall": {
                                "arguments": [
                                  {
                                    "id": 8960,
                                    "name": "_user",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 8871,
                                    "src": "3243:5:42",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "id": 8961,
                                    "name": "drawId",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 8913,
                                    "src": "3250:6:42",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  },
                                  {
                                    "id": 8962,
                                    "name": "payoutDiff",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 8932,
                                    "src": "3258:10:42",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    },
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  ],
                                  "id": 8959,
                                  "name": "ClaimedDraw",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 11130,
                                  "src": "3231:11:42",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_uint32_$_t_uint256_$returns$__$",
                                    "typeString": "function (address,uint32,uint256)"
                                  }
                                },
                                "id": 8963,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "3231:38:42",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 8964,
                              "nodeType": "EmitStatement",
                              "src": "3226:43:42"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 8908,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 8906,
                            "name": "payoutIndex",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8903,
                            "src": "2607:11:42",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "id": 8907,
                            "name": "drawPayoutsLength",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8898,
                            "src": "2621:17:42",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "2607:31:42",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 8966,
                        "initializationExpression": {
                          "assignments": [
                            8903
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 8903,
                              "mutability": "mutable",
                              "name": "payoutIndex",
                              "nameLocation": "2590:11:42",
                              "nodeType": "VariableDeclaration",
                              "scope": 8966,
                              "src": "2582:19:42",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "typeName": {
                                "id": 8902,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "2582:7:42",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 8905,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 8904,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "2604:1:42",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "2582:23:42"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 8910,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "2640:13:42",
                            "subExpression": {
                              "id": 8909,
                              "name": "payoutIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8903,
                              "src": "2640:11:42",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 8911,
                          "nodeType": "ExpressionStatement",
                          "src": "2640:13:42"
                        },
                        "nodeType": "ForStatement",
                        "src": "2577:703:42"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 8968,
                              "name": "_user",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8871,
                              "src": "3303:5:42",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 8969,
                              "name": "totalPayout",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8883,
                              "src": "3310:11:42",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 8967,
                            "name": "_awardPayout",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9168,
                            "src": "3290:12:42",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256)"
                            }
                          },
                          "id": 8970,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3290:32:42",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 8971,
                        "nodeType": "ExpressionStatement",
                        "src": "3290:32:42"
                      },
                      {
                        "expression": {
                          "id": 8972,
                          "name": "totalPayout",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 8883,
                          "src": "3340:11:42",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 8881,
                        "id": 8973,
                        "nodeType": "Return",
                        "src": "3333:18:42"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 8869,
                    "nodeType": "StructuredDocumentation",
                    "src": "2118:33:42",
                    "text": "@inheritdoc IPrizeDistributor"
                  },
                  "functionSelector": "bb7d4e2d",
                  "id": 8975,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "claim",
                  "nameLocation": "2165:5:42",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 8878,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2275:8:42"
                  },
                  "parameters": {
                    "id": 8877,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8871,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "2188:5:42",
                        "nodeType": "VariableDeclaration",
                        "scope": 8975,
                        "src": "2180:13:42",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 8870,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2180:7:42",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8874,
                        "mutability": "mutable",
                        "name": "_drawIds",
                        "nameLocation": "2221:8:42",
                        "nodeType": "VariableDeclaration",
                        "scope": 8975,
                        "src": "2203:26:42",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                          "typeString": "uint32[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 8872,
                            "name": "uint32",
                            "nodeType": "ElementaryTypeName",
                            "src": "2203:6:42",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "id": 8873,
                          "nodeType": "ArrayTypeName",
                          "src": "2203:8:42",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint32_$dyn_storage_ptr",
                            "typeString": "uint32[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8876,
                        "mutability": "mutable",
                        "name": "_data",
                        "nameLocation": "2254:5:42",
                        "nodeType": "VariableDeclaration",
                        "scope": 8975,
                        "src": "2239:20:42",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_calldata_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 8875,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "2239:5:42",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2170:95:42"
                  },
                  "returnParameters": {
                    "id": 8881,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8880,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 8975,
                        "src": "2293:7:42",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 8879,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2293:7:42",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2292:9:42"
                  },
                  "scope": 9169,
                  "src": "2156:1202:42",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11212
                  ],
                  "body": {
                    "id": 9029,
                    "nodeType": "Block",
                    "src": "3548:314:42",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 8997,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 8992,
                                "name": "_to",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 8981,
                                "src": "3566:3:42",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 8995,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "3581:1:42",
                                    "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": 8994,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "3573:7:42",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 8993,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "3573:7:42",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 8996,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "3573:10:42",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "3566:17:42",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a654469737472696275746f722f726563697069656e742d6e6f742d7a65726f2d61646472657373",
                              "id": 8998,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "3585:45:42",
                              "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": 8991,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "3558:7:42",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 8999,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3558:73:42",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 9000,
                        "nodeType": "ExpressionStatement",
                        "src": "3558:73:42"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 9010,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 9004,
                                    "name": "_erc20Token",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 8979,
                                    "src": "3657:11:42",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_IERC20_$890",
                                      "typeString": "contract IERC20"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_IERC20_$890",
                                      "typeString": "contract IERC20"
                                    }
                                  ],
                                  "id": 9003,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "3649:7:42",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 9002,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "3649:7:42",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 9005,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "3649:20:42",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 9008,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "3681:1:42",
                                    "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": 9007,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "3673:7:42",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 9006,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "3673:7:42",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 9009,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "3673:10:42",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "3649:34:42",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a654469737472696275746f722f45524332302d6e6f742d7a65726f2d61646472657373",
                              "id": 9011,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "3685:41:42",
                              "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": 9001,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "3641:7:42",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 9012,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3641:86:42",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 9013,
                        "nodeType": "ExpressionStatement",
                        "src": "3641:86:42"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 9017,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8981,
                              "src": "3763:3:42",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 9018,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8983,
                              "src": "3768:7:42",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "id": 9014,
                              "name": "_erc20Token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8979,
                              "src": "3738:11:42",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$890",
                                "typeString": "contract IERC20"
                              }
                            },
                            "id": 9016,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "safeTransfer",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 1151,
                            "src": "3738:24:42",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20_$890_$_t_address_$_t_uint256_$returns$__$bound_to$_t_contract$_IERC20_$890_$",
                              "typeString": "function (contract IERC20,address,uint256)"
                            }
                          },
                          "id": 9019,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3738:38:42",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 9020,
                        "nodeType": "ExpressionStatement",
                        "src": "3738:38:42"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 9022,
                              "name": "_erc20Token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8979,
                              "src": "3807:11:42",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$890",
                                "typeString": "contract IERC20"
                              }
                            },
                            {
                              "id": 9023,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8981,
                              "src": "3820:3:42",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 9024,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8983,
                              "src": "3825:7:42",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IERC20_$890",
                                "typeString": "contract IERC20"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 9021,
                            "name": "ERC20Withdrawn",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11152,
                            "src": "3792:14:42",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_contract$_IERC20_$890_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (contract IERC20,address,uint256)"
                            }
                          },
                          "id": 9025,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3792:41:42",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 9026,
                        "nodeType": "EmitStatement",
                        "src": "3787:46:42"
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 9027,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "3851:4:42",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 8990,
                        "id": 9028,
                        "nodeType": "Return",
                        "src": "3844:11:42"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 8976,
                    "nodeType": "StructuredDocumentation",
                    "src": "3364:33:42",
                    "text": "@inheritdoc IPrizeDistributor"
                  },
                  "functionSelector": "44004cc1",
                  "id": 9030,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 8987,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 8986,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5341,
                        "src": "3523:9:42"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "3523:9:42"
                    }
                  ],
                  "name": "withdrawERC20",
                  "nameLocation": "3411:13:42",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 8985,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3514:8:42"
                  },
                  "parameters": {
                    "id": 8984,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8979,
                        "mutability": "mutable",
                        "name": "_erc20Token",
                        "nameLocation": "3441:11:42",
                        "nodeType": "VariableDeclaration",
                        "scope": 9030,
                        "src": "3434:18:42",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$890",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 8978,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 8977,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 890,
                            "src": "3434:6:42"
                          },
                          "referencedDeclaration": 890,
                          "src": "3434:6:42",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$890",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8981,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "3470:3:42",
                        "nodeType": "VariableDeclaration",
                        "scope": 9030,
                        "src": "3462:11:42",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 8980,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3462:7:42",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 8983,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "3491:7:42",
                        "nodeType": "VariableDeclaration",
                        "scope": 9030,
                        "src": "3483:15:42",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 8982,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3483:7:42",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3424:80:42"
                  },
                  "returnParameters": {
                    "id": 8990,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 8989,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 9030,
                        "src": "3542:4:42",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 8988,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "3542:4:42",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3541:6:42"
                  },
                  "scope": 9169,
                  "src": "3402:460:42",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11172
                  ],
                  "body": {
                    "id": 9040,
                    "nodeType": "Block",
                    "src": "3984:38:42",
                    "statements": [
                      {
                        "expression": {
                          "id": 9038,
                          "name": "drawCalculator",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 8816,
                          "src": "4001:14:42",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculator_$11003",
                            "typeString": "contract IDrawCalculator"
                          }
                        },
                        "functionReturnParameters": 9037,
                        "id": 9039,
                        "nodeType": "Return",
                        "src": "3994:21:42"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 9031,
                    "nodeType": "StructuredDocumentation",
                    "src": "3868:33:42",
                    "text": "@inheritdoc IPrizeDistributor"
                  },
                  "functionSelector": "2d680cfa",
                  "id": 9041,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getDrawCalculator",
                  "nameLocation": "3915:17:42",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 9033,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3949:8:42"
                  },
                  "parameters": {
                    "id": 9032,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3932:2:42"
                  },
                  "returnParameters": {
                    "id": 9037,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9036,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 9041,
                        "src": "3967:15:42",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawCalculator_$11003",
                          "typeString": "contract IDrawCalculator"
                        },
                        "typeName": {
                          "id": 9035,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 9034,
                            "name": "IDrawCalculator",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11003,
                            "src": "3967:15:42"
                          },
                          "referencedDeclaration": 11003,
                          "src": "3967:15:42",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculator_$11003",
                            "typeString": "contract IDrawCalculator"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3966:17:42"
                  },
                  "scope": 9169,
                  "src": "3906:116:42",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11182
                  ],
                  "body": {
                    "id": 9057,
                    "nodeType": "Block",
                    "src": "4206:63:42",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 9053,
                              "name": "_user",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9044,
                              "src": "4247:5:42",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 9054,
                              "name": "_drawId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9046,
                              "src": "4254:7:42",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "id": 9052,
                            "name": "_getDrawPayoutBalanceOf",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9105,
                            "src": "4223:23:42",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_address_$_t_uint32_$returns$_t_uint256_$",
                              "typeString": "function (address,uint32) view returns (uint256)"
                            }
                          },
                          "id": 9055,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4223:39:42",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 9051,
                        "id": 9056,
                        "nodeType": "Return",
                        "src": "4216:46:42"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 9042,
                    "nodeType": "StructuredDocumentation",
                    "src": "4028:33:42",
                    "text": "@inheritdoc IPrizeDistributor"
                  },
                  "functionSelector": "b7f892d1",
                  "id": 9058,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getDrawPayoutBalanceOf",
                  "nameLocation": "4075:22:42",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 9048,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "4167:8:42"
                  },
                  "parameters": {
                    "id": 9047,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9044,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "4106:5:42",
                        "nodeType": "VariableDeclaration",
                        "scope": 9058,
                        "src": "4098:13:42",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 9043,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4098:7:42",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9046,
                        "mutability": "mutable",
                        "name": "_drawId",
                        "nameLocation": "4120:7:42",
                        "nodeType": "VariableDeclaration",
                        "scope": 9058,
                        "src": "4113:14:42",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 9045,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4113:6:42",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4097:31:42"
                  },
                  "returnParameters": {
                    "id": 9051,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9050,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 9058,
                        "src": "4193:7:42",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 9049,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4193:7:42",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4192:9:42"
                  },
                  "scope": 9169,
                  "src": "4066:203:42",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11189
                  ],
                  "body": {
                    "id": 9068,
                    "nodeType": "Block",
                    "src": "4373:29:42",
                    "statements": [
                      {
                        "expression": {
                          "id": 9066,
                          "name": "token",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 8820,
                          "src": "4390:5:42",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$890",
                            "typeString": "contract IERC20"
                          }
                        },
                        "functionReturnParameters": 9065,
                        "id": 9067,
                        "nodeType": "Return",
                        "src": "4383:12:42"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 9059,
                    "nodeType": "StructuredDocumentation",
                    "src": "4275:33:42",
                    "text": "@inheritdoc IPrizeDistributor"
                  },
                  "functionSelector": "21df0da7",
                  "id": 9069,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getToken",
                  "nameLocation": "4322:8:42",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 9061,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "4347:8:42"
                  },
                  "parameters": {
                    "id": 9060,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4330:2:42"
                  },
                  "returnParameters": {
                    "id": 9065,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9064,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 9069,
                        "src": "4365:6:42",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$890",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 9063,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 9062,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 890,
                            "src": "4365:6:42"
                          },
                          "referencedDeclaration": 890,
                          "src": "4365:6:42",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$890",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4364:8:42"
                  },
                  "scope": 9169,
                  "src": "4313:89:42",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11199
                  ],
                  "body": {
                    "id": 9088,
                    "nodeType": "Block",
                    "src": "4595:82:42",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 9083,
                              "name": "_newCalculator",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9073,
                              "src": "4624:14:42",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawCalculator_$11003",
                                "typeString": "contract IDrawCalculator"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IDrawCalculator_$11003",
                                "typeString": "contract IDrawCalculator"
                              }
                            ],
                            "id": 9082,
                            "name": "_setDrawCalculator",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9152,
                            "src": "4605:18:42",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IDrawCalculator_$11003_$returns$__$",
                              "typeString": "function (contract IDrawCalculator)"
                            }
                          },
                          "id": 9084,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4605:34:42",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 9085,
                        "nodeType": "ExpressionStatement",
                        "src": "4605:34:42"
                      },
                      {
                        "expression": {
                          "id": 9086,
                          "name": "_newCalculator",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 9073,
                          "src": "4656:14:42",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculator_$11003",
                            "typeString": "contract IDrawCalculator"
                          }
                        },
                        "functionReturnParameters": 9081,
                        "id": 9087,
                        "nodeType": "Return",
                        "src": "4649:21:42"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 9070,
                    "nodeType": "StructuredDocumentation",
                    "src": "4408:33:42",
                    "text": "@inheritdoc IPrizeDistributor"
                  },
                  "functionSelector": "454a8140",
                  "id": 9089,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 9077,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 9076,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5341,
                        "src": "4547:9:42"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "4547:9:42"
                    }
                  ],
                  "name": "setDrawCalculator",
                  "nameLocation": "4455:17:42",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 9075,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "4530:8:42"
                  },
                  "parameters": {
                    "id": 9074,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9073,
                        "mutability": "mutable",
                        "name": "_newCalculator",
                        "nameLocation": "4489:14:42",
                        "nodeType": "VariableDeclaration",
                        "scope": 9089,
                        "src": "4473:30:42",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawCalculator_$11003",
                          "typeString": "contract IDrawCalculator"
                        },
                        "typeName": {
                          "id": 9072,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 9071,
                            "name": "IDrawCalculator",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11003,
                            "src": "4473:15:42"
                          },
                          "referencedDeclaration": 11003,
                          "src": "4473:15:42",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculator_$11003",
                            "typeString": "contract IDrawCalculator"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4472:32:42"
                  },
                  "returnParameters": {
                    "id": 9081,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9080,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 9089,
                        "src": "4574:15:42",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawCalculator_$11003",
                          "typeString": "contract IDrawCalculator"
                        },
                        "typeName": {
                          "id": 9079,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 9078,
                            "name": "IDrawCalculator",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11003,
                            "src": "4574:15:42"
                          },
                          "referencedDeclaration": 11003,
                          "src": "4574:15:42",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculator_$11003",
                            "typeString": "contract IDrawCalculator"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4573:17:42"
                  },
                  "scope": 9169,
                  "src": "4446:231:42",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 9104,
                    "nodeType": "Block",
                    "src": "4863:55:42",
                    "statements": [
                      {
                        "expression": {
                          "baseExpression": {
                            "baseExpression": {
                              "id": 9098,
                              "name": "userDrawPayouts",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8827,
                              "src": "4880:15:42",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_uint256_$_$",
                                "typeString": "mapping(address => mapping(uint256 => uint256))"
                              }
                            },
                            "id": 9100,
                            "indexExpression": {
                              "id": 9099,
                              "name": "_user",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9091,
                              "src": "4896:5:42",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "IndexAccess",
                            "src": "4880:22:42",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_uint256_$_t_uint256_$",
                              "typeString": "mapping(uint256 => uint256)"
                            }
                          },
                          "id": 9102,
                          "indexExpression": {
                            "id": 9101,
                            "name": "_drawId",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9093,
                            "src": "4903:7:42",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "4880:31:42",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 9097,
                        "id": 9103,
                        "nodeType": "Return",
                        "src": "4873:38:42"
                      }
                    ]
                  },
                  "id": 9105,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_getDrawPayoutBalanceOf",
                  "nameLocation": "4748:23:42",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 9094,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9091,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "4780:5:42",
                        "nodeType": "VariableDeclaration",
                        "scope": 9105,
                        "src": "4772:13:42",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 9090,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4772:7:42",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9093,
                        "mutability": "mutable",
                        "name": "_drawId",
                        "nameLocation": "4794:7:42",
                        "nodeType": "VariableDeclaration",
                        "scope": 9105,
                        "src": "4787:14:42",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 9092,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4787:6:42",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4771:31:42"
                  },
                  "returnParameters": {
                    "id": 9097,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9096,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 9105,
                        "src": "4850:7:42",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 9095,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4850:7:42",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4849:9:42"
                  },
                  "scope": 9169,
                  "src": "4739:179:42",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 9122,
                    "nodeType": "Block",
                    "src": "5044:58:42",
                    "statements": [
                      {
                        "expression": {
                          "id": 9120,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "baseExpression": {
                                "id": 9114,
                                "name": "userDrawPayouts",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 8827,
                                "src": "5054:15:42",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_uint256_$_$",
                                  "typeString": "mapping(address => mapping(uint256 => uint256))"
                                }
                              },
                              "id": 9117,
                              "indexExpression": {
                                "id": 9115,
                                "name": "_user",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 9107,
                                "src": "5070:5:42",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "nodeType": "IndexAccess",
                              "src": "5054:22:42",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_uint256_$_t_uint256_$",
                                "typeString": "mapping(uint256 => uint256)"
                              }
                            },
                            "id": 9118,
                            "indexExpression": {
                              "id": 9116,
                              "name": "_drawId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9109,
                              "src": "5077:7:42",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "5054:31:42",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 9119,
                            "name": "_payout",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9111,
                            "src": "5088:7:42",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "5054:41:42",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 9121,
                        "nodeType": "ExpressionStatement",
                        "src": "5054:41:42"
                      }
                    ]
                  },
                  "id": 9123,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_setDrawPayoutBalanceOf",
                  "nameLocation": "4933:23:42",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 9112,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9107,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "4974:5:42",
                        "nodeType": "VariableDeclaration",
                        "scope": 9123,
                        "src": "4966:13:42",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 9106,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4966:7:42",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9109,
                        "mutability": "mutable",
                        "name": "_drawId",
                        "nameLocation": "4996:7:42",
                        "nodeType": "VariableDeclaration",
                        "scope": 9123,
                        "src": "4989:14:42",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 9108,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4989:6:42",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9111,
                        "mutability": "mutable",
                        "name": "_payout",
                        "nameLocation": "5021:7:42",
                        "nodeType": "VariableDeclaration",
                        "scope": 9123,
                        "src": "5013:15:42",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 9110,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "5013:7:42",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4956:78:42"
                  },
                  "returnParameters": {
                    "id": 9113,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "5044:0:42"
                  },
                  "scope": 9169,
                  "src": "4924:178:42",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 9151,
                    "nodeType": "Block",
                    "src": "5315:187:42",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 9139,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 9133,
                                    "name": "_newCalculator",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 9127,
                                    "src": "5341:14:42",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_IDrawCalculator_$11003",
                                      "typeString": "contract IDrawCalculator"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_IDrawCalculator_$11003",
                                      "typeString": "contract IDrawCalculator"
                                    }
                                  ],
                                  "id": 9132,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "5333:7:42",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 9131,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "5333:7:42",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 9134,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "5333:23:42",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 9137,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "5368:1:42",
                                    "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": 9136,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "5360:7:42",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 9135,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "5360:7:42",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 9138,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "5360:10:42",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "5333:37:42",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a654469737472696275746f722f63616c632d6e6f742d7a65726f",
                              "id": 9140,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "5372:32:42",
                              "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": 9130,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "5325:7:42",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 9141,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5325:80:42",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 9142,
                        "nodeType": "ExpressionStatement",
                        "src": "5325:80:42"
                      },
                      {
                        "expression": {
                          "id": 9145,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 9143,
                            "name": "drawCalculator",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 8816,
                            "src": "5415:14:42",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IDrawCalculator_$11003",
                              "typeString": "contract IDrawCalculator"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 9144,
                            "name": "_newCalculator",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9127,
                            "src": "5432:14:42",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IDrawCalculator_$11003",
                              "typeString": "contract IDrawCalculator"
                            }
                          },
                          "src": "5415:31:42",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculator_$11003",
                            "typeString": "contract IDrawCalculator"
                          }
                        },
                        "id": 9146,
                        "nodeType": "ExpressionStatement",
                        "src": "5415:31:42"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 9148,
                              "name": "_newCalculator",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9127,
                              "src": "5480:14:42",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawCalculator_$11003",
                                "typeString": "contract IDrawCalculator"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IDrawCalculator_$11003",
                                "typeString": "contract IDrawCalculator"
                              }
                            ],
                            "id": 9147,
                            "name": "DrawCalculatorSet",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11136,
                            "src": "5462:17:42",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_contract$_IDrawCalculator_$11003_$returns$__$",
                              "typeString": "function (contract IDrawCalculator)"
                            }
                          },
                          "id": 9149,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5462:33:42",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 9150,
                        "nodeType": "EmitStatement",
                        "src": "5457:38:42"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 9124,
                    "nodeType": "StructuredDocumentation",
                    "src": "5108:133:42",
                    "text": " @notice Sets DrawCalculator reference for individual draw id.\n @param _newCalculator  DrawCalculator address"
                  },
                  "id": 9152,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_setDrawCalculator",
                  "nameLocation": "5255:18:42",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 9128,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9127,
                        "mutability": "mutable",
                        "name": "_newCalculator",
                        "nameLocation": "5290:14:42",
                        "nodeType": "VariableDeclaration",
                        "scope": 9152,
                        "src": "5274:30:42",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawCalculator_$11003",
                          "typeString": "contract IDrawCalculator"
                        },
                        "typeName": {
                          "id": 9126,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 9125,
                            "name": "IDrawCalculator",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11003,
                            "src": "5274:15:42"
                          },
                          "referencedDeclaration": 11003,
                          "src": "5274:15:42",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculator_$11003",
                            "typeString": "contract IDrawCalculator"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5273:32:42"
                  },
                  "returnParameters": {
                    "id": 9129,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "5315:0:42"
                  },
                  "scope": 9169,
                  "src": "5246:256:42",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 9167,
                    "nodeType": "Block",
                    "src": "5722:49:42",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 9163,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9155,
                              "src": "5751:3:42",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 9164,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9157,
                              "src": "5756:7:42",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "id": 9160,
                              "name": "token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 8820,
                              "src": "5732:5:42",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$890",
                                "typeString": "contract IERC20"
                              }
                            },
                            "id": 9162,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "safeTransfer",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 1151,
                            "src": "5732:18:42",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20_$890_$_t_address_$_t_uint256_$returns$__$bound_to$_t_contract$_IERC20_$890_$",
                              "typeString": "function (contract IERC20,address,uint256)"
                            }
                          },
                          "id": 9165,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5732:32:42",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 9166,
                        "nodeType": "ExpressionStatement",
                        "src": "5732:32:42"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 9153,
                    "nodeType": "StructuredDocumentation",
                    "src": "5508:148:42",
                    "text": " @notice Transfer claimed draw(s) total payout to user.\n @param _to      User address\n @param _amount  Transfer amount"
                  },
                  "id": 9168,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_awardPayout",
                  "nameLocation": "5670:12:42",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 9158,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9155,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "5691:3:42",
                        "nodeType": "VariableDeclaration",
                        "scope": 9168,
                        "src": "5683:11:42",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 9154,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5683:7:42",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9157,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "5704:7:42",
                        "nodeType": "VariableDeclaration",
                        "scope": 9168,
                        "src": "5696:15:42",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 9156,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "5696:7:42",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5682:30:42"
                  },
                  "returnParameters": {
                    "id": 9159,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "5722:0:42"
                  },
                  "scope": 9169,
                  "src": "5661:110:42",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 9170,
              "src": "1034:4740:42",
              "usedErrors": []
            }
          ],
          "src": "37:5738:42"
        },
        "id": 42
      },
      "@pooltogether/v4-core/contracts/Reserve.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/Reserve.sol",
          "exportedSymbols": {
            "Address": [
              1775
            ],
            "IERC20": [
              890
            ],
            "IReserve": [
              11618
            ],
            "Manageable": [
              5200
            ],
            "ObservationLib": [
              12204
            ],
            "OverflowSafeComparatorLib": [
              12376
            ],
            "Ownable": [
              5355
            ],
            "Reserve": [
              9625
            ],
            "RingBufferLib": [
              12461
            ],
            "SafeCast": [
              3225
            ],
            "SafeERC20": [
              1344
            ]
          },
          "id": 9626,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 9171,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:43"
            },
            {
              "absolutePath": "@pooltogether/owner-manager-contracts/contracts/Manageable.sol",
              "file": "@pooltogether/owner-manager-contracts/contracts/Manageable.sol",
              "id": 9172,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 9626,
              "sourceUnit": 5201,
              "src": "61:72:43",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "id": 9173,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 9626,
              "sourceUnit": 891,
              "src": "134:56:43",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol",
              "id": 9174,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 9626,
              "sourceUnit": 1345,
              "src": "191:65:43",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IReserve.sol",
              "file": "./interfaces/IReserve.sol",
              "id": 9175,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 9626,
              "sourceUnit": 11619,
              "src": "258:35:43",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/libraries/ObservationLib.sol",
              "file": "./libraries/ObservationLib.sol",
              "id": 9176,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 9626,
              "sourceUnit": 12205,
              "src": "294:40:43",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/libraries/RingBufferLib.sol",
              "file": "./libraries/RingBufferLib.sol",
              "id": 9177,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 9626,
              "sourceUnit": 12462,
              "src": "335:39:43",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 9179,
                    "name": "IReserve",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 11618,
                    "src": "1319:8:43"
                  },
                  "id": 9180,
                  "nodeType": "InheritanceSpecifier",
                  "src": "1319:8:43"
                },
                {
                  "baseName": {
                    "id": 9181,
                    "name": "Manageable",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 5200,
                    "src": "1329:10:43"
                  },
                  "id": 9182,
                  "nodeType": "InheritanceSpecifier",
                  "src": "1329:10:43"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 9178,
                "nodeType": "StructuredDocumentation",
                "src": "376:922:43",
                "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": 9625,
              "linearizedBaseContracts": [
                9625,
                5200,
                5355,
                11618
              ],
              "name": "Reserve",
              "nameLocation": "1308:7:43",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "id": 9186,
                  "libraryName": {
                    "id": 9183,
                    "name": "SafeERC20",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 1344,
                    "src": "1352:9:43"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "1346:27:43",
                  "typeName": {
                    "id": 9185,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 9184,
                      "name": "IERC20",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 890,
                      "src": "1366:6:43"
                    },
                    "referencedDeclaration": 890,
                    "src": "1366:6:43",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IERC20_$890",
                      "typeString": "contract IERC20"
                    }
                  }
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 9187,
                    "nodeType": "StructuredDocumentation",
                    "src": "1379:23:43",
                    "text": "@notice ERC20 token"
                  },
                  "functionSelector": "fc0c546a",
                  "id": 9190,
                  "mutability": "immutable",
                  "name": "token",
                  "nameLocation": "1431:5:43",
                  "nodeType": "VariableDeclaration",
                  "scope": 9625,
                  "src": "1407:29:43",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IERC20_$890",
                    "typeString": "contract IERC20"
                  },
                  "typeName": {
                    "id": 9189,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 9188,
                      "name": "IERC20",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 890,
                      "src": "1407:6:43"
                    },
                    "referencedDeclaration": 890,
                    "src": "1407:6:43",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IERC20_$890",
                      "typeString": "contract IERC20"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 9191,
                    "nodeType": "StructuredDocumentation",
                    "src": "1443:46:43",
                    "text": "@notice Total withdraw amount from reserve"
                  },
                  "functionSelector": "2d00ddda",
                  "id": 9193,
                  "mutability": "mutable",
                  "name": "withdrawAccumulator",
                  "nameLocation": "1509:19:43",
                  "nodeType": "VariableDeclaration",
                  "scope": 9625,
                  "src": "1494:34:43",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint224",
                    "typeString": "uint224"
                  },
                  "typeName": {
                    "id": 9192,
                    "name": "uint224",
                    "nodeType": "ElementaryTypeName",
                    "src": "1494:7:43",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint224",
                      "typeString": "uint224"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "constant": false,
                  "id": 9195,
                  "mutability": "mutable",
                  "name": "_gap",
                  "nameLocation": "1549:4:43",
                  "nodeType": "VariableDeclaration",
                  "scope": 9625,
                  "src": "1534:19:43",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint32",
                    "typeString": "uint32"
                  },
                  "typeName": {
                    "id": 9194,
                    "name": "uint32",
                    "nodeType": "ElementaryTypeName",
                    "src": "1534:6:43",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint32",
                      "typeString": "uint32"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "id": 9197,
                  "mutability": "mutable",
                  "name": "nextIndex",
                  "nameLocation": "1576:9:43",
                  "nodeType": "VariableDeclaration",
                  "scope": 9625,
                  "src": "1560:25:43",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint24",
                    "typeString": "uint24"
                  },
                  "typeName": {
                    "id": 9196,
                    "name": "uint24",
                    "nodeType": "ElementaryTypeName",
                    "src": "1560:6:43",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint24",
                      "typeString": "uint24"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 9199,
                  "mutability": "mutable",
                  "name": "cardinality",
                  "nameLocation": "1607:11:43",
                  "nodeType": "VariableDeclaration",
                  "scope": 9625,
                  "src": "1591:27:43",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint24",
                    "typeString": "uint24"
                  },
                  "typeName": {
                    "id": 9198,
                    "name": "uint24",
                    "nodeType": "ElementaryTypeName",
                    "src": "1591:6:43",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint24",
                      "typeString": "uint24"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": true,
                  "documentation": {
                    "id": 9200,
                    "nodeType": "StructuredDocumentation",
                    "src": "1625:46:43",
                    "text": "@notice The maximum number of twab entries"
                  },
                  "id": 9203,
                  "mutability": "constant",
                  "name": "MAX_CARDINALITY",
                  "nameLocation": "1701:15:43",
                  "nodeType": "VariableDeclaration",
                  "scope": 9625,
                  "src": "1676:51:43",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint24",
                    "typeString": "uint24"
                  },
                  "typeName": {
                    "id": 9201,
                    "name": "uint24",
                    "nodeType": "ElementaryTypeName",
                    "src": "1676:6:43",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint24",
                      "typeString": "uint24"
                    }
                  },
                  "value": {
                    "hexValue": "3136373737323135",
                    "id": 9202,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "number",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "1719:8:43",
                    "typeDescriptions": {
                      "typeIdentifier": "t_rational_16777215_by_1",
                      "typeString": "int_const 16777215"
                    },
                    "value": "16777215"
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 9208,
                  "mutability": "mutable",
                  "name": "reserveAccumulators",
                  "nameLocation": "1800:19:43",
                  "nodeType": "VariableDeclaration",
                  "scope": 9625,
                  "src": "1747:72:43",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage",
                    "typeString": "struct ObservationLib.Observation[16777215]"
                  },
                  "typeName": {
                    "baseType": {
                      "id": 9205,
                      "nodeType": "UserDefinedTypeName",
                      "pathNode": {
                        "id": 9204,
                        "name": "ObservationLib.Observation",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 12066,
                        "src": "1747:26:43"
                      },
                      "referencedDeclaration": 12066,
                      "src": "1747:26:43",
                      "typeDescriptions": {
                        "typeIdentifier": "t_struct$_Observation_$12066_storage_ptr",
                        "typeString": "struct ObservationLib.Observation"
                      }
                    },
                    "id": 9207,
                    "length": {
                      "id": 9206,
                      "name": "MAX_CARDINALITY",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": 9203,
                      "src": "1774:15:43",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint24",
                        "typeString": "uint24"
                      }
                    },
                    "nodeType": "ArrayTypeName",
                    "src": "1747:43:43",
                    "typeDescriptions": {
                      "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr",
                      "typeString": "struct ObservationLib.Observation[16777215]"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "anonymous": false,
                  "id": 9213,
                  "name": "Deployed",
                  "nameLocation": "1876:8:43",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 9212,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9211,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "token",
                        "nameLocation": "1900:5:43",
                        "nodeType": "VariableDeclaration",
                        "scope": 9213,
                        "src": "1885:20:43",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$890",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 9210,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 9209,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 890,
                            "src": "1885:6:43"
                          },
                          "referencedDeclaration": 890,
                          "src": "1885:6:43",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$890",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1884:22:43"
                  },
                  "src": "1870:37:43"
                },
                {
                  "body": {
                    "id": 9233,
                    "nodeType": "Block",
                    "src": "2164:62:43",
                    "statements": [
                      {
                        "expression": {
                          "id": 9227,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 9225,
                            "name": "token",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9190,
                            "src": "2174:5:43",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IERC20_$890",
                              "typeString": "contract IERC20"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 9226,
                            "name": "_token",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9219,
                            "src": "2182:6:43",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IERC20_$890",
                              "typeString": "contract IERC20"
                            }
                          },
                          "src": "2174:14:43",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$890",
                            "typeString": "contract IERC20"
                          }
                        },
                        "id": 9228,
                        "nodeType": "ExpressionStatement",
                        "src": "2174:14:43"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 9230,
                              "name": "_token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9219,
                              "src": "2212:6:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$890",
                                "typeString": "contract IERC20"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IERC20_$890",
                                "typeString": "contract IERC20"
                              }
                            ],
                            "id": 9229,
                            "name": "Deployed",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9213,
                            "src": "2203:8:43",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_contract$_IERC20_$890_$returns$__$",
                              "typeString": "function (contract IERC20)"
                            }
                          },
                          "id": 9231,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2203:16:43",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 9232,
                        "nodeType": "EmitStatement",
                        "src": "2198:21:43"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 9214,
                    "nodeType": "StructuredDocumentation",
                    "src": "1962:138:43",
                    "text": " @notice Constructs Ticket with passed parameters.\n @param _owner Owner address\n @param _token ERC20 address"
                  },
                  "id": 9234,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 9222,
                          "name": "_owner",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 9216,
                          "src": "2156:6:43",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        }
                      ],
                      "id": 9223,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 9221,
                        "name": "Ownable",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5355,
                        "src": "2148:7:43"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "2148:15:43"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 9220,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9216,
                        "mutability": "mutable",
                        "name": "_owner",
                        "nameLocation": "2125:6:43",
                        "nodeType": "VariableDeclaration",
                        "scope": 9234,
                        "src": "2117:14:43",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 9215,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2117:7:43",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9219,
                        "mutability": "mutable",
                        "name": "_token",
                        "nameLocation": "2140:6:43",
                        "nodeType": "VariableDeclaration",
                        "scope": 9234,
                        "src": "2133:13:43",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$890",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 9218,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 9217,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 890,
                            "src": "2133:6:43"
                          },
                          "referencedDeclaration": 890,
                          "src": "2133:6:43",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$890",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2116:31:43"
                  },
                  "returnParameters": {
                    "id": 9224,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2164:0:43"
                  },
                  "scope": 9625,
                  "src": "2105:121:43",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    11592
                  ],
                  "body": {
                    "id": 9242,
                    "nodeType": "Block",
                    "src": "2357:30:43",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 9239,
                            "name": "_checkpoint",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9557,
                            "src": "2367:11:43",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$__$returns$__$",
                              "typeString": "function ()"
                            }
                          },
                          "id": 9240,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2367:13:43",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 9241,
                        "nodeType": "ExpressionStatement",
                        "src": "2367:13:43"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 9235,
                    "nodeType": "StructuredDocumentation",
                    "src": "2288:24:43",
                    "text": "@inheritdoc IReserve"
                  },
                  "functionSelector": "c2c4c5c1",
                  "id": 9243,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "checkpoint",
                  "nameLocation": "2326:10:43",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 9237,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2348:8:43"
                  },
                  "parameters": {
                    "id": 9236,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2336:2:43"
                  },
                  "returnParameters": {
                    "id": 9238,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2357:0:43"
                  },
                  "scope": 9625,
                  "src": "2317:70:43",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11599
                  ],
                  "body": {
                    "id": 9253,
                    "nodeType": "Block",
                    "src": "2482:29:43",
                    "statements": [
                      {
                        "expression": {
                          "id": 9251,
                          "name": "token",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 9190,
                          "src": "2499:5:43",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$890",
                            "typeString": "contract IERC20"
                          }
                        },
                        "functionReturnParameters": 9250,
                        "id": 9252,
                        "nodeType": "Return",
                        "src": "2492:12:43"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 9244,
                    "nodeType": "StructuredDocumentation",
                    "src": "2393:24:43",
                    "text": "@inheritdoc IReserve"
                  },
                  "functionSelector": "21df0da7",
                  "id": 9254,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getToken",
                  "nameLocation": "2431:8:43",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 9246,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2456:8:43"
                  },
                  "parameters": {
                    "id": 9245,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2439:2:43"
                  },
                  "returnParameters": {
                    "id": 9250,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9249,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 9254,
                        "src": "2474:6:43",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$890",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 9248,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 9247,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 890,
                            "src": "2474:6:43"
                          },
                          "referencedDeclaration": 890,
                          "src": "2474:6:43",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$890",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2473:8:43"
                  },
                  "scope": 9625,
                  "src": "2422:89:43",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11609
                  ],
                  "body": {
                    "id": 9324,
                    "nodeType": "Block",
                    "src": "2707:906:43",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              "id": 9268,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 9266,
                                "name": "_startTimestamp",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 9257,
                                "src": "2725:15:43",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<",
                              "rightExpression": {
                                "id": 9267,
                                "name": "_endTimestamp",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 9259,
                                "src": "2743:13:43",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "src": "2725:31:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "526573657276652f73746172742d6c6573732d7468616e2d656e64",
                              "id": 9269,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2758:29:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_4d84b71e55d064d66bafac0d640c9a3219796f833676f31bba05b3cc08ac0349",
                                "typeString": "literal_string \"Reserve/start-less-than-end\""
                              },
                              "value": "Reserve/start-less-than-end"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_4d84b71e55d064d66bafac0d640c9a3219796f833676f31bba05b3cc08ac0349",
                                "typeString": "literal_string \"Reserve/start-less-than-end\""
                              }
                            ],
                            "id": 9265,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2717:7:43",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 9270,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2717:71:43",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 9271,
                        "nodeType": "ExpressionStatement",
                        "src": "2717:71:43"
                      },
                      {
                        "assignments": [
                          9273
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 9273,
                            "mutability": "mutable",
                            "name": "_cardinality",
                            "nameLocation": "2805:12:43",
                            "nodeType": "VariableDeclaration",
                            "scope": 9324,
                            "src": "2798:19:43",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            },
                            "typeName": {
                              "id": 9272,
                              "name": "uint24",
                              "nodeType": "ElementaryTypeName",
                              "src": "2798:6:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 9275,
                        "initialValue": {
                          "id": 9274,
                          "name": "cardinality",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 9199,
                          "src": "2820:11:43",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2798:33:43"
                      },
                      {
                        "assignments": [
                          9277
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 9277,
                            "mutability": "mutable",
                            "name": "_nextIndex",
                            "nameLocation": "2848:10:43",
                            "nodeType": "VariableDeclaration",
                            "scope": 9324,
                            "src": "2841:17:43",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            },
                            "typeName": {
                              "id": 9276,
                              "name": "uint24",
                              "nodeType": "ElementaryTypeName",
                              "src": "2841:6:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 9279,
                        "initialValue": {
                          "id": 9278,
                          "name": "nextIndex",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 9197,
                          "src": "2861:9:43",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2841:29:43"
                      },
                      {
                        "assignments": [
                          9281,
                          9284
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 9281,
                            "mutability": "mutable",
                            "name": "_newestIndex",
                            "nameLocation": "2889:12:43",
                            "nodeType": "VariableDeclaration",
                            "scope": 9324,
                            "src": "2882:19:43",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            },
                            "typeName": {
                              "id": 9280,
                              "name": "uint24",
                              "nodeType": "ElementaryTypeName",
                              "src": "2882:6:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 9284,
                            "mutability": "mutable",
                            "name": "_newestObservation",
                            "nameLocation": "2937:18:43",
                            "nodeType": "VariableDeclaration",
                            "scope": 9324,
                            "src": "2903:52:43",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            },
                            "typeName": {
                              "id": 9283,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 9282,
                                "name": "ObservationLib.Observation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12066,
                                "src": "2903:26:43"
                              },
                              "referencedDeclaration": 12066,
                              "src": "2903:26:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12066_storage_ptr",
                                "typeString": "struct ObservationLib.Observation"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 9288,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 9286,
                              "name": "_nextIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9277,
                              "src": "2981:10:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            ],
                            "id": 9285,
                            "name": "_getNewestObservation",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9624,
                            "src": "2959:21:43",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_uint24_$returns$_t_uint24_$_t_struct$_Observation_$12066_memory_ptr_$",
                              "typeString": "function (uint24) view returns (uint24,struct ObservationLib.Observation memory)"
                            }
                          },
                          "id": 9287,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2959:33:43",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_uint24_$_t_struct$_Observation_$12066_memory_ptr_$",
                            "typeString": "tuple(uint24,struct ObservationLib.Observation memory)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2881:111:43"
                      },
                      {
                        "assignments": [
                          9290,
                          9293
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 9290,
                            "mutability": "mutable",
                            "name": "_oldestIndex",
                            "nameLocation": "3010:12:43",
                            "nodeType": "VariableDeclaration",
                            "scope": 9324,
                            "src": "3003:19:43",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            },
                            "typeName": {
                              "id": 9289,
                              "name": "uint24",
                              "nodeType": "ElementaryTypeName",
                              "src": "3003:6:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 9293,
                            "mutability": "mutable",
                            "name": "_oldestObservation",
                            "nameLocation": "3058:18:43",
                            "nodeType": "VariableDeclaration",
                            "scope": 9324,
                            "src": "3024:52:43",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            },
                            "typeName": {
                              "id": 9292,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 9291,
                                "name": "ObservationLib.Observation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12066,
                                "src": "3024:26:43"
                              },
                              "referencedDeclaration": 12066,
                              "src": "3024:26:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12066_storage_ptr",
                                "typeString": "struct ObservationLib.Observation"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 9297,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 9295,
                              "name": "_nextIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9277,
                              "src": "3102:10:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            ],
                            "id": 9294,
                            "name": "_getOldestObservation",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9595,
                            "src": "3080:21:43",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_uint24_$returns$_t_uint24_$_t_struct$_Observation_$12066_memory_ptr_$",
                              "typeString": "function (uint24) view returns (uint24,struct ObservationLib.Observation memory)"
                            }
                          },
                          "id": 9296,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3080:33:43",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_uint24_$_t_struct$_Observation_$12066_memory_ptr_$",
                            "typeString": "tuple(uint24,struct ObservationLib.Observation memory)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3002:111:43"
                      },
                      {
                        "assignments": [
                          9299
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 9299,
                            "mutability": "mutable",
                            "name": "_start",
                            "nameLocation": "3132:6:43",
                            "nodeType": "VariableDeclaration",
                            "scope": 9324,
                            "src": "3124:14:43",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint224",
                              "typeString": "uint224"
                            },
                            "typeName": {
                              "id": 9298,
                              "name": "uint224",
                              "nodeType": "ElementaryTypeName",
                              "src": "3124:7:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint224",
                                "typeString": "uint224"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 9308,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 9301,
                              "name": "_newestObservation",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9284,
                              "src": "3179:18:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            {
                              "id": 9302,
                              "name": "_oldestObservation",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9293,
                              "src": "3211:18:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            {
                              "id": 9303,
                              "name": "_newestIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9281,
                              "src": "3243:12:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            {
                              "id": 9304,
                              "name": "_oldestIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9290,
                              "src": "3269:12:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            {
                              "id": 9305,
                              "name": "_cardinality",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9273,
                              "src": "3295:12:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            {
                              "id": 9306,
                              "name": "_startTimestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9257,
                              "src": "3321:15:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              },
                              {
                                "typeIdentifier": "t_struct$_Observation_$12066_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": 9300,
                            "name": "_getReserveAccumulatedAt",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9442,
                            "src": "3141:24:43",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_struct$_Observation_$12066_memory_ptr_$_t_struct$_Observation_$12066_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": 9307,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3141:205:43",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3124:222:43"
                      },
                      {
                        "assignments": [
                          9310
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 9310,
                            "mutability": "mutable",
                            "name": "_end",
                            "nameLocation": "3365:4:43",
                            "nodeType": "VariableDeclaration",
                            "scope": 9324,
                            "src": "3357:12:43",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint224",
                              "typeString": "uint224"
                            },
                            "typeName": {
                              "id": 9309,
                              "name": "uint224",
                              "nodeType": "ElementaryTypeName",
                              "src": "3357:7:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint224",
                                "typeString": "uint224"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 9319,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 9312,
                              "name": "_newestObservation",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9284,
                              "src": "3410:18:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            {
                              "id": 9313,
                              "name": "_oldestObservation",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9293,
                              "src": "3442:18:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            {
                              "id": 9314,
                              "name": "_newestIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9281,
                              "src": "3474:12:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            {
                              "id": 9315,
                              "name": "_oldestIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9290,
                              "src": "3500:12:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            {
                              "id": 9316,
                              "name": "_cardinality",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9273,
                              "src": "3526:12:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            {
                              "id": 9317,
                              "name": "_endTimestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9259,
                              "src": "3552:13:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              },
                              {
                                "typeIdentifier": "t_struct$_Observation_$12066_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": 9311,
                            "name": "_getReserveAccumulatedAt",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9442,
                            "src": "3372:24:43",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_struct$_Observation_$12066_memory_ptr_$_t_struct$_Observation_$12066_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": 9318,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3372:203:43",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3357:218:43"
                      },
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          },
                          "id": 9322,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 9320,
                            "name": "_end",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9310,
                            "src": "3593:4:43",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint224",
                              "typeString": "uint224"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "-",
                          "rightExpression": {
                            "id": 9321,
                            "name": "_start",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9299,
                            "src": "3600:6:43",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint224",
                              "typeString": "uint224"
                            }
                          },
                          "src": "3593:13:43",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "functionReturnParameters": 9264,
                        "id": 9323,
                        "nodeType": "Return",
                        "src": "3586:20:43"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 9255,
                    "nodeType": "StructuredDocumentation",
                    "src": "2517:24:43",
                    "text": "@inheritdoc IReserve"
                  },
                  "functionSelector": "af6a9400",
                  "id": 9325,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getReserveAccumulatedBetween",
                  "nameLocation": "2555:28:43",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 9261,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2668:8:43"
                  },
                  "parameters": {
                    "id": 9260,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9257,
                        "mutability": "mutable",
                        "name": "_startTimestamp",
                        "nameLocation": "2591:15:43",
                        "nodeType": "VariableDeclaration",
                        "scope": 9325,
                        "src": "2584:22:43",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 9256,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2584:6:43",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9259,
                        "mutability": "mutable",
                        "name": "_endTimestamp",
                        "nameLocation": "2615:13:43",
                        "nodeType": "VariableDeclaration",
                        "scope": 9325,
                        "src": "2608:20:43",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 9258,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2608:6:43",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2583:46:43"
                  },
                  "returnParameters": {
                    "id": 9264,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9263,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 9325,
                        "src": "2694:7:43",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        },
                        "typeName": {
                          "id": 9262,
                          "name": "uint224",
                          "nodeType": "ElementaryTypeName",
                          "src": "2694:7:43",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2693:9:43"
                  },
                  "scope": 9625,
                  "src": "2546:1067:43",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11617
                  ],
                  "body": {
                    "id": 9358,
                    "nodeType": "Block",
                    "src": "3742:184:43",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 9336,
                            "name": "_checkpoint",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9557,
                            "src": "3752:11:43",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$__$returns$__$",
                              "typeString": "function ()"
                            }
                          },
                          "id": 9337,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3752:13:43",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 9338,
                        "nodeType": "ExpressionStatement",
                        "src": "3752:13:43"
                      },
                      {
                        "expression": {
                          "id": 9344,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 9339,
                            "name": "withdrawAccumulator",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9193,
                            "src": "3776:19:43",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint224",
                              "typeString": "uint224"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "+=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "id": 9342,
                                "name": "_amount",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 9330,
                                "src": "3807:7:43",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              ],
                              "id": 9341,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "nodeType": "ElementaryTypeNameExpression",
                              "src": "3799:7:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_uint224_$",
                                "typeString": "type(uint224)"
                              },
                              "typeName": {
                                "id": 9340,
                                "name": "uint224",
                                "nodeType": "ElementaryTypeName",
                                "src": "3799:7:43",
                                "typeDescriptions": {}
                              }
                            },
                            "id": 9343,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "typeConversion",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "3799:16:43",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint224",
                              "typeString": "uint224"
                            }
                          },
                          "src": "3776:39:43",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "id": 9345,
                        "nodeType": "ExpressionStatement",
                        "src": "3776:39:43"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 9349,
                              "name": "_recipient",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9328,
                              "src": "3853:10:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 9350,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9330,
                              "src": "3865:7:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "id": 9346,
                              "name": "token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9190,
                              "src": "3834:5:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$890",
                                "typeString": "contract IERC20"
                              }
                            },
                            "id": 9348,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "safeTransfer",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 1151,
                            "src": "3834:18:43",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20_$890_$_t_address_$_t_uint256_$returns$__$bound_to$_t_contract$_IERC20_$890_$",
                              "typeString": "function (contract IERC20,address,uint256)"
                            }
                          },
                          "id": 9351,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3834:39:43",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 9352,
                        "nodeType": "ExpressionStatement",
                        "src": "3834:39:43"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 9354,
                              "name": "_recipient",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9328,
                              "src": "3899:10:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 9355,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9330,
                              "src": "3911:7:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 9353,
                            "name": "Withdrawn",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11588,
                            "src": "3889:9:43",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256)"
                            }
                          },
                          "id": 9356,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3889:30:43",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 9357,
                        "nodeType": "EmitStatement",
                        "src": "3884:35:43"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 9326,
                    "nodeType": "StructuredDocumentation",
                    "src": "3619:24:43",
                    "text": "@inheritdoc IReserve"
                  },
                  "functionSelector": "205c2878",
                  "id": 9359,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 9334,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 9333,
                        "name": "onlyManagerOrOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5199,
                        "src": "3723:18:43"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "3723:18:43"
                    }
                  ],
                  "name": "withdrawTo",
                  "nameLocation": "3657:10:43",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 9332,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3714:8:43"
                  },
                  "parameters": {
                    "id": 9331,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9328,
                        "mutability": "mutable",
                        "name": "_recipient",
                        "nameLocation": "3676:10:43",
                        "nodeType": "VariableDeclaration",
                        "scope": 9359,
                        "src": "3668:18:43",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 9327,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3668:7:43",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9330,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "3696:7:43",
                        "nodeType": "VariableDeclaration",
                        "scope": 9359,
                        "src": "3688:15:43",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 9329,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3688:7:43",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3667:37:43"
                  },
                  "returnParameters": {
                    "id": 9335,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3742:0:43"
                  },
                  "scope": 9625,
                  "src": "3648:278:43",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 9441,
                    "nodeType": "Block",
                    "src": "4881:2221:43",
                    "statements": [
                      {
                        "assignments": [
                          9380
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 9380,
                            "mutability": "mutable",
                            "name": "timeNow",
                            "nameLocation": "4898:7:43",
                            "nodeType": "VariableDeclaration",
                            "scope": 9441,
                            "src": "4891:14:43",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "typeName": {
                              "id": 9379,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "4891:6:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 9386,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 9383,
                                "name": "block",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -4,
                                "src": "4915:5:43",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_block",
                                  "typeString": "block"
                                }
                              },
                              "id": 9384,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "timestamp",
                              "nodeType": "MemberAccess",
                              "src": "4915:15:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 9382,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "4908:6:43",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint32_$",
                              "typeString": "type(uint32)"
                            },
                            "typeName": {
                              "id": 9381,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "4908:6:43",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 9385,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4908:23:43",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4891:40:43"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          },
                          "id": 9389,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 9387,
                            "name": "_cardinality",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9372,
                            "src": "4990:12:43",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 9388,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "5006:1:43",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "4990:17:43",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 9392,
                        "nodeType": "IfStatement",
                        "src": "4986:31:43",
                        "trueBody": {
                          "expression": {
                            "hexValue": "30",
                            "id": 9390,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "5016:1:43",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "functionReturnParameters": 9378,
                          "id": 9391,
                          "nodeType": "Return",
                          "src": "5009:8:43"
                        }
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          },
                          "id": 9396,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 9393,
                              "name": "_oldestObservation",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9366,
                              "src": "5689:18:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            "id": 9394,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "timestamp",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12065,
                            "src": "5689:28:43",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": ">",
                          "rightExpression": {
                            "id": 9395,
                            "name": "_timestamp",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9374,
                            "src": "5720:10:43",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "5689:41:43",
                          "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": 9400,
                        "nodeType": "IfStatement",
                        "src": "5685:80:43",
                        "trueBody": {
                          "id": 9399,
                          "nodeType": "Block",
                          "src": "5732:33:43",
                          "statements": [
                            {
                              "expression": {
                                "hexValue": "30",
                                "id": 9397,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "5753:1:43",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "functionReturnParameters": 9378,
                              "id": 9398,
                              "nodeType": "Return",
                              "src": "5746:8:43"
                            }
                          ]
                        }
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          },
                          "id": 9404,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 9401,
                              "name": "_newestObservation",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9363,
                              "src": "6001:18:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            "id": 9402,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "timestamp",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12065,
                            "src": "6001:28:43",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<=",
                          "rightExpression": {
                            "id": 9403,
                            "name": "_timestamp",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9374,
                            "src": "6033:10:43",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "6001:42:43",
                          "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": 9409,
                        "nodeType": "IfStatement",
                        "src": "5997:105:43",
                        "trueBody": {
                          "id": 9408,
                          "nodeType": "Block",
                          "src": "6045:57:43",
                          "statements": [
                            {
                              "expression": {
                                "expression": {
                                  "id": 9405,
                                  "name": "_newestObservation",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 9363,
                                  "src": "6066:18:43",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                    "typeString": "struct ObservationLib.Observation memory"
                                  }
                                },
                                "id": 9406,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "amount",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 12063,
                                "src": "6066:25:43",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                }
                              },
                              "functionReturnParameters": 9378,
                              "id": 9407,
                              "nodeType": "Return",
                              "src": "6059:32:43"
                            }
                          ]
                        }
                      },
                      {
                        "assignments": [
                          9414,
                          9417
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 9414,
                            "mutability": "mutable",
                            "name": "beforeOrAt",
                            "nameLocation": "6323:10:43",
                            "nodeType": "VariableDeclaration",
                            "scope": 9441,
                            "src": "6289:44:43",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            },
                            "typeName": {
                              "id": 9413,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 9412,
                                "name": "ObservationLib.Observation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12066,
                                "src": "6289:26:43"
                              },
                              "referencedDeclaration": 12066,
                              "src": "6289:26:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12066_storage_ptr",
                                "typeString": "struct ObservationLib.Observation"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 9417,
                            "mutability": "mutable",
                            "name": "atOrAfter",
                            "nameLocation": "6381:9:43",
                            "nodeType": "VariableDeclaration",
                            "scope": 9441,
                            "src": "6347:43:43",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            },
                            "typeName": {
                              "id": 9416,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 9415,
                                "name": "ObservationLib.Observation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12066,
                                "src": "6347:26:43"
                              },
                              "referencedDeclaration": 12066,
                              "src": "6347:26:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12066_storage_ptr",
                                "typeString": "struct ObservationLib.Observation"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 9427,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 9420,
                              "name": "reserveAccumulators",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9208,
                              "src": "6448:19:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                              }
                            },
                            {
                              "id": 9421,
                              "name": "_newestIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9368,
                              "src": "6485:12:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            {
                              "id": 9422,
                              "name": "_oldestIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9370,
                              "src": "6515:12:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            {
                              "id": 9423,
                              "name": "_timestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9374,
                              "src": "6545:10:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 9424,
                              "name": "_cardinality",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9372,
                              "src": "6573:12:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            {
                              "id": 9425,
                              "name": "timeNow",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9380,
                              "src": "6603:7:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12066_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": 9418,
                              "name": "ObservationLib",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12204,
                              "src": "6403:14:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_ObservationLib_$12204_$",
                                "typeString": "type(library ObservationLib)"
                              }
                            },
                            "id": 9419,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "binarySearch",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12203,
                            "src": "6403:27:43",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr_$_t_uint24_$_t_uint24_$_t_uint32_$_t_uint24_$_t_uint32_$returns$_t_struct$_Observation_$12066_memory_ptr_$_t_struct$_Observation_$12066_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": 9426,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6403:221:43",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_struct$_Observation_$12066_memory_ptr_$_t_struct$_Observation_$12066_memory_ptr_$",
                            "typeString": "tuple(struct ObservationLib.Observation memory,struct ObservationLib.Observation memory)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "6275:349:43"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          },
                          "id": 9431,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 9428,
                              "name": "atOrAfter",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9417,
                              "src": "6958:9:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            "id": 9429,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "timestamp",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12065,
                            "src": "6958:19:43",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "id": 9430,
                            "name": "_timestamp",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9374,
                            "src": "6981:10:43",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "6958:33:43",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "falseBody": {
                          "id": 9439,
                          "nodeType": "Block",
                          "src": "7047:49:43",
                          "statements": [
                            {
                              "expression": {
                                "expression": {
                                  "id": 9436,
                                  "name": "beforeOrAt",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 9414,
                                  "src": "7068:10:43",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                    "typeString": "struct ObservationLib.Observation memory"
                                  }
                                },
                                "id": 9437,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "amount",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 12063,
                                "src": "7068:17:43",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                }
                              },
                              "functionReturnParameters": 9378,
                              "id": 9438,
                              "nodeType": "Return",
                              "src": "7061:24:43"
                            }
                          ]
                        },
                        "id": 9440,
                        "nodeType": "IfStatement",
                        "src": "6954:142:43",
                        "trueBody": {
                          "id": 9435,
                          "nodeType": "Block",
                          "src": "6993:48:43",
                          "statements": [
                            {
                              "expression": {
                                "expression": {
                                  "id": 9432,
                                  "name": "atOrAfter",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 9417,
                                  "src": "7014:9:43",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                    "typeString": "struct ObservationLib.Observation memory"
                                  }
                                },
                                "id": 9433,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "amount",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 12063,
                                "src": "7014:16:43",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                }
                              },
                              "functionReturnParameters": 9378,
                              "id": 9434,
                              "nodeType": "Return",
                              "src": "7007:23:43"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 9360,
                    "nodeType": "StructuredDocumentation",
                    "src": "3988:578:43",
                    "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": 9442,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_getReserveAccumulatedAt",
                  "nameLocation": "4580:24:43",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 9375,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9363,
                        "mutability": "mutable",
                        "name": "_newestObservation",
                        "nameLocation": "4648:18:43",
                        "nodeType": "VariableDeclaration",
                        "scope": 9442,
                        "src": "4614:52:43",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 9362,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 9361,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12066,
                            "src": "4614:26:43"
                          },
                          "referencedDeclaration": 12066,
                          "src": "4614:26:43",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12066_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9366,
                        "mutability": "mutable",
                        "name": "_oldestObservation",
                        "nameLocation": "4710:18:43",
                        "nodeType": "VariableDeclaration",
                        "scope": 9442,
                        "src": "4676:52:43",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 9365,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 9364,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12066,
                            "src": "4676:26:43"
                          },
                          "referencedDeclaration": 12066,
                          "src": "4676:26:43",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12066_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9368,
                        "mutability": "mutable",
                        "name": "_newestIndex",
                        "nameLocation": "4745:12:43",
                        "nodeType": "VariableDeclaration",
                        "scope": 9442,
                        "src": "4738:19:43",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint24",
                          "typeString": "uint24"
                        },
                        "typeName": {
                          "id": 9367,
                          "name": "uint24",
                          "nodeType": "ElementaryTypeName",
                          "src": "4738:6:43",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9370,
                        "mutability": "mutable",
                        "name": "_oldestIndex",
                        "nameLocation": "4774:12:43",
                        "nodeType": "VariableDeclaration",
                        "scope": 9442,
                        "src": "4767:19:43",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint24",
                          "typeString": "uint24"
                        },
                        "typeName": {
                          "id": 9369,
                          "name": "uint24",
                          "nodeType": "ElementaryTypeName",
                          "src": "4767:6:43",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9372,
                        "mutability": "mutable",
                        "name": "_cardinality",
                        "nameLocation": "4803:12:43",
                        "nodeType": "VariableDeclaration",
                        "scope": 9442,
                        "src": "4796:19:43",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint24",
                          "typeString": "uint24"
                        },
                        "typeName": {
                          "id": 9371,
                          "name": "uint24",
                          "nodeType": "ElementaryTypeName",
                          "src": "4796:6:43",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9374,
                        "mutability": "mutable",
                        "name": "_timestamp",
                        "nameLocation": "4832:10:43",
                        "nodeType": "VariableDeclaration",
                        "scope": 9442,
                        "src": "4825:17:43",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 9373,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4825:6:43",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4604:244:43"
                  },
                  "returnParameters": {
                    "id": 9378,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9377,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 9442,
                        "src": "4872:7:43",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        },
                        "typeName": {
                          "id": 9376,
                          "name": "uint224",
                          "nodeType": "ElementaryTypeName",
                          "src": "4872:7:43",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4871:9:43"
                  },
                  "scope": 9625,
                  "src": "4571:2531:43",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 9556,
                    "nodeType": "Block",
                    "src": "7202:1925:43",
                    "statements": [
                      {
                        "assignments": [
                          9447
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 9447,
                            "mutability": "mutable",
                            "name": "_cardinality",
                            "nameLocation": "7219:12:43",
                            "nodeType": "VariableDeclaration",
                            "scope": 9556,
                            "src": "7212:19:43",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            },
                            "typeName": {
                              "id": 9446,
                              "name": "uint24",
                              "nodeType": "ElementaryTypeName",
                              "src": "7212:6:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 9449,
                        "initialValue": {
                          "id": 9448,
                          "name": "cardinality",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 9199,
                          "src": "7234:11:43",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7212:33:43"
                      },
                      {
                        "assignments": [
                          9451
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 9451,
                            "mutability": "mutable",
                            "name": "_nextIndex",
                            "nameLocation": "7262:10:43",
                            "nodeType": "VariableDeclaration",
                            "scope": 9556,
                            "src": "7255:17:43",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            },
                            "typeName": {
                              "id": 9450,
                              "name": "uint24",
                              "nodeType": "ElementaryTypeName",
                              "src": "7255:6:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 9453,
                        "initialValue": {
                          "id": 9452,
                          "name": "nextIndex",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 9197,
                          "src": "7275:9:43",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7255:29:43"
                      },
                      {
                        "assignments": [
                          9455
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 9455,
                            "mutability": "mutable",
                            "name": "_balanceOfReserve",
                            "nameLocation": "7302:17:43",
                            "nodeType": "VariableDeclaration",
                            "scope": 9556,
                            "src": "7294:25:43",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 9454,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "7294:7:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 9463,
                        "initialValue": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 9460,
                                  "name": "this",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -28,
                                  "src": "7346:4:43",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_Reserve_$9625",
                                    "typeString": "contract Reserve"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_Reserve_$9625",
                                    "typeString": "contract Reserve"
                                  }
                                ],
                                "id": 9459,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "7338:7:43",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 9458,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "7338:7:43",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 9461,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "7338:13:43",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "expression": {
                              "id": 9456,
                              "name": "token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9190,
                              "src": "7322:5:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$890",
                                "typeString": "contract IERC20"
                              }
                            },
                            "id": 9457,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "balanceOf",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 829,
                            "src": "7322:15:43",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$_t_address_$returns$_t_uint256_$",
                              "typeString": "function (address) view external returns (uint256)"
                            }
                          },
                          "id": 9462,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7322:30:43",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7294:58:43"
                      },
                      {
                        "assignments": [
                          9465
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 9465,
                            "mutability": "mutable",
                            "name": "_withdrawAccumulator",
                            "nameLocation": "7370:20:43",
                            "nodeType": "VariableDeclaration",
                            "scope": 9556,
                            "src": "7362:28:43",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint224",
                              "typeString": "uint224"
                            },
                            "typeName": {
                              "id": 9464,
                              "name": "uint224",
                              "nodeType": "ElementaryTypeName",
                              "src": "7362:7:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint224",
                                "typeString": "uint224"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 9467,
                        "initialValue": {
                          "id": 9466,
                          "name": "withdrawAccumulator",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 9193,
                          "src": "7393:19:43",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7362:50:43"
                      },
                      {
                        "assignments": [
                          9469,
                          9472
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 9469,
                            "mutability": "mutable",
                            "name": "newestIndex",
                            "nameLocation": "7438:11:43",
                            "nodeType": "VariableDeclaration",
                            "scope": 9556,
                            "src": "7431:18:43",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            },
                            "typeName": {
                              "id": 9468,
                              "name": "uint24",
                              "nodeType": "ElementaryTypeName",
                              "src": "7431:6:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 9472,
                            "mutability": "mutable",
                            "name": "newestObservation",
                            "nameLocation": "7485:17:43",
                            "nodeType": "VariableDeclaration",
                            "scope": 9556,
                            "src": "7451:51:43",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            },
                            "typeName": {
                              "id": 9471,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 9470,
                                "name": "ObservationLib.Observation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12066,
                                "src": "7451:26:43"
                              },
                              "referencedDeclaration": 12066,
                              "src": "7451:26:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12066_storage_ptr",
                                "typeString": "struct ObservationLib.Observation"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 9476,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 9474,
                              "name": "_nextIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9451,
                              "src": "7528:10:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            ],
                            "id": 9473,
                            "name": "_getNewestObservation",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9624,
                            "src": "7506:21:43",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_uint24_$returns$_t_uint24_$_t_struct$_Observation_$12066_memory_ptr_$",
                              "typeString": "function (uint24) view returns (uint24,struct ObservationLib.Observation memory)"
                            }
                          },
                          "id": 9475,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7506:33:43",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_uint24_$_t_struct$_Observation_$12066_memory_ptr_$",
                            "typeString": "tuple(uint24,struct ObservationLib.Observation memory)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7430:109:43"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 9482,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "id": 9479,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 9477,
                              "name": "_balanceOfReserve",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9455,
                              "src": "7774:17:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "+",
                            "rightExpression": {
                              "id": 9478,
                              "name": "_withdrawAccumulator",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9465,
                              "src": "7794:20:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint224",
                                "typeString": "uint224"
                              }
                            },
                            "src": "7774:40:43",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": ">",
                          "rightExpression": {
                            "expression": {
                              "id": 9480,
                              "name": "newestObservation",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9472,
                              "src": "7817:17:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            "id": 9481,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "amount",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12063,
                            "src": "7817:24:43",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint224",
                              "typeString": "uint224"
                            }
                          },
                          "src": "7774:67:43",
                          "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": 9555,
                        "nodeType": "IfStatement",
                        "src": "7770:1351:43",
                        "trueBody": {
                          "id": 9554,
                          "nodeType": "Block",
                          "src": "7843:1278:43",
                          "statements": [
                            {
                              "assignments": [
                                9484
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 9484,
                                  "mutability": "mutable",
                                  "name": "nowTime",
                                  "nameLocation": "7864:7:43",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 9554,
                                  "src": "7857:14:43",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  },
                                  "typeName": {
                                    "id": 9483,
                                    "name": "uint32",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "7857:6:43",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 9490,
                              "initialValue": {
                                "arguments": [
                                  {
                                    "expression": {
                                      "id": 9487,
                                      "name": "block",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -4,
                                      "src": "7881:5:43",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_magic_block",
                                        "typeString": "block"
                                      }
                                    },
                                    "id": 9488,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "timestamp",
                                    "nodeType": "MemberAccess",
                                    "src": "7881:15:43",
                                    "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": "7874:6:43",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_uint32_$",
                                    "typeString": "type(uint32)"
                                  },
                                  "typeName": {
                                    "id": 9485,
                                    "name": "uint32",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "7874:6:43",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 9489,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "7874:23:43",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "7857:40:43"
                            },
                            {
                              "assignments": [
                                9492
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 9492,
                                  "mutability": "mutable",
                                  "name": "newReserveAccumulator",
                                  "nameLocation": "7991:21:43",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 9554,
                                  "src": "7983:29:43",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint224",
                                    "typeString": "uint224"
                                  },
                                  "typeName": {
                                    "id": 9491,
                                    "name": "uint224",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "7983:7:43",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint224",
                                      "typeString": "uint224"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 9499,
                              "initialValue": {
                                "commonType": {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                },
                                "id": 9498,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "arguments": [
                                    {
                                      "id": 9495,
                                      "name": "_balanceOfReserve",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 9455,
                                      "src": "8023:17:43",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    ],
                                    "id": 9494,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "ElementaryTypeNameExpression",
                                    "src": "8015:7:43",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_uint224_$",
                                      "typeString": "type(uint224)"
                                    },
                                    "typeName": {
                                      "id": 9493,
                                      "name": "uint224",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "8015:7:43",
                                      "typeDescriptions": {}
                                    }
                                  },
                                  "id": 9496,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "typeConversion",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "8015:26:43",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint224",
                                    "typeString": "uint224"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "+",
                                "rightExpression": {
                                  "id": 9497,
                                  "name": "_withdrawAccumulator",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 9465,
                                  "src": "8044:20:43",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint224",
                                    "typeString": "uint224"
                                  }
                                },
                                "src": "8015:49:43",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                }
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "7983:81:43"
                            },
                            {
                              "condition": {
                                "commonType": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                },
                                "id": 9503,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "expression": {
                                    "id": 9500,
                                    "name": "newestObservation",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 9472,
                                    "src": "8215:17:43",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                      "typeString": "struct ObservationLib.Observation memory"
                                    }
                                  },
                                  "id": 9501,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "timestamp",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 12065,
                                  "src": "8215:27:43",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "!=",
                                "rightExpression": {
                                  "id": 9502,
                                  "name": "nowTime",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 9484,
                                  "src": "8246:7:43",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                "src": "8215:38:43",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "falseBody": {
                                "id": 9547,
                                "nodeType": "Block",
                                "src": "8831:205:43",
                                "statements": [
                                  {
                                    "expression": {
                                      "id": 9545,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftHandSide": {
                                        "baseExpression": {
                                          "id": 9537,
                                          "name": "reserveAccumulators",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 9208,
                                          "src": "8849:19:43",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage",
                                            "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                                          }
                                        },
                                        "id": 9539,
                                        "indexExpression": {
                                          "id": 9538,
                                          "name": "newestIndex",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 9469,
                                          "src": "8869:11:43",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint24",
                                            "typeString": "uint24"
                                          }
                                        },
                                        "isConstant": false,
                                        "isLValue": true,
                                        "isPure": false,
                                        "lValueRequested": true,
                                        "nodeType": "IndexAccess",
                                        "src": "8849:32:43",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_Observation_$12066_storage",
                                          "typeString": "struct ObservationLib.Observation storage ref"
                                        }
                                      },
                                      "nodeType": "Assignment",
                                      "operator": "=",
                                      "rightHandSide": {
                                        "arguments": [
                                          {
                                            "id": 9542,
                                            "name": "newReserveAccumulator",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 9492,
                                            "src": "8941:21:43",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint224",
                                              "typeString": "uint224"
                                            }
                                          },
                                          {
                                            "id": 9543,
                                            "name": "nowTime",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 9484,
                                            "src": "8995:7:43",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint32",
                                              "typeString": "uint32"
                                            }
                                          }
                                        ],
                                        "expression": {
                                          "argumentTypes": [
                                            {
                                              "typeIdentifier": "t_uint224",
                                              "typeString": "uint224"
                                            },
                                            {
                                              "typeIdentifier": "t_uint32",
                                              "typeString": "uint32"
                                            }
                                          ],
                                          "expression": {
                                            "id": 9540,
                                            "name": "ObservationLib",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 12204,
                                            "src": "8884:14:43",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_type$_t_contract$_ObservationLib_$12204_$",
                                              "typeString": "type(library ObservationLib)"
                                            }
                                          },
                                          "id": 9541,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "memberName": "Observation",
                                          "nodeType": "MemberAccess",
                                          "referencedDeclaration": 12066,
                                          "src": "8884:26:43",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_type$_t_struct$_Observation_$12066_storage_ptr_$",
                                            "typeString": "type(struct ObservationLib.Observation storage pointer)"
                                          }
                                        },
                                        "id": 9544,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "kind": "structConstructorCall",
                                        "lValueRequested": false,
                                        "names": [
                                          "amount",
                                          "timestamp"
                                        ],
                                        "nodeType": "FunctionCall",
                                        "src": "8884:137:43",
                                        "tryCall": false,
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                          "typeString": "struct ObservationLib.Observation memory"
                                        }
                                      },
                                      "src": "8849:172:43",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_Observation_$12066_storage",
                                        "typeString": "struct ObservationLib.Observation storage ref"
                                      }
                                    },
                                    "id": 9546,
                                    "nodeType": "ExpressionStatement",
                                    "src": "8849:172:43"
                                  }
                                ]
                              },
                              "id": 9548,
                              "nodeType": "IfStatement",
                              "src": "8211:825:43",
                              "trueBody": {
                                "id": 9536,
                                "nodeType": "Block",
                                "src": "8255:418:43",
                                "statements": [
                                  {
                                    "expression": {
                                      "id": 9512,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftHandSide": {
                                        "baseExpression": {
                                          "id": 9504,
                                          "name": "reserveAccumulators",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 9208,
                                          "src": "8273:19:43",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage",
                                            "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                                          }
                                        },
                                        "id": 9506,
                                        "indexExpression": {
                                          "id": 9505,
                                          "name": "_nextIndex",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 9451,
                                          "src": "8293:10:43",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint24",
                                            "typeString": "uint24"
                                          }
                                        },
                                        "isConstant": false,
                                        "isLValue": true,
                                        "isPure": false,
                                        "lValueRequested": true,
                                        "nodeType": "IndexAccess",
                                        "src": "8273:31:43",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_Observation_$12066_storage",
                                          "typeString": "struct ObservationLib.Observation storage ref"
                                        }
                                      },
                                      "nodeType": "Assignment",
                                      "operator": "=",
                                      "rightHandSide": {
                                        "arguments": [
                                          {
                                            "id": 9509,
                                            "name": "newReserveAccumulator",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 9492,
                                            "src": "8364:21:43",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint224",
                                              "typeString": "uint224"
                                            }
                                          },
                                          {
                                            "id": 9510,
                                            "name": "nowTime",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 9484,
                                            "src": "8418:7:43",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint32",
                                              "typeString": "uint32"
                                            }
                                          }
                                        ],
                                        "expression": {
                                          "argumentTypes": [
                                            {
                                              "typeIdentifier": "t_uint224",
                                              "typeString": "uint224"
                                            },
                                            {
                                              "typeIdentifier": "t_uint32",
                                              "typeString": "uint32"
                                            }
                                          ],
                                          "expression": {
                                            "id": 9507,
                                            "name": "ObservationLib",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 12204,
                                            "src": "8307:14:43",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_type$_t_contract$_ObservationLib_$12204_$",
                                              "typeString": "type(library ObservationLib)"
                                            }
                                          },
                                          "id": 9508,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "memberName": "Observation",
                                          "nodeType": "MemberAccess",
                                          "referencedDeclaration": 12066,
                                          "src": "8307:26:43",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_type$_t_struct$_Observation_$12066_storage_ptr_$",
                                            "typeString": "type(struct ObservationLib.Observation storage pointer)"
                                          }
                                        },
                                        "id": 9511,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "kind": "structConstructorCall",
                                        "lValueRequested": false,
                                        "names": [
                                          "amount",
                                          "timestamp"
                                        ],
                                        "nodeType": "FunctionCall",
                                        "src": "8307:137:43",
                                        "tryCall": false,
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                          "typeString": "struct ObservationLib.Observation memory"
                                        }
                                      },
                                      "src": "8273:171:43",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_Observation_$12066_storage",
                                        "typeString": "struct ObservationLib.Observation storage ref"
                                      }
                                    },
                                    "id": 9513,
                                    "nodeType": "ExpressionStatement",
                                    "src": "8273:171:43"
                                  },
                                  {
                                    "expression": {
                                      "id": 9523,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftHandSide": {
                                        "id": 9514,
                                        "name": "nextIndex",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 9197,
                                        "src": "8462:9:43",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint24",
                                          "typeString": "uint24"
                                        }
                                      },
                                      "nodeType": "Assignment",
                                      "operator": "=",
                                      "rightHandSide": {
                                        "arguments": [
                                          {
                                            "arguments": [
                                              {
                                                "id": 9519,
                                                "name": "_nextIndex",
                                                "nodeType": "Identifier",
                                                "overloadedDeclarations": [],
                                                "referencedDeclaration": 9451,
                                                "src": "8505:10:43",
                                                "typeDescriptions": {
                                                  "typeIdentifier": "t_uint24",
                                                  "typeString": "uint24"
                                                }
                                              },
                                              {
                                                "id": 9520,
                                                "name": "MAX_CARDINALITY",
                                                "nodeType": "Identifier",
                                                "overloadedDeclarations": [],
                                                "referencedDeclaration": 9203,
                                                "src": "8517:15:43",
                                                "typeDescriptions": {
                                                  "typeIdentifier": "t_uint24",
                                                  "typeString": "uint24"
                                                }
                                              }
                                            ],
                                            "expression": {
                                              "argumentTypes": [
                                                {
                                                  "typeIdentifier": "t_uint24",
                                                  "typeString": "uint24"
                                                },
                                                {
                                                  "typeIdentifier": "t_uint24",
                                                  "typeString": "uint24"
                                                }
                                              ],
                                              "expression": {
                                                "id": 9517,
                                                "name": "RingBufferLib",
                                                "nodeType": "Identifier",
                                                "overloadedDeclarations": [],
                                                "referencedDeclaration": 12461,
                                                "src": "8481:13:43",
                                                "typeDescriptions": {
                                                  "typeIdentifier": "t_type$_t_contract$_RingBufferLib_$12461_$",
                                                  "typeString": "type(library RingBufferLib)"
                                                }
                                              },
                                              "id": 9518,
                                              "isConstant": false,
                                              "isLValue": false,
                                              "isPure": false,
                                              "lValueRequested": false,
                                              "memberName": "nextIndex",
                                              "nodeType": "MemberAccess",
                                              "referencedDeclaration": 12460,
                                              "src": "8481:23:43",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$",
                                                "typeString": "function (uint256,uint256) pure returns (uint256)"
                                              }
                                            },
                                            "id": 9521,
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": false,
                                            "kind": "functionCall",
                                            "lValueRequested": false,
                                            "names": [],
                                            "nodeType": "FunctionCall",
                                            "src": "8481:52:43",
                                            "tryCall": false,
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            }
                                          }
                                        ],
                                        "expression": {
                                          "argumentTypes": [
                                            {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            }
                                          ],
                                          "id": 9516,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": true,
                                          "lValueRequested": false,
                                          "nodeType": "ElementaryTypeNameExpression",
                                          "src": "8474:6:43",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_type$_t_uint24_$",
                                            "typeString": "type(uint24)"
                                          },
                                          "typeName": {
                                            "id": 9515,
                                            "name": "uint24",
                                            "nodeType": "ElementaryTypeName",
                                            "src": "8474:6:43",
                                            "typeDescriptions": {}
                                          }
                                        },
                                        "id": 9522,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "kind": "typeConversion",
                                        "lValueRequested": false,
                                        "names": [],
                                        "nodeType": "FunctionCall",
                                        "src": "8474:60:43",
                                        "tryCall": false,
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint24",
                                          "typeString": "uint24"
                                        }
                                      },
                                      "src": "8462:72:43",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint24",
                                        "typeString": "uint24"
                                      }
                                    },
                                    "id": 9524,
                                    "nodeType": "ExpressionStatement",
                                    "src": "8462:72:43"
                                  },
                                  {
                                    "condition": {
                                      "commonType": {
                                        "typeIdentifier": "t_uint24",
                                        "typeString": "uint24"
                                      },
                                      "id": 9527,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "id": 9525,
                                        "name": "_cardinality",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 9447,
                                        "src": "8556:12:43",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint24",
                                          "typeString": "uint24"
                                        }
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": "<",
                                      "rightExpression": {
                                        "id": 9526,
                                        "name": "MAX_CARDINALITY",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 9203,
                                        "src": "8571:15:43",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint24",
                                          "typeString": "uint24"
                                        }
                                      },
                                      "src": "8556:30:43",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_bool",
                                        "typeString": "bool"
                                      }
                                    },
                                    "id": 9535,
                                    "nodeType": "IfStatement",
                                    "src": "8552:107:43",
                                    "trueBody": {
                                      "id": 9534,
                                      "nodeType": "Block",
                                      "src": "8588:71:43",
                                      "statements": [
                                        {
                                          "expression": {
                                            "id": 9532,
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": false,
                                            "lValueRequested": false,
                                            "leftHandSide": {
                                              "id": 9528,
                                              "name": "cardinality",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 9199,
                                              "src": "8610:11:43",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_uint24",
                                                "typeString": "uint24"
                                              }
                                            },
                                            "nodeType": "Assignment",
                                            "operator": "=",
                                            "rightHandSide": {
                                              "commonType": {
                                                "typeIdentifier": "t_uint24",
                                                "typeString": "uint24"
                                              },
                                              "id": 9531,
                                              "isConstant": false,
                                              "isLValue": false,
                                              "isPure": false,
                                              "lValueRequested": false,
                                              "leftExpression": {
                                                "id": 9529,
                                                "name": "_cardinality",
                                                "nodeType": "Identifier",
                                                "overloadedDeclarations": [],
                                                "referencedDeclaration": 9447,
                                                "src": "8624:12:43",
                                                "typeDescriptions": {
                                                  "typeIdentifier": "t_uint24",
                                                  "typeString": "uint24"
                                                }
                                              },
                                              "nodeType": "BinaryOperation",
                                              "operator": "+",
                                              "rightExpression": {
                                                "hexValue": "31",
                                                "id": 9530,
                                                "isConstant": false,
                                                "isLValue": false,
                                                "isPure": true,
                                                "kind": "number",
                                                "lValueRequested": false,
                                                "nodeType": "Literal",
                                                "src": "8639:1:43",
                                                "typeDescriptions": {
                                                  "typeIdentifier": "t_rational_1_by_1",
                                                  "typeString": "int_const 1"
                                                },
                                                "value": "1"
                                              },
                                              "src": "8624:16:43",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_uint24",
                                                "typeString": "uint24"
                                              }
                                            },
                                            "src": "8610:30:43",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint24",
                                              "typeString": "uint24"
                                            }
                                          },
                                          "id": 9533,
                                          "nodeType": "ExpressionStatement",
                                          "src": "8610:30:43"
                                        }
                                      ]
                                    }
                                  }
                                ]
                              }
                            },
                            {
                              "eventCall": {
                                "arguments": [
                                  {
                                    "id": 9550,
                                    "name": "newReserveAccumulator",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 9492,
                                    "src": "9066:21:43",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint224",
                                      "typeString": "uint224"
                                    }
                                  },
                                  {
                                    "id": 9551,
                                    "name": "_withdrawAccumulator",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 9465,
                                    "src": "9089:20:43",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint224",
                                      "typeString": "uint224"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_uint224",
                                      "typeString": "uint224"
                                    },
                                    {
                                      "typeIdentifier": "t_uint224",
                                      "typeString": "uint224"
                                    }
                                  ],
                                  "id": 9549,
                                  "name": "Checkpoint",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 11581,
                                  "src": "9055:10:43",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_event_nonpayable$_t_uint256_$_t_uint256_$returns$__$",
                                    "typeString": "function (uint256,uint256)"
                                  }
                                },
                                "id": 9552,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "9055:55:43",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 9553,
                              "nodeType": "EmitStatement",
                              "src": "9050:60:43"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 9443,
                    "nodeType": "StructuredDocumentation",
                    "src": "7108:57:43",
                    "text": "@notice Records the currently accrued reserve amount."
                  },
                  "id": 9557,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_checkpoint",
                  "nameLocation": "7179:11:43",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 9444,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "7190:2:43"
                  },
                  "returnParameters": {
                    "id": 9445,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "7202:0:43"
                  },
                  "scope": 9625,
                  "src": "7170:1957:43",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 9594,
                    "nodeType": "Block",
                    "src": "9413:315:43",
                    "statements": [
                      {
                        "expression": {
                          "id": 9570,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 9568,
                            "name": "index",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9563,
                            "src": "9423:5:43",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 9569,
                            "name": "_nextIndex",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9560,
                            "src": "9431:10:43",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "src": "9423:18:43",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "id": 9571,
                        "nodeType": "ExpressionStatement",
                        "src": "9423:18:43"
                      },
                      {
                        "expression": {
                          "id": 9576,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 9572,
                            "name": "observation",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9566,
                            "src": "9451:11:43",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                              "typeString": "struct ObservationLib.Observation memory"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "baseExpression": {
                              "id": 9573,
                              "name": "reserveAccumulators",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9208,
                              "src": "9465:19:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                              }
                            },
                            "id": 9575,
                            "indexExpression": {
                              "id": 9574,
                              "name": "index",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9563,
                              "src": "9485:5:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "IndexAccess",
                            "src": "9465:26:43",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12066_storage",
                              "typeString": "struct ObservationLib.Observation storage ref"
                            }
                          },
                          "src": "9451:40:43",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                            "typeString": "struct ObservationLib.Observation memory"
                          }
                        },
                        "id": 9577,
                        "nodeType": "ExpressionStatement",
                        "src": "9451:40:43"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          },
                          "id": 9581,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 9578,
                              "name": "observation",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9566,
                              "src": "9610:11:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            "id": 9579,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "timestamp",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12065,
                            "src": "9610:21:43",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 9580,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "9635:1:43",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "9610:26:43",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 9593,
                        "nodeType": "IfStatement",
                        "src": "9606:116:43",
                        "trueBody": {
                          "id": 9592,
                          "nodeType": "Block",
                          "src": "9638:84:43",
                          "statements": [
                            {
                              "expression": {
                                "id": 9584,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 9582,
                                  "name": "index",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 9563,
                                  "src": "9652:5:43",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint24",
                                    "typeString": "uint24"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "hexValue": "30",
                                  "id": 9583,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "9660:1:43",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                },
                                "src": "9652:9:43",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint24",
                                  "typeString": "uint24"
                                }
                              },
                              "id": 9585,
                              "nodeType": "ExpressionStatement",
                              "src": "9652:9:43"
                            },
                            {
                              "expression": {
                                "id": 9590,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 9586,
                                  "name": "observation",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 9566,
                                  "src": "9675:11:43",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                    "typeString": "struct ObservationLib.Observation memory"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "baseExpression": {
                                    "id": 9587,
                                    "name": "reserveAccumulators",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 9208,
                                    "src": "9689:19:43",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage",
                                      "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                                    }
                                  },
                                  "id": 9589,
                                  "indexExpression": {
                                    "hexValue": "30",
                                    "id": 9588,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "9709:1:43",
                                    "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:43",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$12066_storage",
                                    "typeString": "struct ObservationLib.Observation storage ref"
                                  }
                                },
                                "src": "9675:36:43",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                  "typeString": "struct ObservationLib.Observation memory"
                                }
                              },
                              "id": 9591,
                              "nodeType": "ExpressionStatement",
                              "src": "9675:36:43"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 9558,
                    "nodeType": "StructuredDocumentation",
                    "src": "9133:113:43",
                    "text": "@notice Retrieves the oldest observation\n @param _nextIndex The next index of the Reserve observations"
                  },
                  "id": 9595,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_getOldestObservation",
                  "nameLocation": "9260:21:43",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 9561,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9560,
                        "mutability": "mutable",
                        "name": "_nextIndex",
                        "nameLocation": "9289:10:43",
                        "nodeType": "VariableDeclaration",
                        "scope": 9595,
                        "src": "9282:17:43",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint24",
                          "typeString": "uint24"
                        },
                        "typeName": {
                          "id": 9559,
                          "name": "uint24",
                          "nodeType": "ElementaryTypeName",
                          "src": "9282:6:43",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9281:19:43"
                  },
                  "returnParameters": {
                    "id": 9567,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9563,
                        "mutability": "mutable",
                        "name": "index",
                        "nameLocation": "9355:5:43",
                        "nodeType": "VariableDeclaration",
                        "scope": 9595,
                        "src": "9348:12:43",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint24",
                          "typeString": "uint24"
                        },
                        "typeName": {
                          "id": 9562,
                          "name": "uint24",
                          "nodeType": "ElementaryTypeName",
                          "src": "9348:6:43",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9566,
                        "mutability": "mutable",
                        "name": "observation",
                        "nameLocation": "9396:11:43",
                        "nodeType": "VariableDeclaration",
                        "scope": 9595,
                        "src": "9362:45:43",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 9565,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 9564,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12066,
                            "src": "9362:26:43"
                          },
                          "referencedDeclaration": 12066,
                          "src": "9362:26:43",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12066_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9347:61:43"
                  },
                  "scope": 9625,
                  "src": "9251:477:43",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 9623,
                    "nodeType": "Block",
                    "src": "10014:137:43",
                    "statements": [
                      {
                        "expression": {
                          "id": 9615,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 9606,
                            "name": "index",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9601,
                            "src": "10024:5:43",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "arguments": [
                                  {
                                    "id": 9611,
                                    "name": "_nextIndex",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 9598,
                                    "src": "10065:10:43",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint24",
                                      "typeString": "uint24"
                                    }
                                  },
                                  {
                                    "id": 9612,
                                    "name": "MAX_CARDINALITY",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 9203,
                                    "src": "10077:15:43",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint24",
                                      "typeString": "uint24"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_uint24",
                                      "typeString": "uint24"
                                    },
                                    {
                                      "typeIdentifier": "t_uint24",
                                      "typeString": "uint24"
                                    }
                                  ],
                                  "expression": {
                                    "id": 9609,
                                    "name": "RingBufferLib",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 12461,
                                    "src": "10039:13:43",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_contract$_RingBufferLib_$12461_$",
                                      "typeString": "type(library RingBufferLib)"
                                    }
                                  },
                                  "id": 9610,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "newestIndex",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 12442,
                                  "src": "10039:25:43",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$",
                                    "typeString": "function (uint256,uint256) pure returns (uint256)"
                                  }
                                },
                                "id": 9613,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "10039:54:43",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              ],
                              "id": 9608,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "nodeType": "ElementaryTypeNameExpression",
                              "src": "10032:6:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_uint24_$",
                                "typeString": "type(uint24)"
                              },
                              "typeName": {
                                "id": 9607,
                                "name": "uint24",
                                "nodeType": "ElementaryTypeName",
                                "src": "10032:6:43",
                                "typeDescriptions": {}
                              }
                            },
                            "id": 9614,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "typeConversion",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "10032:62:43",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "src": "10024:70:43",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "id": 9616,
                        "nodeType": "ExpressionStatement",
                        "src": "10024:70:43"
                      },
                      {
                        "expression": {
                          "id": 9621,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 9617,
                            "name": "observation",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9604,
                            "src": "10104:11:43",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                              "typeString": "struct ObservationLib.Observation memory"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "baseExpression": {
                              "id": 9618,
                              "name": "reserveAccumulators",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9208,
                              "src": "10118:19:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                              }
                            },
                            "id": 9620,
                            "indexExpression": {
                              "id": 9619,
                              "name": "index",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9601,
                              "src": "10138:5:43",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "IndexAccess",
                            "src": "10118:26:43",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12066_storage",
                              "typeString": "struct ObservationLib.Observation storage ref"
                            }
                          },
                          "src": "10104:40:43",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                            "typeString": "struct ObservationLib.Observation memory"
                          }
                        },
                        "id": 9622,
                        "nodeType": "ExpressionStatement",
                        "src": "10104:40:43"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 9596,
                    "nodeType": "StructuredDocumentation",
                    "src": "9734:113:43",
                    "text": "@notice Retrieves the newest observation\n @param _nextIndex The next index of the Reserve observations"
                  },
                  "id": 9624,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_getNewestObservation",
                  "nameLocation": "9861:21:43",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 9599,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9598,
                        "mutability": "mutable",
                        "name": "_nextIndex",
                        "nameLocation": "9890:10:43",
                        "nodeType": "VariableDeclaration",
                        "scope": 9624,
                        "src": "9883:17:43",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint24",
                          "typeString": "uint24"
                        },
                        "typeName": {
                          "id": 9597,
                          "name": "uint24",
                          "nodeType": "ElementaryTypeName",
                          "src": "9883:6:43",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9882:19:43"
                  },
                  "returnParameters": {
                    "id": 9605,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9601,
                        "mutability": "mutable",
                        "name": "index",
                        "nameLocation": "9956:5:43",
                        "nodeType": "VariableDeclaration",
                        "scope": 9624,
                        "src": "9949:12:43",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint24",
                          "typeString": "uint24"
                        },
                        "typeName": {
                          "id": 9600,
                          "name": "uint24",
                          "nodeType": "ElementaryTypeName",
                          "src": "9949:6:43",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9604,
                        "mutability": "mutable",
                        "name": "observation",
                        "nameLocation": "9997:11:43",
                        "nodeType": "VariableDeclaration",
                        "scope": 9624,
                        "src": "9963:45:43",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 9603,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 9602,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12066,
                            "src": "9963:26:43"
                          },
                          "referencedDeclaration": 12066,
                          "src": "9963:26:43",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12066_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9948:61:43"
                  },
                  "scope": 9625,
                  "src": "9852:299:43",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 9626,
              "src": "1299:8854:43",
              "usedErrors": []
            }
          ],
          "src": "37:10117:43"
        },
        "id": 43
      },
      "@pooltogether/v4-core/contracts/Ticket.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/Ticket.sol",
          "exportedSymbols": {
            "Address": [
              1775
            ],
            "Context": [
              1797
            ],
            "ControlledToken": [
              6013
            ],
            "Counters": [
              1871
            ],
            "ECDSA": [
              2464
            ],
            "EIP712": [
              2618
            ],
            "ERC20": [
              812
            ],
            "ERC20Permit": [
              1084
            ],
            "ExtendedSafeCastLib": [
              12045
            ],
            "IControlledToken": [
              10681
            ],
            "IERC20": [
              890
            ],
            "IERC20Metadata": [
              915
            ],
            "IERC20Permit": [
              1120
            ],
            "ITicket": [
              11825
            ],
            "ObservationLib": [
              12204
            ],
            "OverflowSafeComparatorLib": [
              12376
            ],
            "RingBufferLib": [
              12461
            ],
            "SafeCast": [
              3225
            ],
            "SafeERC20": [
              1344
            ],
            "Strings": [
              2074
            ],
            "Ticket": [
              10624
            ],
            "TwabLib": [
              13211
            ]
          },
          "id": 10625,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 9627,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:44"
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "id": 9628,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 10625,
              "sourceUnit": 891,
              "src": "61:56:44",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol",
              "id": 9629,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 10625,
              "sourceUnit": 1345,
              "src": "118:65:44",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/libraries/ExtendedSafeCastLib.sol",
              "file": "./libraries/ExtendedSafeCastLib.sol",
              "id": 9630,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 10625,
              "sourceUnit": 12046,
              "src": "185:45:44",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/libraries/TwabLib.sol",
              "file": "./libraries/TwabLib.sol",
              "id": 9631,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 10625,
              "sourceUnit": 13212,
              "src": "231:33:44",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/ITicket.sol",
              "file": "./interfaces/ITicket.sol",
              "id": 9632,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 10625,
              "sourceUnit": 11826,
              "src": "265:34:44",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/ControlledToken.sol",
              "file": "./ControlledToken.sol",
              "id": 9633,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 10625,
              "sourceUnit": 6014,
              "src": "300:31:44",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 9635,
                    "name": "ControlledToken",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 6013,
                    "src": "916:15:44"
                  },
                  "id": 9636,
                  "nodeType": "InheritanceSpecifier",
                  "src": "916:15:44"
                },
                {
                  "baseName": {
                    "id": 9637,
                    "name": "ITicket",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 11825,
                    "src": "933:7:44"
                  },
                  "id": 9638,
                  "nodeType": "InheritanceSpecifier",
                  "src": "933:7:44"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 9634,
                "nodeType": "StructuredDocumentation",
                "src": "333:563:44",
                "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": 10624,
              "linearizedBaseContracts": [
                10624,
                11825,
                6013,
                10681,
                1084,
                2618,
                1120,
                812,
                915,
                890,
                1797
              ],
              "name": "Ticket",
              "nameLocation": "906:6:44",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "id": 9642,
                  "libraryName": {
                    "id": 9639,
                    "name": "SafeERC20",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 1344,
                    "src": "953:9:44"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "947:27:44",
                  "typeName": {
                    "id": 9641,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 9640,
                      "name": "IERC20",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 890,
                      "src": "967:6:44"
                    },
                    "referencedDeclaration": 890,
                    "src": "967:6:44",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IERC20_$890",
                      "typeString": "contract IERC20"
                    }
                  }
                },
                {
                  "id": 9645,
                  "libraryName": {
                    "id": 9643,
                    "name": "ExtendedSafeCastLib",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 12045,
                    "src": "985:19:44"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "979:38:44",
                  "typeName": {
                    "id": 9644,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "1009:7:44",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  }
                },
                {
                  "constant": false,
                  "id": 9650,
                  "mutability": "immutable",
                  "name": "_DELEGATE_TYPEHASH",
                  "nameLocation": "1101:18:44",
                  "nodeType": "VariableDeclaration",
                  "scope": 10624,
                  "src": "1075:138:44",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 9646,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "1075:7:44",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "value": {
                    "arguments": [
                      {
                        "hexValue": "44656c6567617465286164647265737320757365722c616464726573732064656c65676174652c75696e74323536206e6f6e63652c75696e7432353620646561646c696e6529",
                        "id": 9648,
                        "isConstant": false,
                        "isLValue": false,
                        "isPure": true,
                        "kind": "string",
                        "lValueRequested": false,
                        "nodeType": "Literal",
                        "src": "1140:72:44",
                        "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": 9647,
                      "name": "keccak256",
                      "nodeType": "Identifier",
                      "overloadedDeclarations": [],
                      "referencedDeclaration": -8,
                      "src": "1130:9:44",
                      "typeDescriptions": {
                        "typeIdentifier": "t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$",
                        "typeString": "function (bytes memory) pure returns (bytes32)"
                      }
                    },
                    "id": 9649,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "functionCall",
                    "lValueRequested": false,
                    "names": [],
                    "nodeType": "FunctionCall",
                    "src": "1130:83:44",
                    "tryCall": false,
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 9651,
                    "nodeType": "StructuredDocumentation",
                    "src": "1220:59:44",
                    "text": "@notice Record of token holders TWABs for each account."
                  },
                  "id": 9656,
                  "mutability": "mutable",
                  "name": "userTwabs",
                  "nameLocation": "1329:9:44",
                  "nodeType": "VariableDeclaration",
                  "scope": 10624,
                  "src": "1284:54:44",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_mapping$_t_address_$_t_struct$_Account_$12494_storage_$",
                    "typeString": "mapping(address => struct TwabLib.Account)"
                  },
                  "typeName": {
                    "id": 9655,
                    "keyType": {
                      "id": 9652,
                      "name": "address",
                      "nodeType": "ElementaryTypeName",
                      "src": "1292:7:44",
                      "typeDescriptions": {
                        "typeIdentifier": "t_address",
                        "typeString": "address"
                      }
                    },
                    "nodeType": "Mapping",
                    "src": "1284:35:44",
                    "typeDescriptions": {
                      "typeIdentifier": "t_mapping$_t_address_$_t_struct$_Account_$12494_storage_$",
                      "typeString": "mapping(address => struct TwabLib.Account)"
                    },
                    "valueType": {
                      "id": 9654,
                      "nodeType": "UserDefinedTypeName",
                      "pathNode": {
                        "id": 9653,
                        "name": "TwabLib.Account",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 12494,
                        "src": "1303:15:44"
                      },
                      "referencedDeclaration": 12494,
                      "src": "1303:15:44",
                      "typeDescriptions": {
                        "typeIdentifier": "t_struct$_Account_$12494_storage_ptr",
                        "typeString": "struct TwabLib.Account"
                      }
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 9657,
                    "nodeType": "StructuredDocumentation",
                    "src": "1345:89:44",
                    "text": "@notice Record of tickets total supply and ring buff parameters used for observation."
                  },
                  "id": 9660,
                  "mutability": "mutable",
                  "name": "totalSupplyTwab",
                  "nameLocation": "1464:15:44",
                  "nodeType": "VariableDeclaration",
                  "scope": 10624,
                  "src": "1439:40:44",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_struct$_Account_$12494_storage",
                    "typeString": "struct TwabLib.Account"
                  },
                  "typeName": {
                    "id": 9659,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 9658,
                      "name": "TwabLib.Account",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 12494,
                      "src": "1439:15:44"
                    },
                    "referencedDeclaration": 12494,
                    "src": "1439:15:44",
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_Account_$12494_storage_ptr",
                      "typeString": "struct TwabLib.Account"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 9661,
                    "nodeType": "StructuredDocumentation",
                    "src": "1486:91:44",
                    "text": "@notice Mapping of delegates.  Each address can delegate their ticket power to another."
                  },
                  "id": 9665,
                  "mutability": "mutable",
                  "name": "delegates",
                  "nameLocation": "1619:9:44",
                  "nodeType": "VariableDeclaration",
                  "scope": 10624,
                  "src": "1582:46:44",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_mapping$_t_address_$_t_address_$",
                    "typeString": "mapping(address => address)"
                  },
                  "typeName": {
                    "id": 9664,
                    "keyType": {
                      "id": 9662,
                      "name": "address",
                      "nodeType": "ElementaryTypeName",
                      "src": "1590:7:44",
                      "typeDescriptions": {
                        "typeIdentifier": "t_address",
                        "typeString": "address"
                      }
                    },
                    "nodeType": "Mapping",
                    "src": "1582:27:44",
                    "typeDescriptions": {
                      "typeIdentifier": "t_mapping$_t_address_$_t_address_$",
                      "typeString": "mapping(address => address)"
                    },
                    "valueType": {
                      "id": 9663,
                      "name": "address",
                      "nodeType": "ElementaryTypeName",
                      "src": "1601:7:44",
                      "stateMutability": "nonpayable",
                      "typeDescriptions": {
                        "typeIdentifier": "t_address",
                        "typeString": "address"
                      }
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 9683,
                    "nodeType": "Block",
                    "src": "2176:2:44",
                    "statements": []
                  },
                  "documentation": {
                    "id": 9666,
                    "nodeType": "StructuredDocumentation",
                    "src": "1684:299:44",
                    "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": 9684,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 9677,
                          "name": "_name",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 9668,
                          "src": "2136:5:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_memory_ptr",
                            "typeString": "string memory"
                          }
                        },
                        {
                          "id": 9678,
                          "name": "_symbol",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 9670,
                          "src": "2143:7:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_memory_ptr",
                            "typeString": "string memory"
                          }
                        },
                        {
                          "id": 9679,
                          "name": "decimals_",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 9672,
                          "src": "2152:9:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        {
                          "id": 9680,
                          "name": "_controller",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 9674,
                          "src": "2163:11:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        }
                      ],
                      "id": 9681,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 9676,
                        "name": "ControlledToken",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 6013,
                        "src": "2120:15:44"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "2120:55:44"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 9675,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9668,
                        "mutability": "mutable",
                        "name": "_name",
                        "nameLocation": "2023:5:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 9684,
                        "src": "2009:19:44",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 9667,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "2009:6:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9670,
                        "mutability": "mutable",
                        "name": "_symbol",
                        "nameLocation": "2052:7:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 9684,
                        "src": "2038:21:44",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 9669,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "2038:6:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9672,
                        "mutability": "mutable",
                        "name": "decimals_",
                        "nameLocation": "2075:9:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 9684,
                        "src": "2069:15:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 9671,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "2069:5:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9674,
                        "mutability": "mutable",
                        "name": "_controller",
                        "nameLocation": "2102:11:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 9684,
                        "src": "2094:19:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 9673,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2094:7:44",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1999:120:44"
                  },
                  "returnParameters": {
                    "id": 9682,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2176:0:44"
                  },
                  "scope": 10624,
                  "src": "1988:190:44",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    11733
                  ],
                  "body": {
                    "id": 9699,
                    "nodeType": "Block",
                    "src": "2409:48:44",
                    "statements": [
                      {
                        "expression": {
                          "expression": {
                            "baseExpression": {
                              "id": 9694,
                              "name": "userTwabs",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9656,
                              "src": "2426:9:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_address_$_t_struct$_Account_$12494_storage_$",
                                "typeString": "mapping(address => struct TwabLib.Account storage ref)"
                              }
                            },
                            "id": 9696,
                            "indexExpression": {
                              "id": 9695,
                              "name": "_user",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9687,
                              "src": "2436:5:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "IndexAccess",
                            "src": "2426:16:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Account_$12494_storage",
                              "typeString": "struct TwabLib.Account storage ref"
                            }
                          },
                          "id": 9697,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "details",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 12488,
                          "src": "2426:24:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12485_storage",
                            "typeString": "struct TwabLib.AccountDetails storage ref"
                          }
                        },
                        "functionReturnParameters": 9693,
                        "id": 9698,
                        "nodeType": "Return",
                        "src": "2419:31:44"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 9685,
                    "nodeType": "StructuredDocumentation",
                    "src": "2240:23:44",
                    "text": "@inheritdoc ITicket"
                  },
                  "functionSelector": "2aceb534",
                  "id": 9700,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getAccountDetails",
                  "nameLocation": "2277:17:44",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 9689,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2348:8:44"
                  },
                  "parameters": {
                    "id": 9688,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9687,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "2303:5:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 9700,
                        "src": "2295:13:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 9686,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2295:7:44",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2294:15:44"
                  },
                  "returnParameters": {
                    "id": 9693,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9692,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 9700,
                        "src": "2374:29:44",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                          "typeString": "struct TwabLib.AccountDetails"
                        },
                        "typeName": {
                          "id": 9691,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 9690,
                            "name": "TwabLib.AccountDetails",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12485,
                            "src": "2374:22:44"
                          },
                          "referencedDeclaration": 12485,
                          "src": "2374:22:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12485_storage_ptr",
                            "typeString": "struct TwabLib.AccountDetails"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2373:31:44"
                  },
                  "scope": 10624,
                  "src": "2268:189:44",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11744
                  ],
                  "body": {
                    "id": 9719,
                    "nodeType": "Block",
                    "src": "2641:54:44",
                    "statements": [
                      {
                        "expression": {
                          "baseExpression": {
                            "expression": {
                              "baseExpression": {
                                "id": 9712,
                                "name": "userTwabs",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 9656,
                                "src": "2658:9:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_mapping$_t_address_$_t_struct$_Account_$12494_storage_$",
                                  "typeString": "mapping(address => struct TwabLib.Account storage ref)"
                                }
                              },
                              "id": 9714,
                              "indexExpression": {
                                "id": 9713,
                                "name": "_user",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 9703,
                                "src": "2668:5:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "nodeType": "IndexAccess",
                              "src": "2658:16:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Account_$12494_storage",
                                "typeString": "struct TwabLib.Account storage ref"
                              }
                            },
                            "id": 9715,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "twabs",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12493,
                            "src": "2658:22:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage",
                              "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                            }
                          },
                          "id": 9717,
                          "indexExpression": {
                            "id": 9716,
                            "name": "_index",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9705,
                            "src": "2681:6:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint16",
                              "typeString": "uint16"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "2658:30:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12066_storage",
                            "typeString": "struct ObservationLib.Observation storage ref"
                          }
                        },
                        "functionReturnParameters": 9711,
                        "id": 9718,
                        "nodeType": "Return",
                        "src": "2651:37:44"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 9701,
                    "nodeType": "StructuredDocumentation",
                    "src": "2463:23:44",
                    "text": "@inheritdoc ITicket"
                  },
                  "functionSelector": "36bb2a38",
                  "id": 9720,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getTwab",
                  "nameLocation": "2500:7:44",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 9707,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2576:8:44"
                  },
                  "parameters": {
                    "id": 9706,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9703,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "2516:5:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 9720,
                        "src": "2508:13:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 9702,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2508:7:44",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9705,
                        "mutability": "mutable",
                        "name": "_index",
                        "nameLocation": "2530:6:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 9720,
                        "src": "2523:13:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint16",
                          "typeString": "uint16"
                        },
                        "typeName": {
                          "id": 9704,
                          "name": "uint16",
                          "nodeType": "ElementaryTypeName",
                          "src": "2523:6:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint16",
                            "typeString": "uint16"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2507:30:44"
                  },
                  "returnParameters": {
                    "id": 9711,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9710,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 9720,
                        "src": "2602:33:44",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 9709,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 9708,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12066,
                            "src": "2602:26:44"
                          },
                          "referencedDeclaration": 12066,
                          "src": "2602:26:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12066_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2601:35:44"
                  },
                  "scope": 10624,
                  "src": "2491:204:44",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11754
                  ],
                  "body": {
                    "id": 9757,
                    "nodeType": "Block",
                    "src": "2823:269:44",
                    "statements": [
                      {
                        "assignments": [
                          9735
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 9735,
                            "mutability": "mutable",
                            "name": "account",
                            "nameLocation": "2857:7:44",
                            "nodeType": "VariableDeclaration",
                            "scope": 9757,
                            "src": "2833:31:44",
                            "stateVariable": false,
                            "storageLocation": "storage",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Account_$12494_storage_ptr",
                              "typeString": "struct TwabLib.Account"
                            },
                            "typeName": {
                              "id": 9734,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 9733,
                                "name": "TwabLib.Account",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12494,
                                "src": "2833:15:44"
                              },
                              "referencedDeclaration": 12494,
                              "src": "2833:15:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Account_$12494_storage_ptr",
                                "typeString": "struct TwabLib.Account"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 9739,
                        "initialValue": {
                          "baseExpression": {
                            "id": 9736,
                            "name": "userTwabs",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9656,
                            "src": "2867:9:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_struct$_Account_$12494_storage_$",
                              "typeString": "mapping(address => struct TwabLib.Account storage ref)"
                            }
                          },
                          "id": 9738,
                          "indexExpression": {
                            "id": 9737,
                            "name": "_user",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9723,
                            "src": "2877:5:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "2867:16:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Account_$12494_storage",
                            "typeString": "struct TwabLib.Account storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2833:50:44"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 9742,
                                "name": "account",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 9735,
                                "src": "2951:7:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Account_$12494_storage_ptr",
                                  "typeString": "struct TwabLib.Account storage pointer"
                                }
                              },
                              "id": 9743,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "twabs",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12493,
                              "src": "2951:13:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                              }
                            },
                            {
                              "expression": {
                                "id": 9744,
                                "name": "account",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 9735,
                                "src": "2982:7:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Account_$12494_storage_ptr",
                                  "typeString": "struct TwabLib.Account storage pointer"
                                }
                              },
                              "id": 9745,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "details",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12488,
                              "src": "2982:15:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12485_storage",
                                "typeString": "struct TwabLib.AccountDetails storage ref"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "id": 9748,
                                  "name": "_target",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 9725,
                                  "src": "3022:7:44",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint64",
                                    "typeString": "uint64"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint64",
                                    "typeString": "uint64"
                                  }
                                ],
                                "id": 9747,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "3015:6:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_uint32_$",
                                  "typeString": "type(uint32)"
                                },
                                "typeName": {
                                  "id": 9746,
                                  "name": "uint32",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "3015:6:44",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 9749,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "3015:15:44",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "expression": {
                                    "id": 9752,
                                    "name": "block",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -4,
                                    "src": "3055:5:44",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_block",
                                      "typeString": "block"
                                    }
                                  },
                                  "id": 9753,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "timestamp",
                                  "nodeType": "MemberAccess",
                                  "src": "3055:15:44",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 9751,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "3048:6:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_uint32_$",
                                  "typeString": "type(uint32)"
                                },
                                "typeName": {
                                  "id": 9750,
                                  "name": "uint32",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "3048:6:44",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 9754,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "3048:23:44",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                              },
                              {
                                "typeIdentifier": "t_struct$_AccountDetails_$12485_storage",
                                "typeString": "struct TwabLib.AccountDetails storage ref"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 9740,
                              "name": "TwabLib",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13211,
                              "src": "2913:7:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_TwabLib_$13211_$",
                                "typeString": "type(library TwabLib)"
                              }
                            },
                            "id": 9741,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getBalanceAt",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12750,
                            "src": "2913:20:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr_$_t_struct$_AccountDetails_$12485_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": 9755,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2913:172:44",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 9730,
                        "id": 9756,
                        "nodeType": "Return",
                        "src": "2894:191:44"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 9721,
                    "nodeType": "StructuredDocumentation",
                    "src": "2701:23:44",
                    "text": "@inheritdoc ITicket"
                  },
                  "functionSelector": "9ecb0370",
                  "id": 9758,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getBalanceAt",
                  "nameLocation": "2738:12:44",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 9727,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2796:8:44"
                  },
                  "parameters": {
                    "id": 9726,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9723,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "2759:5:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 9758,
                        "src": "2751:13:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 9722,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2751:7:44",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9725,
                        "mutability": "mutable",
                        "name": "_target",
                        "nameLocation": "2773:7:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 9758,
                        "src": "2766:14:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 9724,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "2766:6:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2750:31:44"
                  },
                  "returnParameters": {
                    "id": 9730,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9729,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 9758,
                        "src": "2814:7:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 9728,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2814:7:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2813:9:44"
                  },
                  "scope": 10624,
                  "src": "2729:363:44",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11793
                  ],
                  "body": {
                    "id": 9782,
                    "nodeType": "Block",
                    "src": "3316:92:44",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "baseExpression": {
                                "id": 9775,
                                "name": "userTwabs",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 9656,
                                "src": "3360:9:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_mapping$_t_address_$_t_struct$_Account_$12494_storage_$",
                                  "typeString": "mapping(address => struct TwabLib.Account storage ref)"
                                }
                              },
                              "id": 9777,
                              "indexExpression": {
                                "id": 9776,
                                "name": "_user",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 9761,
                                "src": "3370:5:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "nodeType": "IndexAccess",
                              "src": "3360:16:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Account_$12494_storage",
                                "typeString": "struct TwabLib.Account storage ref"
                              }
                            },
                            {
                              "id": 9778,
                              "name": "_startTimes",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9764,
                              "src": "3378:11:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                                "typeString": "uint64[] calldata"
                              }
                            },
                            {
                              "id": 9779,
                              "name": "_endTimes",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9767,
                              "src": "3391:9:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                                "typeString": "uint64[] calldata"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Account_$12494_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": 9774,
                            "name": "_getAverageBalancesBetween",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10283,
                            "src": "3333:26:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_struct$_Account_$12494_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": 9780,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3333:68:44",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "functionReturnParameters": 9773,
                        "id": 9781,
                        "nodeType": "Return",
                        "src": "3326:75:44"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 9759,
                    "nodeType": "StructuredDocumentation",
                    "src": "3098:23:44",
                    "text": "@inheritdoc ITicket"
                  },
                  "functionSelector": "68c7fd57",
                  "id": 9783,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getAverageBalancesBetween",
                  "nameLocation": "3135:25:44",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 9769,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3280:8:44"
                  },
                  "parameters": {
                    "id": 9768,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9761,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "3178:5:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 9783,
                        "src": "3170:13:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 9760,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3170:7:44",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9764,
                        "mutability": "mutable",
                        "name": "_startTimes",
                        "nameLocation": "3211:11:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 9783,
                        "src": "3193:29:44",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                          "typeString": "uint64[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 9762,
                            "name": "uint64",
                            "nodeType": "ElementaryTypeName",
                            "src": "3193:6:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "id": 9763,
                          "nodeType": "ArrayTypeName",
                          "src": "3193:8:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                            "typeString": "uint64[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9767,
                        "mutability": "mutable",
                        "name": "_endTimes",
                        "nameLocation": "3250:9:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 9783,
                        "src": "3232:27:44",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                          "typeString": "uint64[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 9765,
                            "name": "uint64",
                            "nodeType": "ElementaryTypeName",
                            "src": "3232:6:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "id": 9766,
                          "nodeType": "ArrayTypeName",
                          "src": "3232:8:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                            "typeString": "uint64[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3160:105:44"
                  },
                  "returnParameters": {
                    "id": 9773,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9772,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 9783,
                        "src": "3298:16:44",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 9770,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "3298:7:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 9771,
                          "nodeType": "ArrayTypeName",
                          "src": "3298:9:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3297:18:44"
                  },
                  "scope": 10624,
                  "src": "3126:282:44",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11824
                  ],
                  "body": {
                    "id": 9803,
                    "nodeType": "Block",
                    "src": "3614:91:44",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 9798,
                              "name": "totalSupplyTwab",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9660,
                              "src": "3658:15:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Account_$12494_storage",
                                "typeString": "struct TwabLib.Account storage ref"
                              }
                            },
                            {
                              "id": 9799,
                              "name": "_startTimes",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9787,
                              "src": "3675:11:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                                "typeString": "uint64[] calldata"
                              }
                            },
                            {
                              "id": 9800,
                              "name": "_endTimes",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9790,
                              "src": "3688:9:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                                "typeString": "uint64[] calldata"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Account_$12494_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": 9797,
                            "name": "_getAverageBalancesBetween",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10283,
                            "src": "3631:26:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_struct$_Account_$12494_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": 9801,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3631:67:44",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "functionReturnParameters": 9796,
                        "id": 9802,
                        "nodeType": "Return",
                        "src": "3624:74:44"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 9784,
                    "nodeType": "StructuredDocumentation",
                    "src": "3414:23:44",
                    "text": "@inheritdoc ITicket"
                  },
                  "functionSelector": "8e6d536a",
                  "id": 9804,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getAverageTotalSuppliesBetween",
                  "nameLocation": "3451:30:44",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 9792,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3578:8:44"
                  },
                  "parameters": {
                    "id": 9791,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9787,
                        "mutability": "mutable",
                        "name": "_startTimes",
                        "nameLocation": "3509:11:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 9804,
                        "src": "3491:29:44",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                          "typeString": "uint64[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 9785,
                            "name": "uint64",
                            "nodeType": "ElementaryTypeName",
                            "src": "3491:6:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "id": 9786,
                          "nodeType": "ArrayTypeName",
                          "src": "3491:8:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                            "typeString": "uint64[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9790,
                        "mutability": "mutable",
                        "name": "_endTimes",
                        "nameLocation": "3548:9:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 9804,
                        "src": "3530:27:44",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                          "typeString": "uint64[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 9788,
                            "name": "uint64",
                            "nodeType": "ElementaryTypeName",
                            "src": "3530:6:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "id": 9789,
                          "nodeType": "ArrayTypeName",
                          "src": "3530:8:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                            "typeString": "uint64[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3481:82:44"
                  },
                  "returnParameters": {
                    "id": 9796,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9795,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 9804,
                        "src": "3596:16:44",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 9793,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "3596:7:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 9794,
                          "nodeType": "ArrayTypeName",
                          "src": "3596:9:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3595:18:44"
                  },
                  "scope": 10624,
                  "src": "3442:263:44",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11778
                  ],
                  "body": {
                    "id": 9847,
                    "nodeType": "Block",
                    "src": "3895:318:44",
                    "statements": [
                      {
                        "assignments": [
                          9821
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 9821,
                            "mutability": "mutable",
                            "name": "account",
                            "nameLocation": "3929:7:44",
                            "nodeType": "VariableDeclaration",
                            "scope": 9847,
                            "src": "3905:31:44",
                            "stateVariable": false,
                            "storageLocation": "storage",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Account_$12494_storage_ptr",
                              "typeString": "struct TwabLib.Account"
                            },
                            "typeName": {
                              "id": 9820,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 9819,
                                "name": "TwabLib.Account",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12494,
                                "src": "3905:15:44"
                              },
                              "referencedDeclaration": 12494,
                              "src": "3905:15:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Account_$12494_storage_ptr",
                                "typeString": "struct TwabLib.Account"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 9825,
                        "initialValue": {
                          "baseExpression": {
                            "id": 9822,
                            "name": "userTwabs",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9656,
                            "src": "3939:9:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_struct$_Account_$12494_storage_$",
                              "typeString": "mapping(address => struct TwabLib.Account storage ref)"
                            }
                          },
                          "id": 9824,
                          "indexExpression": {
                            "id": 9823,
                            "name": "_user",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9807,
                            "src": "3949:5:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "3939:16:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Account_$12494_storage",
                            "typeString": "struct TwabLib.Account storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3905:50:44"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 9828,
                                "name": "account",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 9821,
                                "src": "4035:7:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Account_$12494_storage_ptr",
                                  "typeString": "struct TwabLib.Account storage pointer"
                                }
                              },
                              "id": 9829,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "twabs",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12493,
                              "src": "4035:13:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                              }
                            },
                            {
                              "expression": {
                                "id": 9830,
                                "name": "account",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 9821,
                                "src": "4066:7:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Account_$12494_storage_ptr",
                                  "typeString": "struct TwabLib.Account storage pointer"
                                }
                              },
                              "id": 9831,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "details",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12488,
                              "src": "4066:15:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12485_storage",
                                "typeString": "struct TwabLib.AccountDetails storage ref"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "id": 9834,
                                  "name": "_startTime",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 9809,
                                  "src": "4106:10:44",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint64",
                                    "typeString": "uint64"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint64",
                                    "typeString": "uint64"
                                  }
                                ],
                                "id": 9833,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "4099:6:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_uint32_$",
                                  "typeString": "type(uint32)"
                                },
                                "typeName": {
                                  "id": 9832,
                                  "name": "uint32",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "4099:6:44",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 9835,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "4099:18:44",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "id": 9838,
                                  "name": "_endTime",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 9811,
                                  "src": "4142:8:44",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint64",
                                    "typeString": "uint64"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint64",
                                    "typeString": "uint64"
                                  }
                                ],
                                "id": 9837,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "4135:6:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_uint32_$",
                                  "typeString": "type(uint32)"
                                },
                                "typeName": {
                                  "id": 9836,
                                  "name": "uint32",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "4135:6:44",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 9839,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "4135:16:44",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "expression": {
                                    "id": 9842,
                                    "name": "block",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -4,
                                    "src": "4176:5:44",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_block",
                                      "typeString": "block"
                                    }
                                  },
                                  "id": 9843,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "timestamp",
                                  "nodeType": "MemberAccess",
                                  "src": "4176:15:44",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 9841,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "4169:6:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_uint32_$",
                                  "typeString": "type(uint32)"
                                },
                                "typeName": {
                                  "id": 9840,
                                  "name": "uint32",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "4169:6:44",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 9844,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "4169:23:44",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                              },
                              {
                                "typeIdentifier": "t_struct$_AccountDetails_$12485_storage",
                                "typeString": "struct TwabLib.AccountDetails storage ref"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 9826,
                              "name": "TwabLib",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13211,
                              "src": "3985:7:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_TwabLib_$13211_$",
                                "typeString": "type(library TwabLib)"
                              }
                            },
                            "id": 9827,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getAverageBalanceBetween",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12634,
                            "src": "3985:32:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr_$_t_struct$_AccountDetails_$12485_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": 9845,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3985:221:44",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 9816,
                        "id": 9846,
                        "nodeType": "Return",
                        "src": "3966:240:44"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 9805,
                    "nodeType": "StructuredDocumentation",
                    "src": "3711:23:44",
                    "text": "@inheritdoc ITicket"
                  },
                  "functionSelector": "98b16f36",
                  "id": 9848,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getAverageBalanceBetween",
                  "nameLocation": "3748:24:44",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 9813,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3868:8:44"
                  },
                  "parameters": {
                    "id": 9812,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9807,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "3790:5:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 9848,
                        "src": "3782:13:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 9806,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3782:7:44",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9809,
                        "mutability": "mutable",
                        "name": "_startTime",
                        "nameLocation": "3812:10:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 9848,
                        "src": "3805:17:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 9808,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "3805:6:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9811,
                        "mutability": "mutable",
                        "name": "_endTime",
                        "nameLocation": "3839:8:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 9848,
                        "src": "3832:15:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 9810,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "3832:6:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3772:81:44"
                  },
                  "returnParameters": {
                    "id": 9816,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9815,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 9848,
                        "src": "3886:7:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 9814,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3886:7:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3885:9:44"
                  },
                  "scope": 10624,
                  "src": "3739:474:44",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11766
                  ],
                  "body": {
                    "id": 9930,
                    "nodeType": "Block",
                    "src": "4399:529:44",
                    "statements": [
                      {
                        "assignments": [
                          9862
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 9862,
                            "mutability": "mutable",
                            "name": "length",
                            "nameLocation": "4417:6:44",
                            "nodeType": "VariableDeclaration",
                            "scope": 9930,
                            "src": "4409:14:44",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 9861,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "4409:7:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 9865,
                        "initialValue": {
                          "expression": {
                            "id": 9863,
                            "name": "_targets",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9854,
                            "src": "4426:8:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                              "typeString": "uint64[] calldata"
                            }
                          },
                          "id": 9864,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "length",
                          "nodeType": "MemberAccess",
                          "src": "4426:15:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4409:32:44"
                      },
                      {
                        "assignments": [
                          9870
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 9870,
                            "mutability": "mutable",
                            "name": "_balances",
                            "nameLocation": "4468:9:44",
                            "nodeType": "VariableDeclaration",
                            "scope": 9930,
                            "src": "4451:26:44",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 9868,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "4451:7:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 9869,
                              "nodeType": "ArrayTypeName",
                              "src": "4451:9:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 9876,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 9874,
                              "name": "length",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9862,
                              "src": "4494:6:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 9873,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "4480:13:44",
                            "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": 9871,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "4484:7:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 9872,
                              "nodeType": "ArrayTypeName",
                              "src": "4484:9:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            }
                          },
                          "id": 9875,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4480:21:44",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4451:50:44"
                      },
                      {
                        "assignments": [
                          9881
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 9881,
                            "mutability": "mutable",
                            "name": "twabContext",
                            "nameLocation": "4536:11:44",
                            "nodeType": "VariableDeclaration",
                            "scope": 9930,
                            "src": "4512:35:44",
                            "stateVariable": false,
                            "storageLocation": "storage",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Account_$12494_storage_ptr",
                              "typeString": "struct TwabLib.Account"
                            },
                            "typeName": {
                              "id": 9880,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 9879,
                                "name": "TwabLib.Account",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12494,
                                "src": "4512:15:44"
                              },
                              "referencedDeclaration": 12494,
                              "src": "4512:15:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Account_$12494_storage_ptr",
                                "typeString": "struct TwabLib.Account"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 9885,
                        "initialValue": {
                          "baseExpression": {
                            "id": 9882,
                            "name": "userTwabs",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9656,
                            "src": "4550:9:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_struct$_Account_$12494_storage_$",
                              "typeString": "mapping(address => struct TwabLib.Account storage ref)"
                            }
                          },
                          "id": 9884,
                          "indexExpression": {
                            "id": 9883,
                            "name": "_user",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9851,
                            "src": "4560:5:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "4550:16:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Account_$12494_storage",
                            "typeString": "struct TwabLib.Account storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4512:54:44"
                      },
                      {
                        "assignments": [
                          9890
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 9890,
                            "mutability": "mutable",
                            "name": "details",
                            "nameLocation": "4606:7:44",
                            "nodeType": "VariableDeclaration",
                            "scope": 9930,
                            "src": "4576:37:44",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                              "typeString": "struct TwabLib.AccountDetails"
                            },
                            "typeName": {
                              "id": 9889,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 9888,
                                "name": "TwabLib.AccountDetails",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12485,
                                "src": "4576:22:44"
                              },
                              "referencedDeclaration": 12485,
                              "src": "4576:22:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12485_storage_ptr",
                                "typeString": "struct TwabLib.AccountDetails"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 9893,
                        "initialValue": {
                          "expression": {
                            "id": 9891,
                            "name": "twabContext",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9881,
                            "src": "4616:11:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Account_$12494_storage_ptr",
                              "typeString": "struct TwabLib.Account storage pointer"
                            }
                          },
                          "id": 9892,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "details",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 12488,
                          "src": "4616:19:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12485_storage",
                            "typeString": "struct TwabLib.AccountDetails storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4576:59:44"
                      },
                      {
                        "body": {
                          "id": 9926,
                          "nodeType": "Block",
                          "src": "4683:212:44",
                          "statements": [
                            {
                              "expression": {
                                "id": 9924,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "baseExpression": {
                                    "id": 9904,
                                    "name": "_balances",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 9870,
                                    "src": "4697:9:44",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                      "typeString": "uint256[] memory"
                                    }
                                  },
                                  "id": 9906,
                                  "indexExpression": {
                                    "id": 9905,
                                    "name": "i",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 9895,
                                    "src": "4707:1:44",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": true,
                                  "nodeType": "IndexAccess",
                                  "src": "4697:12:44",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "arguments": [
                                    {
                                      "expression": {
                                        "id": 9909,
                                        "name": "twabContext",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 9881,
                                        "src": "4750:11:44",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_Account_$12494_storage_ptr",
                                          "typeString": "struct TwabLib.Account storage pointer"
                                        }
                                      },
                                      "id": 9910,
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "memberName": "twabs",
                                      "nodeType": "MemberAccess",
                                      "referencedDeclaration": 12493,
                                      "src": "4750:17:44",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage",
                                        "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                                      }
                                    },
                                    {
                                      "id": 9911,
                                      "name": "details",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 9890,
                                      "src": "4785:7:44",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                                        "typeString": "struct TwabLib.AccountDetails memory"
                                      }
                                    },
                                    {
                                      "arguments": [
                                        {
                                          "baseExpression": {
                                            "id": 9914,
                                            "name": "_targets",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 9854,
                                            "src": "4817:8:44",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                                              "typeString": "uint64[] calldata"
                                            }
                                          },
                                          "id": 9916,
                                          "indexExpression": {
                                            "id": 9915,
                                            "name": "i",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 9895,
                                            "src": "4826:1:44",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            }
                                          },
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "nodeType": "IndexAccess",
                                          "src": "4817:11:44",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint64",
                                            "typeString": "uint64"
                                          }
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_uint64",
                                            "typeString": "uint64"
                                          }
                                        ],
                                        "id": 9913,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "4810:6:44",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_uint32_$",
                                          "typeString": "type(uint32)"
                                        },
                                        "typeName": {
                                          "id": 9912,
                                          "name": "uint32",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "4810:6:44",
                                          "typeDescriptions": {}
                                        }
                                      },
                                      "id": 9917,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "typeConversion",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "4810:19:44",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    },
                                    {
                                      "arguments": [
                                        {
                                          "expression": {
                                            "id": 9920,
                                            "name": "block",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": -4,
                                            "src": "4854:5:44",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_magic_block",
                                              "typeString": "block"
                                            }
                                          },
                                          "id": 9921,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "memberName": "timestamp",
                                          "nodeType": "MemberAccess",
                                          "src": "4854:15:44",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        ],
                                        "id": 9919,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "4847:6:44",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_uint32_$",
                                          "typeString": "type(uint32)"
                                        },
                                        "typeName": {
                                          "id": 9918,
                                          "name": "uint32",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "4847:6:44",
                                          "typeDescriptions": {}
                                        }
                                      },
                                      "id": 9922,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "typeConversion",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "4847:23:44",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage",
                                        "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                                      },
                                      {
                                        "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                                        "typeString": "struct TwabLib.AccountDetails memory"
                                      },
                                      {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      },
                                      {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    ],
                                    "expression": {
                                      "id": 9907,
                                      "name": "TwabLib",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 13211,
                                      "src": "4712:7:44",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_contract$_TwabLib_$13211_$",
                                        "typeString": "type(library TwabLib)"
                                      }
                                    },
                                    "id": 9908,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "getBalanceAt",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 12750,
                                    "src": "4712:20:44",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr_$_t_struct$_AccountDetails_$12485_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": 9923,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "4712:172:44",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "4697:187:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 9925,
                              "nodeType": "ExpressionStatement",
                              "src": "4697:187:44"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 9900,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 9898,
                            "name": "i",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9895,
                            "src": "4666:1:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "id": 9899,
                            "name": "length",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9862,
                            "src": "4670:6:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "4666:10:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 9927,
                        "initializationExpression": {
                          "assignments": [
                            9895
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 9895,
                              "mutability": "mutable",
                              "name": "i",
                              "nameLocation": "4659:1:44",
                              "nodeType": "VariableDeclaration",
                              "scope": 9927,
                              "src": "4651:9:44",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "typeName": {
                                "id": 9894,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "4651:7:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 9897,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 9896,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "4663:1:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "4651:13:44"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 9902,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "4678:3:44",
                            "subExpression": {
                              "id": 9901,
                              "name": "i",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9895,
                              "src": "4678:1:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 9903,
                          "nodeType": "ExpressionStatement",
                          "src": "4678:3:44"
                        },
                        "nodeType": "ForStatement",
                        "src": "4646:249:44"
                      },
                      {
                        "expression": {
                          "id": 9928,
                          "name": "_balances",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 9870,
                          "src": "4912:9:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "functionReturnParameters": 9860,
                        "id": 9929,
                        "nodeType": "Return",
                        "src": "4905:16:44"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 9849,
                    "nodeType": "StructuredDocumentation",
                    "src": "4219:23:44",
                    "text": "@inheritdoc ITicket"
                  },
                  "functionSelector": "613ed6bd",
                  "id": 9931,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getBalancesAt",
                  "nameLocation": "4256:13:44",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 9856,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "4351:8:44"
                  },
                  "parameters": {
                    "id": 9855,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9851,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "4278:5:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 9931,
                        "src": "4270:13:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 9850,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4270:7:44",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 9854,
                        "mutability": "mutable",
                        "name": "_targets",
                        "nameLocation": "4303:8:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 9931,
                        "src": "4285:26:44",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                          "typeString": "uint64[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 9852,
                            "name": "uint64",
                            "nodeType": "ElementaryTypeName",
                            "src": "4285:6:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "id": 9853,
                          "nodeType": "ArrayTypeName",
                          "src": "4285:8:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                            "typeString": "uint64[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4269:43:44"
                  },
                  "returnParameters": {
                    "id": 9860,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9859,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 9931,
                        "src": "4377:16:44",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 9857,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "4377:7:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 9858,
                          "nodeType": "ArrayTypeName",
                          "src": "4377:9:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4376:18:44"
                  },
                  "scope": 10624,
                  "src": "4247:681:44",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11801
                  ],
                  "body": {
                    "id": 9957,
                    "nodeType": "Block",
                    "src": "5045:224:44",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 9942,
                                "name": "totalSupplyTwab",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 9660,
                                "src": "5112:15:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Account_$12494_storage",
                                  "typeString": "struct TwabLib.Account storage ref"
                                }
                              },
                              "id": 9943,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "twabs",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12493,
                              "src": "5112:21:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                              }
                            },
                            {
                              "expression": {
                                "id": 9944,
                                "name": "totalSupplyTwab",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 9660,
                                "src": "5151:15:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Account_$12494_storage",
                                  "typeString": "struct TwabLib.Account storage ref"
                                }
                              },
                              "id": 9945,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "details",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12488,
                              "src": "5151:23:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12485_storage",
                                "typeString": "struct TwabLib.AccountDetails storage ref"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "id": 9948,
                                  "name": "_target",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 9934,
                                  "src": "5199:7:44",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint64",
                                    "typeString": "uint64"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint64",
                                    "typeString": "uint64"
                                  }
                                ],
                                "id": 9947,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "5192:6:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_uint32_$",
                                  "typeString": "type(uint32)"
                                },
                                "typeName": {
                                  "id": 9946,
                                  "name": "uint32",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "5192:6:44",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 9949,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "5192:15:44",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "expression": {
                                    "id": 9952,
                                    "name": "block",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -4,
                                    "src": "5232:5:44",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_block",
                                      "typeString": "block"
                                    }
                                  },
                                  "id": 9953,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "timestamp",
                                  "nodeType": "MemberAccess",
                                  "src": "5232:15:44",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 9951,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "5225:6:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_uint32_$",
                                  "typeString": "type(uint32)"
                                },
                                "typeName": {
                                  "id": 9950,
                                  "name": "uint32",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "5225:6:44",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 9954,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "5225:23:44",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                              },
                              {
                                "typeIdentifier": "t_struct$_AccountDetails_$12485_storage",
                                "typeString": "struct TwabLib.AccountDetails storage ref"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 9940,
                              "name": "TwabLib",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13211,
                              "src": "5074:7:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_TwabLib_$13211_$",
                                "typeString": "type(library TwabLib)"
                              }
                            },
                            "id": 9941,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getBalanceAt",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12750,
                            "src": "5074:20:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr_$_t_struct$_AccountDetails_$12485_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": 9955,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5074:188:44",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 9939,
                        "id": 9956,
                        "nodeType": "Return",
                        "src": "5055:207:44"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 9932,
                    "nodeType": "StructuredDocumentation",
                    "src": "4934:23:44",
                    "text": "@inheritdoc ITicket"
                  },
                  "functionSelector": "2d0dd686",
                  "id": 9958,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getTotalSupplyAt",
                  "nameLocation": "4971:16:44",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 9936,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "5018:8:44"
                  },
                  "parameters": {
                    "id": 9935,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9934,
                        "mutability": "mutable",
                        "name": "_target",
                        "nameLocation": "4995:7:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 9958,
                        "src": "4988:14:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 9933,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "4988:6:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4987:16:44"
                  },
                  "returnParameters": {
                    "id": 9939,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9938,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 9958,
                        "src": "5036:7:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 9937,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "5036:7:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5035:9:44"
                  },
                  "scope": 10624,
                  "src": "4962:307:44",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11811
                  ],
                  "body": {
                    "id": 10029,
                    "nodeType": "Block",
                    "src": "5445:485:44",
                    "statements": [
                      {
                        "assignments": [
                          9970
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 9970,
                            "mutability": "mutable",
                            "name": "length",
                            "nameLocation": "5463:6:44",
                            "nodeType": "VariableDeclaration",
                            "scope": 10029,
                            "src": "5455:14:44",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 9969,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "5455:7:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 9973,
                        "initialValue": {
                          "expression": {
                            "id": 9971,
                            "name": "_targets",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9962,
                            "src": "5472:8:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                              "typeString": "uint64[] calldata"
                            }
                          },
                          "id": 9972,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "length",
                          "nodeType": "MemberAccess",
                          "src": "5472:15:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "5455:32:44"
                      },
                      {
                        "assignments": [
                          9978
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 9978,
                            "mutability": "mutable",
                            "name": "totalSupplies",
                            "nameLocation": "5514:13:44",
                            "nodeType": "VariableDeclaration",
                            "scope": 10029,
                            "src": "5497:30:44",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 9976,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "5497:7:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 9977,
                              "nodeType": "ArrayTypeName",
                              "src": "5497:9:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 9984,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 9982,
                              "name": "length",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9970,
                              "src": "5544:6:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 9981,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "5530:13:44",
                            "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": 9979,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "5534:7:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 9980,
                              "nodeType": "ArrayTypeName",
                              "src": "5534:9:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            }
                          },
                          "id": 9983,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5530:21:44",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "5497:54:44"
                      },
                      {
                        "assignments": [
                          9989
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 9989,
                            "mutability": "mutable",
                            "name": "details",
                            "nameLocation": "5592:7:44",
                            "nodeType": "VariableDeclaration",
                            "scope": 10029,
                            "src": "5562:37:44",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                              "typeString": "struct TwabLib.AccountDetails"
                            },
                            "typeName": {
                              "id": 9988,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 9987,
                                "name": "TwabLib.AccountDetails",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12485,
                                "src": "5562:22:44"
                              },
                              "referencedDeclaration": 12485,
                              "src": "5562:22:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12485_storage_ptr",
                                "typeString": "struct TwabLib.AccountDetails"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 9992,
                        "initialValue": {
                          "expression": {
                            "id": 9990,
                            "name": "totalSupplyTwab",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9660,
                            "src": "5602:15:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Account_$12494_storage",
                              "typeString": "struct TwabLib.Account storage ref"
                            }
                          },
                          "id": 9991,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "details",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 12488,
                          "src": "5602:23:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12485_storage",
                            "typeString": "struct TwabLib.AccountDetails storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "5562:63:44"
                      },
                      {
                        "body": {
                          "id": 10025,
                          "nodeType": "Block",
                          "src": "5673:220:44",
                          "statements": [
                            {
                              "expression": {
                                "id": 10023,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "baseExpression": {
                                    "id": 10003,
                                    "name": "totalSupplies",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 9978,
                                    "src": "5687:13:44",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                      "typeString": "uint256[] memory"
                                    }
                                  },
                                  "id": 10005,
                                  "indexExpression": {
                                    "id": 10004,
                                    "name": "i",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 9994,
                                    "src": "5701:1:44",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": true,
                                  "nodeType": "IndexAccess",
                                  "src": "5687:16:44",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "arguments": [
                                    {
                                      "expression": {
                                        "id": 10008,
                                        "name": "totalSupplyTwab",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 9660,
                                        "src": "5744:15:44",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_Account_$12494_storage",
                                          "typeString": "struct TwabLib.Account storage ref"
                                        }
                                      },
                                      "id": 10009,
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "memberName": "twabs",
                                      "nodeType": "MemberAccess",
                                      "referencedDeclaration": 12493,
                                      "src": "5744:21:44",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage",
                                        "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                                      }
                                    },
                                    {
                                      "id": 10010,
                                      "name": "details",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 9989,
                                      "src": "5783:7:44",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                                        "typeString": "struct TwabLib.AccountDetails memory"
                                      }
                                    },
                                    {
                                      "arguments": [
                                        {
                                          "baseExpression": {
                                            "id": 10013,
                                            "name": "_targets",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 9962,
                                            "src": "5815:8:44",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                                              "typeString": "uint64[] calldata"
                                            }
                                          },
                                          "id": 10015,
                                          "indexExpression": {
                                            "id": 10014,
                                            "name": "i",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 9994,
                                            "src": "5824:1:44",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            }
                                          },
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "nodeType": "IndexAccess",
                                          "src": "5815:11:44",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint64",
                                            "typeString": "uint64"
                                          }
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_uint64",
                                            "typeString": "uint64"
                                          }
                                        ],
                                        "id": 10012,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "5808:6:44",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_uint32_$",
                                          "typeString": "type(uint32)"
                                        },
                                        "typeName": {
                                          "id": 10011,
                                          "name": "uint32",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "5808:6:44",
                                          "typeDescriptions": {}
                                        }
                                      },
                                      "id": 10016,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "typeConversion",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "5808:19:44",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    },
                                    {
                                      "arguments": [
                                        {
                                          "expression": {
                                            "id": 10019,
                                            "name": "block",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": -4,
                                            "src": "5852:5:44",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_magic_block",
                                              "typeString": "block"
                                            }
                                          },
                                          "id": 10020,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "memberName": "timestamp",
                                          "nodeType": "MemberAccess",
                                          "src": "5852:15:44",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        ],
                                        "id": 10018,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "5845:6:44",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_uint32_$",
                                          "typeString": "type(uint32)"
                                        },
                                        "typeName": {
                                          "id": 10017,
                                          "name": "uint32",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "5845:6:44",
                                          "typeDescriptions": {}
                                        }
                                      },
                                      "id": 10021,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "typeConversion",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "5845:23:44",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage",
                                        "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                                      },
                                      {
                                        "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                                        "typeString": "struct TwabLib.AccountDetails memory"
                                      },
                                      {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      },
                                      {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    ],
                                    "expression": {
                                      "id": 10006,
                                      "name": "TwabLib",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 13211,
                                      "src": "5706:7:44",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_contract$_TwabLib_$13211_$",
                                        "typeString": "type(library TwabLib)"
                                      }
                                    },
                                    "id": 10007,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "getBalanceAt",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 12750,
                                    "src": "5706:20:44",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr_$_t_struct$_AccountDetails_$12485_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": 10022,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "5706:176:44",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "5687:195:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 10024,
                              "nodeType": "ExpressionStatement",
                              "src": "5687:195:44"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 9999,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 9997,
                            "name": "i",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9994,
                            "src": "5656:1:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "id": 9998,
                            "name": "length",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9970,
                            "src": "5660:6:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "5656:10:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 10026,
                        "initializationExpression": {
                          "assignments": [
                            9994
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 9994,
                              "mutability": "mutable",
                              "name": "i",
                              "nameLocation": "5649:1:44",
                              "nodeType": "VariableDeclaration",
                              "scope": 10026,
                              "src": "5641:9:44",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "typeName": {
                                "id": 9993,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "5641:7:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 9996,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 9995,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "5653:1:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "5641:13:44"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 10001,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "5668:3:44",
                            "subExpression": {
                              "id": 10000,
                              "name": "i",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9994,
                              "src": "5668:1:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 10002,
                          "nodeType": "ExpressionStatement",
                          "src": "5668:3:44"
                        },
                        "nodeType": "ForStatement",
                        "src": "5636:257:44"
                      },
                      {
                        "expression": {
                          "id": 10027,
                          "name": "totalSupplies",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 9978,
                          "src": "5910:13:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "functionReturnParameters": 9968,
                        "id": 10028,
                        "nodeType": "Return",
                        "src": "5903:20:44"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 9959,
                    "nodeType": "StructuredDocumentation",
                    "src": "5275:23:44",
                    "text": "@inheritdoc ITicket"
                  },
                  "functionSelector": "85beb5f1",
                  "id": 10030,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getTotalSuppliesAt",
                  "nameLocation": "5312:18:44",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 9964,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "5397:8:44"
                  },
                  "parameters": {
                    "id": 9963,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9962,
                        "mutability": "mutable",
                        "name": "_targets",
                        "nameLocation": "5349:8:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 10030,
                        "src": "5331:26:44",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                          "typeString": "uint64[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 9960,
                            "name": "uint64",
                            "nodeType": "ElementaryTypeName",
                            "src": "5331:6:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "id": 9961,
                          "nodeType": "ArrayTypeName",
                          "src": "5331:8:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                            "typeString": "uint64[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5330:28:44"
                  },
                  "returnParameters": {
                    "id": 9968,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 9967,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 10030,
                        "src": "5423:16:44",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 9965,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "5423:7:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 9966,
                          "nodeType": "ArrayTypeName",
                          "src": "5423:9:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5422:18:44"
                  },
                  "scope": 10624,
                  "src": "5303:627:44",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11694
                  ],
                  "body": {
                    "id": 10043,
                    "nodeType": "Block",
                    "src": "6040:40:44",
                    "statements": [
                      {
                        "expression": {
                          "baseExpression": {
                            "id": 10039,
                            "name": "delegates",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9665,
                            "src": "6057:9:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_address_$",
                              "typeString": "mapping(address => address)"
                            }
                          },
                          "id": 10041,
                          "indexExpression": {
                            "id": 10040,
                            "name": "_user",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10033,
                            "src": "6067:5:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "6057:16:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "functionReturnParameters": 10038,
                        "id": 10042,
                        "nodeType": "Return",
                        "src": "6050:23:44"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 10031,
                    "nodeType": "StructuredDocumentation",
                    "src": "5936:23:44",
                    "text": "@inheritdoc ITicket"
                  },
                  "functionSelector": "8d22ea2a",
                  "id": 10044,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "delegateOf",
                  "nameLocation": "5973:10:44",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 10035,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "6013:8:44"
                  },
                  "parameters": {
                    "id": 10034,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10033,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "5992:5:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 10044,
                        "src": "5984:13:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 10032,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5984:7:44",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5983:15:44"
                  },
                  "returnParameters": {
                    "id": 10038,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10037,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 10044,
                        "src": "6031:7:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 10036,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6031:7:44",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6030:9:44"
                  },
                  "scope": 10624,
                  "src": "5964:116:44",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11708
                  ],
                  "body": {
                    "id": 10060,
                    "nodeType": "Block",
                    "src": "6206:38:44",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 10056,
                              "name": "_user",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10047,
                              "src": "6226:5:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 10057,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10049,
                              "src": "6233:3:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 10055,
                            "name": "_delegate",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10188,
                            "src": "6216:9:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$returns$__$",
                              "typeString": "function (address,address)"
                            }
                          },
                          "id": 10058,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6216:21:44",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 10059,
                        "nodeType": "ExpressionStatement",
                        "src": "6216:21:44"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 10045,
                    "nodeType": "StructuredDocumentation",
                    "src": "6086:23:44",
                    "text": "@inheritdoc ITicket"
                  },
                  "functionSelector": "33e39b61",
                  "id": 10061,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 10053,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 10052,
                        "name": "onlyController",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5878,
                        "src": "6191:14:44"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "6191:14:44"
                    }
                  ],
                  "name": "controllerDelegateFor",
                  "nameLocation": "6123:21:44",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 10051,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "6182:8:44"
                  },
                  "parameters": {
                    "id": 10050,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10047,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "6153:5:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 10061,
                        "src": "6145:13:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 10046,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6145:7:44",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10049,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "6168:3:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 10061,
                        "src": "6160:11:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 10048,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6160:7:44",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6144:28:44"
                  },
                  "returnParameters": {
                    "id": 10054,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "6206:0:44"
                  },
                  "scope": 10624,
                  "src": "6114:130:44",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11724
                  ],
                  "body": {
                    "id": 10129,
                    "nodeType": "Block",
                    "src": "6479:438:44",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 10082,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 10079,
                                  "name": "block",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -4,
                                  "src": "6497:5:44",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_block",
                                    "typeString": "block"
                                  }
                                },
                                "id": 10080,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "timestamp",
                                "nodeType": "MemberAccess",
                                "src": "6497:15:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "id": 10081,
                                "name": "_deadline",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10068,
                                "src": "6516:9:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "6497:28:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5469636b65742f64656c65676174652d657870697265642d646561646c696e65",
                              "id": 10083,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "6527:34:44",
                              "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": 10078,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "6489:7:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 10084,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6489:73:44",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 10085,
                        "nodeType": "ExpressionStatement",
                        "src": "6489:73:44"
                      },
                      {
                        "assignments": [
                          10087
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10087,
                            "mutability": "mutable",
                            "name": "structHash",
                            "nameLocation": "6581:10:44",
                            "nodeType": "VariableDeclaration",
                            "scope": 10129,
                            "src": "6573:18:44",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes32",
                              "typeString": "bytes32"
                            },
                            "typeName": {
                              "id": 10086,
                              "name": "bytes32",
                              "nodeType": "ElementaryTypeName",
                              "src": "6573:7:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10100,
                        "initialValue": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 10091,
                                  "name": "_DELEGATE_TYPEHASH",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 9650,
                                  "src": "6615:18:44",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes32",
                                    "typeString": "bytes32"
                                  }
                                },
                                {
                                  "id": 10092,
                                  "name": "_user",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 10064,
                                  "src": "6635:5:44",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "id": 10093,
                                  "name": "_newDelegate",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 10066,
                                  "src": "6642:12:44",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "arguments": [
                                    {
                                      "id": 10095,
                                      "name": "_user",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 10064,
                                      "src": "6666:5:44",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_address",
                                        "typeString": "address"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_address",
                                        "typeString": "address"
                                      }
                                    ],
                                    "id": 10094,
                                    "name": "_useNonce",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 1083,
                                    "src": "6656:9:44",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_nonpayable$_t_address_$returns$_t_uint256_$",
                                      "typeString": "function (address) returns (uint256)"
                                    }
                                  },
                                  "id": 10096,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "6656:16:44",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                {
                                  "id": 10097,
                                  "name": "_deadline",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 10068,
                                  "src": "6674:9:44",
                                  "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": 10089,
                                  "name": "abi",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -1,
                                  "src": "6604:3:44",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_abi",
                                    "typeString": "abi"
                                  }
                                },
                                "id": 10090,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "encode",
                                "nodeType": "MemberAccess",
                                "src": "6604:10:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$",
                                  "typeString": "function () pure returns (bytes memory)"
                                }
                              },
                              "id": 10098,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "6604:80:44",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "id": 10088,
                            "name": "keccak256",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": -8,
                            "src": "6594:9:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$",
                              "typeString": "function (bytes memory) pure returns (bytes32)"
                            }
                          },
                          "id": 10099,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6594:91:44",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "6573:112:44"
                      },
                      {
                        "assignments": [
                          10102
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10102,
                            "mutability": "mutable",
                            "name": "hash",
                            "nameLocation": "6704:4:44",
                            "nodeType": "VariableDeclaration",
                            "scope": 10129,
                            "src": "6696:12:44",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes32",
                              "typeString": "bytes32"
                            },
                            "typeName": {
                              "id": 10101,
                              "name": "bytes32",
                              "nodeType": "ElementaryTypeName",
                              "src": "6696:7:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10106,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 10104,
                              "name": "structHash",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10087,
                              "src": "6728:10:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            ],
                            "id": 10103,
                            "name": "_hashTypedDataV4",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 2617,
                            "src": "6711:16:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_bytes32_$returns$_t_bytes32_$",
                              "typeString": "function (bytes32) view returns (bytes32)"
                            }
                          },
                          "id": 10105,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6711:28:44",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "6696:43:44"
                      },
                      {
                        "assignments": [
                          10108
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10108,
                            "mutability": "mutable",
                            "name": "signer",
                            "nameLocation": "6758:6:44",
                            "nodeType": "VariableDeclaration",
                            "scope": 10129,
                            "src": "6750:14:44",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            },
                            "typeName": {
                              "id": 10107,
                              "name": "address",
                              "nodeType": "ElementaryTypeName",
                              "src": "6750:7:44",
                              "stateMutability": "nonpayable",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10116,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 10111,
                              "name": "hash",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10102,
                              "src": "6781:4:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            {
                              "id": 10112,
                              "name": "_v",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10070,
                              "src": "6787:2:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            {
                              "id": 10113,
                              "name": "_r",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10072,
                              "src": "6791:2:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            {
                              "id": 10114,
                              "name": "_s",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10074,
                              "src": "6795:2:44",
                              "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": 10109,
                              "name": "ECDSA",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 2464,
                              "src": "6767:5:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_ECDSA_$2464_$",
                                "typeString": "type(library ECDSA)"
                              }
                            },
                            "id": 10110,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "recover",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 2404,
                            "src": "6767:13:44",
                            "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": 10115,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6767:31:44",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "6750:48:44"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 10120,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 10118,
                                "name": "signer",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10108,
                                "src": "6816:6:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "==",
                              "rightExpression": {
                                "id": 10119,
                                "name": "_user",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10064,
                                "src": "6826:5:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "6816:15:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5469636b65742f64656c65676174652d696e76616c69642d7369676e6174757265",
                              "id": 10121,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "6833:35:44",
                              "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": 10117,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "6808:7:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 10122,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6808:61:44",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 10123,
                        "nodeType": "ExpressionStatement",
                        "src": "6808:61:44"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 10125,
                              "name": "_user",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10064,
                              "src": "6890:5:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 10126,
                              "name": "_newDelegate",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10066,
                              "src": "6897:12:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 10124,
                            "name": "_delegate",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10188,
                            "src": "6880:9:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$returns$__$",
                              "typeString": "function (address,address)"
                            }
                          },
                          "id": 10127,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6880:30:44",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 10128,
                        "nodeType": "ExpressionStatement",
                        "src": "6880:30:44"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 10062,
                    "nodeType": "StructuredDocumentation",
                    "src": "6250:23:44",
                    "text": "@inheritdoc ITicket"
                  },
                  "functionSelector": "919974dc",
                  "id": 10130,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "delegateWithSignature",
                  "nameLocation": "6287:21:44",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 10076,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "6470:8:44"
                  },
                  "parameters": {
                    "id": 10075,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10064,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "6326:5:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 10130,
                        "src": "6318:13:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 10063,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6318:7:44",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10066,
                        "mutability": "mutable",
                        "name": "_newDelegate",
                        "nameLocation": "6349:12:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 10130,
                        "src": "6341:20:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 10065,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6341:7:44",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10068,
                        "mutability": "mutable",
                        "name": "_deadline",
                        "nameLocation": "6379:9:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 10130,
                        "src": "6371:17:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 10067,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "6371:7:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10070,
                        "mutability": "mutable",
                        "name": "_v",
                        "nameLocation": "6404:2:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 10130,
                        "src": "6398:8:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 10069,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "6398:5:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10072,
                        "mutability": "mutable",
                        "name": "_r",
                        "nameLocation": "6424:2:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 10130,
                        "src": "6416:10:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 10071,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "6416:7:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10074,
                        "mutability": "mutable",
                        "name": "_s",
                        "nameLocation": "6444:2:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 10130,
                        "src": "6436:10:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 10073,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "6436:7:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6308:144:44"
                  },
                  "returnParameters": {
                    "id": 10077,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "6479:0:44"
                  },
                  "scope": 10624,
                  "src": "6278:639:44",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11700
                  ],
                  "body": {
                    "id": 10143,
                    "nodeType": "Block",
                    "src": "7008:43:44",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 10138,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "7028:3:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 10139,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "7028:10:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 10140,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10133,
                              "src": "7040:3:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 10137,
                            "name": "_delegate",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10188,
                            "src": "7018:9:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$returns$__$",
                              "typeString": "function (address,address)"
                            }
                          },
                          "id": 10141,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7018:26:44",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 10142,
                        "nodeType": "ExpressionStatement",
                        "src": "7018:26:44"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 10131,
                    "nodeType": "StructuredDocumentation",
                    "src": "6923:23:44",
                    "text": "@inheritdoc ITicket"
                  },
                  "functionSelector": "5c19a95c",
                  "id": 10144,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "delegate",
                  "nameLocation": "6960:8:44",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 10135,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "6999:8:44"
                  },
                  "parameters": {
                    "id": 10134,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10133,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "6977:3:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 10144,
                        "src": "6969:11:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 10132,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6969:7:44",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6968:13:44"
                  },
                  "returnParameters": {
                    "id": 10136,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "7008:0:44"
                  },
                  "scope": 10624,
                  "src": "6951:100:44",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 10187,
                    "nodeType": "Block",
                    "src": "7261:297:44",
                    "statements": [
                      {
                        "assignments": [
                          10153
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10153,
                            "mutability": "mutable",
                            "name": "balance",
                            "nameLocation": "7279:7:44",
                            "nodeType": "VariableDeclaration",
                            "scope": 10187,
                            "src": "7271:15:44",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 10152,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "7271:7:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10157,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 10155,
                              "name": "_user",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10147,
                              "src": "7299:5:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 10154,
                            "name": "balanceOf",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 365,
                            "src": "7289:9:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_address_$returns$_t_uint256_$",
                              "typeString": "function (address) view returns (uint256)"
                            }
                          },
                          "id": 10156,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7289:16:44",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7271:34:44"
                      },
                      {
                        "assignments": [
                          10159
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10159,
                            "mutability": "mutable",
                            "name": "currentDelegate",
                            "nameLocation": "7323:15:44",
                            "nodeType": "VariableDeclaration",
                            "scope": 10187,
                            "src": "7315:23:44",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            },
                            "typeName": {
                              "id": 10158,
                              "name": "address",
                              "nodeType": "ElementaryTypeName",
                              "src": "7315:7:44",
                              "stateMutability": "nonpayable",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10163,
                        "initialValue": {
                          "baseExpression": {
                            "id": 10160,
                            "name": "delegates",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9665,
                            "src": "7341:9:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_address_$",
                              "typeString": "mapping(address => address)"
                            }
                          },
                          "id": 10162,
                          "indexExpression": {
                            "id": 10161,
                            "name": "_user",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10147,
                            "src": "7351:5:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "7341:16:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7315:42:44"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          },
                          "id": 10166,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 10164,
                            "name": "currentDelegate",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10159,
                            "src": "7372:15:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "id": 10165,
                            "name": "_to",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10149,
                            "src": "7391:3:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "7372:22:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 10169,
                        "nodeType": "IfStatement",
                        "src": "7368:59:44",
                        "trueBody": {
                          "id": 10168,
                          "nodeType": "Block",
                          "src": "7396:31:44",
                          "statements": [
                            {
                              "functionReturnParameters": 10151,
                              "id": 10167,
                              "nodeType": "Return",
                              "src": "7410:7:44"
                            }
                          ]
                        }
                      },
                      {
                        "expression": {
                          "id": 10174,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "id": 10170,
                              "name": "delegates",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9665,
                              "src": "7437:9:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_address_$_t_address_$",
                                "typeString": "mapping(address => address)"
                              }
                            },
                            "id": 10172,
                            "indexExpression": {
                              "id": 10171,
                              "name": "_user",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10147,
                              "src": "7447:5:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "7437:16:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 10173,
                            "name": "_to",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10149,
                            "src": "7456:3:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "7437:22:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "id": 10175,
                        "nodeType": "ExpressionStatement",
                        "src": "7437:22:44"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 10177,
                              "name": "currentDelegate",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10159,
                              "src": "7484:15:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 10178,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10149,
                              "src": "7501:3:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 10179,
                              "name": "balance",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10153,
                              "src": "7506:7:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 10176,
                            "name": "_transferTwab",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10401,
                            "src": "7470:13:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 10180,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7470:44:44",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 10181,
                        "nodeType": "ExpressionStatement",
                        "src": "7470:44:44"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 10183,
                              "name": "_user",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10147,
                              "src": "7540:5:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 10184,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10149,
                              "src": "7547:3:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 10182,
                            "name": "Delegated",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11661,
                            "src": "7530:9:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$returns$__$",
                              "typeString": "function (address,address)"
                            }
                          },
                          "id": 10185,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7530:21:44",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 10186,
                        "nodeType": "EmitStatement",
                        "src": "7525:26:44"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 10145,
                    "nodeType": "StructuredDocumentation",
                    "src": "7057:143:44",
                    "text": "@notice Delegates a users chance to another\n @param _user The user whose balance should be delegated\n @param _to The delegate"
                  },
                  "id": 10188,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_delegate",
                  "nameLocation": "7214:9:44",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10150,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10147,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "7232:5:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 10188,
                        "src": "7224:13:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 10146,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "7224:7:44",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10149,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "7247:3:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 10188,
                        "src": "7239:11:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 10148,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "7239:7:44",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7223:28:44"
                  },
                  "returnParameters": {
                    "id": 10151,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "7261:0:44"
                  },
                  "scope": 10624,
                  "src": "7205:353:44",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 10282,
                    "nodeType": "Block",
                    "src": "8173:724:44",
                    "statements": [
                      {
                        "assignments": [
                          10205
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10205,
                            "mutability": "mutable",
                            "name": "startTimesLength",
                            "nameLocation": "8191:16:44",
                            "nodeType": "VariableDeclaration",
                            "scope": 10282,
                            "src": "8183:24:44",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 10204,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "8183:7:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10208,
                        "initialValue": {
                          "expression": {
                            "id": 10206,
                            "name": "_startTimes",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10195,
                            "src": "8210:11:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                              "typeString": "uint64[] calldata"
                            }
                          },
                          "id": 10207,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "length",
                          "nodeType": "MemberAccess",
                          "src": "8210:18:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "8183:45:44"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 10213,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 10210,
                                "name": "startTimesLength",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 10205,
                                "src": "8246:16:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "==",
                              "rightExpression": {
                                "expression": {
                                  "id": 10211,
                                  "name": "_endTimes",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 10198,
                                  "src": "8266:9:44",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                                    "typeString": "uint64[] calldata"
                                  }
                                },
                                "id": 10212,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "length",
                                "nodeType": "MemberAccess",
                                "src": "8266:16:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "8246:36:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5469636b65742f73746172742d656e642d74696d65732d6c656e6774682d6d61746368",
                              "id": 10214,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "8284:37:44",
                              "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": 10209,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "8238:7:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 10215,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8238:84:44",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 10216,
                        "nodeType": "ExpressionStatement",
                        "src": "8238:84:44"
                      },
                      {
                        "assignments": [
                          10221
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10221,
                            "mutability": "mutable",
                            "name": "accountDetails",
                            "nameLocation": "8363:14:44",
                            "nodeType": "VariableDeclaration",
                            "scope": 10282,
                            "src": "8333:44:44",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                              "typeString": "struct TwabLib.AccountDetails"
                            },
                            "typeName": {
                              "id": 10220,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 10219,
                                "name": "TwabLib.AccountDetails",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12485,
                                "src": "8333:22:44"
                              },
                              "referencedDeclaration": 12485,
                              "src": "8333:22:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12485_storage_ptr",
                                "typeString": "struct TwabLib.AccountDetails"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10224,
                        "initialValue": {
                          "expression": {
                            "id": 10222,
                            "name": "_account",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10192,
                            "src": "8380:8:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Account_$12494_storage_ptr",
                              "typeString": "struct TwabLib.Account storage pointer"
                            }
                          },
                          "id": 10223,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "details",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 12488,
                          "src": "8380:16:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12485_storage",
                            "typeString": "struct TwabLib.AccountDetails storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "8333:63:44"
                      },
                      {
                        "assignments": [
                          10229
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10229,
                            "mutability": "mutable",
                            "name": "averageBalances",
                            "nameLocation": "8424:15:44",
                            "nodeType": "VariableDeclaration",
                            "scope": 10282,
                            "src": "8407:32:44",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 10227,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "8407:7:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 10228,
                              "nodeType": "ArrayTypeName",
                              "src": "8407:9:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10235,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 10233,
                              "name": "startTimesLength",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10205,
                              "src": "8456:16:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 10232,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "8442:13:44",
                            "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": 10230,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "8446:7:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 10231,
                              "nodeType": "ArrayTypeName",
                              "src": "8446:9:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            }
                          },
                          "id": 10234,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8442:31:44",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "8407:66:44"
                      },
                      {
                        "assignments": [
                          10237
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10237,
                            "mutability": "mutable",
                            "name": "currentTimestamp",
                            "nameLocation": "8490:16:44",
                            "nodeType": "VariableDeclaration",
                            "scope": 10282,
                            "src": "8483:23:44",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "typeName": {
                              "id": 10236,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "8483:6:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10243,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 10240,
                                "name": "block",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -4,
                                "src": "8516:5:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_block",
                                  "typeString": "block"
                                }
                              },
                              "id": 10241,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "timestamp",
                              "nodeType": "MemberAccess",
                              "src": "8516:15:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 10239,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "8509:6:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint32_$",
                              "typeString": "type(uint32)"
                            },
                            "typeName": {
                              "id": 10238,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "8509:6:44",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 10242,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8509:23:44",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "8483:49:44"
                      },
                      {
                        "body": {
                          "id": 10278,
                          "nodeType": "Block",
                          "src": "8590:268:44",
                          "statements": [
                            {
                              "expression": {
                                "id": 10276,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "baseExpression": {
                                    "id": 10254,
                                    "name": "averageBalances",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 10229,
                                    "src": "8604:15:44",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                      "typeString": "uint256[] memory"
                                    }
                                  },
                                  "id": 10256,
                                  "indexExpression": {
                                    "id": 10255,
                                    "name": "i",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 10245,
                                    "src": "8620:1:44",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": true,
                                  "nodeType": "IndexAccess",
                                  "src": "8604:18:44",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "arguments": [
                                    {
                                      "expression": {
                                        "id": 10259,
                                        "name": "_account",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 10192,
                                        "src": "8675:8:44",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_Account_$12494_storage_ptr",
                                          "typeString": "struct TwabLib.Account storage pointer"
                                        }
                                      },
                                      "id": 10260,
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "memberName": "twabs",
                                      "nodeType": "MemberAccess",
                                      "referencedDeclaration": 12493,
                                      "src": "8675:14:44",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage",
                                        "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                                      }
                                    },
                                    {
                                      "id": 10261,
                                      "name": "accountDetails",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 10221,
                                      "src": "8707:14:44",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                                        "typeString": "struct TwabLib.AccountDetails memory"
                                      }
                                    },
                                    {
                                      "arguments": [
                                        {
                                          "baseExpression": {
                                            "id": 10264,
                                            "name": "_startTimes",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 10195,
                                            "src": "8746:11:44",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                                              "typeString": "uint64[] calldata"
                                            }
                                          },
                                          "id": 10266,
                                          "indexExpression": {
                                            "id": 10265,
                                            "name": "i",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 10245,
                                            "src": "8758:1:44",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            }
                                          },
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "nodeType": "IndexAccess",
                                          "src": "8746:14:44",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint64",
                                            "typeString": "uint64"
                                          }
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_uint64",
                                            "typeString": "uint64"
                                          }
                                        ],
                                        "id": 10263,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "8739:6:44",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_uint32_$",
                                          "typeString": "type(uint32)"
                                        },
                                        "typeName": {
                                          "id": 10262,
                                          "name": "uint32",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "8739:6:44",
                                          "typeDescriptions": {}
                                        }
                                      },
                                      "id": 10267,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "typeConversion",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "8739:22:44",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    },
                                    {
                                      "arguments": [
                                        {
                                          "baseExpression": {
                                            "id": 10270,
                                            "name": "_endTimes",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 10198,
                                            "src": "8786:9:44",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                                              "typeString": "uint64[] calldata"
                                            }
                                          },
                                          "id": 10272,
                                          "indexExpression": {
                                            "id": 10271,
                                            "name": "i",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 10245,
                                            "src": "8796:1:44",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            }
                                          },
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "nodeType": "IndexAccess",
                                          "src": "8786:12:44",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint64",
                                            "typeString": "uint64"
                                          }
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_uint64",
                                            "typeString": "uint64"
                                          }
                                        ],
                                        "id": 10269,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "8779:6:44",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_uint32_$",
                                          "typeString": "type(uint32)"
                                        },
                                        "typeName": {
                                          "id": 10268,
                                          "name": "uint32",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "8779:6:44",
                                          "typeDescriptions": {}
                                        }
                                      },
                                      "id": 10273,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "typeConversion",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "8779:20:44",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    },
                                    {
                                      "id": 10274,
                                      "name": "currentTimestamp",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 10237,
                                      "src": "8817:16:44",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage",
                                        "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                                      },
                                      {
                                        "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                                        "typeString": "struct TwabLib.AccountDetails memory"
                                      },
                                      {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      },
                                      {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      },
                                      {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    ],
                                    "expression": {
                                      "id": 10257,
                                      "name": "TwabLib",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 13211,
                                      "src": "8625:7:44",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_contract$_TwabLib_$13211_$",
                                        "typeString": "type(library TwabLib)"
                                      }
                                    },
                                    "id": 10258,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "getAverageBalanceBetween",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 12634,
                                    "src": "8625:32:44",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr_$_t_struct$_AccountDetails_$12485_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": 10275,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "8625:222:44",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "8604:243:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 10277,
                              "nodeType": "ExpressionStatement",
                              "src": "8604:243:44"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 10250,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 10248,
                            "name": "i",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10245,
                            "src": "8563:1:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "id": 10249,
                            "name": "startTimesLength",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10205,
                            "src": "8567:16:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "8563:20:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 10279,
                        "initializationExpression": {
                          "assignments": [
                            10245
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 10245,
                              "mutability": "mutable",
                              "name": "i",
                              "nameLocation": "8556:1:44",
                              "nodeType": "VariableDeclaration",
                              "scope": 10279,
                              "src": "8548:9:44",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "typeName": {
                                "id": 10244,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "8548:7:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 10247,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 10246,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "8560:1:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "8548:13:44"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 10252,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "8585:3:44",
                            "subExpression": {
                              "id": 10251,
                              "name": "i",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10245,
                              "src": "8585:1:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 10253,
                          "nodeType": "ExpressionStatement",
                          "src": "8585:3:44"
                        },
                        "nodeType": "ForStatement",
                        "src": "8543:315:44"
                      },
                      {
                        "expression": {
                          "id": 10280,
                          "name": "averageBalances",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 10229,
                          "src": "8875:15:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "functionReturnParameters": 10203,
                        "id": 10281,
                        "nodeType": "Return",
                        "src": "8868:22:44"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 10189,
                    "nodeType": "StructuredDocumentation",
                    "src": "7620:347:44",
                    "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": 10283,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_getAverageBalancesBetween",
                  "nameLocation": "7981:26:44",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10199,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10192,
                        "mutability": "mutable",
                        "name": "_account",
                        "nameLocation": "8041:8:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 10283,
                        "src": "8017:32:44",
                        "stateVariable": false,
                        "storageLocation": "storage",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Account_$12494_storage_ptr",
                          "typeString": "struct TwabLib.Account"
                        },
                        "typeName": {
                          "id": 10191,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 10190,
                            "name": "TwabLib.Account",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12494,
                            "src": "8017:15:44"
                          },
                          "referencedDeclaration": 12494,
                          "src": "8017:15:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Account_$12494_storage_ptr",
                            "typeString": "struct TwabLib.Account"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10195,
                        "mutability": "mutable",
                        "name": "_startTimes",
                        "nameLocation": "8077:11:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 10283,
                        "src": "8059:29:44",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                          "typeString": "uint64[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 10193,
                            "name": "uint64",
                            "nodeType": "ElementaryTypeName",
                            "src": "8059:6:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "id": 10194,
                          "nodeType": "ArrayTypeName",
                          "src": "8059:8:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                            "typeString": "uint64[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10198,
                        "mutability": "mutable",
                        "name": "_endTimes",
                        "nameLocation": "8116:9:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 10283,
                        "src": "8098:27:44",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                          "typeString": "uint64[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 10196,
                            "name": "uint64",
                            "nodeType": "ElementaryTypeName",
                            "src": "8098:6:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "id": 10197,
                          "nodeType": "ArrayTypeName",
                          "src": "8098:8:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                            "typeString": "uint64[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8007:124:44"
                  },
                  "returnParameters": {
                    "id": 10203,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10202,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 10283,
                        "src": "8155:16:44",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 10200,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "8155:7:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 10201,
                          "nodeType": "ArrayTypeName",
                          "src": "8155:9:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8154:18:44"
                  },
                  "scope": 10624,
                  "src": "7972:925:44",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "baseFunctions": [
                    800
                  ],
                  "body": {
                    "id": 10339,
                    "nodeType": "Block",
                    "src": "9021:364:44",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          },
                          "id": 10295,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 10293,
                            "name": "_from",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10285,
                            "src": "9035:5:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "id": 10294,
                            "name": "_to",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10287,
                            "src": "9044:3:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "9035:12:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 10298,
                        "nodeType": "IfStatement",
                        "src": "9031:49:44",
                        "trueBody": {
                          "id": 10297,
                          "nodeType": "Block",
                          "src": "9049:31:44",
                          "statements": [
                            {
                              "functionReturnParameters": 10292,
                              "id": 10296,
                              "nodeType": "Return",
                              "src": "9063:7:44"
                            }
                          ]
                        }
                      },
                      {
                        "assignments": [
                          10300
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10300,
                            "mutability": "mutable",
                            "name": "_fromDelegate",
                            "nameLocation": "9098:13:44",
                            "nodeType": "VariableDeclaration",
                            "scope": 10339,
                            "src": "9090:21:44",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            },
                            "typeName": {
                              "id": 10299,
                              "name": "address",
                              "nodeType": "ElementaryTypeName",
                              "src": "9090:7:44",
                              "stateMutability": "nonpayable",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10301,
                        "nodeType": "VariableDeclarationStatement",
                        "src": "9090:21:44"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          },
                          "id": 10307,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 10302,
                            "name": "_from",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10285,
                            "src": "9125:5:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "!=",
                          "rightExpression": {
                            "arguments": [
                              {
                                "hexValue": "30",
                                "id": 10305,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "9142:1:44",
                                "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": 10304,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "nodeType": "ElementaryTypeNameExpression",
                              "src": "9134:7:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_address_$",
                                "typeString": "type(address)"
                              },
                              "typeName": {
                                "id": 10303,
                                "name": "address",
                                "nodeType": "ElementaryTypeName",
                                "src": "9134:7:44",
                                "typeDescriptions": {}
                              }
                            },
                            "id": 10306,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "typeConversion",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "9134:10:44",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "9125:19:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 10315,
                        "nodeType": "IfStatement",
                        "src": "9121:82:44",
                        "trueBody": {
                          "id": 10314,
                          "nodeType": "Block",
                          "src": "9146:57:44",
                          "statements": [
                            {
                              "expression": {
                                "id": 10312,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 10308,
                                  "name": "_fromDelegate",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 10300,
                                  "src": "9160:13:44",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "baseExpression": {
                                    "id": 10309,
                                    "name": "delegates",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 9665,
                                    "src": "9176:9:44",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_mapping$_t_address_$_t_address_$",
                                      "typeString": "mapping(address => address)"
                                    }
                                  },
                                  "id": 10311,
                                  "indexExpression": {
                                    "id": 10310,
                                    "name": "_from",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 10285,
                                    "src": "9186:5:44",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "IndexAccess",
                                  "src": "9176:16:44",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "src": "9160:32:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "id": 10313,
                              "nodeType": "ExpressionStatement",
                              "src": "9160:32:44"
                            }
                          ]
                        }
                      },
                      {
                        "assignments": [
                          10317
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10317,
                            "mutability": "mutable",
                            "name": "_toDelegate",
                            "nameLocation": "9221:11:44",
                            "nodeType": "VariableDeclaration",
                            "scope": 10339,
                            "src": "9213:19:44",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            },
                            "typeName": {
                              "id": 10316,
                              "name": "address",
                              "nodeType": "ElementaryTypeName",
                              "src": "9213:7:44",
                              "stateMutability": "nonpayable",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10318,
                        "nodeType": "VariableDeclarationStatement",
                        "src": "9213:19:44"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          },
                          "id": 10324,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 10319,
                            "name": "_to",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10287,
                            "src": "9246:3:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "!=",
                          "rightExpression": {
                            "arguments": [
                              {
                                "hexValue": "30",
                                "id": 10322,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "9261:1:44",
                                "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": 10321,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "nodeType": "ElementaryTypeNameExpression",
                              "src": "9253:7:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_address_$",
                                "typeString": "type(address)"
                              },
                              "typeName": {
                                "id": 10320,
                                "name": "address",
                                "nodeType": "ElementaryTypeName",
                                "src": "9253:7:44",
                                "typeDescriptions": {}
                              }
                            },
                            "id": 10323,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "typeConversion",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "9253:10:44",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "9246:17:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 10332,
                        "nodeType": "IfStatement",
                        "src": "9242:76:44",
                        "trueBody": {
                          "id": 10331,
                          "nodeType": "Block",
                          "src": "9265:53:44",
                          "statements": [
                            {
                              "expression": {
                                "id": 10329,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 10325,
                                  "name": "_toDelegate",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 10317,
                                  "src": "9279:11:44",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "baseExpression": {
                                    "id": 10326,
                                    "name": "delegates",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 9665,
                                    "src": "9293:9:44",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_mapping$_t_address_$_t_address_$",
                                      "typeString": "mapping(address => address)"
                                    }
                                  },
                                  "id": 10328,
                                  "indexExpression": {
                                    "id": 10327,
                                    "name": "_to",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 10287,
                                    "src": "9303:3:44",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "IndexAccess",
                                  "src": "9293:14:44",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "src": "9279:28:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "id": 10330,
                              "nodeType": "ExpressionStatement",
                              "src": "9279:28:44"
                            }
                          ]
                        }
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 10334,
                              "name": "_fromDelegate",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10300,
                              "src": "9342:13:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 10335,
                              "name": "_toDelegate",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10317,
                              "src": "9357:11:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 10336,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10289,
                              "src": "9370:7:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 10333,
                            "name": "_transferTwab",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10401,
                            "src": "9328:13:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 10337,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9328:50:44",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 10338,
                        "nodeType": "ExpressionStatement",
                        "src": "9328:50:44"
                      }
                    ]
                  },
                  "id": 10340,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_beforeTokenTransfer",
                  "nameLocation": "8937:20:44",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 10291,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "9012:8:44"
                  },
                  "parameters": {
                    "id": 10290,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10285,
                        "mutability": "mutable",
                        "name": "_from",
                        "nameLocation": "8966:5:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 10340,
                        "src": "8958:13:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 10284,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "8958:7:44",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10287,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "8981:3:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 10340,
                        "src": "8973:11:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 10286,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "8973:7:44",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10289,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "8994:7:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 10340,
                        "src": "8986:15:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 10288,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "8986:7:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8957:45:44"
                  },
                  "returnParameters": {
                    "id": 10292,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "9021:0:44"
                  },
                  "scope": 10624,
                  "src": "8928:457:44",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 10400,
                    "nodeType": "Block",
                    "src": "9794:580:44",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          },
                          "id": 10355,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 10350,
                            "name": "_from",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10343,
                            "src": "9900:5:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "!=",
                          "rightExpression": {
                            "arguments": [
                              {
                                "hexValue": "30",
                                "id": 10353,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "9917:1:44",
                                "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": 10352,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "nodeType": "ElementaryTypeNameExpression",
                              "src": "9909:7:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_address_$",
                                "typeString": "type(address)"
                              },
                              "typeName": {
                                "id": 10351,
                                "name": "address",
                                "nodeType": "ElementaryTypeName",
                                "src": "9909:7:44",
                                "typeDescriptions": {}
                              }
                            },
                            "id": 10354,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "typeConversion",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "9909:10:44",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "9900:19:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 10374,
                        "nodeType": "IfStatement",
                        "src": "9896:186:44",
                        "trueBody": {
                          "id": 10373,
                          "nodeType": "Block",
                          "src": "9921:161:44",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "id": 10357,
                                    "name": "_from",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 10343,
                                    "src": "9953:5:44",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "id": 10358,
                                    "name": "_amount",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 10347,
                                    "src": "9960:7:44",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  ],
                                  "id": 10356,
                                  "name": "_decreaseUserTwab",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 10524,
                                  "src": "9935:17:44",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$",
                                    "typeString": "function (address,uint256)"
                                  }
                                },
                                "id": 10359,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "9935:33:44",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 10360,
                              "nodeType": "ExpressionStatement",
                              "src": "9935:33:44"
                            },
                            {
                              "condition": {
                                "commonType": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                },
                                "id": 10366,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 10361,
                                  "name": "_to",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 10345,
                                  "src": "9987:3:44",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "==",
                                "rightExpression": {
                                  "arguments": [
                                    {
                                      "hexValue": "30",
                                      "id": 10364,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "kind": "number",
                                      "lValueRequested": false,
                                      "nodeType": "Literal",
                                      "src": "10002:1:44",
                                      "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": 10363,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "ElementaryTypeNameExpression",
                                    "src": "9994:7:44",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_address_$",
                                      "typeString": "type(address)"
                                    },
                                    "typeName": {
                                      "id": 10362,
                                      "name": "address",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "9994:7:44",
                                      "typeDescriptions": {}
                                    }
                                  },
                                  "id": 10365,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "typeConversion",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "9994:10:44",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "src": "9987:17:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "id": 10372,
                              "nodeType": "IfStatement",
                              "src": "9983:89:44",
                              "trueBody": {
                                "id": 10371,
                                "nodeType": "Block",
                                "src": "10006:66:44",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "id": 10368,
                                          "name": "_amount",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 10347,
                                          "src": "10049:7:44",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        ],
                                        "id": 10367,
                                        "name": "_decreaseTotalSupplyTwab",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 10574,
                                        "src": "10024:24:44",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_function_internal_nonpayable$_t_uint256_$returns$__$",
                                          "typeString": "function (uint256)"
                                        }
                                      },
                                      "id": 10369,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "functionCall",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "10024:33:44",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_tuple$__$",
                                        "typeString": "tuple()"
                                      }
                                    },
                                    "id": 10370,
                                    "nodeType": "ExpressionStatement",
                                    "src": "10024:33:44"
                                  }
                                ]
                              }
                            }
                          ]
                        }
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          },
                          "id": 10380,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 10375,
                            "name": "_to",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10345,
                            "src": "10188:3:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "!=",
                          "rightExpression": {
                            "arguments": [
                              {
                                "hexValue": "30",
                                "id": 10378,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "10203:1:44",
                                "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": 10377,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "nodeType": "ElementaryTypeNameExpression",
                              "src": "10195:7:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_address_$",
                                "typeString": "type(address)"
                              },
                              "typeName": {
                                "id": 10376,
                                "name": "address",
                                "nodeType": "ElementaryTypeName",
                                "src": "10195:7:44",
                                "typeDescriptions": {}
                              }
                            },
                            "id": 10379,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "typeConversion",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "10195:10:44",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "10188:17:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 10399,
                        "nodeType": "IfStatement",
                        "src": "10184:184:44",
                        "trueBody": {
                          "id": 10398,
                          "nodeType": "Block",
                          "src": "10207:161:44",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "id": 10382,
                                    "name": "_to",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 10345,
                                    "src": "10239:3:44",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "id": 10383,
                                    "name": "_amount",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 10347,
                                    "src": "10244:7:44",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  ],
                                  "id": 10381,
                                  "name": "_increaseUserTwab",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 10462,
                                  "src": "10221:17:44",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$",
                                    "typeString": "function (address,uint256)"
                                  }
                                },
                                "id": 10384,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "10221:31:44",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 10385,
                              "nodeType": "ExpressionStatement",
                              "src": "10221:31:44"
                            },
                            {
                              "condition": {
                                "commonType": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                },
                                "id": 10391,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 10386,
                                  "name": "_from",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 10343,
                                  "src": "10271:5:44",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "==",
                                "rightExpression": {
                                  "arguments": [
                                    {
                                      "hexValue": "30",
                                      "id": 10389,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "kind": "number",
                                      "lValueRequested": false,
                                      "nodeType": "Literal",
                                      "src": "10288:1:44",
                                      "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": 10388,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "ElementaryTypeNameExpression",
                                    "src": "10280:7:44",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_address_$",
                                      "typeString": "type(address)"
                                    },
                                    "typeName": {
                                      "id": 10387,
                                      "name": "address",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "10280:7:44",
                                      "typeDescriptions": {}
                                    }
                                  },
                                  "id": 10390,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "typeConversion",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "10280:10:44",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "src": "10271:19:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "id": 10397,
                              "nodeType": "IfStatement",
                              "src": "10267:91:44",
                              "trueBody": {
                                "id": 10396,
                                "nodeType": "Block",
                                "src": "10292:66:44",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "id": 10393,
                                          "name": "_amount",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 10347,
                                          "src": "10335:7:44",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        ],
                                        "id": 10392,
                                        "name": "_increaseTotalSupplyTwab",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 10623,
                                        "src": "10310:24:44",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_function_internal_nonpayable$_t_uint256_$returns$__$",
                                          "typeString": "function (uint256)"
                                        }
                                      },
                                      "id": 10394,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "functionCall",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "10310:33:44",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_tuple$__$",
                                        "typeString": "tuple()"
                                      }
                                    },
                                    "id": 10395,
                                    "nodeType": "ExpressionStatement",
                                    "src": "10310:33:44"
                                  }
                                ]
                              }
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 10341,
                    "nodeType": "StructuredDocumentation",
                    "src": "9391:321:44",
                    "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": 10401,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_transferTwab",
                  "nameLocation": "9726:13:44",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10348,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10343,
                        "mutability": "mutable",
                        "name": "_from",
                        "nameLocation": "9748:5:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 10401,
                        "src": "9740:13:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 10342,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "9740:7:44",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10345,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "9763:3:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 10401,
                        "src": "9755:11:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 10344,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "9755:7:44",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10347,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "9776:7:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 10401,
                        "src": "9768:15:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 10346,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "9768:7:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9739:45:44"
                  },
                  "returnParameters": {
                    "id": 10349,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "9794:0:44"
                  },
                  "scope": 10624,
                  "src": "9717:657:44",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 10461,
                    "nodeType": "Block",
                    "src": "10645:479:44",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 10411,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 10409,
                            "name": "_amount",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10406,
                            "src": "10659:7:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 10410,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "10670:1:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "10659:12:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 10414,
                        "nodeType": "IfStatement",
                        "src": "10655:49:44",
                        "trueBody": {
                          "id": 10413,
                          "nodeType": "Block",
                          "src": "10673:31:44",
                          "statements": [
                            {
                              "functionReturnParameters": 10408,
                              "id": 10412,
                              "nodeType": "Return",
                              "src": "10687:7:44"
                            }
                          ]
                        }
                      },
                      {
                        "assignments": [
                          10419
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10419,
                            "mutability": "mutable",
                            "name": "_account",
                            "nameLocation": "10738:8:44",
                            "nodeType": "VariableDeclaration",
                            "scope": 10461,
                            "src": "10714:32:44",
                            "stateVariable": false,
                            "storageLocation": "storage",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Account_$12494_storage_ptr",
                              "typeString": "struct TwabLib.Account"
                            },
                            "typeName": {
                              "id": 10418,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 10417,
                                "name": "TwabLib.Account",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12494,
                                "src": "10714:15:44"
                              },
                              "referencedDeclaration": 12494,
                              "src": "10714:15:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Account_$12494_storage_ptr",
                                "typeString": "struct TwabLib.Account"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10423,
                        "initialValue": {
                          "baseExpression": {
                            "id": 10420,
                            "name": "userTwabs",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9656,
                            "src": "10749:9:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_struct$_Account_$12494_storage_$",
                              "typeString": "mapping(address => struct TwabLib.Account storage ref)"
                            }
                          },
                          "id": 10422,
                          "indexExpression": {
                            "id": 10421,
                            "name": "_to",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10404,
                            "src": "10759:3:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "10749:14:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Account_$12494_storage",
                            "typeString": "struct TwabLib.Account storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "10714:49:44"
                      },
                      {
                        "assignments": [
                          10428,
                          10431,
                          10433
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10428,
                            "mutability": "mutable",
                            "name": "accountDetails",
                            "nameLocation": "10818:14:44",
                            "nodeType": "VariableDeclaration",
                            "scope": 10461,
                            "src": "10788:44:44",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                              "typeString": "struct TwabLib.AccountDetails"
                            },
                            "typeName": {
                              "id": 10427,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 10426,
                                "name": "TwabLib.AccountDetails",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12485,
                                "src": "10788:22:44"
                              },
                              "referencedDeclaration": 12485,
                              "src": "10788:22:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12485_storage_ptr",
                                "typeString": "struct TwabLib.AccountDetails"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 10431,
                            "mutability": "mutable",
                            "name": "twab",
                            "nameLocation": "10880:4:44",
                            "nodeType": "VariableDeclaration",
                            "scope": 10461,
                            "src": "10846:38:44",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            },
                            "typeName": {
                              "id": 10430,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 10429,
                                "name": "ObservationLib.Observation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12066,
                                "src": "10846:26:44"
                              },
                              "referencedDeclaration": 12066,
                              "src": "10846:26:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12066_storage_ptr",
                                "typeString": "struct ObservationLib.Observation"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 10433,
                            "mutability": "mutable",
                            "name": "isNew",
                            "nameLocation": "10903:5:44",
                            "nodeType": "VariableDeclaration",
                            "scope": 10461,
                            "src": "10898:10:44",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            },
                            "typeName": {
                              "id": 10432,
                              "name": "bool",
                              "nodeType": "ElementaryTypeName",
                              "src": "10898:4:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10446,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 10436,
                              "name": "_account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10419,
                              "src": "10945:8:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Account_$12494_storage_ptr",
                                "typeString": "struct TwabLib.Account storage pointer"
                              }
                            },
                            {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "expression": {
                                  "id": 10437,
                                  "name": "_amount",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 10406,
                                  "src": "10955:7:44",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "id": 10438,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "toUint208",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 12019,
                                "src": "10955:17:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_pure$_t_uint256_$returns$_t_uint208_$bound_to$_t_uint256_$",
                                  "typeString": "function (uint256) pure returns (uint208)"
                                }
                              },
                              "id": 10439,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "10955:19:44",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint208",
                                "typeString": "uint208"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "expression": {
                                    "id": 10442,
                                    "name": "block",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -4,
                                    "src": "10983:5:44",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_block",
                                      "typeString": "block"
                                    }
                                  },
                                  "id": 10443,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "timestamp",
                                  "nodeType": "MemberAccess",
                                  "src": "10983:15:44",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 10441,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "10976:6:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_uint32_$",
                                  "typeString": "type(uint32)"
                                },
                                "typeName": {
                                  "id": 10440,
                                  "name": "uint32",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "10976:6:44",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 10444,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "10976:23:44",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Account_$12494_storage_ptr",
                                "typeString": "struct TwabLib.Account storage pointer"
                              },
                              {
                                "typeIdentifier": "t_uint208",
                                "typeString": "uint208"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 10434,
                              "name": "TwabLib",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13211,
                              "src": "10921:7:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_TwabLib_$13211_$",
                                "typeString": "type(library TwabLib)"
                              }
                            },
                            "id": 10435,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "increaseBalance",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12541,
                            "src": "10921:23:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_struct$_Account_$12494_storage_ptr_$_t_uint208_$_t_uint32_$returns$_t_struct$_AccountDetails_$12485_memory_ptr_$_t_struct$_Observation_$12066_memory_ptr_$_t_bool_$",
                              "typeString": "function (struct TwabLib.Account storage pointer,uint208,uint32) returns (struct TwabLib.AccountDetails memory,struct ObservationLib.Observation memory,bool)"
                            }
                          },
                          "id": 10445,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10921:79:44",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_struct$_AccountDetails_$12485_memory_ptr_$_t_struct$_Observation_$12066_memory_ptr_$_t_bool_$",
                            "typeString": "tuple(struct TwabLib.AccountDetails memory,struct ObservationLib.Observation memory,bool)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "10774:226:44"
                      },
                      {
                        "expression": {
                          "id": 10451,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "expression": {
                              "id": 10447,
                              "name": "_account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10419,
                              "src": "11011:8:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Account_$12494_storage_ptr",
                                "typeString": "struct TwabLib.Account storage pointer"
                              }
                            },
                            "id": 10449,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "memberName": "details",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12488,
                            "src": "11011:16:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_AccountDetails_$12485_storage",
                              "typeString": "struct TwabLib.AccountDetails storage ref"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 10450,
                            "name": "accountDetails",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10428,
                            "src": "11030:14:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                              "typeString": "struct TwabLib.AccountDetails memory"
                            }
                          },
                          "src": "11011:33:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12485_storage",
                            "typeString": "struct TwabLib.AccountDetails storage ref"
                          }
                        },
                        "id": 10452,
                        "nodeType": "ExpressionStatement",
                        "src": "11011:33:44"
                      },
                      {
                        "condition": {
                          "id": 10453,
                          "name": "isNew",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 10433,
                          "src": "11059:5:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 10460,
                        "nodeType": "IfStatement",
                        "src": "11055:63:44",
                        "trueBody": {
                          "id": 10459,
                          "nodeType": "Block",
                          "src": "11066:52:44",
                          "statements": [
                            {
                              "eventCall": {
                                "arguments": [
                                  {
                                    "id": 10455,
                                    "name": "_to",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 10404,
                                    "src": "11097:3:44",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "id": 10456,
                                    "name": "twab",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 10431,
                                    "src": "11102:4:44",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                      "typeString": "struct ObservationLib.Observation memory"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                      "typeString": "struct ObservationLib.Observation memory"
                                    }
                                  ],
                                  "id": 10454,
                                  "name": "NewUserTwab",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 11680,
                                  "src": "11085:11:44",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_struct$_Observation_$12066_memory_ptr_$returns$__$",
                                    "typeString": "function (address,struct ObservationLib.Observation memory)"
                                  }
                                },
                                "id": 10457,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "11085:22:44",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 10458,
                              "nodeType": "EmitStatement",
                              "src": "11080:27:44"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 10402,
                    "nodeType": "StructuredDocumentation",
                    "src": "10380:172:44",
                    "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": 10462,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_increaseUserTwab",
                  "nameLocation": "10566:17:44",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10407,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10404,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "10601:3:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 10462,
                        "src": "10593:11:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 10403,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "10593:7:44",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10406,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "10622:7:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 10462,
                        "src": "10614:15:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 10405,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "10614:7:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "10583:52:44"
                  },
                  "returnParameters": {
                    "id": 10408,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "10645:0:44"
                  },
                  "scope": 10624,
                  "src": "10557:567:44",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 10523,
                    "nodeType": "Block",
                    "src": "11395:588:44",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 10472,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 10470,
                            "name": "_amount",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10467,
                            "src": "11409:7:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 10471,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "11420:1:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "11409:12:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 10475,
                        "nodeType": "IfStatement",
                        "src": "11405:49:44",
                        "trueBody": {
                          "id": 10474,
                          "nodeType": "Block",
                          "src": "11423:31:44",
                          "statements": [
                            {
                              "functionReturnParameters": 10469,
                              "id": 10473,
                              "nodeType": "Return",
                              "src": "11437:7:44"
                            }
                          ]
                        }
                      },
                      {
                        "assignments": [
                          10480
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10480,
                            "mutability": "mutable",
                            "name": "_account",
                            "nameLocation": "11488:8:44",
                            "nodeType": "VariableDeclaration",
                            "scope": 10523,
                            "src": "11464:32:44",
                            "stateVariable": false,
                            "storageLocation": "storage",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Account_$12494_storage_ptr",
                              "typeString": "struct TwabLib.Account"
                            },
                            "typeName": {
                              "id": 10479,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 10478,
                                "name": "TwabLib.Account",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12494,
                                "src": "11464:15:44"
                              },
                              "referencedDeclaration": 12494,
                              "src": "11464:15:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Account_$12494_storage_ptr",
                                "typeString": "struct TwabLib.Account"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10484,
                        "initialValue": {
                          "baseExpression": {
                            "id": 10481,
                            "name": "userTwabs",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 9656,
                            "src": "11499:9:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_struct$_Account_$12494_storage_$",
                              "typeString": "mapping(address => struct TwabLib.Account storage ref)"
                            }
                          },
                          "id": 10483,
                          "indexExpression": {
                            "id": 10482,
                            "name": "_to",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10465,
                            "src": "11509:3:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "11499:14:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Account_$12494_storage",
                            "typeString": "struct TwabLib.Account storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "11464:49:44"
                      },
                      {
                        "assignments": [
                          10489,
                          10492,
                          10494
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10489,
                            "mutability": "mutable",
                            "name": "accountDetails",
                            "nameLocation": "11568:14:44",
                            "nodeType": "VariableDeclaration",
                            "scope": 10523,
                            "src": "11538:44:44",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                              "typeString": "struct TwabLib.AccountDetails"
                            },
                            "typeName": {
                              "id": 10488,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 10487,
                                "name": "TwabLib.AccountDetails",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12485,
                                "src": "11538:22:44"
                              },
                              "referencedDeclaration": 12485,
                              "src": "11538:22:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12485_storage_ptr",
                                "typeString": "struct TwabLib.AccountDetails"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 10492,
                            "mutability": "mutable",
                            "name": "twab",
                            "nameLocation": "11630:4:44",
                            "nodeType": "VariableDeclaration",
                            "scope": 10523,
                            "src": "11596:38:44",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            },
                            "typeName": {
                              "id": 10491,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 10490,
                                "name": "ObservationLib.Observation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12066,
                                "src": "11596:26:44"
                              },
                              "referencedDeclaration": 12066,
                              "src": "11596:26:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12066_storage_ptr",
                                "typeString": "struct ObservationLib.Observation"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 10494,
                            "mutability": "mutable",
                            "name": "isNew",
                            "nameLocation": "11653:5:44",
                            "nodeType": "VariableDeclaration",
                            "scope": 10523,
                            "src": "11648:10:44",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            },
                            "typeName": {
                              "id": 10493,
                              "name": "bool",
                              "nodeType": "ElementaryTypeName",
                              "src": "11648:4:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10508,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 10497,
                              "name": "_account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10480,
                              "src": "11712:8:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Account_$12494_storage_ptr",
                                "typeString": "struct TwabLib.Account storage pointer"
                              }
                            },
                            {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "expression": {
                                  "id": 10498,
                                  "name": "_amount",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 10467,
                                  "src": "11738:7:44",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "id": 10499,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "toUint208",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 12019,
                                "src": "11738:17:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_pure$_t_uint256_$returns$_t_uint208_$bound_to$_t_uint256_$",
                                  "typeString": "function (uint256) pure returns (uint208)"
                                }
                              },
                              "id": 10500,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "11738:19:44",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint208",
                                "typeString": "uint208"
                              }
                            },
                            {
                              "hexValue": "5469636b65742f747761622d6275726e2d6c742d62616c616e6365",
                              "id": 10501,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "11775:29:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_bdc232da2cacdfc6bb12a6c9925b488f3596a88d72bc540ce4482e6bcaf53c9c",
                                "typeString": "literal_string \"Ticket/twab-burn-lt-balance\""
                              },
                              "value": "Ticket/twab-burn-lt-balance"
                            },
                            {
                              "arguments": [
                                {
                                  "expression": {
                                    "id": 10504,
                                    "name": "block",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -4,
                                    "src": "11829:5:44",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_block",
                                      "typeString": "block"
                                    }
                                  },
                                  "id": 10505,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "timestamp",
                                  "nodeType": "MemberAccess",
                                  "src": "11829:15:44",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 10503,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "11822:6:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_uint32_$",
                                  "typeString": "type(uint32)"
                                },
                                "typeName": {
                                  "id": 10502,
                                  "name": "uint32",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "11822:6:44",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 10506,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "11822:23:44",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Account_$12494_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": 10495,
                              "name": "TwabLib",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13211,
                              "src": "11671:7:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_TwabLib_$13211_$",
                                "typeString": "type(library TwabLib)"
                              }
                            },
                            "id": 10496,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "decreaseBalance",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12596,
                            "src": "11671:23:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_struct$_Account_$12494_storage_ptr_$_t_uint208_$_t_string_memory_ptr_$_t_uint32_$returns$_t_struct$_AccountDetails_$12485_memory_ptr_$_t_struct$_Observation_$12066_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": 10507,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "11671:188:44",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_struct$_AccountDetails_$12485_memory_ptr_$_t_struct$_Observation_$12066_memory_ptr_$_t_bool_$",
                            "typeString": "tuple(struct TwabLib.AccountDetails memory,struct ObservationLib.Observation memory,bool)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "11524:335:44"
                      },
                      {
                        "expression": {
                          "id": 10513,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "expression": {
                              "id": 10509,
                              "name": "_account",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 10480,
                              "src": "11870:8:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Account_$12494_storage_ptr",
                                "typeString": "struct TwabLib.Account storage pointer"
                              }
                            },
                            "id": 10511,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "memberName": "details",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12488,
                            "src": "11870:16:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_AccountDetails_$12485_storage",
                              "typeString": "struct TwabLib.AccountDetails storage ref"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 10512,
                            "name": "accountDetails",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10489,
                            "src": "11889:14:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                              "typeString": "struct TwabLib.AccountDetails memory"
                            }
                          },
                          "src": "11870:33:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12485_storage",
                            "typeString": "struct TwabLib.AccountDetails storage ref"
                          }
                        },
                        "id": 10514,
                        "nodeType": "ExpressionStatement",
                        "src": "11870:33:44"
                      },
                      {
                        "condition": {
                          "id": 10515,
                          "name": "isNew",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 10494,
                          "src": "11918:5:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 10522,
                        "nodeType": "IfStatement",
                        "src": "11914:63:44",
                        "trueBody": {
                          "id": 10521,
                          "nodeType": "Block",
                          "src": "11925:52:44",
                          "statements": [
                            {
                              "eventCall": {
                                "arguments": [
                                  {
                                    "id": 10517,
                                    "name": "_to",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 10465,
                                    "src": "11956:3:44",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "id": 10518,
                                    "name": "twab",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 10492,
                                    "src": "11961:4:44",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                      "typeString": "struct ObservationLib.Observation memory"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                      "typeString": "struct ObservationLib.Observation memory"
                                    }
                                  ],
                                  "id": 10516,
                                  "name": "NewUserTwab",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 11680,
                                  "src": "11944:11:44",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_struct$_Observation_$12066_memory_ptr_$returns$__$",
                                    "typeString": "function (address,struct ObservationLib.Observation memory)"
                                  }
                                },
                                "id": 10519,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "11944:22:44",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 10520,
                              "nodeType": "EmitStatement",
                              "src": "11939:27:44"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 10463,
                    "nodeType": "StructuredDocumentation",
                    "src": "11130:172:44",
                    "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": 10524,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_decreaseUserTwab",
                  "nameLocation": "11316:17:44",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10468,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10465,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "11351:3:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 10524,
                        "src": "11343:11:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 10464,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "11343:7:44",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10467,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "11372:7:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 10524,
                        "src": "11364:15:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 10466,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "11364:7:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "11333:52:44"
                  },
                  "returnParameters": {
                    "id": 10469,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "11395:0:44"
                  },
                  "scope": 10624,
                  "src": "11307:676:44",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 10573,
                    "nodeType": "Block",
                    "src": "12229:569:44",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 10532,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 10530,
                            "name": "_amount",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10527,
                            "src": "12243:7:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 10531,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "12254:1:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "12243:12:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 10535,
                        "nodeType": "IfStatement",
                        "src": "12239:49:44",
                        "trueBody": {
                          "id": 10534,
                          "nodeType": "Block",
                          "src": "12257:31:44",
                          "statements": [
                            {
                              "functionReturnParameters": 10529,
                              "id": 10533,
                              "nodeType": "Return",
                              "src": "12271:7:44"
                            }
                          ]
                        }
                      },
                      {
                        "assignments": [
                          10540,
                          10543,
                          10545
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10540,
                            "mutability": "mutable",
                            "name": "accountDetails",
                            "nameLocation": "12342:14:44",
                            "nodeType": "VariableDeclaration",
                            "scope": 10573,
                            "src": "12312:44:44",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                              "typeString": "struct TwabLib.AccountDetails"
                            },
                            "typeName": {
                              "id": 10539,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 10538,
                                "name": "TwabLib.AccountDetails",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12485,
                                "src": "12312:22:44"
                              },
                              "referencedDeclaration": 12485,
                              "src": "12312:22:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12485_storage_ptr",
                                "typeString": "struct TwabLib.AccountDetails"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 10543,
                            "mutability": "mutable",
                            "name": "tsTwab",
                            "nameLocation": "12404:6:44",
                            "nodeType": "VariableDeclaration",
                            "scope": 10573,
                            "src": "12370:40:44",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            },
                            "typeName": {
                              "id": 10542,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 10541,
                                "name": "ObservationLib.Observation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12066,
                                "src": "12370:26:44"
                              },
                              "referencedDeclaration": 12066,
                              "src": "12370:26:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12066_storage_ptr",
                                "typeString": "struct ObservationLib.Observation"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 10545,
                            "mutability": "mutable",
                            "name": "tsIsNew",
                            "nameLocation": "12429:7:44",
                            "nodeType": "VariableDeclaration",
                            "scope": 10573,
                            "src": "12424:12:44",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            },
                            "typeName": {
                              "id": 10544,
                              "name": "bool",
                              "nodeType": "ElementaryTypeName",
                              "src": "12424:4:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10559,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 10548,
                              "name": "totalSupplyTwab",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9660,
                              "src": "12490:15:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Account_$12494_storage",
                                "typeString": "struct TwabLib.Account storage ref"
                              }
                            },
                            {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "expression": {
                                  "id": 10549,
                                  "name": "_amount",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 10527,
                                  "src": "12523:7:44",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "id": 10550,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "toUint208",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 12019,
                                "src": "12523:17:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_pure$_t_uint256_$returns$_t_uint208_$bound_to$_t_uint256_$",
                                  "typeString": "function (uint256) pure returns (uint208)"
                                }
                              },
                              "id": 10551,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "12523:19:44",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint208",
                                "typeString": "uint208"
                              }
                            },
                            {
                              "hexValue": "5469636b65742f6275726e2d616d6f756e742d657863656564732d746f74616c2d737570706c792d74776162",
                              "id": 10552,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "12560:46:44",
                              "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": 10555,
                                    "name": "block",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -4,
                                    "src": "12631:5:44",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_block",
                                      "typeString": "block"
                                    }
                                  },
                                  "id": 10556,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "timestamp",
                                  "nodeType": "MemberAccess",
                                  "src": "12631:15:44",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 10554,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "12624:6:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_uint32_$",
                                  "typeString": "type(uint32)"
                                },
                                "typeName": {
                                  "id": 10553,
                                  "name": "uint32",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "12624:6:44",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 10557,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "12624:23:44",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Account_$12494_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": 10546,
                              "name": "TwabLib",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13211,
                              "src": "12449:7:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_TwabLib_$13211_$",
                                "typeString": "type(library TwabLib)"
                              }
                            },
                            "id": 10547,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "decreaseBalance",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12596,
                            "src": "12449:23:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_struct$_Account_$12494_storage_ptr_$_t_uint208_$_t_string_memory_ptr_$_t_uint32_$returns$_t_struct$_AccountDetails_$12485_memory_ptr_$_t_struct$_Observation_$12066_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": 10558,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "12449:212:44",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_struct$_AccountDetails_$12485_memory_ptr_$_t_struct$_Observation_$12066_memory_ptr_$_t_bool_$",
                            "typeString": "tuple(struct TwabLib.AccountDetails memory,struct ObservationLib.Observation memory,bool)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "12298:363:44"
                      },
                      {
                        "expression": {
                          "id": 10564,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "expression": {
                              "id": 10560,
                              "name": "totalSupplyTwab",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9660,
                              "src": "12672:15:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Account_$12494_storage",
                                "typeString": "struct TwabLib.Account storage ref"
                              }
                            },
                            "id": 10562,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "memberName": "details",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12488,
                            "src": "12672:23:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_AccountDetails_$12485_storage",
                              "typeString": "struct TwabLib.AccountDetails storage ref"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 10563,
                            "name": "accountDetails",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10540,
                            "src": "12698:14:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                              "typeString": "struct TwabLib.AccountDetails memory"
                            }
                          },
                          "src": "12672:40:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12485_storage",
                            "typeString": "struct TwabLib.AccountDetails storage ref"
                          }
                        },
                        "id": 10565,
                        "nodeType": "ExpressionStatement",
                        "src": "12672:40:44"
                      },
                      {
                        "condition": {
                          "id": 10566,
                          "name": "tsIsNew",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 10545,
                          "src": "12727:7:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 10572,
                        "nodeType": "IfStatement",
                        "src": "12723:69:44",
                        "trueBody": {
                          "id": 10571,
                          "nodeType": "Block",
                          "src": "12736:56:44",
                          "statements": [
                            {
                              "eventCall": {
                                "arguments": [
                                  {
                                    "id": 10568,
                                    "name": "tsTwab",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 10543,
                                    "src": "12774:6:44",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                      "typeString": "struct ObservationLib.Observation memory"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                      "typeString": "struct ObservationLib.Observation memory"
                                    }
                                  ],
                                  "id": 10567,
                                  "name": "NewTotalSupplyTwab",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 11686,
                                  "src": "12755:18:44",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_event_nonpayable$_t_struct$_Observation_$12066_memory_ptr_$returns$__$",
                                    "typeString": "function (struct ObservationLib.Observation memory)"
                                  }
                                },
                                "id": 10569,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "12755:26:44",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 10570,
                              "nodeType": "EmitStatement",
                              "src": "12750:31:44"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 10525,
                    "nodeType": "StructuredDocumentation",
                    "src": "11989:175:44",
                    "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": 10574,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_decreaseTotalSupplyTwab",
                  "nameLocation": "12178:24:44",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10528,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10527,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "12211:7:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 10574,
                        "src": "12203:15:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 10526,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "12203:7:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "12202:17:44"
                  },
                  "returnParameters": {
                    "id": 10529,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "12229:0:44"
                  },
                  "scope": 10624,
                  "src": "12169:629:44",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 10622,
                    "nodeType": "Block",
                    "src": "13044:455:44",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 10582,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 10580,
                            "name": "_amount",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10577,
                            "src": "13058:7:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 10581,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "13069:1:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "13058:12:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 10585,
                        "nodeType": "IfStatement",
                        "src": "13054:49:44",
                        "trueBody": {
                          "id": 10584,
                          "nodeType": "Block",
                          "src": "13072:31:44",
                          "statements": [
                            {
                              "functionReturnParameters": 10579,
                              "id": 10583,
                              "nodeType": "Return",
                              "src": "13086:7:44"
                            }
                          ]
                        }
                      },
                      {
                        "assignments": [
                          10590,
                          10593,
                          10595
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 10590,
                            "mutability": "mutable",
                            "name": "accountDetails",
                            "nameLocation": "13157:14:44",
                            "nodeType": "VariableDeclaration",
                            "scope": 10622,
                            "src": "13127:44:44",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                              "typeString": "struct TwabLib.AccountDetails"
                            },
                            "typeName": {
                              "id": 10589,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 10588,
                                "name": "TwabLib.AccountDetails",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12485,
                                "src": "13127:22:44"
                              },
                              "referencedDeclaration": 12485,
                              "src": "13127:22:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12485_storage_ptr",
                                "typeString": "struct TwabLib.AccountDetails"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 10593,
                            "mutability": "mutable",
                            "name": "_totalSupply",
                            "nameLocation": "13219:12:44",
                            "nodeType": "VariableDeclaration",
                            "scope": 10622,
                            "src": "13185:46:44",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            },
                            "typeName": {
                              "id": 10592,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 10591,
                                "name": "ObservationLib.Observation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12066,
                                "src": "13185:26:44"
                              },
                              "referencedDeclaration": 12066,
                              "src": "13185:26:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12066_storage_ptr",
                                "typeString": "struct ObservationLib.Observation"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 10595,
                            "mutability": "mutable",
                            "name": "tsIsNew",
                            "nameLocation": "13250:7:44",
                            "nodeType": "VariableDeclaration",
                            "scope": 10622,
                            "src": "13245:12:44",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            },
                            "typeName": {
                              "id": 10594,
                              "name": "bool",
                              "nodeType": "ElementaryTypeName",
                              "src": "13245:4:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 10608,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 10598,
                              "name": "totalSupplyTwab",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9660,
                              "src": "13294:15:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Account_$12494_storage",
                                "typeString": "struct TwabLib.Account storage ref"
                              }
                            },
                            {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "expression": {
                                  "id": 10599,
                                  "name": "_amount",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 10577,
                                  "src": "13311:7:44",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "id": 10600,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "toUint208",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 12019,
                                "src": "13311:17:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_pure$_t_uint256_$returns$_t_uint208_$bound_to$_t_uint256_$",
                                  "typeString": "function (uint256) pure returns (uint208)"
                                }
                              },
                              "id": 10601,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "13311:19:44",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint208",
                                "typeString": "uint208"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "expression": {
                                    "id": 10604,
                                    "name": "block",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -4,
                                    "src": "13339:5:44",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_block",
                                      "typeString": "block"
                                    }
                                  },
                                  "id": 10605,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "timestamp",
                                  "nodeType": "MemberAccess",
                                  "src": "13339:15:44",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 10603,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "13332:6:44",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_uint32_$",
                                  "typeString": "type(uint32)"
                                },
                                "typeName": {
                                  "id": 10602,
                                  "name": "uint32",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "13332:6:44",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 10606,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "13332:23:44",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Account_$12494_storage",
                                "typeString": "struct TwabLib.Account storage ref"
                              },
                              {
                                "typeIdentifier": "t_uint208",
                                "typeString": "uint208"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 10596,
                              "name": "TwabLib",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13211,
                              "src": "13270:7:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_TwabLib_$13211_$",
                                "typeString": "type(library TwabLib)"
                              }
                            },
                            "id": 10597,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "increaseBalance",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12541,
                            "src": "13270:23:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_struct$_Account_$12494_storage_ptr_$_t_uint208_$_t_uint32_$returns$_t_struct$_AccountDetails_$12485_memory_ptr_$_t_struct$_Observation_$12066_memory_ptr_$_t_bool_$",
                              "typeString": "function (struct TwabLib.Account storage pointer,uint208,uint32) returns (struct TwabLib.AccountDetails memory,struct ObservationLib.Observation memory,bool)"
                            }
                          },
                          "id": 10607,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "13270:86:44",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_struct$_AccountDetails_$12485_memory_ptr_$_t_struct$_Observation_$12066_memory_ptr_$_t_bool_$",
                            "typeString": "tuple(struct TwabLib.AccountDetails memory,struct ObservationLib.Observation memory,bool)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "13113:243:44"
                      },
                      {
                        "expression": {
                          "id": 10613,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "expression": {
                              "id": 10609,
                              "name": "totalSupplyTwab",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 9660,
                              "src": "13367:15:44",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Account_$12494_storage",
                                "typeString": "struct TwabLib.Account storage ref"
                              }
                            },
                            "id": 10611,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "memberName": "details",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12488,
                            "src": "13367:23:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_AccountDetails_$12485_storage",
                              "typeString": "struct TwabLib.AccountDetails storage ref"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 10612,
                            "name": "accountDetails",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 10590,
                            "src": "13393:14:44",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                              "typeString": "struct TwabLib.AccountDetails memory"
                            }
                          },
                          "src": "13367:40:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12485_storage",
                            "typeString": "struct TwabLib.AccountDetails storage ref"
                          }
                        },
                        "id": 10614,
                        "nodeType": "ExpressionStatement",
                        "src": "13367:40:44"
                      },
                      {
                        "condition": {
                          "id": 10615,
                          "name": "tsIsNew",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 10595,
                          "src": "13422:7:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 10621,
                        "nodeType": "IfStatement",
                        "src": "13418:75:44",
                        "trueBody": {
                          "id": 10620,
                          "nodeType": "Block",
                          "src": "13431:62:44",
                          "statements": [
                            {
                              "eventCall": {
                                "arguments": [
                                  {
                                    "id": 10617,
                                    "name": "_totalSupply",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 10593,
                                    "src": "13469:12:44",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                      "typeString": "struct ObservationLib.Observation memory"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                      "typeString": "struct ObservationLib.Observation memory"
                                    }
                                  ],
                                  "id": 10616,
                                  "name": "NewTotalSupplyTwab",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 11686,
                                  "src": "13450:18:44",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_event_nonpayable$_t_struct$_Observation_$12066_memory_ptr_$returns$__$",
                                    "typeString": "function (struct ObservationLib.Observation memory)"
                                  }
                                },
                                "id": 10618,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "13450:32:44",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 10619,
                              "nodeType": "EmitStatement",
                              "src": "13445:37:44"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 10575,
                    "nodeType": "StructuredDocumentation",
                    "src": "12804:175:44",
                    "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": 10623,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_increaseTotalSupplyTwab",
                  "nameLocation": "12993:24:44",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10578,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10577,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "13026:7:44",
                        "nodeType": "VariableDeclaration",
                        "scope": 10623,
                        "src": "13018:15:44",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 10576,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "13018:7:44",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "13017:17:44"
                  },
                  "returnParameters": {
                    "id": 10579,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "13044:0:44"
                  },
                  "scope": 10624,
                  "src": "12984:515:44",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 10625,
              "src": "897:12604:44",
              "usedErrors": []
            }
          ],
          "src": "37:13465:44"
        },
        "id": 44
      },
      "@pooltogether/v4-core/contracts/external/compound/ICompLike.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/external/compound/ICompLike.sol",
          "exportedSymbols": {
            "ICompLike": [
              10642
            ],
            "IERC20": [
              890
            ]
          },
          "id": 10643,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 10626,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:45"
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "id": 10627,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 10643,
              "sourceUnit": 891,
              "src": "61:56:45",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 10628,
                    "name": "IERC20",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 890,
                    "src": "142:6:45"
                  },
                  "id": 10629,
                  "nodeType": "InheritanceSpecifier",
                  "src": "142:6:45"
                }
              ],
              "contractDependencies": [],
              "contractKind": "interface",
              "fullyImplemented": false,
              "id": 10642,
              "linearizedBaseContracts": [
                10642,
                890
              ],
              "name": "ICompLike",
              "nameLocation": "129:9:45",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "functionSelector": "b4b5ea57",
                  "id": 10636,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getCurrentVotes",
                  "nameLocation": "164:15:45",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10632,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10631,
                        "mutability": "mutable",
                        "name": "account",
                        "nameLocation": "188:7:45",
                        "nodeType": "VariableDeclaration",
                        "scope": 10636,
                        "src": "180:15:45",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 10630,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "180:7:45",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "179:17:45"
                  },
                  "returnParameters": {
                    "id": 10635,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10634,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 10636,
                        "src": "220:6:45",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint96",
                          "typeString": "uint96"
                        },
                        "typeName": {
                          "id": 10633,
                          "name": "uint96",
                          "nodeType": "ElementaryTypeName",
                          "src": "220:6:45",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint96",
                            "typeString": "uint96"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "219:8:45"
                  },
                  "scope": 10642,
                  "src": "155:73:45",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "functionSelector": "5c19a95c",
                  "id": 10641,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "delegate",
                  "nameLocation": "243:8:45",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10639,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10638,
                        "mutability": "mutable",
                        "name": "delegate",
                        "nameLocation": "260:8:45",
                        "nodeType": "VariableDeclaration",
                        "scope": 10641,
                        "src": "252:16:45",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 10637,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "252:7:45",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "251:18:45"
                  },
                  "returnParameters": {
                    "id": 10640,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "278:0:45"
                  },
                  "scope": 10642,
                  "src": "234:45:45",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 10643,
              "src": "119:162:45",
              "usedErrors": []
            }
          ],
          "src": "37:245:45"
        },
        "id": 45
      },
      "@pooltogether/v4-core/contracts/interfaces/IControlledToken.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IControlledToken.sol",
          "exportedSymbols": {
            "IControlledToken": [
              10681
            ],
            "IERC20": [
              890
            ]
          },
          "id": 10682,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 10644,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:46"
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "id": 10645,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 10682,
              "sourceUnit": 891,
              "src": "61:56:46",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 10647,
                    "name": "IERC20",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 890,
                    "src": "280:6:46"
                  },
                  "id": 10648,
                  "nodeType": "InheritanceSpecifier",
                  "src": "280:6:46"
                }
              ],
              "contractDependencies": [],
              "contractKind": "interface",
              "documentation": {
                "id": 10646,
                "nodeType": "StructuredDocumentation",
                "src": "119:130:46",
                "text": "@title IControlledToken\n @author PoolTogether Inc Team\n @notice ERC20 Tokens with a controller for minting & burning."
              },
              "fullyImplemented": false,
              "id": 10681,
              "linearizedBaseContracts": [
                10681,
                890
              ],
              "name": "IControlledToken",
              "nameLocation": "260:16:46",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "documentation": {
                    "id": 10649,
                    "nodeType": "StructuredDocumentation",
                    "src": "294:91:46",
                    "text": "@notice Interface to the contract responsible for controlling mint/burn"
                  },
                  "functionSelector": "f77c4791",
                  "id": 10654,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "controller",
                  "nameLocation": "399:10:46",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10650,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "409:2:46"
                  },
                  "returnParameters": {
                    "id": 10653,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10652,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 10654,
                        "src": "435:7:46",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 10651,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "435:7:46",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "434:9:46"
                  },
                  "scope": 10681,
                  "src": "390:54:46",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 10655,
                    "nodeType": "StructuredDocumentation",
                    "src": "450:272:46",
                    "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": 10662,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "controllerMint",
                  "nameLocation": "736:14:46",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10660,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10657,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "759:4:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10662,
                        "src": "751:12:46",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 10656,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "751:7:46",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10659,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "773:6:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10662,
                        "src": "765:14:46",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 10658,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "765:7:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "750:30:46"
                  },
                  "returnParameters": {
                    "id": 10661,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "789:0:46"
                  },
                  "scope": 10681,
                  "src": "727:63:46",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 10663,
                    "nodeType": "StructuredDocumentation",
                    "src": "796:278:46",
                    "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": 10670,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "controllerBurn",
                  "nameLocation": "1088:14:46",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10668,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10665,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "1111:4:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10670,
                        "src": "1103:12:46",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 10664,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1103:7:46",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10667,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "1125:6:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10670,
                        "src": "1117:14:46",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 10666,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1117:7:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1102:30:46"
                  },
                  "returnParameters": {
                    "id": 10669,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1141:0:46"
                  },
                  "scope": 10681,
                  "src": "1079:63:46",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 10671,
                    "nodeType": "StructuredDocumentation",
                    "src": "1148:414:46",
                    "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": 10680,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "controllerBurnFrom",
                  "nameLocation": "1576:18:46",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10678,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10673,
                        "mutability": "mutable",
                        "name": "operator",
                        "nameLocation": "1612:8:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10680,
                        "src": "1604:16:46",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 10672,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1604:7:46",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10675,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "1638:4:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10680,
                        "src": "1630:12:46",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 10674,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1630:7:46",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10677,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "1660:6:46",
                        "nodeType": "VariableDeclaration",
                        "scope": 10680,
                        "src": "1652:14:46",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 10676,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1652:7:46",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1594:78:46"
                  },
                  "returnParameters": {
                    "id": 10679,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1681:0:46"
                  },
                  "scope": 10681,
                  "src": "1567:115:46",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 10682,
              "src": "250:1434:46",
              "usedErrors": []
            }
          ],
          "src": "37:1648:46"
        },
        "id": 46
      },
      "@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol",
          "exportedSymbols": {
            "IDrawBeacon": [
              10853
            ],
            "IDrawBuffer": [
              10930
            ],
            "RNGInterface": [
              5835
            ]
          },
          "id": 10854,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 10683,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:47"
            },
            {
              "absolutePath": "@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol",
              "file": "@pooltogether/pooltogether-rng-contracts/contracts/RNGInterface.sol",
              "id": 10684,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 10854,
              "sourceUnit": 5836,
              "src": "61:77:47",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol",
              "file": "./IDrawBuffer.sol",
              "id": 10685,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 10854,
              "sourceUnit": 10931,
              "src": "139:27:47",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "documentation": {
                "id": 10686,
                "nodeType": "StructuredDocumentation",
                "src": "168:98:47",
                "text": "@title  IDrawBeacon\n @author PoolTogether Inc Team\n @notice The DrawBeacon interface."
              },
              "fullyImplemented": false,
              "id": 10853,
              "linearizedBaseContracts": [
                10853
              ],
              "name": "IDrawBeacon",
              "nameLocation": "277:11:47",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "canonicalName": "IDrawBeacon.Draw",
                  "id": 10697,
                  "members": [
                    {
                      "constant": false,
                      "id": 10688,
                      "mutability": "mutable",
                      "name": "winningRandomNumber",
                      "nameLocation": "802:19:47",
                      "nodeType": "VariableDeclaration",
                      "scope": 10697,
                      "src": "794:27:47",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint256",
                        "typeString": "uint256"
                      },
                      "typeName": {
                        "id": 10687,
                        "name": "uint256",
                        "nodeType": "ElementaryTypeName",
                        "src": "794:7:47",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 10690,
                      "mutability": "mutable",
                      "name": "drawId",
                      "nameLocation": "838:6:47",
                      "nodeType": "VariableDeclaration",
                      "scope": 10697,
                      "src": "831:13:47",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint32",
                        "typeString": "uint32"
                      },
                      "typeName": {
                        "id": 10689,
                        "name": "uint32",
                        "nodeType": "ElementaryTypeName",
                        "src": "831:6:47",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 10692,
                      "mutability": "mutable",
                      "name": "timestamp",
                      "nameLocation": "861:9:47",
                      "nodeType": "VariableDeclaration",
                      "scope": 10697,
                      "src": "854:16:47",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint64",
                        "typeString": "uint64"
                      },
                      "typeName": {
                        "id": 10691,
                        "name": "uint64",
                        "nodeType": "ElementaryTypeName",
                        "src": "854:6:47",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 10694,
                      "mutability": "mutable",
                      "name": "beaconPeriodStartedAt",
                      "nameLocation": "887:21:47",
                      "nodeType": "VariableDeclaration",
                      "scope": 10697,
                      "src": "880:28:47",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint64",
                        "typeString": "uint64"
                      },
                      "typeName": {
                        "id": 10693,
                        "name": "uint64",
                        "nodeType": "ElementaryTypeName",
                        "src": "880:6:47",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 10696,
                      "mutability": "mutable",
                      "name": "beaconPeriodSeconds",
                      "nameLocation": "925:19:47",
                      "nodeType": "VariableDeclaration",
                      "scope": 10697,
                      "src": "918:26:47",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint32",
                        "typeString": "uint32"
                      },
                      "typeName": {
                        "id": 10695,
                        "name": "uint32",
                        "nodeType": "ElementaryTypeName",
                        "src": "918:6:47",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        }
                      },
                      "visibility": "internal"
                    }
                  ],
                  "name": "Draw",
                  "nameLocation": "779:4:47",
                  "nodeType": "StructDefinition",
                  "scope": 10853,
                  "src": "772:179:47",
                  "visibility": "public"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 10698,
                    "nodeType": "StructuredDocumentation",
                    "src": "957:128:47",
                    "text": " @notice Emit when a new DrawBuffer has been set.\n @param newDrawBuffer       The new DrawBuffer address"
                  },
                  "id": 10703,
                  "name": "DrawBufferUpdated",
                  "nameLocation": "1096:17:47",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 10702,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10701,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "newDrawBuffer",
                        "nameLocation": "1134:13:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 10703,
                        "src": "1114:33:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                          "typeString": "contract IDrawBuffer"
                        },
                        "typeName": {
                          "id": 10700,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 10699,
                            "name": "IDrawBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 10930,
                            "src": "1114:11:47"
                          },
                          "referencedDeclaration": 10930,
                          "src": "1114:11:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1113:35:47"
                  },
                  "src": "1090:59:47"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 10704,
                    "nodeType": "StructuredDocumentation",
                    "src": "1155:95:47",
                    "text": " @notice Emit when a draw has opened.\n @param startedAt Start timestamp"
                  },
                  "id": 10708,
                  "name": "BeaconPeriodStarted",
                  "nameLocation": "1261:19:47",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 10707,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10706,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "startedAt",
                        "nameLocation": "1296:9:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 10708,
                        "src": "1281:24:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 10705,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "1281:6:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1280:26:47"
                  },
                  "src": "1255:52:47"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 10709,
                    "nodeType": "StructuredDocumentation",
                    "src": "1313:152:47",
                    "text": " @notice Emit when a draw has started.\n @param rngRequestId  draw id\n @param rngLockBlock  Block when draw becomes invalid"
                  },
                  "id": 10715,
                  "name": "DrawStarted",
                  "nameLocation": "1476:11:47",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 10714,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10711,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "rngRequestId",
                        "nameLocation": "1503:12:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 10715,
                        "src": "1488:27:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 10710,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1488:6:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10713,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "rngLockBlock",
                        "nameLocation": "1524:12:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 10715,
                        "src": "1517:19:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 10712,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1517:6:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1487:50:47"
                  },
                  "src": "1470:68:47"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 10716,
                    "nodeType": "StructuredDocumentation",
                    "src": "1544:159:47",
                    "text": " @notice Emit when a draw has been cancelled.\n @param rngRequestId  draw id\n @param rngLockBlock  Block when draw becomes invalid"
                  },
                  "id": 10722,
                  "name": "DrawCancelled",
                  "nameLocation": "1714:13:47",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 10721,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10718,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "rngRequestId",
                        "nameLocation": "1743:12:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 10722,
                        "src": "1728:27:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 10717,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1728:6:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10720,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "rngLockBlock",
                        "nameLocation": "1764:12:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 10722,
                        "src": "1757:19:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 10719,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1757:6:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1727:50:47"
                  },
                  "src": "1708:70:47"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 10723,
                    "nodeType": "StructuredDocumentation",
                    "src": "1784:125:47",
                    "text": " @notice Emit when a draw has been completed.\n @param randomNumber  Random number generated from draw"
                  },
                  "id": 10727,
                  "name": "DrawCompleted",
                  "nameLocation": "1920:13:47",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 10726,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10725,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "randomNumber",
                        "nameLocation": "1942:12:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 10727,
                        "src": "1934:20:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 10724,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1934:7:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1933:22:47"
                  },
                  "src": "1914:42:47"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 10728,
                    "nodeType": "StructuredDocumentation",
                    "src": "1962:112:47",
                    "text": " @notice Emit when a RNG service address is set.\n @param rngService  RNG service address"
                  },
                  "id": 10733,
                  "name": "RngServiceUpdated",
                  "nameLocation": "2085:17:47",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 10732,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10731,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "rngService",
                        "nameLocation": "2124:10:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 10733,
                        "src": "2103:31:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_RNGInterface_$5835",
                          "typeString": "contract RNGInterface"
                        },
                        "typeName": {
                          "id": 10730,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 10729,
                            "name": "RNGInterface",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 5835,
                            "src": "2103:12:47"
                          },
                          "referencedDeclaration": 5835,
                          "src": "2103:12:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_RNGInterface_$5835",
                            "typeString": "contract RNGInterface"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2102:33:47"
                  },
                  "src": "2079:57:47"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 10734,
                    "nodeType": "StructuredDocumentation",
                    "src": "2142:121:47",
                    "text": " @notice Emit when a draw timeout param is set.\n @param rngTimeout  draw timeout param in seconds"
                  },
                  "id": 10738,
                  "name": "RngTimeoutSet",
                  "nameLocation": "2274:13:47",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 10737,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10736,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "rngTimeout",
                        "nameLocation": "2295:10:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 10738,
                        "src": "2288:17:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 10735,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2288:6:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2287:19:47"
                  },
                  "src": "2268:39:47"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 10739,
                    "nodeType": "StructuredDocumentation",
                    "src": "2313:116:47",
                    "text": " @notice Emit when the drawPeriodSeconds is set.\n @param drawPeriodSeconds Time between draw"
                  },
                  "id": 10743,
                  "name": "BeaconPeriodSecondsUpdated",
                  "nameLocation": "2440:26:47",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 10742,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10741,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "drawPeriodSeconds",
                        "nameLocation": "2474:17:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 10743,
                        "src": "2467:24:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 10740,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2467:6:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2466:26:47"
                  },
                  "src": "2434:59:47"
                },
                {
                  "documentation": {
                    "id": 10744,
                    "nodeType": "StructuredDocumentation",
                    "src": "2499:195:47",
                    "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": 10749,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "beaconPeriodRemainingSeconds",
                  "nameLocation": "2708:28:47",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10745,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2736:2:47"
                  },
                  "returnParameters": {
                    "id": 10748,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10747,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 10749,
                        "src": "2762:6:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 10746,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "2762:6:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2761:8:47"
                  },
                  "scope": 10853,
                  "src": "2699:71:47",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 10750,
                    "nodeType": "StructuredDocumentation",
                    "src": "2776:142:47",
                    "text": " @notice Returns the timestamp at which the beacon period ends\n @return The timestamp at which the beacon period ends."
                  },
                  "functionSelector": "a104fd79",
                  "id": 10755,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "beaconPeriodEndAt",
                  "nameLocation": "2932:17:47",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10751,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2949:2:47"
                  },
                  "returnParameters": {
                    "id": 10754,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10753,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 10755,
                        "src": "2975:6:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 10752,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "2975:6:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2974:8:47"
                  },
                  "scope": 10853,
                  "src": "2923:60:47",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 10756,
                    "nodeType": "StructuredDocumentation",
                    "src": "2989:128:47",
                    "text": " @notice Returns whether a Draw can be started.\n @return True if a Draw can be started, false otherwise."
                  },
                  "functionSelector": "0996f6e1",
                  "id": 10761,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "canStartDraw",
                  "nameLocation": "3131:12:47",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10757,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3143:2:47"
                  },
                  "returnParameters": {
                    "id": 10760,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10759,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 10761,
                        "src": "3169:4:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 10758,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "3169:4:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3168:6:47"
                  },
                  "scope": 10853,
                  "src": "3122:53:47",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 10762,
                    "nodeType": "StructuredDocumentation",
                    "src": "3181:132:47",
                    "text": " @notice Returns whether a Draw can be completed.\n @return True if a Draw can be completed, false otherwise."
                  },
                  "functionSelector": "e4a75bb8",
                  "id": 10767,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "canCompleteDraw",
                  "nameLocation": "3327:15:47",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10763,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3342:2:47"
                  },
                  "returnParameters": {
                    "id": 10766,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10765,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 10767,
                        "src": "3368:4:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 10764,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "3368:4:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3367:6:47"
                  },
                  "scope": 10853,
                  "src": "3318:56:47",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 10768,
                    "nodeType": "StructuredDocumentation",
                    "src": "3380:210:47",
                    "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": 10775,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "calculateNextBeaconPeriodStartTime",
                  "nameLocation": "3604:34:47",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10771,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10770,
                        "mutability": "mutable",
                        "name": "time",
                        "nameLocation": "3646:4:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 10775,
                        "src": "3639:11:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 10769,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "3639:6:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3638:13:47"
                  },
                  "returnParameters": {
                    "id": 10774,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10773,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 10775,
                        "src": "3675:6:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 10772,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "3675:6:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3674:8:47"
                  },
                  "scope": 10853,
                  "src": "3595:88:47",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 10776,
                    "nodeType": "StructuredDocumentation",
                    "src": "3689:103:47",
                    "text": " @notice Can be called by anyone to cancel the draw request if the RNG has timed out."
                  },
                  "functionSelector": "412a616a",
                  "id": 10779,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "cancelDraw",
                  "nameLocation": "3806:10:47",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10777,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3816:2:47"
                  },
                  "returnParameters": {
                    "id": 10778,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3827:0:47"
                  },
                  "scope": 10853,
                  "src": "3797:31:47",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 10780,
                    "nodeType": "StructuredDocumentation",
                    "src": "3834:94:47",
                    "text": " @notice Completes the Draw (RNG) request and pushes a Draw onto DrawBuffer."
                  },
                  "functionSelector": "0bdeecbd",
                  "id": 10783,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "completeDraw",
                  "nameLocation": "3942:12:47",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10781,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3954:2:47"
                  },
                  "returnParameters": {
                    "id": 10782,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3965:0:47"
                  },
                  "scope": 10853,
                  "src": "3933:33:47",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 10784,
                    "nodeType": "StructuredDocumentation",
                    "src": "3972:166:47",
                    "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": 10789,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getLastRngLockBlock",
                  "nameLocation": "4152:19:47",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10785,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4171:2:47"
                  },
                  "returnParameters": {
                    "id": 10788,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10787,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 10789,
                        "src": "4197:6:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 10786,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4197:6:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4196:8:47"
                  },
                  "scope": 10853,
                  "src": "4143:62:47",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 10790,
                    "nodeType": "StructuredDocumentation",
                    "src": "4211:100:47",
                    "text": " @notice Returns the current RNG Request ID.\n @return The current Request ID"
                  },
                  "functionSelector": "2a7ad609",
                  "id": 10795,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getLastRngRequestId",
                  "nameLocation": "4325:19:47",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10791,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4344:2:47"
                  },
                  "returnParameters": {
                    "id": 10794,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10793,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 10795,
                        "src": "4370:6:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 10792,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4370:6:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4369:8:47"
                  },
                  "scope": 10853,
                  "src": "4316:62:47",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 10796,
                    "nodeType": "StructuredDocumentation",
                    "src": "4384:134:47",
                    "text": " @notice Returns whether the beacon period is over\n @return True if the beacon period is over, false otherwise"
                  },
                  "functionSelector": "d1e77657",
                  "id": 10801,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "isBeaconPeriodOver",
                  "nameLocation": "4532:18:47",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10797,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4550:2:47"
                  },
                  "returnParameters": {
                    "id": 10800,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10799,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 10801,
                        "src": "4576:4:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 10798,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "4576:4:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4575:6:47"
                  },
                  "scope": 10853,
                  "src": "4523:59:47",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 10802,
                    "nodeType": "StructuredDocumentation",
                    "src": "4588:162:47",
                    "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": 10807,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "isRngCompleted",
                  "nameLocation": "4764:14:47",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10803,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4778:2:47"
                  },
                  "returnParameters": {
                    "id": 10806,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10805,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 10807,
                        "src": "4804:4:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 10804,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "4804:4:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4803:6:47"
                  },
                  "scope": 10853,
                  "src": "4755:55:47",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 10808,
                    "nodeType": "StructuredDocumentation",
                    "src": "4816:153:47",
                    "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": 10813,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "isRngRequested",
                  "nameLocation": "4983:14:47",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10809,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4997:2:47"
                  },
                  "returnParameters": {
                    "id": 10812,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10811,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 10813,
                        "src": "5023:4:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 10810,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "5023:4:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5022:6:47"
                  },
                  "scope": 10853,
                  "src": "4974:55:47",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 10814,
                    "nodeType": "StructuredDocumentation",
                    "src": "5035:162:47",
                    "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": 10819,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "isRngTimedOut",
                  "nameLocation": "5211:13:47",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10815,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "5224:2:47"
                  },
                  "returnParameters": {
                    "id": 10818,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10817,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 10819,
                        "src": "5250:4:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 10816,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "5250:4:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5249:6:47"
                  },
                  "scope": 10853,
                  "src": "5202:54:47",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 10820,
                    "nodeType": "StructuredDocumentation",
                    "src": "5262:176:47",
                    "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": 10825,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setBeaconPeriodSeconds",
                  "nameLocation": "5452:22:47",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10823,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10822,
                        "mutability": "mutable",
                        "name": "beaconPeriodSeconds",
                        "nameLocation": "5482:19:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 10825,
                        "src": "5475:26:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 10821,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "5475:6:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5474:28:47"
                  },
                  "returnParameters": {
                    "id": 10824,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "5511:0:47"
                  },
                  "scope": 10853,
                  "src": "5443:69:47",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 10826,
                    "nodeType": "StructuredDocumentation",
                    "src": "5518:245:47",
                    "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": 10831,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setRngTimeout",
                  "nameLocation": "5777:13:47",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10829,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10828,
                        "mutability": "mutable",
                        "name": "rngTimeout",
                        "nameLocation": "5798:10:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 10831,
                        "src": "5791:17:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 10827,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "5791:6:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5790:19:47"
                  },
                  "returnParameters": {
                    "id": 10830,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "5818:0:47"
                  },
                  "scope": 10853,
                  "src": "5768:51:47",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 10832,
                    "nodeType": "StructuredDocumentation",
                    "src": "5825:157:47",
                    "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": 10838,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setRngService",
                  "nameLocation": "5996:13:47",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10836,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10835,
                        "mutability": "mutable",
                        "name": "rngService",
                        "nameLocation": "6023:10:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 10838,
                        "src": "6010:23:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_RNGInterface_$5835",
                          "typeString": "contract RNGInterface"
                        },
                        "typeName": {
                          "id": 10834,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 10833,
                            "name": "RNGInterface",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 5835,
                            "src": "6010:12:47"
                          },
                          "referencedDeclaration": 5835,
                          "src": "6010:12:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_RNGInterface_$5835",
                            "typeString": "contract RNGInterface"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6009:25:47"
                  },
                  "returnParameters": {
                    "id": 10837,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "6043:0:47"
                  },
                  "scope": 10853,
                  "src": "5987:57:47",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 10839,
                    "nodeType": "StructuredDocumentation",
                    "src": "6050:234:47",
                    "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": 10842,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "startDraw",
                  "nameLocation": "6298:9:47",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10840,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "6307:2:47"
                  },
                  "returnParameters": {
                    "id": 10841,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "6318:0:47"
                  },
                  "scope": 10853,
                  "src": "6289:30:47",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 10843,
                    "nodeType": "StructuredDocumentation",
                    "src": "6325:225:47",
                    "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": 10852,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setDrawBuffer",
                  "nameLocation": "6564:13:47",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10847,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10846,
                        "mutability": "mutable",
                        "name": "newDrawBuffer",
                        "nameLocation": "6590:13:47",
                        "nodeType": "VariableDeclaration",
                        "scope": 10852,
                        "src": "6578:25:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                          "typeString": "contract IDrawBuffer"
                        },
                        "typeName": {
                          "id": 10845,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 10844,
                            "name": "IDrawBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 10930,
                            "src": "6578:11:47"
                          },
                          "referencedDeclaration": 10930,
                          "src": "6578:11:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6577:27:47"
                  },
                  "returnParameters": {
                    "id": 10851,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10850,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 10852,
                        "src": "6623:11:47",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                          "typeString": "contract IDrawBuffer"
                        },
                        "typeName": {
                          "id": 10849,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 10848,
                            "name": "IDrawBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 10930,
                            "src": "6623:11:47"
                          },
                          "referencedDeclaration": 10930,
                          "src": "6623:11:47",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6622:13:47"
                  },
                  "scope": 10853,
                  "src": "6555:81:47",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 10854,
              "src": "267:6371:47",
              "usedErrors": []
            }
          ],
          "src": "37:6602:47"
        },
        "id": 47
      },
      "@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol",
          "exportedSymbols": {
            "IDrawBeacon": [
              10853
            ],
            "IDrawBuffer": [
              10930
            ]
          },
          "id": 10931,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 10855,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:48"
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol",
              "file": "../interfaces/IDrawBeacon.sol",
              "id": 10856,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 10931,
              "sourceUnit": 10854,
              "src": "61:39:48",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "documentation": {
                "id": 10857,
                "nodeType": "StructuredDocumentation",
                "src": "102:98:48",
                "text": "@title  IDrawBuffer\n @author PoolTogether Inc Team\n @notice The DrawBuffer interface."
              },
              "fullyImplemented": false,
              "id": 10930,
              "linearizedBaseContracts": [
                10930
              ],
              "name": "IDrawBuffer",
              "nameLocation": "211:11:48",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 10858,
                    "nodeType": "StructuredDocumentation",
                    "src": "229:129:48",
                    "text": " @notice Emit when a new draw has been created.\n @param drawId Draw id\n @param draw The Draw struct"
                  },
                  "id": 10865,
                  "name": "DrawSet",
                  "nameLocation": "369:7:48",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 10864,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10860,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "drawId",
                        "nameLocation": "392:6:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 10865,
                        "src": "377:21:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 10859,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "377:6:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10863,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "draw",
                        "nameLocation": "417:4:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 10865,
                        "src": "400:21:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw"
                        },
                        "typeName": {
                          "id": 10862,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 10861,
                            "name": "IDrawBeacon.Draw",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 10697,
                            "src": "400:16:48"
                          },
                          "referencedDeclaration": 10697,
                          "src": "400:16:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$10697_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "376:46:48"
                  },
                  "src": "363:60:48"
                },
                {
                  "documentation": {
                    "id": 10866,
                    "nodeType": "StructuredDocumentation",
                    "src": "429:96:48",
                    "text": " @notice Read a ring buffer cardinality\n @return Ring buffer cardinality"
                  },
                  "functionSelector": "caeef7ec",
                  "id": 10871,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getBufferCardinality",
                  "nameLocation": "539:20:48",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10867,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "559:2:48"
                  },
                  "returnParameters": {
                    "id": 10870,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10869,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 10871,
                        "src": "585:6:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 10868,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "585:6:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "584:8:48"
                  },
                  "scope": 10930,
                  "src": "530:63:48",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 10872,
                    "nodeType": "StructuredDocumentation",
                    "src": "599:228:48",
                    "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": 10880,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getDraw",
                  "nameLocation": "841:7:48",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10875,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10874,
                        "mutability": "mutable",
                        "name": "drawId",
                        "nameLocation": "856:6:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 10880,
                        "src": "849:13:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 10873,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "849:6:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "848:15:48"
                  },
                  "returnParameters": {
                    "id": 10879,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10878,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 10880,
                        "src": "887:23:48",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw"
                        },
                        "typeName": {
                          "id": 10877,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 10876,
                            "name": "IDrawBeacon.Draw",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 10697,
                            "src": "887:16:48"
                          },
                          "referencedDeclaration": 10697,
                          "src": "887:16:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$10697_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "886:25:48"
                  },
                  "scope": 10930,
                  "src": "832:80:48",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 10881,
                    "nodeType": "StructuredDocumentation",
                    "src": "918:248:48",
                    "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": 10891,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getDraws",
                  "nameLocation": "1180:8:48",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10885,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10884,
                        "mutability": "mutable",
                        "name": "drawIds",
                        "nameLocation": "1207:7:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 10891,
                        "src": "1189:25:48",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                          "typeString": "uint32[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 10882,
                            "name": "uint32",
                            "nodeType": "ElementaryTypeName",
                            "src": "1189:6:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "id": 10883,
                          "nodeType": "ArrayTypeName",
                          "src": "1189:8:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint32_$dyn_storage_ptr",
                            "typeString": "uint32[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1188:27:48"
                  },
                  "returnParameters": {
                    "id": 10890,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10889,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 10891,
                        "src": "1239:25:48",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_Draw_$10697_memory_ptr_$dyn_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 10887,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 10886,
                              "name": "IDrawBeacon.Draw",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 10697,
                              "src": "1239:16:48"
                            },
                            "referencedDeclaration": 10697,
                            "src": "1239:16:48",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Draw_$10697_storage_ptr",
                              "typeString": "struct IDrawBeacon.Draw"
                            }
                          },
                          "id": 10888,
                          "nodeType": "ArrayTypeName",
                          "src": "1239:18:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Draw_$10697_storage_$dyn_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1238:27:48"
                  },
                  "scope": 10930,
                  "src": "1171:95:48",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 10892,
                    "nodeType": "StructuredDocumentation",
                    "src": "1272:338:48",
                    "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": 10897,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getDrawCount",
                  "nameLocation": "1624:12:48",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10893,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1636:2:48"
                  },
                  "returnParameters": {
                    "id": 10896,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10895,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 10897,
                        "src": "1662:6:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 10894,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1662:6:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1661:8:48"
                  },
                  "scope": 10930,
                  "src": "1615:55:48",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 10898,
                    "nodeType": "StructuredDocumentation",
                    "src": "1676:180:48",
                    "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": 10904,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getNewestDraw",
                  "nameLocation": "1870:13:48",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10899,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1883:2:48"
                  },
                  "returnParameters": {
                    "id": 10903,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10902,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 10904,
                        "src": "1909:23:48",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw"
                        },
                        "typeName": {
                          "id": 10901,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 10900,
                            "name": "IDrawBeacon.Draw",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 10697,
                            "src": "1909:16:48"
                          },
                          "referencedDeclaration": 10697,
                          "src": "1909:16:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$10697_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1908:25:48"
                  },
                  "scope": 10930,
                  "src": "1861:73:48",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 10905,
                    "nodeType": "StructuredDocumentation",
                    "src": "1940:197:48",
                    "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": 10911,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getOldestDraw",
                  "nameLocation": "2151:13:48",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10906,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2164:2:48"
                  },
                  "returnParameters": {
                    "id": 10910,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10909,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 10911,
                        "src": "2190:23:48",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw"
                        },
                        "typeName": {
                          "id": 10908,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 10907,
                            "name": "IDrawBeacon.Draw",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 10697,
                            "src": "2190:16:48"
                          },
                          "referencedDeclaration": 10697,
                          "src": "2190:16:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$10697_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2189:25:48"
                  },
                  "scope": 10930,
                  "src": "2142:73:48",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 10912,
                    "nodeType": "StructuredDocumentation",
                    "src": "2221:212:48",
                    "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": 10920,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "pushDraw",
                  "nameLocation": "2447:8:48",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10916,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10915,
                        "mutability": "mutable",
                        "name": "draw",
                        "nameLocation": "2482:4:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 10920,
                        "src": "2456:30:48",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Draw_$10697_calldata_ptr",
                          "typeString": "struct IDrawBeacon.Draw"
                        },
                        "typeName": {
                          "id": 10914,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 10913,
                            "name": "IDrawBeacon.Draw",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 10697,
                            "src": "2456:16:48"
                          },
                          "referencedDeclaration": 10697,
                          "src": "2456:16:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$10697_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2455:32:48"
                  },
                  "returnParameters": {
                    "id": 10919,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10918,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 10920,
                        "src": "2506:6:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 10917,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2506:6:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2505:8:48"
                  },
                  "scope": 10930,
                  "src": "2438:76:48",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 10921,
                    "nodeType": "StructuredDocumentation",
                    "src": "2520:275:48",
                    "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": 10929,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setDraw",
                  "nameLocation": "2809:7:48",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10925,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10924,
                        "mutability": "mutable",
                        "name": "newDraw",
                        "nameLocation": "2843:7:48",
                        "nodeType": "VariableDeclaration",
                        "scope": 10929,
                        "src": "2817:33:48",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Draw_$10697_calldata_ptr",
                          "typeString": "struct IDrawBeacon.Draw"
                        },
                        "typeName": {
                          "id": 10923,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 10922,
                            "name": "IDrawBeacon.Draw",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 10697,
                            "src": "2817:16:48"
                          },
                          "referencedDeclaration": 10697,
                          "src": "2817:16:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$10697_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2816:35:48"
                  },
                  "returnParameters": {
                    "id": 10928,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10927,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 10929,
                        "src": "2870:6:48",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 10926,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2870:6:48",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2869:8:48"
                  },
                  "scope": 10930,
                  "src": "2800:78:48",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 10931,
              "src": "201:2679:48",
              "usedErrors": []
            }
          ],
          "src": "37:2844:48"
        },
        "id": 48
      },
      "@pooltogether/v4-core/contracts/interfaces/IDrawCalculator.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IDrawCalculator.sol",
          "exportedSymbols": {
            "Address": [
              1775
            ],
            "DrawRingBufferLib": [
              11966
            ],
            "ExtendedSafeCastLib": [
              12045
            ],
            "IControlledToken": [
              10681
            ],
            "IDrawBeacon": [
              10853
            ],
            "IDrawBuffer": [
              10930
            ],
            "IDrawCalculator": [
              11003
            ],
            "IERC20": [
              890
            ],
            "IPrizeDistributionBuffer": [
              11079
            ],
            "IPrizeDistributionSource": [
              11115
            ],
            "IPrizeDistributor": [
              11213
            ],
            "ITicket": [
              11825
            ],
            "Manageable": [
              5200
            ],
            "ObservationLib": [
              12204
            ],
            "OverflowSafeComparatorLib": [
              12376
            ],
            "Ownable": [
              5355
            ],
            "PrizeDistributionBuffer": [
              8796
            ],
            "PrizeDistributor": [
              9169
            ],
            "RingBufferLib": [
              12461
            ],
            "SafeCast": [
              3225
            ],
            "SafeERC20": [
              1344
            ],
            "TwabLib": [
              13211
            ]
          },
          "id": 11004,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 10932,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:49"
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/ITicket.sol",
              "file": "./ITicket.sol",
              "id": 10933,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 11004,
              "sourceUnit": 11826,
              "src": "61:23:49",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol",
              "file": "./IDrawBuffer.sol",
              "id": 10934,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 11004,
              "sourceUnit": 10931,
              "src": "85:27:49",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol",
              "file": "../PrizeDistributionBuffer.sol",
              "id": 10935,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 11004,
              "sourceUnit": 8797,
              "src": "113:40:49",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/PrizeDistributor.sol",
              "file": "../PrizeDistributor.sol",
              "id": 10936,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 11004,
              "sourceUnit": 9170,
              "src": "154:33:49",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "documentation": {
                "id": 10937,
                "nodeType": "StructuredDocumentation",
                "src": "189:124:49",
                "text": " @title  PoolTogether V4 IDrawCalculator\n @author PoolTogether Inc Team\n @notice The DrawCalculator interface."
              },
              "fullyImplemented": false,
              "id": 11003,
              "linearizedBaseContracts": [
                11003
              ],
              "name": "IDrawCalculator",
              "nameLocation": "324:15:49",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "canonicalName": "IDrawCalculator.PickPrize",
                  "id": 10942,
                  "members": [
                    {
                      "constant": false,
                      "id": 10939,
                      "mutability": "mutable",
                      "name": "won",
                      "nameLocation": "378:3:49",
                      "nodeType": "VariableDeclaration",
                      "scope": 10942,
                      "src": "373:8:49",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_bool",
                        "typeString": "bool"
                      },
                      "typeName": {
                        "id": 10938,
                        "name": "bool",
                        "nodeType": "ElementaryTypeName",
                        "src": "373:4:49",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 10941,
                      "mutability": "mutable",
                      "name": "tierIndex",
                      "nameLocation": "397:9:49",
                      "nodeType": "VariableDeclaration",
                      "scope": 10942,
                      "src": "391:15:49",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint8",
                        "typeString": "uint8"
                      },
                      "typeName": {
                        "id": 10940,
                        "name": "uint8",
                        "nodeType": "ElementaryTypeName",
                        "src": "391:5:49",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        }
                      },
                      "visibility": "internal"
                    }
                  ],
                  "name": "PickPrize",
                  "nameLocation": "353:9:49",
                  "nodeType": "StructDefinition",
                  "scope": 11003,
                  "src": "346:67:49",
                  "visibility": "public"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 10943,
                    "nodeType": "StructuredDocumentation",
                    "src": "419:51:49",
                    "text": "@notice Emitted when the contract is initialized"
                  },
                  "id": 10954,
                  "name": "Deployed",
                  "nameLocation": "481:8:49",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 10953,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10946,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "ticket",
                        "nameLocation": "515:6:49",
                        "nodeType": "VariableDeclaration",
                        "scope": 10954,
                        "src": "499:22:49",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ITicket_$11825",
                          "typeString": "contract ITicket"
                        },
                        "typeName": {
                          "id": 10945,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 10944,
                            "name": "ITicket",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11825,
                            "src": "499:7:49"
                          },
                          "referencedDeclaration": 11825,
                          "src": "499:7:49",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$11825",
                            "typeString": "contract ITicket"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10949,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "drawBuffer",
                        "nameLocation": "551:10:49",
                        "nodeType": "VariableDeclaration",
                        "scope": 10954,
                        "src": "531:30:49",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                          "typeString": "contract IDrawBuffer"
                        },
                        "typeName": {
                          "id": 10948,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 10947,
                            "name": "IDrawBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 10930,
                            "src": "531:11:49"
                          },
                          "referencedDeclaration": 10930,
                          "src": "531:11:49",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10952,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "prizeDistributionBuffer",
                        "nameLocation": "604:23:49",
                        "nodeType": "VariableDeclaration",
                        "scope": 10954,
                        "src": "571:56:49",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11079",
                          "typeString": "contract IPrizeDistributionBuffer"
                        },
                        "typeName": {
                          "id": 10951,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 10950,
                            "name": "IPrizeDistributionBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11079,
                            "src": "571:24:49"
                          },
                          "referencedDeclaration": 11079,
                          "src": "571:24:49",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11079",
                            "typeString": "contract IPrizeDistributionBuffer"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "489:144:49"
                  },
                  "src": "475:159:49"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 10955,
                    "nodeType": "StructuredDocumentation",
                    "src": "640:59:49",
                    "text": "@notice Emitted when the prizeDistributor is set/updated"
                  },
                  "id": 10960,
                  "name": "PrizeDistributorSet",
                  "nameLocation": "710:19:49",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 10959,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10958,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "prizeDistributor",
                        "nameLocation": "755:16:49",
                        "nodeType": "VariableDeclaration",
                        "scope": 10960,
                        "src": "730:41:49",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_PrizeDistributor_$9169",
                          "typeString": "contract PrizeDistributor"
                        },
                        "typeName": {
                          "id": 10957,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 10956,
                            "name": "PrizeDistributor",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 9169,
                            "src": "730:16:49"
                          },
                          "referencedDeclaration": 9169,
                          "src": "730:16:49",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_PrizeDistributor_$9169",
                            "typeString": "contract PrizeDistributor"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "729:43:49"
                  },
                  "src": "704:69:49"
                },
                {
                  "documentation": {
                    "id": 10961,
                    "nodeType": "StructuredDocumentation",
                    "src": "779:473:49",
                    "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": 10976,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "calculate",
                  "nameLocation": "1266:9:49",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10969,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10963,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "1293:4:49",
                        "nodeType": "VariableDeclaration",
                        "scope": 10976,
                        "src": "1285:12:49",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 10962,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1285:7:49",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10966,
                        "mutability": "mutable",
                        "name": "drawIds",
                        "nameLocation": "1325:7:49",
                        "nodeType": "VariableDeclaration",
                        "scope": 10976,
                        "src": "1307:25:49",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                          "typeString": "uint32[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 10964,
                            "name": "uint32",
                            "nodeType": "ElementaryTypeName",
                            "src": "1307:6:49",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "id": 10965,
                          "nodeType": "ArrayTypeName",
                          "src": "1307:8:49",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint32_$dyn_storage_ptr",
                            "typeString": "uint32[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10968,
                        "mutability": "mutable",
                        "name": "data",
                        "nameLocation": "1357:4:49",
                        "nodeType": "VariableDeclaration",
                        "scope": 10976,
                        "src": "1342:19:49",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_calldata_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 10967,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "1342:5:49",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1275:92:49"
                  },
                  "returnParameters": {
                    "id": 10975,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10972,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 10976,
                        "src": "1391:16:49",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 10970,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "1391:7:49",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 10971,
                          "nodeType": "ArrayTypeName",
                          "src": "1391:9:49",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10974,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 10976,
                        "src": "1409:12:49",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 10973,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "1409:5:49",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1390:32:49"
                  },
                  "scope": 11003,
                  "src": "1257:166:49",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 10977,
                    "nodeType": "StructuredDocumentation",
                    "src": "1429:86:49",
                    "text": " @notice Read global DrawBuffer variable.\n @return IDrawBuffer"
                  },
                  "functionSelector": "4019f2d6",
                  "id": 10983,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getDrawBuffer",
                  "nameLocation": "1529:13:49",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10978,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1542:2:49"
                  },
                  "returnParameters": {
                    "id": 10982,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10981,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 10983,
                        "src": "1568:11:49",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                          "typeString": "contract IDrawBuffer"
                        },
                        "typeName": {
                          "id": 10980,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 10979,
                            "name": "IDrawBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 10930,
                            "src": "1568:11:49"
                          },
                          "referencedDeclaration": 10930,
                          "src": "1568:11:49",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1567:13:49"
                  },
                  "scope": 11003,
                  "src": "1520:61:49",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 10984,
                    "nodeType": "StructuredDocumentation",
                    "src": "1587:112:49",
                    "text": " @notice Read global prizeDistributionBuffer variable.\n @return IPrizeDistributionBuffer"
                  },
                  "functionSelector": "bd97a252",
                  "id": 10990,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPrizeDistributionBuffer",
                  "nameLocation": "1713:26:49",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10985,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1739:2:49"
                  },
                  "returnParameters": {
                    "id": 10989,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10988,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 10990,
                        "src": "1765:24:49",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11079",
                          "typeString": "contract IPrizeDistributionBuffer"
                        },
                        "typeName": {
                          "id": 10987,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 10986,
                            "name": "IPrizeDistributionBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11079,
                            "src": "1765:24:49"
                          },
                          "referencedDeclaration": 11079,
                          "src": "1765:24:49",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11079",
                            "typeString": "contract IPrizeDistributionBuffer"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1764:26:49"
                  },
                  "scope": 11003,
                  "src": "1704:87:49",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 10991,
                    "nodeType": "StructuredDocumentation",
                    "src": "1797:222:49",
                    "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 drawIds to consider\n @return Array of balances"
                  },
                  "functionSelector": "8045fbcf",
                  "id": 11002,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getNormalizedBalancesForDrawIds",
                  "nameLocation": "2033:31:49",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 10997,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 10993,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "2073:4:49",
                        "nodeType": "VariableDeclaration",
                        "scope": 11002,
                        "src": "2065:12:49",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 10992,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2065:7:49",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 10996,
                        "mutability": "mutable",
                        "name": "drawIds",
                        "nameLocation": "2097:7:49",
                        "nodeType": "VariableDeclaration",
                        "scope": 11002,
                        "src": "2079:25:49",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                          "typeString": "uint32[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 10994,
                            "name": "uint32",
                            "nodeType": "ElementaryTypeName",
                            "src": "2079:6:49",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "id": 10995,
                          "nodeType": "ArrayTypeName",
                          "src": "2079:8:49",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint32_$dyn_storage_ptr",
                            "typeString": "uint32[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2064:41:49"
                  },
                  "returnParameters": {
                    "id": 11001,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11000,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11002,
                        "src": "2153:16:49",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 10998,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "2153:7:49",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 10999,
                          "nodeType": "ArrayTypeName",
                          "src": "2153:9:49",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2152:18:49"
                  },
                  "scope": 11003,
                  "src": "2024:147:49",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 11004,
              "src": "314:1860:49",
              "usedErrors": []
            }
          ],
          "src": "37:2138:49"
        },
        "id": 49
      },
      "@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionBuffer.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionBuffer.sol",
          "exportedSymbols": {
            "IPrizeDistributionBuffer": [
              11079
            ],
            "IPrizeDistributionSource": [
              11115
            ]
          },
          "id": 11080,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 11005,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:50"
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionSource.sol",
              "file": "./IPrizeDistributionSource.sol",
              "id": 11006,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 11080,
              "sourceUnit": 11116,
              "src": "61:40:50",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 11008,
                    "name": "IPrizeDistributionSource",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 11115,
                    "src": "265:24:50"
                  },
                  "id": 11009,
                  "nodeType": "InheritanceSpecifier",
                  "src": "265:24:50"
                }
              ],
              "contractDependencies": [],
              "contractKind": "interface",
              "documentation": {
                "id": 11007,
                "nodeType": "StructuredDocumentation",
                "src": "103:123:50",
                "text": "@title  IPrizeDistributionBuffer\n @author PoolTogether Inc Team\n @notice The PrizeDistributionBuffer interface."
              },
              "fullyImplemented": false,
              "id": 11079,
              "linearizedBaseContracts": [
                11079,
                11115
              ],
              "name": "IPrizeDistributionBuffer",
              "nameLocation": "237:24:50",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11010,
                    "nodeType": "StructuredDocumentation",
                    "src": "296:172:50",
                    "text": " @notice Emit when PrizeDistribution is set.\n @param drawId       Draw id\n @param prizeDistribution IPrizeDistributionBuffer.PrizeDistribution"
                  },
                  "id": 11017,
                  "name": "PrizeDistributionSet",
                  "nameLocation": "479:20:50",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11016,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11012,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "drawId",
                        "nameLocation": "524:6:50",
                        "nodeType": "VariableDeclaration",
                        "scope": 11017,
                        "src": "509:21:50",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 11011,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "509:6:50",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11015,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "prizeDistribution",
                        "nameLocation": "583:17:50",
                        "nodeType": "VariableDeclaration",
                        "scope": 11017,
                        "src": "540:60:50",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$11103_memory_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 11014,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11013,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11103,
                            "src": "540:42:50"
                          },
                          "referencedDeclaration": 11103,
                          "src": "540:42:50",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11103_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "499:107:50"
                  },
                  "src": "473:134:50"
                },
                {
                  "documentation": {
                    "id": 11018,
                    "nodeType": "StructuredDocumentation",
                    "src": "613:96:50",
                    "text": " @notice Read a ring buffer cardinality\n @return Ring buffer cardinality"
                  },
                  "functionSelector": "caeef7ec",
                  "id": 11023,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getBufferCardinality",
                  "nameLocation": "723:20:50",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11019,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "743:2:50"
                  },
                  "returnParameters": {
                    "id": 11022,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11021,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11023,
                        "src": "769:6:50",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 11020,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "769:6:50",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "768:8:50"
                  },
                  "scope": 11079,
                  "src": "714:63:50",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11024,
                    "nodeType": "StructuredDocumentation",
                    "src": "783:239:50",
                    "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": 11032,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getNewestPrizeDistribution",
                  "nameLocation": "1036:26:50",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11025,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1062:2:50"
                  },
                  "returnParameters": {
                    "id": 11031,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11028,
                        "mutability": "mutable",
                        "name": "prizeDistribution",
                        "nameLocation": "1175:17:50",
                        "nodeType": "VariableDeclaration",
                        "scope": 11032,
                        "src": "1125:67:50",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$11103_memory_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 11027,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11026,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11103,
                            "src": "1125:42:50"
                          },
                          "referencedDeclaration": 11103,
                          "src": "1125:42:50",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11103_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11030,
                        "mutability": "mutable",
                        "name": "drawId",
                        "nameLocation": "1213:6:50",
                        "nodeType": "VariableDeclaration",
                        "scope": 11032,
                        "src": "1206:13:50",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 11029,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1206:6:50",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1111:118:50"
                  },
                  "scope": 11079,
                  "src": "1027:203:50",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11033,
                    "nodeType": "StructuredDocumentation",
                    "src": "1236:228:50",
                    "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": 11041,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getOldestPrizeDistribution",
                  "nameLocation": "1478:26:50",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11034,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1504:2:50"
                  },
                  "returnParameters": {
                    "id": 11040,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11037,
                        "mutability": "mutable",
                        "name": "prizeDistribution",
                        "nameLocation": "1617:17:50",
                        "nodeType": "VariableDeclaration",
                        "scope": 11041,
                        "src": "1567:67:50",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$11103_memory_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 11036,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11035,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11103,
                            "src": "1567:42:50"
                          },
                          "referencedDeclaration": 11103,
                          "src": "1567:42:50",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11103_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11039,
                        "mutability": "mutable",
                        "name": "drawId",
                        "nameLocation": "1655:6:50",
                        "nodeType": "VariableDeclaration",
                        "scope": 11041,
                        "src": "1648:13:50",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 11038,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1648:6:50",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1553:118:50"
                  },
                  "scope": 11079,
                  "src": "1469:203:50",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11042,
                    "nodeType": "StructuredDocumentation",
                    "src": "1678:133:50",
                    "text": " @notice Gets the PrizeDistributionBuffer for a drawId\n @param drawId drawId\n @return prizeDistribution"
                  },
                  "functionSelector": "3cd8e2d5",
                  "id": 11050,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPrizeDistribution",
                  "nameLocation": "1825:20:50",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11045,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11044,
                        "mutability": "mutable",
                        "name": "drawId",
                        "nameLocation": "1853:6:50",
                        "nodeType": "VariableDeclaration",
                        "scope": 11050,
                        "src": "1846:13:50",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 11043,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1846:6:50",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1845:15:50"
                  },
                  "returnParameters": {
                    "id": 11049,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11048,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11050,
                        "src": "1908:49:50",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$11103_memory_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 11047,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11046,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11103,
                            "src": "1908:42:50"
                          },
                          "referencedDeclaration": 11103,
                          "src": "1908:42:50",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11103_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1907:51:50"
                  },
                  "scope": 11079,
                  "src": "1816:143:50",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11051,
                    "nodeType": "StructuredDocumentation",
                    "src": "1965:411:50",
                    "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": 11056,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPrizeDistributionCount",
                  "nameLocation": "2390:25:50",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11052,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2415:2:50"
                  },
                  "returnParameters": {
                    "id": 11055,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11054,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11056,
                        "src": "2441:6:50",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 11053,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2441:6:50",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2440:8:50"
                  },
                  "scope": 11079,
                  "src": "2381:68:50",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11057,
                    "nodeType": "StructuredDocumentation",
                    "src": "2455:284:50",
                    "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": 11067,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "pushPrizeDistribution",
                  "nameLocation": "2753:21:50",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11063,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11059,
                        "mutability": "mutable",
                        "name": "drawId",
                        "nameLocation": "2791:6:50",
                        "nodeType": "VariableDeclaration",
                        "scope": 11067,
                        "src": "2784:13:50",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 11058,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2784:6:50",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11062,
                        "mutability": "mutable",
                        "name": "prizeDistribution",
                        "nameLocation": "2859:17:50",
                        "nodeType": "VariableDeclaration",
                        "scope": 11067,
                        "src": "2807:69:50",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$11103_calldata_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 11061,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11060,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11103,
                            "src": "2807:42:50"
                          },
                          "referencedDeclaration": 11103,
                          "src": "2807:42:50",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11103_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2774:108:50"
                  },
                  "returnParameters": {
                    "id": 11066,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11065,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11067,
                        "src": "2901:4:50",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 11064,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "2901:4:50",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2900:6:50"
                  },
                  "scope": 11079,
                  "src": "2744:163:50",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11068,
                    "nodeType": "StructuredDocumentation",
                    "src": "2913:420:50",
                    "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": 11078,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setPrizeDistribution",
                  "nameLocation": "3347:20:50",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11074,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11070,
                        "mutability": "mutable",
                        "name": "drawId",
                        "nameLocation": "3384:6:50",
                        "nodeType": "VariableDeclaration",
                        "scope": 11078,
                        "src": "3377:13:50",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 11069,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "3377:6:50",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11073,
                        "mutability": "mutable",
                        "name": "draw",
                        "nameLocation": "3452:4:50",
                        "nodeType": "VariableDeclaration",
                        "scope": 11078,
                        "src": "3400:56:50",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$11103_calldata_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 11072,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11071,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11103,
                            "src": "3400:42:50"
                          },
                          "referencedDeclaration": 11103,
                          "src": "3400:42:50",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11103_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3367:95:50"
                  },
                  "returnParameters": {
                    "id": 11077,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11076,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11078,
                        "src": "3481:6:50",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 11075,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "3481:6:50",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3480:8:50"
                  },
                  "scope": 11079,
                  "src": "3338:151:50",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 11080,
              "src": "227:3264:50",
              "usedErrors": []
            }
          ],
          "src": "37:3455:50"
        },
        "id": 50
      },
      "@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionSource.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionSource.sol",
          "exportedSymbols": {
            "IPrizeDistributionSource": [
              11115
            ]
          },
          "id": 11116,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 11081,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:51"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "documentation": {
                "id": 11082,
                "nodeType": "StructuredDocumentation",
                "src": "61:122:51",
                "text": "@title IPrizeDistributionSource\n @author PoolTogether Inc Team\n @notice The PrizeDistributionSource interface."
              },
              "fullyImplemented": false,
              "id": 11115,
              "linearizedBaseContracts": [
                11115
              ],
              "name": "IPrizeDistributionSource",
              "nameLocation": "194:24:51",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "canonicalName": "IPrizeDistributionSource.PrizeDistribution",
                  "id": 11103,
                  "members": [
                    {
                      "constant": false,
                      "id": 11084,
                      "mutability": "mutable",
                      "name": "bitRangeSize",
                      "nameLocation": "1367:12:51",
                      "nodeType": "VariableDeclaration",
                      "scope": 11103,
                      "src": "1361:18:51",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint8",
                        "typeString": "uint8"
                      },
                      "typeName": {
                        "id": 11083,
                        "name": "uint8",
                        "nodeType": "ElementaryTypeName",
                        "src": "1361:5:51",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 11086,
                      "mutability": "mutable",
                      "name": "matchCardinality",
                      "nameLocation": "1395:16:51",
                      "nodeType": "VariableDeclaration",
                      "scope": 11103,
                      "src": "1389:22:51",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint8",
                        "typeString": "uint8"
                      },
                      "typeName": {
                        "id": 11085,
                        "name": "uint8",
                        "nodeType": "ElementaryTypeName",
                        "src": "1389:5:51",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 11088,
                      "mutability": "mutable",
                      "name": "startTimestampOffset",
                      "nameLocation": "1428:20:51",
                      "nodeType": "VariableDeclaration",
                      "scope": 11103,
                      "src": "1421:27:51",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint32",
                        "typeString": "uint32"
                      },
                      "typeName": {
                        "id": 11087,
                        "name": "uint32",
                        "nodeType": "ElementaryTypeName",
                        "src": "1421:6:51",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 11090,
                      "mutability": "mutable",
                      "name": "endTimestampOffset",
                      "nameLocation": "1465:18:51",
                      "nodeType": "VariableDeclaration",
                      "scope": 11103,
                      "src": "1458:25:51",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint32",
                        "typeString": "uint32"
                      },
                      "typeName": {
                        "id": 11089,
                        "name": "uint32",
                        "nodeType": "ElementaryTypeName",
                        "src": "1458:6:51",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 11092,
                      "mutability": "mutable",
                      "name": "maxPicksPerUser",
                      "nameLocation": "1500:15:51",
                      "nodeType": "VariableDeclaration",
                      "scope": 11103,
                      "src": "1493:22:51",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint32",
                        "typeString": "uint32"
                      },
                      "typeName": {
                        "id": 11091,
                        "name": "uint32",
                        "nodeType": "ElementaryTypeName",
                        "src": "1493:6:51",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 11094,
                      "mutability": "mutable",
                      "name": "expiryDuration",
                      "nameLocation": "1532:14:51",
                      "nodeType": "VariableDeclaration",
                      "scope": 11103,
                      "src": "1525:21:51",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint32",
                        "typeString": "uint32"
                      },
                      "typeName": {
                        "id": 11093,
                        "name": "uint32",
                        "nodeType": "ElementaryTypeName",
                        "src": "1525:6:51",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 11096,
                      "mutability": "mutable",
                      "name": "numberOfPicks",
                      "nameLocation": "1564:13:51",
                      "nodeType": "VariableDeclaration",
                      "scope": 11103,
                      "src": "1556:21:51",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint104",
                        "typeString": "uint104"
                      },
                      "typeName": {
                        "id": 11095,
                        "name": "uint104",
                        "nodeType": "ElementaryTypeName",
                        "src": "1556:7:51",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint104",
                          "typeString": "uint104"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 11100,
                      "mutability": "mutable",
                      "name": "tiers",
                      "nameLocation": "1598:5:51",
                      "nodeType": "VariableDeclaration",
                      "scope": 11103,
                      "src": "1587:16:51",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_array$_t_uint32_$16_storage_ptr",
                        "typeString": "uint32[16]"
                      },
                      "typeName": {
                        "baseType": {
                          "id": 11097,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1587:6:51",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "id": 11099,
                        "length": {
                          "hexValue": "3136",
                          "id": 11098,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "number",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "1594:2:51",
                          "typeDescriptions": {
                            "typeIdentifier": "t_rational_16_by_1",
                            "typeString": "int_const 16"
                          },
                          "value": "16"
                        },
                        "nodeType": "ArrayTypeName",
                        "src": "1587:10:51",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint32_$16_storage_ptr",
                          "typeString": "uint32[16]"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 11102,
                      "mutability": "mutable",
                      "name": "prize",
                      "nameLocation": "1621:5:51",
                      "nodeType": "VariableDeclaration",
                      "scope": 11103,
                      "src": "1613:13:51",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint256",
                        "typeString": "uint256"
                      },
                      "typeName": {
                        "id": 11101,
                        "name": "uint256",
                        "nodeType": "ElementaryTypeName",
                        "src": "1613:7:51",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        }
                      },
                      "visibility": "internal"
                    }
                  ],
                  "name": "PrizeDistribution",
                  "nameLocation": "1333:17:51",
                  "nodeType": "StructDefinition",
                  "scope": 11115,
                  "src": "1326:307:51",
                  "visibility": "public"
                },
                {
                  "documentation": {
                    "id": 11104,
                    "nodeType": "StructuredDocumentation",
                    "src": "1639:172:51",
                    "text": " @notice Gets PrizeDistribution list from array of drawIds\n @param drawIds drawIds to get PrizeDistribution for\n @return prizeDistributionList"
                  },
                  "functionSelector": "d30a5daf",
                  "id": 11114,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPrizeDistributions",
                  "nameLocation": "1825:21:51",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11108,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11107,
                        "mutability": "mutable",
                        "name": "drawIds",
                        "nameLocation": "1865:7:51",
                        "nodeType": "VariableDeclaration",
                        "scope": 11114,
                        "src": "1847:25:51",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                          "typeString": "uint32[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 11105,
                            "name": "uint32",
                            "nodeType": "ElementaryTypeName",
                            "src": "1847:6:51",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "id": 11106,
                          "nodeType": "ArrayTypeName",
                          "src": "1847:8:51",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint32_$dyn_storage_ptr",
                            "typeString": "uint32[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1846:27:51"
                  },
                  "returnParameters": {
                    "id": 11113,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11112,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11114,
                        "src": "1921:26:51",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11103_memory_ptr_$dyn_memory_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 11110,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 11109,
                              "name": "PrizeDistribution",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 11103,
                              "src": "1921:17:51"
                            },
                            "referencedDeclaration": 11103,
                            "src": "1921:17:51",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeDistribution_$11103_storage_ptr",
                              "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                            }
                          },
                          "id": 11111,
                          "nodeType": "ArrayTypeName",
                          "src": "1921:19:51",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_PrizeDistribution_$11103_storage_$dyn_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1920:28:51"
                  },
                  "scope": 11115,
                  "src": "1816:133:51",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 11116,
              "src": "184:1767:51",
              "usedErrors": []
            }
          ],
          "src": "37:1915:51"
        },
        "id": 51
      },
      "@pooltogether/v4-core/contracts/interfaces/IPrizeDistributor.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IPrizeDistributor.sol",
          "exportedSymbols": {
            "IDrawBeacon": [
              10853
            ],
            "IDrawBuffer": [
              10930
            ],
            "IDrawCalculator": [
              11003
            ],
            "IERC20": [
              890
            ],
            "IPrizeDistributor": [
              11213
            ]
          },
          "id": 11214,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 11117,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "36:22:52"
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "id": 11118,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 11214,
              "sourceUnit": 891,
              "src": "60:56:52",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol",
              "file": "./IDrawBuffer.sol",
              "id": 11119,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 11214,
              "sourceUnit": 10931,
              "src": "118:27:52",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IDrawCalculator.sol",
              "file": "./IDrawCalculator.sol",
              "id": 11120,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 11214,
              "sourceUnit": 11004,
              "src": "146:31:52",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "documentation": {
                "id": 11121,
                "nodeType": "StructuredDocumentation",
                "src": "179:110:52",
                "text": "@title  IPrizeDistributor\n @author PoolTogether Inc Team\n @notice The PrizeDistributor interface."
              },
              "fullyImplemented": false,
              "id": 11213,
              "linearizedBaseContracts": [
                11213
              ],
              "name": "IPrizeDistributor",
              "nameLocation": "300:17:52",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11122,
                    "nodeType": "StructuredDocumentation",
                    "src": "325:233:52",
                    "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": 11130,
                  "name": "ClaimedDraw",
                  "nameLocation": "569:11:52",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11129,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11124,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "597:4:52",
                        "nodeType": "VariableDeclaration",
                        "scope": 11130,
                        "src": "581:20:52",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11123,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "581:7:52",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11126,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "drawId",
                        "nameLocation": "618:6:52",
                        "nodeType": "VariableDeclaration",
                        "scope": 11130,
                        "src": "603:21:52",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 11125,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "603:6:52",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11128,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "payout",
                        "nameLocation": "634:6:52",
                        "nodeType": "VariableDeclaration",
                        "scope": 11130,
                        "src": "626:14:52",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11127,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "626:7:52",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "580:61:52"
                  },
                  "src": "563:79:52"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11131,
                    "nodeType": "StructuredDocumentation",
                    "src": "648:107:52",
                    "text": " @notice Emit when DrawCalculator is set.\n @param calculator DrawCalculator address"
                  },
                  "id": 11136,
                  "name": "DrawCalculatorSet",
                  "nameLocation": "766:17:52",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11135,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11134,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "calculator",
                        "nameLocation": "808:10:52",
                        "nodeType": "VariableDeclaration",
                        "scope": 11136,
                        "src": "784:34:52",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawCalculator_$11003",
                          "typeString": "contract IDrawCalculator"
                        },
                        "typeName": {
                          "id": 11133,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11132,
                            "name": "IDrawCalculator",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11003,
                            "src": "784:15:52"
                          },
                          "referencedDeclaration": 11003,
                          "src": "784:15:52",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculator_$11003",
                            "typeString": "contract IDrawCalculator"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "783:36:52"
                  },
                  "src": "760:60:52"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11137,
                    "nodeType": "StructuredDocumentation",
                    "src": "826:84:52",
                    "text": " @notice Emit when Token is set.\n @param token Token address"
                  },
                  "id": 11142,
                  "name": "TokenSet",
                  "nameLocation": "921:8:52",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11141,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11140,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "token",
                        "nameLocation": "945:5:52",
                        "nodeType": "VariableDeclaration",
                        "scope": 11142,
                        "src": "930:20:52",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$890",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 11139,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11138,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 890,
                            "src": "930:6:52"
                          },
                          "referencedDeclaration": 890,
                          "src": "930:6:52",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$890",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "929:22:52"
                  },
                  "src": "915:37:52"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11143,
                    "nodeType": "StructuredDocumentation",
                    "src": "958:211:52",
                    "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": 11152,
                  "name": "ERC20Withdrawn",
                  "nameLocation": "1180:14:52",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11151,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11146,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "token",
                        "nameLocation": "1210:5:52",
                        "nodeType": "VariableDeclaration",
                        "scope": 11152,
                        "src": "1195:20:52",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$890",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 11145,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11144,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 890,
                            "src": "1195:6:52"
                          },
                          "referencedDeclaration": 890,
                          "src": "1195:6:52",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$890",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11148,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "1233:2:52",
                        "nodeType": "VariableDeclaration",
                        "scope": 11152,
                        "src": "1217:18:52",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11147,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1217:7:52",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11150,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "1245:6:52",
                        "nodeType": "VariableDeclaration",
                        "scope": 11152,
                        "src": "1237:14:52",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11149,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1237:7:52",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1194:58:52"
                  },
                  "src": "1174:79:52"
                },
                {
                  "documentation": {
                    "id": 11153,
                    "nodeType": "StructuredDocumentation",
                    "src": "1259:1019:52",
                    "text": " @notice Claim prize payout(s) by submitting valid 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": 11165,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "claim",
                  "nameLocation": "2292:5:52",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11161,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11155,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "2315:4:52",
                        "nodeType": "VariableDeclaration",
                        "scope": 11165,
                        "src": "2307:12:52",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11154,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2307:7:52",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11158,
                        "mutability": "mutable",
                        "name": "drawIds",
                        "nameLocation": "2347:7:52",
                        "nodeType": "VariableDeclaration",
                        "scope": 11165,
                        "src": "2329:25:52",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                          "typeString": "uint32[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 11156,
                            "name": "uint32",
                            "nodeType": "ElementaryTypeName",
                            "src": "2329:6:52",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "id": 11157,
                          "nodeType": "ArrayTypeName",
                          "src": "2329:8:52",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint32_$dyn_storage_ptr",
                            "typeString": "uint32[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11160,
                        "mutability": "mutable",
                        "name": "data",
                        "nameLocation": "2379:4:52",
                        "nodeType": "VariableDeclaration",
                        "scope": 11165,
                        "src": "2364:19:52",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_calldata_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 11159,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "2364:5:52",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2297:92:52"
                  },
                  "returnParameters": {
                    "id": 11164,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11163,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11165,
                        "src": "2408:7:52",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11162,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2408:7:52",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2407:9:52"
                  },
                  "scope": 11213,
                  "src": "2283:134:52",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11166,
                    "nodeType": "StructuredDocumentation",
                    "src": "2423:99:52",
                    "text": " @notice Read global DrawCalculator address.\n @return IDrawCalculator"
                  },
                  "functionSelector": "2d680cfa",
                  "id": 11172,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getDrawCalculator",
                  "nameLocation": "2536:17:52",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11167,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2553:2:52"
                  },
                  "returnParameters": {
                    "id": 11171,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11170,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11172,
                        "src": "2579:15:52",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawCalculator_$11003",
                          "typeString": "contract IDrawCalculator"
                        },
                        "typeName": {
                          "id": 11169,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11168,
                            "name": "IDrawCalculator",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11003,
                            "src": "2579:15:52"
                          },
                          "referencedDeclaration": 11003,
                          "src": "2579:15:52",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculator_$11003",
                            "typeString": "contract IDrawCalculator"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2578:17:52"
                  },
                  "scope": 11213,
                  "src": "2527:69:52",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11173,
                    "nodeType": "StructuredDocumentation",
                    "src": "2602:162:52",
                    "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": 11182,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getDrawPayoutBalanceOf",
                  "nameLocation": "2778:22:52",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11178,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11175,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "2809:4:52",
                        "nodeType": "VariableDeclaration",
                        "scope": 11182,
                        "src": "2801:12:52",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11174,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2801:7:52",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11177,
                        "mutability": "mutable",
                        "name": "drawId",
                        "nameLocation": "2822:6:52",
                        "nodeType": "VariableDeclaration",
                        "scope": 11182,
                        "src": "2815:13:52",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 11176,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2815:6:52",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2800:29:52"
                  },
                  "returnParameters": {
                    "id": 11181,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11180,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11182,
                        "src": "2853:7:52",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11179,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2853:7:52",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2852:9:52"
                  },
                  "scope": 11213,
                  "src": "2769:93:52",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11183,
                    "nodeType": "StructuredDocumentation",
                    "src": "2868:82:52",
                    "text": " @notice Read global Ticket address.\n @return IERC20"
                  },
                  "functionSelector": "21df0da7",
                  "id": 11189,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getToken",
                  "nameLocation": "2964:8:52",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11184,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2972:2:52"
                  },
                  "returnParameters": {
                    "id": 11188,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11187,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11189,
                        "src": "2998:6:52",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$890",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 11186,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11185,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 890,
                            "src": "2998:6:52"
                          },
                          "referencedDeclaration": 890,
                          "src": "2998:6:52",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$890",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2997:8:52"
                  },
                  "scope": 11213,
                  "src": "2955:51:52",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11190,
                    "nodeType": "StructuredDocumentation",
                    "src": "3012:168:52",
                    "text": " @notice Sets DrawCalculator reference contract.\n @param newCalculator DrawCalculator address\n @return New DrawCalculator address"
                  },
                  "functionSelector": "454a8140",
                  "id": 11199,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setDrawCalculator",
                  "nameLocation": "3194:17:52",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11194,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11193,
                        "mutability": "mutable",
                        "name": "newCalculator",
                        "nameLocation": "3228:13:52",
                        "nodeType": "VariableDeclaration",
                        "scope": 11199,
                        "src": "3212:29:52",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawCalculator_$11003",
                          "typeString": "contract IDrawCalculator"
                        },
                        "typeName": {
                          "id": 11192,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11191,
                            "name": "IDrawCalculator",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11003,
                            "src": "3212:15:52"
                          },
                          "referencedDeclaration": 11003,
                          "src": "3212:15:52",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculator_$11003",
                            "typeString": "contract IDrawCalculator"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3211:31:52"
                  },
                  "returnParameters": {
                    "id": 11198,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11197,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11199,
                        "src": "3261:15:52",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawCalculator_$11003",
                          "typeString": "contract IDrawCalculator"
                        },
                        "typeName": {
                          "id": 11196,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11195,
                            "name": "IDrawCalculator",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11003,
                            "src": "3261:15:52"
                          },
                          "referencedDeclaration": 11003,
                          "src": "3261:15:52",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculator_$11003",
                            "typeString": "contract IDrawCalculator"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3260:17:52"
                  },
                  "scope": 11213,
                  "src": "3185:93:52",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11200,
                    "nodeType": "StructuredDocumentation",
                    "src": "3284:342:52",
                    "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": 11212,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "withdrawERC20",
                  "nameLocation": "3640:13:52",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11208,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11203,
                        "mutability": "mutable",
                        "name": "token",
                        "nameLocation": "3670:5:52",
                        "nodeType": "VariableDeclaration",
                        "scope": 11212,
                        "src": "3663:12:52",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$890",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 11202,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11201,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 890,
                            "src": "3663:6:52"
                          },
                          "referencedDeclaration": 890,
                          "src": "3663:6:52",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$890",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11205,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "3693:2:52",
                        "nodeType": "VariableDeclaration",
                        "scope": 11212,
                        "src": "3685:10:52",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11204,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3685:7:52",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11207,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "3713:6:52",
                        "nodeType": "VariableDeclaration",
                        "scope": 11212,
                        "src": "3705:14:52",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11206,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3705:7:52",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3653:72:52"
                  },
                  "returnParameters": {
                    "id": 11211,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11210,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11212,
                        "src": "3744:4:52",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 11209,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "3744:4:52",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3743:6:52"
                  },
                  "scope": 11213,
                  "src": "3631:119:52",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 11214,
              "src": "290:3462:52",
              "usedErrors": []
            }
          ],
          "src": "36:3717:52"
        },
        "id": 52
      },
      "@pooltogether/v4-core/contracts/interfaces/IPrizePool.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IPrizePool.sol",
          "exportedSymbols": {
            "ExtendedSafeCastLib": [
              12045
            ],
            "ICompLike": [
              10642
            ],
            "IControlledToken": [
              10681
            ],
            "IERC20": [
              890
            ],
            "IPrizePool": [
              11495
            ],
            "ITicket": [
              11825
            ],
            "ObservationLib": [
              12204
            ],
            "OverflowSafeComparatorLib": [
              12376
            ],
            "RingBufferLib": [
              12461
            ],
            "SafeCast": [
              3225
            ],
            "TwabLib": [
              13211
            ]
          },
          "id": 11496,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 11215,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:53"
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/external/compound/ICompLike.sol",
              "file": "../external/compound/ICompLike.sol",
              "id": 11216,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 11496,
              "sourceUnit": 10643,
              "src": "61:44:53",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/ITicket.sol",
              "file": "../interfaces/ITicket.sol",
              "id": 11217,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 11496,
              "sourceUnit": 11826,
              "src": "106:35:53",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "fullyImplemented": false,
              "id": 11495,
              "linearizedBaseContracts": [
                11495
              ],
              "name": "IPrizePool",
              "nameLocation": "153:10:53",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11218,
                    "nodeType": "StructuredDocumentation",
                    "src": "170:53:53",
                    "text": "@dev Event emitted when controlled token is added"
                  },
                  "id": 11223,
                  "name": "ControlledTokenAdded",
                  "nameLocation": "234:20:53",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11222,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11221,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "token",
                        "nameLocation": "271:5:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 11223,
                        "src": "255:21:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ITicket_$11825",
                          "typeString": "contract ITicket"
                        },
                        "typeName": {
                          "id": 11220,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11219,
                            "name": "ITicket",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11825,
                            "src": "255:7:53"
                          },
                          "referencedDeclaration": 11825,
                          "src": "255:7:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$11825",
                            "typeString": "contract ITicket"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "254:23:53"
                  },
                  "src": "228:50:53"
                },
                {
                  "anonymous": false,
                  "id": 11227,
                  "name": "AwardCaptured",
                  "nameLocation": "290:13:53",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11226,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11225,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "312:6:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 11227,
                        "src": "304:14:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11224,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "304:7:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "303:16:53"
                  },
                  "src": "284:36:53"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11228,
                    "nodeType": "StructuredDocumentation",
                    "src": "326:48:53",
                    "text": "@dev Event emitted when assets are deposited"
                  },
                  "id": 11239,
                  "name": "Deposited",
                  "nameLocation": "385:9:53",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11238,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11230,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "operator",
                        "nameLocation": "420:8:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 11239,
                        "src": "404:24:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11229,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "404:7:53",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11232,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "454:2:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 11239,
                        "src": "438:18:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11231,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "438:7:53",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11235,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "token",
                        "nameLocation": "482:5:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 11239,
                        "src": "466:21:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ITicket_$11825",
                          "typeString": "contract ITicket"
                        },
                        "typeName": {
                          "id": 11234,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11233,
                            "name": "ITicket",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11825,
                            "src": "466:7:53"
                          },
                          "referencedDeclaration": 11825,
                          "src": "466:7:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$11825",
                            "typeString": "contract ITicket"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11237,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "505:6:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 11239,
                        "src": "497:14:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11236,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "497:7:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "394:123:53"
                  },
                  "src": "379:139:53"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11240,
                    "nodeType": "StructuredDocumentation",
                    "src": "524:59:53",
                    "text": "@dev Event emitted when interest is awarded to a winner"
                  },
                  "id": 11249,
                  "name": "Awarded",
                  "nameLocation": "594:7:53",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11248,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11242,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "winner",
                        "nameLocation": "618:6:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 11249,
                        "src": "602:22:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11241,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "602:7:53",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11245,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "token",
                        "nameLocation": "642:5:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 11249,
                        "src": "626:21:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ITicket_$11825",
                          "typeString": "contract ITicket"
                        },
                        "typeName": {
                          "id": 11244,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11243,
                            "name": "ITicket",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11825,
                            "src": "626:7:53"
                          },
                          "referencedDeclaration": 11825,
                          "src": "626:7:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$11825",
                            "typeString": "contract ITicket"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11247,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "657:6:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 11249,
                        "src": "649:14:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11246,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "649:7:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "601:63:53"
                  },
                  "src": "588:77:53"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11250,
                    "nodeType": "StructuredDocumentation",
                    "src": "671:67:53",
                    "text": "@dev Event emitted when external ERC20s are awarded to a winner"
                  },
                  "id": 11258,
                  "name": "AwardedExternalERC20",
                  "nameLocation": "749:20:53",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11257,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11252,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "winner",
                        "nameLocation": "786:6:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 11258,
                        "src": "770:22:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11251,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "770:7:53",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11254,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "token",
                        "nameLocation": "810:5:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 11258,
                        "src": "794:21:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11253,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "794:7:53",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11256,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "825:6:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 11258,
                        "src": "817:14:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11255,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "817:7:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "769:63:53"
                  },
                  "src": "743:90:53"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11259,
                    "nodeType": "StructuredDocumentation",
                    "src": "839:63:53",
                    "text": "@dev Event emitted when external ERC20s are transferred out"
                  },
                  "id": 11267,
                  "name": "TransferredExternalERC20",
                  "nameLocation": "913:24:53",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11266,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11261,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "954:2:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 11267,
                        "src": "938:18:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11260,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "938:7:53",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11263,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "token",
                        "nameLocation": "974:5:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 11267,
                        "src": "958:21:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11262,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "958:7:53",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11265,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "989:6:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 11267,
                        "src": "981:14:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11264,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "981:7:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "937:59:53"
                  },
                  "src": "907:90:53"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11268,
                    "nodeType": "StructuredDocumentation",
                    "src": "1003:68:53",
                    "text": "@dev Event emitted when external ERC721s are awarded to a winner"
                  },
                  "id": 11277,
                  "name": "AwardedExternalERC721",
                  "nameLocation": "1082:21:53",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11276,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11270,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "winner",
                        "nameLocation": "1120:6:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 11277,
                        "src": "1104:22:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11269,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1104:7:53",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11272,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "token",
                        "nameLocation": "1144:5:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 11277,
                        "src": "1128:21:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11271,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1128:7:53",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11275,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "tokenIds",
                        "nameLocation": "1161:8:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 11277,
                        "src": "1151:18:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 11273,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "1151:7:53",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 11274,
                          "nodeType": "ArrayTypeName",
                          "src": "1151:9:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1103:67:53"
                  },
                  "src": "1076:95:53"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11278,
                    "nodeType": "StructuredDocumentation",
                    "src": "1177:48:53",
                    "text": "@dev Event emitted when assets are withdrawn"
                  },
                  "id": 11291,
                  "name": "Withdrawal",
                  "nameLocation": "1236:10:53",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11290,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11280,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "operator",
                        "nameLocation": "1272:8:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 11291,
                        "src": "1256:24:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11279,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1256:7:53",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11282,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "from",
                        "nameLocation": "1306:4:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 11291,
                        "src": "1290:20:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11281,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1290:7:53",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11285,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "token",
                        "nameLocation": "1336:5:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 11291,
                        "src": "1320:21:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ITicket_$11825",
                          "typeString": "contract ITicket"
                        },
                        "typeName": {
                          "id": 11284,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11283,
                            "name": "ITicket",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11825,
                            "src": "1320:7:53"
                          },
                          "referencedDeclaration": 11825,
                          "src": "1320:7:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$11825",
                            "typeString": "contract ITicket"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11287,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "1359:6:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 11291,
                        "src": "1351:14:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11286,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1351:7:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11289,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "redeemed",
                        "nameLocation": "1383:8:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 11291,
                        "src": "1375:16:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11288,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1375:7:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1246:151:53"
                  },
                  "src": "1230:168:53"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11292,
                    "nodeType": "StructuredDocumentation",
                    "src": "1404:50:53",
                    "text": "@dev Event emitted when the Balance Cap is set"
                  },
                  "id": 11296,
                  "name": "BalanceCapSet",
                  "nameLocation": "1465:13:53",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11295,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11294,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "balanceCap",
                        "nameLocation": "1487:10:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 11296,
                        "src": "1479:18:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11293,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1479:7:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1478:20:53"
                  },
                  "src": "1459:40:53"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11297,
                    "nodeType": "StructuredDocumentation",
                    "src": "1505:52:53",
                    "text": "@dev Event emitted when the Liquidity Cap is set"
                  },
                  "id": 11301,
                  "name": "LiquidityCapSet",
                  "nameLocation": "1568:15:53",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11300,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11299,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "liquidityCap",
                        "nameLocation": "1592:12:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 11301,
                        "src": "1584:20:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11298,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1584:7:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1583:22:53"
                  },
                  "src": "1562:44:53"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11302,
                    "nodeType": "StructuredDocumentation",
                    "src": "1612:53:53",
                    "text": "@dev Event emitted when the Prize Strategy is set"
                  },
                  "id": 11306,
                  "name": "PrizeStrategySet",
                  "nameLocation": "1676:16:53",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11305,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11304,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "prizeStrategy",
                        "nameLocation": "1709:13:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 11306,
                        "src": "1693:29:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11303,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1693:7:53",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1692:31:53"
                  },
                  "src": "1670:54:53"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11307,
                    "nodeType": "StructuredDocumentation",
                    "src": "1730:45:53",
                    "text": "@dev Event emitted when the Ticket is set"
                  },
                  "id": 11312,
                  "name": "TicketSet",
                  "nameLocation": "1786:9:53",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11311,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11310,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "ticket",
                        "nameLocation": "1812:6:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 11312,
                        "src": "1796:22:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ITicket_$11825",
                          "typeString": "contract ITicket"
                        },
                        "typeName": {
                          "id": 11309,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11308,
                            "name": "ITicket",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11825,
                            "src": "1796:7:53"
                          },
                          "referencedDeclaration": 11825,
                          "src": "1796:7:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$11825",
                            "typeString": "contract ITicket"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1795:24:53"
                  },
                  "src": "1780:40:53"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11313,
                    "nodeType": "StructuredDocumentation",
                    "src": "1826:75:53",
                    "text": "@dev Emitted when there was an error thrown awarding an External ERC721"
                  },
                  "id": 11317,
                  "name": "ErrorAwardingExternalERC721",
                  "nameLocation": "1912:27:53",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11316,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11315,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "error",
                        "nameLocation": "1946:5:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 11317,
                        "src": "1940:11:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 11314,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "1940:5:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1939:13:53"
                  },
                  "src": "1906:47:53"
                },
                {
                  "documentation": {
                    "id": 11318,
                    "nodeType": "StructuredDocumentation",
                    "src": "1959:187:53",
                    "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": 11325,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "depositTo",
                  "nameLocation": "2160:9:53",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11323,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11320,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "2178:2:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 11325,
                        "src": "2170:10:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11319,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2170:7:53",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11322,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "2190:6:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 11325,
                        "src": "2182:14:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11321,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2182:7:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2169:28:53"
                  },
                  "returnParameters": {
                    "id": 11324,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2206:0:53"
                  },
                  "scope": 11495,
                  "src": "2151:56:53",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11326,
                    "nodeType": "StructuredDocumentation",
                    "src": "2213:310:53",
                    "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": 11335,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "depositToAndDelegate",
                  "nameLocation": "2537:20:53",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11333,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11328,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "2566:2:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 11335,
                        "src": "2558:10:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11327,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2558:7:53",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11330,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "2578:6:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 11335,
                        "src": "2570:14:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11329,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2570:7:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11332,
                        "mutability": "mutable",
                        "name": "delegate",
                        "nameLocation": "2594:8:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 11335,
                        "src": "2586:16:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11331,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2586:7:53",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2557:46:53"
                  },
                  "returnParameters": {
                    "id": 11334,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2612:0:53"
                  },
                  "scope": 11495,
                  "src": "2528:85:53",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11336,
                    "nodeType": "StructuredDocumentation",
                    "src": "2619:222:53",
                    "text": "@notice Withdraw assets from the Prize Pool instantly.\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": 11345,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "withdrawFrom",
                  "nameLocation": "2855:12:53",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11341,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11338,
                        "mutability": "mutable",
                        "name": "from",
                        "nameLocation": "2876:4:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 11345,
                        "src": "2868:12:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11337,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2868:7:53",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11340,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "2890:6:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 11345,
                        "src": "2882:14:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11339,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2882:7:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2867:30:53"
                  },
                  "returnParameters": {
                    "id": 11344,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11343,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11345,
                        "src": "2916:7:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11342,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2916:7:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2915:9:53"
                  },
                  "scope": 11495,
                  "src": "2846:79:53",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11346,
                    "nodeType": "StructuredDocumentation",
                    "src": "2931:251:53",
                    "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": 11353,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "award",
                  "nameLocation": "3196:5:53",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11351,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11348,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "3210:2:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 11353,
                        "src": "3202:10:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11347,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3202:7:53",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11350,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "3222:6:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 11353,
                        "src": "3214:14:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11349,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3214:7:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3201:28:53"
                  },
                  "returnParameters": {
                    "id": 11352,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3238:0:53"
                  },
                  "scope": 11495,
                  "src": "3187:52:53",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11354,
                    "nodeType": "StructuredDocumentation",
                    "src": "3245:196:53",
                    "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": 11359,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "awardBalance",
                  "nameLocation": "3455:12:53",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11355,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3467:2:53"
                  },
                  "returnParameters": {
                    "id": 11358,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11357,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11359,
                        "src": "3493:7:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11356,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3493:7:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3492:9:53"
                  },
                  "scope": 11495,
                  "src": "3446:56:53",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11360,
                    "nodeType": "StructuredDocumentation",
                    "src": "3508:199:53",
                    "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": 11365,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "captureAwardBalance",
                  "nameLocation": "3721:19:53",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11361,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3740:2:53"
                  },
                  "returnParameters": {
                    "id": 11364,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11363,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11365,
                        "src": "3761:7:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11362,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3761:7:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3760:9:53"
                  },
                  "scope": 11495,
                  "src": "3712:58:53",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11366,
                    "nodeType": "StructuredDocumentation",
                    "src": "3776:225:53",
                    "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": 11373,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "canAwardExternal",
                  "nameLocation": "4015:16:53",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11369,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11368,
                        "mutability": "mutable",
                        "name": "externalToken",
                        "nameLocation": "4040:13:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 11373,
                        "src": "4032:21:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11367,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4032:7:53",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4031:23:53"
                  },
                  "returnParameters": {
                    "id": 11372,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11371,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11373,
                        "src": "4078:4:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 11370,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "4078:4:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4077:6:53"
                  },
                  "scope": 11495,
                  "src": "4006:78:53",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11374,
                    "nodeType": "StructuredDocumentation",
                    "src": "4197:44:53",
                    "text": "@return The underlying balance of assets"
                  },
                  "functionSelector": "b69ef8a8",
                  "id": 11379,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "balance",
                  "nameLocation": "4255:7:53",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11375,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4262:2:53"
                  },
                  "returnParameters": {
                    "id": 11378,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11377,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11379,
                        "src": "4283:7:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11376,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4283:7:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4282:9:53"
                  },
                  "scope": 11495,
                  "src": "4246:46:53",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11380,
                    "nodeType": "StructuredDocumentation",
                    "src": "4298:104:53",
                    "text": " @notice Read internal Ticket accounted balance.\n @return uint256 accountBalance"
                  },
                  "functionSelector": "33e5761f",
                  "id": 11385,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getAccountedBalance",
                  "nameLocation": "4416:19:53",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11381,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4435:2:53"
                  },
                  "returnParameters": {
                    "id": 11384,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11383,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11385,
                        "src": "4461:7:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11382,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4461:7:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4460:9:53"
                  },
                  "scope": 11495,
                  "src": "4407:63:53",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11386,
                    "nodeType": "StructuredDocumentation",
                    "src": "4476:60:53",
                    "text": " @notice Read internal balanceCap variable"
                  },
                  "functionSelector": "08234319",
                  "id": 11391,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getBalanceCap",
                  "nameLocation": "4550:13:53",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11387,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4563:2:53"
                  },
                  "returnParameters": {
                    "id": 11390,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11389,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11391,
                        "src": "4589:7:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11388,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4589:7:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4588:9:53"
                  },
                  "scope": 11495,
                  "src": "4541:57:53",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11392,
                    "nodeType": "StructuredDocumentation",
                    "src": "4604:62:53",
                    "text": " @notice Read internal liquidityCap variable"
                  },
                  "functionSelector": "b15a49c1",
                  "id": 11397,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getLiquidityCap",
                  "nameLocation": "4680:15:53",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11393,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4695:2:53"
                  },
                  "returnParameters": {
                    "id": 11396,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11395,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11397,
                        "src": "4721:7:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11394,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4721:7:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4720:9:53"
                  },
                  "scope": 11495,
                  "src": "4671:59:53",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11398,
                    "nodeType": "StructuredDocumentation",
                    "src": "4736:47:53",
                    "text": " @notice Read ticket variable"
                  },
                  "functionSelector": "c002c4d6",
                  "id": 11404,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getTicket",
                  "nameLocation": "4797:9:53",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11399,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4806:2:53"
                  },
                  "returnParameters": {
                    "id": 11403,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11402,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11404,
                        "src": "4832:7:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ITicket_$11825",
                          "typeString": "contract ITicket"
                        },
                        "typeName": {
                          "id": 11401,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11400,
                            "name": "ITicket",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11825,
                            "src": "4832:7:53"
                          },
                          "referencedDeclaration": 11825,
                          "src": "4832:7:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$11825",
                            "typeString": "contract ITicket"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4831:9:53"
                  },
                  "scope": 11495,
                  "src": "4788:53:53",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11405,
                    "nodeType": "StructuredDocumentation",
                    "src": "4847:46:53",
                    "text": " @notice Read token variable"
                  },
                  "functionSelector": "21df0da7",
                  "id": 11410,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getToken",
                  "nameLocation": "4907:8:53",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11406,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4915:2:53"
                  },
                  "returnParameters": {
                    "id": 11409,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11408,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11410,
                        "src": "4941:7:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11407,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4941:7:53",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4940:9:53"
                  },
                  "scope": 11495,
                  "src": "4898:52:53",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11411,
                    "nodeType": "StructuredDocumentation",
                    "src": "4956:54:53",
                    "text": " @notice Read prizeStrategy variable"
                  },
                  "functionSelector": "d804abaf",
                  "id": 11416,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPrizeStrategy",
                  "nameLocation": "5024:16:53",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11412,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "5040:2:53"
                  },
                  "returnParameters": {
                    "id": 11415,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11414,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11416,
                        "src": "5066:7:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11413,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5066:7:53",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5065:9:53"
                  },
                  "scope": 11495,
                  "src": "5015:60:53",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11417,
                    "nodeType": "StructuredDocumentation",
                    "src": "5081:205:53",
                    "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": 11425,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "isControlled",
                  "nameLocation": "5300:12:53",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11421,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11420,
                        "mutability": "mutable",
                        "name": "controlledToken",
                        "nameLocation": "5321:15:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 11425,
                        "src": "5313:23:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ITicket_$11825",
                          "typeString": "contract ITicket"
                        },
                        "typeName": {
                          "id": 11419,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11418,
                            "name": "ITicket",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11825,
                            "src": "5313:7:53"
                          },
                          "referencedDeclaration": 11825,
                          "src": "5313:7:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$11825",
                            "typeString": "contract ITicket"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5312:25:53"
                  },
                  "returnParameters": {
                    "id": 11424,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11423,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11425,
                        "src": "5361:4:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 11422,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "5361:4:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5360:6:53"
                  },
                  "scope": 11495,
                  "src": "5291:76:53",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11426,
                    "nodeType": "StructuredDocumentation",
                    "src": "5373:395:53",
                    "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": 11435,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "transferExternalERC20",
                  "nameLocation": "5782:21:53",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11433,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11428,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "5821:2:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 11435,
                        "src": "5813:10:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11427,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5813:7:53",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11430,
                        "mutability": "mutable",
                        "name": "externalToken",
                        "nameLocation": "5841:13:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 11435,
                        "src": "5833:21:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11429,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5833:7:53",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11432,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "5872:6:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 11435,
                        "src": "5864:14:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11431,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "5864:7:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5803:81:53"
                  },
                  "returnParameters": {
                    "id": 11434,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "5893:0:53"
                  },
                  "scope": 11495,
                  "src": "5773:121:53",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11436,
                    "nodeType": "StructuredDocumentation",
                    "src": "5900:359:53",
                    "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": 11445,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "awardExternalERC20",
                  "nameLocation": "6273:18:53",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11443,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11438,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "6309:2:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 11445,
                        "src": "6301:10:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11437,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6301:7:53",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11440,
                        "mutability": "mutable",
                        "name": "externalToken",
                        "nameLocation": "6329:13:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 11445,
                        "src": "6321:21:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11439,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6321:7:53",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11442,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "6360:6:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 11445,
                        "src": "6352:14:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11441,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "6352:7:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6291:81:53"
                  },
                  "returnParameters": {
                    "id": 11444,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "6381:0:53"
                  },
                  "scope": 11495,
                  "src": "6264:118:53",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11446,
                    "nodeType": "StructuredDocumentation",
                    "src": "6388:358:53",
                    "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": 11456,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "awardExternalERC721",
                  "nameLocation": "6760:19:53",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11454,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11448,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "6797:2:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 11456,
                        "src": "6789:10:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11447,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6789:7:53",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11450,
                        "mutability": "mutable",
                        "name": "externalToken",
                        "nameLocation": "6817:13:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 11456,
                        "src": "6809:21:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11449,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6809:7:53",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11453,
                        "mutability": "mutable",
                        "name": "tokenIds",
                        "nameLocation": "6859:8:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 11456,
                        "src": "6840:27:53",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_calldata_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 11451,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "6840:7:53",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 11452,
                          "nodeType": "ArrayTypeName",
                          "src": "6840:9:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6779:94:53"
                  },
                  "returnParameters": {
                    "id": 11455,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "6882:0:53"
                  },
                  "scope": 11495,
                  "src": "6751:132:53",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11457,
                    "nodeType": "StructuredDocumentation",
                    "src": "6889:395:53",
                    "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": 11464,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setBalanceCap",
                  "nameLocation": "7298:13:53",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11460,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11459,
                        "mutability": "mutable",
                        "name": "balanceCap",
                        "nameLocation": "7320:10:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 11464,
                        "src": "7312:18:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11458,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "7312:7:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7311:20:53"
                  },
                  "returnParameters": {
                    "id": 11463,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11462,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11464,
                        "src": "7350:4:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 11461,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "7350:4:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7349:6:53"
                  },
                  "scope": 11495,
                  "src": "7289:67:53",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11465,
                    "nodeType": "StructuredDocumentation",
                    "src": "7362:162:53",
                    "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": 11470,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setLiquidityCap",
                  "nameLocation": "7538:15:53",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11468,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11467,
                        "mutability": "mutable",
                        "name": "liquidityCap",
                        "nameLocation": "7562:12:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 11470,
                        "src": "7554:20:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11466,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "7554:7:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7553:22:53"
                  },
                  "returnParameters": {
                    "id": 11469,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "7584:0:53"
                  },
                  "scope": 11495,
                  "src": "7529:56:53",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11471,
                    "nodeType": "StructuredDocumentation",
                    "src": "7591:137:53",
                    "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": 11476,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setPrizeStrategy",
                  "nameLocation": "7742:16:53",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11474,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11473,
                        "mutability": "mutable",
                        "name": "_prizeStrategy",
                        "nameLocation": "7767:14:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 11476,
                        "src": "7759:22:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11472,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "7759:7:53",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7758:24:53"
                  },
                  "returnParameters": {
                    "id": 11475,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "7791:0:53"
                  },
                  "scope": 11495,
                  "src": "7733:59:53",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11477,
                    "nodeType": "StructuredDocumentation",
                    "src": "7798:144:53",
                    "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": 11485,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setTicket",
                  "nameLocation": "7956:9:53",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11481,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11480,
                        "mutability": "mutable",
                        "name": "ticket",
                        "nameLocation": "7974:6:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 11485,
                        "src": "7966:14:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ITicket_$11825",
                          "typeString": "contract ITicket"
                        },
                        "typeName": {
                          "id": 11479,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11478,
                            "name": "ITicket",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11825,
                            "src": "7966:7:53"
                          },
                          "referencedDeclaration": 11825,
                          "src": "7966:7:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$11825",
                            "typeString": "contract ITicket"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7965:16:53"
                  },
                  "returnParameters": {
                    "id": 11484,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11483,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11485,
                        "src": "8000:4:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 11482,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "8000:4:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7999:6:53"
                  },
                  "scope": 11495,
                  "src": "7947:59:53",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11486,
                    "nodeType": "StructuredDocumentation",
                    "src": "8012:221:53",
                    "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": 11494,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "compLikeDelegate",
                  "nameLocation": "8247:16:53",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11492,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11489,
                        "mutability": "mutable",
                        "name": "compLike",
                        "nameLocation": "8274:8:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 11494,
                        "src": "8264:18:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ICompLike_$10642",
                          "typeString": "contract ICompLike"
                        },
                        "typeName": {
                          "id": 11488,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11487,
                            "name": "ICompLike",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 10642,
                            "src": "8264:9:53"
                          },
                          "referencedDeclaration": 10642,
                          "src": "8264:9:53",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ICompLike_$10642",
                            "typeString": "contract ICompLike"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11491,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "8292:2:53",
                        "nodeType": "VariableDeclaration",
                        "scope": 11494,
                        "src": "8284:10:53",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11490,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "8284:7:53",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8263:32:53"
                  },
                  "returnParameters": {
                    "id": 11493,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "8304:0:53"
                  },
                  "scope": 11495,
                  "src": "8238:67:53",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 11496,
              "src": "143:8164:53",
              "usedErrors": []
            }
          ],
          "src": "37:8271:53"
        },
        "id": 53
      },
      "@pooltogether/v4-core/contracts/interfaces/IPrizeSplit.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IPrizeSplit.sol",
          "exportedSymbols": {
            "ExtendedSafeCastLib": [
              12045
            ],
            "ICompLike": [
              10642
            ],
            "IControlledToken": [
              10681
            ],
            "IERC20": [
              890
            ],
            "IPrizePool": [
              11495
            ],
            "IPrizeSplit": [
              11571
            ],
            "ITicket": [
              11825
            ],
            "ObservationLib": [
              12204
            ],
            "OverflowSafeComparatorLib": [
              12376
            ],
            "RingBufferLib": [
              12461
            ],
            "SafeCast": [
              3225
            ],
            "TwabLib": [
              13211
            ]
          },
          "id": 11572,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 11497,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:54"
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IControlledToken.sol",
              "file": "./IControlledToken.sol",
              "id": 11498,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 11572,
              "sourceUnit": 10682,
              "src": "61:32:54",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IPrizePool.sol",
              "file": "./IPrizePool.sol",
              "id": 11499,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 11572,
              "sourceUnit": 11496,
              "src": "94:26:54",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "documentation": {
                "id": 11500,
                "nodeType": "StructuredDocumentation",
                "src": "122:138:54",
                "text": " @title Abstract prize split contract for adding unique award distribution to static addresses.\n @author PoolTogether Inc Team"
              },
              "fullyImplemented": false,
              "id": 11571,
              "linearizedBaseContracts": [
                11571
              ],
              "name": "IPrizeSplit",
              "nameLocation": "271:11:54",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11501,
                    "nodeType": "StructuredDocumentation",
                    "src": "289:220:54",
                    "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": 11510,
                  "name": "PrizeSplitAwarded",
                  "nameLocation": "520:17:54",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11509,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11503,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "563:4:54",
                        "nodeType": "VariableDeclaration",
                        "scope": 11510,
                        "src": "547:20:54",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11502,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "547:7:54",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11505,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "prizeAwarded",
                        "nameLocation": "585:12:54",
                        "nodeType": "VariableDeclaration",
                        "scope": 11510,
                        "src": "577:20:54",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11504,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "577:7:54",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11508,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "token",
                        "nameLocation": "632:5:54",
                        "nodeType": "VariableDeclaration",
                        "scope": 11510,
                        "src": "607:30:54",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IControlledToken_$10681",
                          "typeString": "contract IControlledToken"
                        },
                        "typeName": {
                          "id": 11507,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11506,
                            "name": "IControlledToken",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 10681,
                            "src": "607:16:54"
                          },
                          "referencedDeclaration": 10681,
                          "src": "607:16:54",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IControlledToken_$10681",
                            "typeString": "contract IControlledToken"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "537:106:54"
                  },
                  "src": "514:130:54"
                },
                {
                  "canonicalName": "IPrizeSplit.PrizeSplitConfig",
                  "id": 11515,
                  "members": [
                    {
                      "constant": false,
                      "id": 11512,
                      "mutability": "mutable",
                      "name": "target",
                      "nameLocation": "1064:6:54",
                      "nodeType": "VariableDeclaration",
                      "scope": 11515,
                      "src": "1056:14:54",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_address",
                        "typeString": "address"
                      },
                      "typeName": {
                        "id": 11511,
                        "name": "address",
                        "nodeType": "ElementaryTypeName",
                        "src": "1056:7:54",
                        "stateMutability": "nonpayable",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 11514,
                      "mutability": "mutable",
                      "name": "percentage",
                      "nameLocation": "1087:10:54",
                      "nodeType": "VariableDeclaration",
                      "scope": 11515,
                      "src": "1080:17:54",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint16",
                        "typeString": "uint16"
                      },
                      "typeName": {
                        "id": 11513,
                        "name": "uint16",
                        "nodeType": "ElementaryTypeName",
                        "src": "1080:6:54",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint16",
                          "typeString": "uint16"
                        }
                      },
                      "visibility": "internal"
                    }
                  ],
                  "name": "PrizeSplitConfig",
                  "nameLocation": "1029:16:54",
                  "nodeType": "StructDefinition",
                  "scope": 11571,
                  "src": "1022:82:54",
                  "visibility": "public"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11516,
                    "nodeType": "StructuredDocumentation",
                    "src": "1110:432:54",
                    "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": 11524,
                  "name": "PrizeSplitSet",
                  "nameLocation": "1553:13:54",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11523,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11518,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "target",
                        "nameLocation": "1583:6:54",
                        "nodeType": "VariableDeclaration",
                        "scope": 11524,
                        "src": "1567:22:54",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11517,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1567:7:54",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11520,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "percentage",
                        "nameLocation": "1598:10:54",
                        "nodeType": "VariableDeclaration",
                        "scope": 11524,
                        "src": "1591:17:54",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint16",
                          "typeString": "uint16"
                        },
                        "typeName": {
                          "id": 11519,
                          "name": "uint16",
                          "nodeType": "ElementaryTypeName",
                          "src": "1591:6:54",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint16",
                            "typeString": "uint16"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11522,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "index",
                        "nameLocation": "1618:5:54",
                        "nodeType": "VariableDeclaration",
                        "scope": 11524,
                        "src": "1610:13:54",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11521,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1610:7:54",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1566:58:54"
                  },
                  "src": "1547:78:54"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11525,
                    "nodeType": "StructuredDocumentation",
                    "src": "1631:239:54",
                    "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": 11529,
                  "name": "PrizeSplitRemoved",
                  "nameLocation": "1881:17:54",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11528,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11527,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "target",
                        "nameLocation": "1915:6:54",
                        "nodeType": "VariableDeclaration",
                        "scope": 11529,
                        "src": "1899:22:54",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11526,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1899:7:54",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1898:24:54"
                  },
                  "src": "1875:48:54"
                },
                {
                  "documentation": {
                    "id": 11530,
                    "nodeType": "StructuredDocumentation",
                    "src": "1929:266:54",
                    "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": 11538,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPrizeSplit",
                  "nameLocation": "2209:13:54",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11533,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11532,
                        "mutability": "mutable",
                        "name": "prizeSplitIndex",
                        "nameLocation": "2231:15:54",
                        "nodeType": "VariableDeclaration",
                        "scope": 11538,
                        "src": "2223:23:54",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11531,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2223:7:54",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2222:25:54"
                  },
                  "returnParameters": {
                    "id": 11537,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11536,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11538,
                        "src": "2271:23:54",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeSplitConfig_$11515_memory_ptr",
                          "typeString": "struct IPrizeSplit.PrizeSplitConfig"
                        },
                        "typeName": {
                          "id": 11535,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11534,
                            "name": "PrizeSplitConfig",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11515,
                            "src": "2271:16:54"
                          },
                          "referencedDeclaration": 11515,
                          "src": "2271:16:54",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeSplitConfig_$11515_storage_ptr",
                            "typeString": "struct IPrizeSplit.PrizeSplitConfig"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2270:25:54"
                  },
                  "scope": 11571,
                  "src": "2200:96:54",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11539,
                    "nodeType": "StructuredDocumentation",
                    "src": "2302:178:54",
                    "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": 11546,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPrizeSplits",
                  "nameLocation": "2494:14:54",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11540,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2508:2:54"
                  },
                  "returnParameters": {
                    "id": 11545,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11544,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11546,
                        "src": "2534:25:54",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$11515_memory_ptr_$dyn_memory_ptr",
                          "typeString": "struct IPrizeSplit.PrizeSplitConfig[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 11542,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 11541,
                              "name": "PrizeSplitConfig",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 11515,
                              "src": "2534:16:54"
                            },
                            "referencedDeclaration": 11515,
                            "src": "2534:16:54",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeSplitConfig_$11515_storage_ptr",
                              "typeString": "struct IPrizeSplit.PrizeSplitConfig"
                            }
                          },
                          "id": 11543,
                          "nodeType": "ArrayTypeName",
                          "src": "2534:18:54",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$11515_storage_$dyn_storage_ptr",
                            "typeString": "struct IPrizeSplit.PrizeSplitConfig[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2533:27:54"
                  },
                  "scope": 11571,
                  "src": "2485:76:54",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11547,
                    "nodeType": "StructuredDocumentation",
                    "src": "2567:74:54",
                    "text": " @notice Get PrizePool address\n @return IPrizePool"
                  },
                  "functionSelector": "884bf67c",
                  "id": 11553,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPrizePool",
                  "nameLocation": "2655:12:54",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11548,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2667:2:54"
                  },
                  "returnParameters": {
                    "id": 11552,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11551,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11553,
                        "src": "2693:10:54",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IPrizePool_$11495",
                          "typeString": "contract IPrizePool"
                        },
                        "typeName": {
                          "id": 11550,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11549,
                            "name": "IPrizePool",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11495,
                            "src": "2693:10:54"
                          },
                          "referencedDeclaration": 11495,
                          "src": "2693:10:54",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizePool_$11495",
                            "typeString": "contract IPrizePool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2692:12:54"
                  },
                  "scope": 11571,
                  "src": "2646:59:54",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11554,
                    "nodeType": "StructuredDocumentation",
                    "src": "2711:354:54",
                    "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": 11561,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setPrizeSplits",
                  "nameLocation": "3079:14:54",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11559,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11558,
                        "mutability": "mutable",
                        "name": "newPrizeSplits",
                        "nameLocation": "3122:14:54",
                        "nodeType": "VariableDeclaration",
                        "scope": 11561,
                        "src": "3094:42:54",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$11515_calldata_ptr_$dyn_calldata_ptr",
                          "typeString": "struct IPrizeSplit.PrizeSplitConfig[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 11556,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 11555,
                              "name": "PrizeSplitConfig",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 11515,
                              "src": "3094:16:54"
                            },
                            "referencedDeclaration": 11515,
                            "src": "3094:16:54",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeSplitConfig_$11515_storage_ptr",
                              "typeString": "struct IPrizeSplit.PrizeSplitConfig"
                            }
                          },
                          "id": 11557,
                          "nodeType": "ArrayTypeName",
                          "src": "3094:18:54",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$11515_storage_$dyn_storage_ptr",
                            "typeString": "struct IPrizeSplit.PrizeSplitConfig[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3093:44:54"
                  },
                  "returnParameters": {
                    "id": 11560,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3146:0:54"
                  },
                  "scope": 11571,
                  "src": "3070:77:54",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11562,
                    "nodeType": "StructuredDocumentation",
                    "src": "3153:347:54",
                    "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": 11570,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setPrizeSplit",
                  "nameLocation": "3514:13:54",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11568,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11565,
                        "mutability": "mutable",
                        "name": "prizeStrategySplit",
                        "nameLocation": "3552:18:54",
                        "nodeType": "VariableDeclaration",
                        "scope": 11570,
                        "src": "3528:42:54",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeSplitConfig_$11515_memory_ptr",
                          "typeString": "struct IPrizeSplit.PrizeSplitConfig"
                        },
                        "typeName": {
                          "id": 11564,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11563,
                            "name": "PrizeSplitConfig",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11515,
                            "src": "3528:16:54"
                          },
                          "referencedDeclaration": 11515,
                          "src": "3528:16:54",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeSplitConfig_$11515_storage_ptr",
                            "typeString": "struct IPrizeSplit.PrizeSplitConfig"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11567,
                        "mutability": "mutable",
                        "name": "prizeSplitIndex",
                        "nameLocation": "3578:15:54",
                        "nodeType": "VariableDeclaration",
                        "scope": 11570,
                        "src": "3572:21:54",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 11566,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "3572:5:54",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3527:67:54"
                  },
                  "returnParameters": {
                    "id": 11569,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3611:0:54"
                  },
                  "scope": 11571,
                  "src": "3505:107:54",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 11572,
              "src": "261:3353:54",
              "usedErrors": []
            }
          ],
          "src": "37:3578:54"
        },
        "id": 54
      },
      "@pooltogether/v4-core/contracts/interfaces/IReserve.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IReserve.sol",
          "exportedSymbols": {
            "IERC20": [
              890
            ],
            "IReserve": [
              11618
            ]
          },
          "id": 11619,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 11573,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:55"
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "id": 11574,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 11619,
              "sourceUnit": 891,
              "src": "61:56:55",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "fullyImplemented": false,
              "id": 11618,
              "linearizedBaseContracts": [
                11618
              ],
              "name": "IReserve",
              "nameLocation": "129:8:55",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11575,
                    "nodeType": "StructuredDocumentation",
                    "src": "144:160:55",
                    "text": " @notice Emit when checkpoint is created.\n @param reserveAccumulated  Total depsosited\n @param withdrawAccumulated Total withdrawn"
                  },
                  "id": 11581,
                  "name": "Checkpoint",
                  "nameLocation": "316:10:55",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11580,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11577,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "reserveAccumulated",
                        "nameLocation": "335:18:55",
                        "nodeType": "VariableDeclaration",
                        "scope": 11581,
                        "src": "327:26:55",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11576,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "327:7:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11579,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "withdrawAccumulated",
                        "nameLocation": "363:19:55",
                        "nodeType": "VariableDeclaration",
                        "scope": 11581,
                        "src": "355:27:55",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11578,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "355:7:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "326:57:55"
                  },
                  "src": "310:74:55"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11582,
                    "nodeType": "StructuredDocumentation",
                    "src": "389:175:55",
                    "text": " @notice Emit when the withdrawTo function has executed.\n @param recipient Address receiving funds\n @param amount    Amount of tokens transfered."
                  },
                  "id": 11588,
                  "name": "Withdrawn",
                  "nameLocation": "575:9:55",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11587,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11584,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "recipient",
                        "nameLocation": "601:9:55",
                        "nodeType": "VariableDeclaration",
                        "scope": 11588,
                        "src": "585:25:55",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11583,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "585:7:55",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11586,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "620:6:55",
                        "nodeType": "VariableDeclaration",
                        "scope": 11588,
                        "src": "612:14:55",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11585,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "612:7:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "584:43:55"
                  },
                  "src": "569:59:55"
                },
                {
                  "documentation": {
                    "id": 11589,
                    "nodeType": "StructuredDocumentation",
                    "src": "634:185:55",
                    "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": 11592,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "checkpoint",
                  "nameLocation": "833:10:55",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11590,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "843:2:55"
                  },
                  "returnParameters": {
                    "id": 11591,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "854:0:55"
                  },
                  "scope": 11618,
                  "src": "824:31:55",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11593,
                    "nodeType": "StructuredDocumentation",
                    "src": "861:73:55",
                    "text": " @notice Read global token value.\n @return IERC20"
                  },
                  "functionSelector": "21df0da7",
                  "id": 11599,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getToken",
                  "nameLocation": "948:8:55",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11594,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "956:2:55"
                  },
                  "returnParameters": {
                    "id": 11598,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11597,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11599,
                        "src": "982:6:55",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$890",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 11596,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11595,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 890,
                            "src": "982:6:55"
                          },
                          "referencedDeclaration": 890,
                          "src": "982:6:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$890",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "981:8:55"
                  },
                  "scope": 11618,
                  "src": "939:51:55",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11600,
                    "nodeType": "StructuredDocumentation",
                    "src": "996:269:55",
                    "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": 11609,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getReserveAccumulatedBetween",
                  "nameLocation": "1279:28:55",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11605,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11602,
                        "mutability": "mutable",
                        "name": "startTimestamp",
                        "nameLocation": "1315:14:55",
                        "nodeType": "VariableDeclaration",
                        "scope": 11609,
                        "src": "1308:21:55",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 11601,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1308:6:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11604,
                        "mutability": "mutable",
                        "name": "endTimestamp",
                        "nameLocation": "1338:12:55",
                        "nodeType": "VariableDeclaration",
                        "scope": 11609,
                        "src": "1331:19:55",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 11603,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1331:6:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1307:44:55"
                  },
                  "returnParameters": {
                    "id": 11608,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11607,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11609,
                        "src": "1386:7:55",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        },
                        "typeName": {
                          "id": 11606,
                          "name": "uint224",
                          "nodeType": "ElementaryTypeName",
                          "src": "1386:7:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1385:9:55"
                  },
                  "scope": 11618,
                  "src": "1270:125:55",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11610,
                    "nodeType": "StructuredDocumentation",
                    "src": "1401:260:55",
                    "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": 11617,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "withdrawTo",
                  "nameLocation": "1675:10:55",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11615,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11612,
                        "mutability": "mutable",
                        "name": "recipient",
                        "nameLocation": "1694:9:55",
                        "nodeType": "VariableDeclaration",
                        "scope": 11617,
                        "src": "1686:17:55",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11611,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1686:7:55",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11614,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "1713:6:55",
                        "nodeType": "VariableDeclaration",
                        "scope": 11617,
                        "src": "1705:14:55",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11613,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1705:7:55",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1685:35:55"
                  },
                  "returnParameters": {
                    "id": 11616,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1729:0:55"
                  },
                  "scope": 11618,
                  "src": "1666:64:55",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 11619,
              "src": "119:1613:55",
              "usedErrors": []
            }
          ],
          "src": "37:1696:55"
        },
        "id": 55
      },
      "@pooltogether/v4-core/contracts/interfaces/IStrategy.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IStrategy.sol",
          "exportedSymbols": {
            "IStrategy": [
              11632
            ]
          },
          "id": 11633,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 11620,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:56"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "fullyImplemented": false,
              "id": 11632,
              "linearizedBaseContracts": [
                11632
              ],
              "name": "IStrategy",
              "nameLocation": "71:9:56",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11621,
                    "nodeType": "StructuredDocumentation",
                    "src": "87:159:56",
                    "text": " @notice Emit when a strategy captures award amount from PrizePool.\n @param totalPrizeCaptured  Total prize captured from the PrizePool"
                  },
                  "id": 11625,
                  "name": "Distributed",
                  "nameLocation": "257:11:56",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11624,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11623,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "totalPrizeCaptured",
                        "nameLocation": "277:18:56",
                        "nodeType": "VariableDeclaration",
                        "scope": 11625,
                        "src": "269:26:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11622,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "269:7:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "268:28:56"
                  },
                  "src": "251:46:56"
                },
                {
                  "documentation": {
                    "id": 11626,
                    "nodeType": "StructuredDocumentation",
                    "src": "303:206:56",
                    "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": 11631,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "distribute",
                  "nameLocation": "523:10:56",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11627,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "533:2:56"
                  },
                  "returnParameters": {
                    "id": 11630,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11629,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11631,
                        "src": "554:7:56",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11628,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "554:7:56",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "553:9:56"
                  },
                  "scope": 11632,
                  "src": "514:49:56",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 11633,
              "src": "61:504:56",
              "usedErrors": []
            }
          ],
          "src": "37:529:56"
        },
        "id": 56
      },
      "@pooltogether/v4-core/contracts/interfaces/ITicket.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/interfaces/ITicket.sol",
          "exportedSymbols": {
            "ExtendedSafeCastLib": [
              12045
            ],
            "IControlledToken": [
              10681
            ],
            "IERC20": [
              890
            ],
            "ITicket": [
              11825
            ],
            "ObservationLib": [
              12204
            ],
            "OverflowSafeComparatorLib": [
              12376
            ],
            "RingBufferLib": [
              12461
            ],
            "SafeCast": [
              3225
            ],
            "TwabLib": [
              13211
            ]
          },
          "id": 11826,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 11634,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:57"
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/libraries/TwabLib.sol",
              "file": "../libraries/TwabLib.sol",
              "id": 11635,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 11826,
              "sourceUnit": 13212,
              "src": "61:34:57",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IControlledToken.sol",
              "file": "./IControlledToken.sol",
              "id": 11636,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 11826,
              "sourceUnit": 10682,
              "src": "96:32:57",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 11637,
                    "name": "IControlledToken",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 10681,
                    "src": "151:16:57"
                  },
                  "id": 11638,
                  "nodeType": "InheritanceSpecifier",
                  "src": "151:16:57"
                }
              ],
              "contractDependencies": [],
              "contractKind": "interface",
              "fullyImplemented": false,
              "id": 11825,
              "linearizedBaseContracts": [
                11825,
                10681,
                890
              ],
              "name": "ITicket",
              "nameLocation": "140:7:57",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "canonicalName": "ITicket.AccountDetails",
                  "id": 11645,
                  "members": [
                    {
                      "constant": false,
                      "id": 11640,
                      "mutability": "mutable",
                      "name": "balance",
                      "nameLocation": "489:7:57",
                      "nodeType": "VariableDeclaration",
                      "scope": 11645,
                      "src": "481:15:57",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint224",
                        "typeString": "uint224"
                      },
                      "typeName": {
                        "id": 11639,
                        "name": "uint224",
                        "nodeType": "ElementaryTypeName",
                        "src": "481:7:57",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 11642,
                      "mutability": "mutable",
                      "name": "nextTwabIndex",
                      "nameLocation": "513:13:57",
                      "nodeType": "VariableDeclaration",
                      "scope": 11645,
                      "src": "506:20:57",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint16",
                        "typeString": "uint16"
                      },
                      "typeName": {
                        "id": 11641,
                        "name": "uint16",
                        "nodeType": "ElementaryTypeName",
                        "src": "506:6:57",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint16",
                          "typeString": "uint16"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 11644,
                      "mutability": "mutable",
                      "name": "cardinality",
                      "nameLocation": "543:11:57",
                      "nodeType": "VariableDeclaration",
                      "scope": 11645,
                      "src": "536:18:57",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint16",
                        "typeString": "uint16"
                      },
                      "typeName": {
                        "id": 11643,
                        "name": "uint16",
                        "nodeType": "ElementaryTypeName",
                        "src": "536:6:57",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint16",
                          "typeString": "uint16"
                        }
                      },
                      "visibility": "internal"
                    }
                  ],
                  "name": "AccountDetails",
                  "nameLocation": "456:14:57",
                  "nodeType": "StructDefinition",
                  "scope": 11825,
                  "src": "449:112:57",
                  "visibility": "public"
                },
                {
                  "canonicalName": "ITicket.Account",
                  "id": 11654,
                  "members": [
                    {
                      "constant": false,
                      "id": 11648,
                      "mutability": "mutable",
                      "name": "details",
                      "nameLocation": "790:7:57",
                      "nodeType": "VariableDeclaration",
                      "scope": 11654,
                      "src": "775:22:57",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_struct$_AccountDetails_$11645_storage_ptr",
                        "typeString": "struct ITicket.AccountDetails"
                      },
                      "typeName": {
                        "id": 11647,
                        "nodeType": "UserDefinedTypeName",
                        "pathNode": {
                          "id": 11646,
                          "name": "AccountDetails",
                          "nodeType": "IdentifierPath",
                          "referencedDeclaration": 11645,
                          "src": "775:14:57"
                        },
                        "referencedDeclaration": 11645,
                        "src": "775:14:57",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_AccountDetails_$11645_storage_ptr",
                          "typeString": "struct ITicket.AccountDetails"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 11653,
                      "mutability": "mutable",
                      "name": "twabs",
                      "nameLocation": "841:5:57",
                      "nodeType": "VariableDeclaration",
                      "scope": 11654,
                      "src": "807:39:57",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$65535_storage_ptr",
                        "typeString": "struct ObservationLib.Observation[65535]"
                      },
                      "typeName": {
                        "baseType": {
                          "id": 11650,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11649,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12066,
                            "src": "807:26:57"
                          },
                          "referencedDeclaration": 12066,
                          "src": "807:26:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12066_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "id": 11652,
                        "length": {
                          "hexValue": "3635353335",
                          "id": 11651,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "number",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "834:5:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_rational_65535_by_1",
                            "typeString": "int_const 65535"
                          },
                          "value": "65535"
                        },
                        "nodeType": "ArrayTypeName",
                        "src": "807:33:57",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$65535_storage_ptr",
                          "typeString": "struct ObservationLib.Observation[65535]"
                        }
                      },
                      "visibility": "internal"
                    }
                  ],
                  "name": "Account",
                  "nameLocation": "757:7:57",
                  "nodeType": "StructDefinition",
                  "scope": 11825,
                  "src": "750:103:57",
                  "visibility": "public"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11655,
                    "nodeType": "StructuredDocumentation",
                    "src": "859:186:57",
                    "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": 11661,
                  "name": "Delegated",
                  "nameLocation": "1056:9:57",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11660,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11657,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "delegator",
                        "nameLocation": "1082:9:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 11661,
                        "src": "1066:25:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11656,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1066:7:57",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11659,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "delegate",
                        "nameLocation": "1109:8:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 11661,
                        "src": "1093:24:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11658,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1093:7:57",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1065:53:57"
                  },
                  "src": "1050:69:57"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11662,
                    "nodeType": "StructuredDocumentation",
                    "src": "1125:274:57",
                    "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": 11672,
                  "name": "TicketInitialized",
                  "nameLocation": "1410:17:57",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11671,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11664,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "name",
                        "nameLocation": "1435:4:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 11672,
                        "src": "1428:11:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 11663,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "1428:6:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11666,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "symbol",
                        "nameLocation": "1448:6:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 11672,
                        "src": "1441:13:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 11665,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "1441:6:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11668,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "decimals",
                        "nameLocation": "1462:8:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 11672,
                        "src": "1456:14:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 11667,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "1456:5:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11670,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "controller",
                        "nameLocation": "1488:10:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 11672,
                        "src": "1472:26:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11669,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1472:7:57",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1427:72:57"
                  },
                  "src": "1404:96:57"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11673,
                    "nodeType": "StructuredDocumentation",
                    "src": "1506:246:57",
                    "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": 11680,
                  "name": "NewUserTwab",
                  "nameLocation": "1763:11:57",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11679,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11675,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "delegate",
                        "nameLocation": "1800:8:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 11680,
                        "src": "1784:24:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11674,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1784:7:57",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11678,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "newTwab",
                        "nameLocation": "1845:7:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 11680,
                        "src": "1818:34:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 11677,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11676,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12066,
                            "src": "1818:26:57"
                          },
                          "referencedDeclaration": 12066,
                          "src": "1818:26:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12066_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1774:84:57"
                  },
                  "src": "1757:102:57"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 11681,
                    "nodeType": "StructuredDocumentation",
                    "src": "1865:200:57",
                    "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": 11686,
                  "name": "NewTotalSupplyTwab",
                  "nameLocation": "2076:18:57",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 11685,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11684,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "newTotalSupplyTwab",
                        "nameLocation": "2122:18:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 11686,
                        "src": "2095:45:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 11683,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11682,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12066,
                            "src": "2095:26:57"
                          },
                          "referencedDeclaration": 12066,
                          "src": "2095:26:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12066_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2094:47:57"
                  },
                  "src": "2070:72:57"
                },
                {
                  "documentation": {
                    "id": 11687,
                    "nodeType": "StructuredDocumentation",
                    "src": "2148:297:57",
                    "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": 11694,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "delegateOf",
                  "nameLocation": "2459:10:57",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11690,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11689,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "2478:4:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 11694,
                        "src": "2470:12:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11688,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2470:7:57",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2469:14:57"
                  },
                  "returnParameters": {
                    "id": 11693,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11692,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11694,
                        "src": "2507:7:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11691,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2507:7:57",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2506:9:57"
                  },
                  "scope": 11825,
                  "src": "2450:66:57",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11695,
                    "nodeType": "StructuredDocumentation",
                    "src": "2522:490:57",
                    "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": 11700,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "delegate",
                  "nameLocation": "3026:8:57",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11698,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11697,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "3043:2:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 11700,
                        "src": "3035:10:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11696,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3035:7:57",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3034:12:57"
                  },
                  "returnParameters": {
                    "id": 11699,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3055:0:57"
                  },
                  "scope": 11825,
                  "src": "3017:39:57",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11701,
                    "nodeType": "StructuredDocumentation",
                    "src": "3062:168:57",
                    "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": 11708,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "controllerDelegateFor",
                  "nameLocation": "3244:21:57",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11706,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11703,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "3274:4:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 11708,
                        "src": "3266:12:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11702,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3266:7:57",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11705,
                        "mutability": "mutable",
                        "name": "delegate",
                        "nameLocation": "3288:8:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 11708,
                        "src": "3280:16:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11704,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3280:7:57",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3265:32:57"
                  },
                  "returnParameters": {
                    "id": 11707,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3306:0:57"
                  },
                  "scope": 11825,
                  "src": "3235:72:57",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11709,
                    "nodeType": "StructuredDocumentation",
                    "src": "3313:362:57",
                    "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": 11724,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "delegateWithSignature",
                  "nameLocation": "3689:21:57",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11722,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11711,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "3728:4:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 11724,
                        "src": "3720:12:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11710,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3720:7:57",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11713,
                        "mutability": "mutable",
                        "name": "delegate",
                        "nameLocation": "3750:8:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 11724,
                        "src": "3742:16:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11712,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3742:7:57",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11715,
                        "mutability": "mutable",
                        "name": "deadline",
                        "nameLocation": "3776:8:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 11724,
                        "src": "3768:16:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11714,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3768:7:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11717,
                        "mutability": "mutable",
                        "name": "v",
                        "nameLocation": "3800:1:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 11724,
                        "src": "3794:7:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 11716,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "3794:5:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11719,
                        "mutability": "mutable",
                        "name": "r",
                        "nameLocation": "3819:1:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 11724,
                        "src": "3811:9:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 11718,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "3811:7:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11721,
                        "mutability": "mutable",
                        "name": "s",
                        "nameLocation": "3838:1:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 11724,
                        "src": "3830:9:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 11720,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "3830:7:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3710:135:57"
                  },
                  "returnParameters": {
                    "id": 11723,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3854:0:57"
                  },
                  "scope": 11825,
                  "src": "3680:175:57",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11725,
                    "nodeType": "StructuredDocumentation",
                    "src": "3861:277:57",
                    "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": 11733,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getAccountDetails",
                  "nameLocation": "4152:17:57",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11728,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11727,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "4178:4:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 11733,
                        "src": "4170:12:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11726,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4170:7:57",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4169:14:57"
                  },
                  "returnParameters": {
                    "id": 11732,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11731,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11733,
                        "src": "4207:29:57",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                          "typeString": "struct TwabLib.AccountDetails"
                        },
                        "typeName": {
                          "id": 11730,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11729,
                            "name": "TwabLib.AccountDetails",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12485,
                            "src": "4207:22:57"
                          },
                          "referencedDeclaration": 12485,
                          "src": "4207:22:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12485_storage_ptr",
                            "typeString": "struct TwabLib.AccountDetails"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4206:31:57"
                  },
                  "scope": 11825,
                  "src": "4143:95:57",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11734,
                    "nodeType": "StructuredDocumentation",
                    "src": "4244:255:57",
                    "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": 11744,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getTwab",
                  "nameLocation": "4513:7:57",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11739,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11736,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "4529:4:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 11744,
                        "src": "4521:12:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11735,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4521:7:57",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11738,
                        "mutability": "mutable",
                        "name": "index",
                        "nameLocation": "4542:5:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 11744,
                        "src": "4535:12:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint16",
                          "typeString": "uint16"
                        },
                        "typeName": {
                          "id": 11737,
                          "name": "uint16",
                          "nodeType": "ElementaryTypeName",
                          "src": "4535:6:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint16",
                            "typeString": "uint16"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4520:28:57"
                  },
                  "returnParameters": {
                    "id": 11743,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11742,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11744,
                        "src": "4596:33:57",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 11741,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11740,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12066,
                            "src": "4596:26:57"
                          },
                          "referencedDeclaration": 12066,
                          "src": "4596:26:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12066_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4595:35:57"
                  },
                  "scope": 11825,
                  "src": "4504:127:57",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11745,
                    "nodeType": "StructuredDocumentation",
                    "src": "4637:262:57",
                    "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": 11754,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getBalanceAt",
                  "nameLocation": "4913:12:57",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11750,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11747,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "4934:4:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 11754,
                        "src": "4926:12:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11746,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4926:7:57",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11749,
                        "mutability": "mutable",
                        "name": "timestamp",
                        "nameLocation": "4947:9:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 11754,
                        "src": "4940:16:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 11748,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "4940:6:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4925:32:57"
                  },
                  "returnParameters": {
                    "id": 11753,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11752,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11754,
                        "src": "4981:7:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11751,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4981:7:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4980:9:57"
                  },
                  "scope": 11825,
                  "src": "4904:86:57",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11755,
                    "nodeType": "StructuredDocumentation",
                    "src": "4996:255:57",
                    "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": 11766,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getBalancesAt",
                  "nameLocation": "5265:13:57",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11761,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11757,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "5287:4:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 11766,
                        "src": "5279:12:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11756,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5279:7:57",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11760,
                        "mutability": "mutable",
                        "name": "timestamps",
                        "nameLocation": "5311:10:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 11766,
                        "src": "5293:28:57",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                          "typeString": "uint64[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 11758,
                            "name": "uint64",
                            "nodeType": "ElementaryTypeName",
                            "src": "5293:6:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "id": 11759,
                          "nodeType": "ArrayTypeName",
                          "src": "5293:8:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                            "typeString": "uint64[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5278:44:57"
                  },
                  "returnParameters": {
                    "id": 11765,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11764,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11766,
                        "src": "5370:16:57",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 11762,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "5370:7:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 11763,
                          "nodeType": "ArrayTypeName",
                          "src": "5370:9:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5369:18:57"
                  },
                  "scope": 11825,
                  "src": "5256:132:57",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11767,
                    "nodeType": "StructuredDocumentation",
                    "src": "5394:338:57",
                    "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": 11778,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getAverageBalanceBetween",
                  "nameLocation": "5746:24:57",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11774,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11769,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "5788:4:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 11778,
                        "src": "5780:12:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11768,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5780:7:57",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11771,
                        "mutability": "mutable",
                        "name": "startTime",
                        "nameLocation": "5809:9:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 11778,
                        "src": "5802:16:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 11770,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "5802:6:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11773,
                        "mutability": "mutable",
                        "name": "endTime",
                        "nameLocation": "5835:7:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 11778,
                        "src": "5828:14:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 11772,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "5828:6:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5770:78:57"
                  },
                  "returnParameters": {
                    "id": 11777,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11776,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11778,
                        "src": "5872:7:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11775,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "5872:7:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5871:9:57"
                  },
                  "scope": 11825,
                  "src": "5737:144:57",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11779,
                    "nodeType": "StructuredDocumentation",
                    "src": "5887:341:57",
                    "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": 11793,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getAverageBalancesBetween",
                  "nameLocation": "6242:25:57",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11788,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11781,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "6285:4:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 11793,
                        "src": "6277:12:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 11780,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6277:7:57",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11784,
                        "mutability": "mutable",
                        "name": "startTimes",
                        "nameLocation": "6317:10:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 11793,
                        "src": "6299:28:57",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                          "typeString": "uint64[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 11782,
                            "name": "uint64",
                            "nodeType": "ElementaryTypeName",
                            "src": "6299:6:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "id": 11783,
                          "nodeType": "ArrayTypeName",
                          "src": "6299:8:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                            "typeString": "uint64[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11787,
                        "mutability": "mutable",
                        "name": "endTimes",
                        "nameLocation": "6355:8:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 11793,
                        "src": "6337:26:57",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                          "typeString": "uint64[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 11785,
                            "name": "uint64",
                            "nodeType": "ElementaryTypeName",
                            "src": "6337:6:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "id": 11786,
                          "nodeType": "ArrayTypeName",
                          "src": "6337:8:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                            "typeString": "uint64[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6267:102:57"
                  },
                  "returnParameters": {
                    "id": 11792,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11791,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11793,
                        "src": "6393:16:57",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 11789,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "6393:7:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 11790,
                          "nodeType": "ArrayTypeName",
                          "src": "6393:9:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6392:18:57"
                  },
                  "scope": 11825,
                  "src": "6233:178:57",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11794,
                    "nodeType": "StructuredDocumentation",
                    "src": "6417:253:57",
                    "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": 11801,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getTotalSupplyAt",
                  "nameLocation": "6684:16:57",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11797,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11796,
                        "mutability": "mutable",
                        "name": "timestamp",
                        "nameLocation": "6708:9:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 11801,
                        "src": "6701:16:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 11795,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "6701:6:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6700:18:57"
                  },
                  "returnParameters": {
                    "id": 11800,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11799,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11801,
                        "src": "6742:7:57",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11798,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "6742:7:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6741:9:57"
                  },
                  "scope": 11825,
                  "src": "6675:76:57",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11802,
                    "nodeType": "StructuredDocumentation",
                    "src": "6757:247:57",
                    "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": 11811,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getTotalSuppliesAt",
                  "nameLocation": "7018:18:57",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11806,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11805,
                        "mutability": "mutable",
                        "name": "timestamps",
                        "nameLocation": "7055:10:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 11811,
                        "src": "7037:28:57",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                          "typeString": "uint64[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 11803,
                            "name": "uint64",
                            "nodeType": "ElementaryTypeName",
                            "src": "7037:6:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "id": 11804,
                          "nodeType": "ArrayTypeName",
                          "src": "7037:8:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                            "typeString": "uint64[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7036:30:57"
                  },
                  "returnParameters": {
                    "id": 11810,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11809,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11811,
                        "src": "7114:16:57",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 11807,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "7114:7:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 11808,
                          "nodeType": "ArrayTypeName",
                          "src": "7114:9:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7113:18:57"
                  },
                  "scope": 11825,
                  "src": "7009:123:57",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 11812,
                    "nodeType": "StructuredDocumentation",
                    "src": "7138:261:57",
                    "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": 11824,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getAverageTotalSuppliesBetween",
                  "nameLocation": "7413:30:57",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11819,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11815,
                        "mutability": "mutable",
                        "name": "startTimes",
                        "nameLocation": "7471:10:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 11824,
                        "src": "7453:28:57",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                          "typeString": "uint64[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 11813,
                            "name": "uint64",
                            "nodeType": "ElementaryTypeName",
                            "src": "7453:6:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "id": 11814,
                          "nodeType": "ArrayTypeName",
                          "src": "7453:8:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                            "typeString": "uint64[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11818,
                        "mutability": "mutable",
                        "name": "endTimes",
                        "nameLocation": "7509:8:57",
                        "nodeType": "VariableDeclaration",
                        "scope": 11824,
                        "src": "7491:26:57",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint64_$dyn_calldata_ptr",
                          "typeString": "uint64[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 11816,
                            "name": "uint64",
                            "nodeType": "ElementaryTypeName",
                            "src": "7491:6:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "id": 11817,
                          "nodeType": "ArrayTypeName",
                          "src": "7491:8:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint64_$dyn_storage_ptr",
                            "typeString": "uint64[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7443:80:57"
                  },
                  "returnParameters": {
                    "id": 11823,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11822,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11824,
                        "src": "7547:16:57",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 11820,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "7547:7:57",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 11821,
                          "nodeType": "ArrayTypeName",
                          "src": "7547:9:57",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7546:18:57"
                  },
                  "scope": 11825,
                  "src": "7404:161:57",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 11826,
              "src": "130:7437:57",
              "usedErrors": []
            }
          ],
          "src": "37:7531:57"
        },
        "id": 57
      },
      "@pooltogether/v4-core/contracts/libraries/DrawRingBufferLib.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/libraries/DrawRingBufferLib.sol",
          "exportedSymbols": {
            "DrawRingBufferLib": [
              11966
            ],
            "RingBufferLib": [
              12461
            ]
          },
          "id": 11967,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 11827,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:58"
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/libraries/RingBufferLib.sol",
              "file": "./RingBufferLib.sol",
              "id": 11828,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 11967,
              "sourceUnit": 12462,
              "src": "61:29:58",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "library",
              "documentation": {
                "id": 11829,
                "nodeType": "StructuredDocumentation",
                "src": "92:65:58",
                "text": "@title Library for creating and managing a draw ring buffer."
              },
              "fullyImplemented": true,
              "id": 11966,
              "linearizedBaseContracts": [
                11966
              ],
              "name": "DrawRingBufferLib",
              "nameLocation": "165:17:58",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "canonicalName": "DrawRingBufferLib.Buffer",
                  "id": 11836,
                  "members": [
                    {
                      "constant": false,
                      "id": 11831,
                      "mutability": "mutable",
                      "name": "lastDrawId",
                      "nameLocation": "256:10:58",
                      "nodeType": "VariableDeclaration",
                      "scope": 11836,
                      "src": "249:17:58",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint32",
                        "typeString": "uint32"
                      },
                      "typeName": {
                        "id": 11830,
                        "name": "uint32",
                        "nodeType": "ElementaryTypeName",
                        "src": "249:6:58",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 11833,
                      "mutability": "mutable",
                      "name": "nextIndex",
                      "nameLocation": "283:9:58",
                      "nodeType": "VariableDeclaration",
                      "scope": 11836,
                      "src": "276:16:58",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint32",
                        "typeString": "uint32"
                      },
                      "typeName": {
                        "id": 11832,
                        "name": "uint32",
                        "nodeType": "ElementaryTypeName",
                        "src": "276:6:58",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 11835,
                      "mutability": "mutable",
                      "name": "cardinality",
                      "nameLocation": "309:11:58",
                      "nodeType": "VariableDeclaration",
                      "scope": 11836,
                      "src": "302:18:58",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint32",
                        "typeString": "uint32"
                      },
                      "typeName": {
                        "id": 11834,
                        "name": "uint32",
                        "nodeType": "ElementaryTypeName",
                        "src": "302:6:58",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        }
                      },
                      "visibility": "internal"
                    }
                  ],
                  "name": "Buffer",
                  "nameLocation": "232:6:58",
                  "nodeType": "StructDefinition",
                  "scope": 11966,
                  "src": "225:102:58",
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 11857,
                    "nodeType": "Block",
                    "src": "673:76:58",
                    "statements": [
                      {
                        "expression": {
                          "id": 11855,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "UnaryOperation",
                          "operator": "!",
                          "prefix": true,
                          "src": "690:52:58",
                          "subExpression": {
                            "components": [
                              {
                                "commonType": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                },
                                "id": 11853,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "commonType": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  },
                                  "id": 11848,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "expression": {
                                      "id": 11845,
                                      "name": "_buffer",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 11840,
                                      "src": "692:7:58",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                                        "typeString": "struct DrawRingBufferLib.Buffer memory"
                                      }
                                    },
                                    "id": 11846,
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "nextIndex",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 11833,
                                    "src": "692:17:58",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": "==",
                                  "rightExpression": {
                                    "hexValue": "30",
                                    "id": 11847,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "713:1:58",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  },
                                  "src": "692:22:58",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bool",
                                    "typeString": "bool"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "&&",
                                "rightExpression": {
                                  "commonType": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  },
                                  "id": 11852,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "expression": {
                                      "id": 11849,
                                      "name": "_buffer",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 11840,
                                      "src": "718:7:58",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                                        "typeString": "struct DrawRingBufferLib.Buffer memory"
                                      }
                                    },
                                    "id": 11850,
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "lastDrawId",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 11831,
                                    "src": "718:18:58",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": "==",
                                  "rightExpression": {
                                    "hexValue": "30",
                                    "id": 11851,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "740:1:58",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  },
                                  "src": "718:23:58",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bool",
                                    "typeString": "bool"
                                  }
                                },
                                "src": "692:49:58",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              }
                            ],
                            "id": 11854,
                            "isConstant": false,
                            "isInlineArray": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "TupleExpression",
                            "src": "691:51:58",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 11844,
                        "id": 11856,
                        "nodeType": "Return",
                        "src": "683:59:58"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 11837,
                    "nodeType": "StructuredDocumentation",
                    "src": "333:260:58",
                    "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": 11858,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "isInitialized",
                  "nameLocation": "607:13:58",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11841,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11840,
                        "mutability": "mutable",
                        "name": "_buffer",
                        "nameLocation": "635:7:58",
                        "nodeType": "VariableDeclaration",
                        "scope": 11858,
                        "src": "621:21:58",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                          "typeString": "struct DrawRingBufferLib.Buffer"
                        },
                        "typeName": {
                          "id": 11839,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11838,
                            "name": "Buffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11836,
                            "src": "621:6:58"
                          },
                          "referencedDeclaration": 11836,
                          "src": "621:6:58",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$11836_storage_ptr",
                            "typeString": "struct DrawRingBufferLib.Buffer"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "620:23:58"
                  },
                  "returnParameters": {
                    "id": 11844,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11843,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11858,
                        "src": "667:4:58",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 11842,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "667:4:58",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "666:6:58"
                  },
                  "scope": 11966,
                  "src": "598:151:58",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 11901,
                    "nodeType": "Block",
                    "src": "1010:347:58",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              "id": 11881,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 11874,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "UnaryOperation",
                                "operator": "!",
                                "prefix": true,
                                "src": "1028:23:58",
                                "subExpression": {
                                  "arguments": [
                                    {
                                      "id": 11872,
                                      "name": "_buffer",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 11862,
                                      "src": "1043:7:58",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                                        "typeString": "struct DrawRingBufferLib.Buffer memory"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                                        "typeString": "struct DrawRingBufferLib.Buffer memory"
                                      }
                                    ],
                                    "id": 11871,
                                    "name": "isInitialized",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 11858,
                                    "src": "1029:13:58",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_pure$_t_struct$_Buffer_$11836_memory_ptr_$returns$_t_bool_$",
                                      "typeString": "function (struct DrawRingBufferLib.Buffer memory) pure returns (bool)"
                                    }
                                  },
                                  "id": 11873,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "1029:22:58",
                                  "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": 11880,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 11875,
                                  "name": "_drawId",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 11864,
                                  "src": "1055:7:58",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "==",
                                "rightExpression": {
                                  "commonType": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  },
                                  "id": 11879,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "expression": {
                                      "id": 11876,
                                      "name": "_buffer",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 11862,
                                      "src": "1066:7:58",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                                        "typeString": "struct DrawRingBufferLib.Buffer memory"
                                      }
                                    },
                                    "id": 11877,
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "lastDrawId",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 11831,
                                    "src": "1066:18:58",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": "+",
                                  "rightExpression": {
                                    "hexValue": "31",
                                    "id": 11878,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "1087:1:58",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_1_by_1",
                                      "typeString": "int_const 1"
                                    },
                                    "value": "1"
                                  },
                                  "src": "1066:22:58",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                "src": "1055:33:58",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "src": "1028:60:58",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4452422f6d7573742d62652d636f6e746967",
                              "id": 11882,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1090:20:58",
                              "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": 11870,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1020:7:58",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 11883,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1020:91:58",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 11884,
                        "nodeType": "ExpressionStatement",
                        "src": "1020:91:58"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 11886,
                              "name": "_drawId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11864,
                              "src": "1178:7:58",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "arguments": [
                                    {
                                      "expression": {
                                        "id": 11891,
                                        "name": "_buffer",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 11862,
                                        "src": "1245:7:58",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                                          "typeString": "struct DrawRingBufferLib.Buffer memory"
                                        }
                                      },
                                      "id": 11892,
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "memberName": "nextIndex",
                                      "nodeType": "MemberAccess",
                                      "referencedDeclaration": 11833,
                                      "src": "1245:17:58",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    },
                                    {
                                      "expression": {
                                        "id": 11893,
                                        "name": "_buffer",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 11862,
                                        "src": "1264:7:58",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                                          "typeString": "struct DrawRingBufferLib.Buffer memory"
                                        }
                                      },
                                      "id": 11894,
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "memberName": "cardinality",
                                      "nodeType": "MemberAccess",
                                      "referencedDeclaration": 11835,
                                      "src": "1264:19:58",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      },
                                      {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    ],
                                    "expression": {
                                      "id": 11889,
                                      "name": "RingBufferLib",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 12461,
                                      "src": "1221:13:58",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_contract$_RingBufferLib_$12461_$",
                                        "typeString": "type(library RingBufferLib)"
                                      }
                                    },
                                    "id": 11890,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "nextIndex",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 12460,
                                    "src": "1221:23:58",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$",
                                      "typeString": "function (uint256,uint256) pure returns (uint256)"
                                    }
                                  },
                                  "id": 11895,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "1221:63:58",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 11888,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "1214:6:58",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_uint32_$",
                                  "typeString": "type(uint32)"
                                },
                                "typeName": {
                                  "id": 11887,
                                  "name": "uint32",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "1214:6:58",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 11896,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "1214:71:58",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "expression": {
                                "id": 11897,
                                "name": "_buffer",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 11862,
                                "src": "1316:7:58",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                                  "typeString": "struct DrawRingBufferLib.Buffer memory"
                                }
                              },
                              "id": 11898,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "cardinality",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 11835,
                              "src": "1316:19:58",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "id": 11885,
                            "name": "Buffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11836,
                            "src": "1141:6:58",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_struct$_Buffer_$11836_storage_ptr_$",
                              "typeString": "type(struct DrawRingBufferLib.Buffer storage pointer)"
                            }
                          },
                          "id": 11899,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "structConstructorCall",
                          "lValueRequested": false,
                          "names": [
                            "lastDrawId",
                            "nextIndex",
                            "cardinality"
                          ],
                          "nodeType": "FunctionCall",
                          "src": "1141:209:58",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                            "typeString": "struct DrawRingBufferLib.Buffer memory"
                          }
                        },
                        "functionReturnParameters": 11869,
                        "id": 11900,
                        "nodeType": "Return",
                        "src": "1122:228:58"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 11859,
                    "nodeType": "StructuredDocumentation",
                    "src": "755:159:58",
                    "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": 11902,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "push",
                  "nameLocation": "928:4:58",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11865,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11862,
                        "mutability": "mutable",
                        "name": "_buffer",
                        "nameLocation": "947:7:58",
                        "nodeType": "VariableDeclaration",
                        "scope": 11902,
                        "src": "933:21:58",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                          "typeString": "struct DrawRingBufferLib.Buffer"
                        },
                        "typeName": {
                          "id": 11861,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11860,
                            "name": "Buffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11836,
                            "src": "933:6:58"
                          },
                          "referencedDeclaration": 11836,
                          "src": "933:6:58",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$11836_storage_ptr",
                            "typeString": "struct DrawRingBufferLib.Buffer"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11864,
                        "mutability": "mutable",
                        "name": "_drawId",
                        "nameLocation": "963:7:58",
                        "nodeType": "VariableDeclaration",
                        "scope": 11902,
                        "src": "956:14:58",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 11863,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "956:6:58",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "932:39:58"
                  },
                  "returnParameters": {
                    "id": 11869,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11868,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11902,
                        "src": "995:13:58",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                          "typeString": "struct DrawRingBufferLib.Buffer"
                        },
                        "typeName": {
                          "id": 11867,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11866,
                            "name": "Buffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11836,
                            "src": "995:6:58"
                          },
                          "referencedDeclaration": 11836,
                          "src": "995:6:58",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$11836_storage_ptr",
                            "typeString": "struct DrawRingBufferLib.Buffer"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "994:15:58"
                  },
                  "scope": 11966,
                  "src": "919:438:58",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 11964,
                    "nodeType": "Block",
                    "src": "1675:429:58",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              "id": 11921,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 11915,
                                    "name": "_buffer",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 11906,
                                    "src": "1707:7:58",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                                      "typeString": "struct DrawRingBufferLib.Buffer memory"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                                      "typeString": "struct DrawRingBufferLib.Buffer memory"
                                    }
                                  ],
                                  "id": 11914,
                                  "name": "isInitialized",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 11858,
                                  "src": "1693:13:58",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_pure$_t_struct$_Buffer_$11836_memory_ptr_$returns$_t_bool_$",
                                    "typeString": "function (struct DrawRingBufferLib.Buffer memory) pure returns (bool)"
                                  }
                                },
                                "id": 11916,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1693:22:58",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "&&",
                              "rightExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                },
                                "id": 11920,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 11917,
                                  "name": "_drawId",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 11908,
                                  "src": "1719:7:58",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "<=",
                                "rightExpression": {
                                  "expression": {
                                    "id": 11918,
                                    "name": "_buffer",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 11906,
                                    "src": "1730:7:58",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                                      "typeString": "struct DrawRingBufferLib.Buffer memory"
                                    }
                                  },
                                  "id": 11919,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "lastDrawId",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 11831,
                                  "src": "1730:18:58",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                "src": "1719:29:58",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "src": "1693:55:58",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4452422f6675747572652d64726177",
                              "id": 11922,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1750:17:58",
                              "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": 11913,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1685:7:58",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 11923,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1685:83:58",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 11924,
                        "nodeType": "ExpressionStatement",
                        "src": "1685:83:58"
                      },
                      {
                        "assignments": [
                          11926
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 11926,
                            "mutability": "mutable",
                            "name": "indexOffset",
                            "nameLocation": "1786:11:58",
                            "nodeType": "VariableDeclaration",
                            "scope": 11964,
                            "src": "1779:18:58",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "typeName": {
                              "id": 11925,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "1779:6:58",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 11931,
                        "initialValue": {
                          "commonType": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          },
                          "id": 11930,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 11927,
                              "name": "_buffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11906,
                              "src": "1800:7:58",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                                "typeString": "struct DrawRingBufferLib.Buffer memory"
                              }
                            },
                            "id": 11928,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "lastDrawId",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11831,
                            "src": "1800:18:58",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "-",
                          "rightExpression": {
                            "id": 11929,
                            "name": "_drawId",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11908,
                            "src": "1821:7:58",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "1800:28:58",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1779:49:58"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              "id": 11936,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 11933,
                                "name": "indexOffset",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 11926,
                                "src": "1846:11:58",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<",
                              "rightExpression": {
                                "expression": {
                                  "id": 11934,
                                  "name": "_buffer",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 11906,
                                  "src": "1860:7:58",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                                    "typeString": "struct DrawRingBufferLib.Buffer memory"
                                  }
                                },
                                "id": 11935,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "cardinality",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 11835,
                                "src": "1860:19:58",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "src": "1846:33:58",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4452422f657870697265642d64726177",
                              "id": 11937,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1881:18:58",
                              "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": 11932,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1838:7:58",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 11938,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1838:62:58",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 11939,
                        "nodeType": "ExpressionStatement",
                        "src": "1838:62:58"
                      },
                      {
                        "assignments": [
                          11941
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 11941,
                            "mutability": "mutable",
                            "name": "mostRecent",
                            "nameLocation": "1919:10:58",
                            "nodeType": "VariableDeclaration",
                            "scope": 11964,
                            "src": "1911:18:58",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 11940,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "1911:7:58",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 11949,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 11944,
                                "name": "_buffer",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 11906,
                                "src": "1958:7:58",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                                  "typeString": "struct DrawRingBufferLib.Buffer memory"
                                }
                              },
                              "id": 11945,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "nextIndex",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 11833,
                              "src": "1958:17:58",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "expression": {
                                "id": 11946,
                                "name": "_buffer",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 11906,
                                "src": "1977:7:58",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                                  "typeString": "struct DrawRingBufferLib.Buffer memory"
                                }
                              },
                              "id": 11947,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "cardinality",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 11835,
                              "src": "1977:19:58",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 11942,
                              "name": "RingBufferLib",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12461,
                              "src": "1932:13:58",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_RingBufferLib_$12461_$",
                                "typeString": "type(library RingBufferLib)"
                              }
                            },
                            "id": 11943,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "newestIndex",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12442,
                            "src": "1932:25:58",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$",
                              "typeString": "function (uint256,uint256) pure returns (uint256)"
                            }
                          },
                          "id": 11948,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1932:65:58",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1911:86:58"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "arguments": [
                                    {
                                      "id": 11956,
                                      "name": "mostRecent",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 11941,
                                      "src": "2050:10:58",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    ],
                                    "id": 11955,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "ElementaryTypeNameExpression",
                                    "src": "2043:6:58",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_uint32_$",
                                      "typeString": "type(uint32)"
                                    },
                                    "typeName": {
                                      "id": 11954,
                                      "name": "uint32",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "2043:6:58",
                                      "typeDescriptions": {}
                                    }
                                  },
                                  "id": 11957,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "typeConversion",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "2043:18:58",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                {
                                  "id": 11958,
                                  "name": "indexOffset",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 11926,
                                  "src": "2063:11:58",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                {
                                  "expression": {
                                    "id": 11959,
                                    "name": "_buffer",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 11906,
                                    "src": "2076:7:58",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                                      "typeString": "struct DrawRingBufferLib.Buffer memory"
                                    }
                                  },
                                  "id": 11960,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "cardinality",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 11835,
                                  "src": "2076:19:58",
                                  "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": 11952,
                                  "name": "RingBufferLib",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12461,
                                  "src": "2022:13:58",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_contract$_RingBufferLib_$12461_$",
                                    "typeString": "type(library RingBufferLib)"
                                  }
                                },
                                "id": 11953,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "offset",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 12415,
                                "src": "2022:20:58",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$",
                                  "typeString": "function (uint256,uint256,uint256) pure returns (uint256)"
                                }
                              },
                              "id": 11961,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "2022:74:58",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 11951,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "2015:6:58",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint32_$",
                              "typeString": "type(uint32)"
                            },
                            "typeName": {
                              "id": 11950,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "2015:6:58",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 11962,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2015:82:58",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "functionReturnParameters": 11912,
                        "id": 11963,
                        "nodeType": "Return",
                        "src": "2008:89:58"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 11903,
                    "nodeType": "StructuredDocumentation",
                    "src": "1363:219:58",
                    "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": 11965,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getIndex",
                  "nameLocation": "1596:8:58",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11909,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11906,
                        "mutability": "mutable",
                        "name": "_buffer",
                        "nameLocation": "1619:7:58",
                        "nodeType": "VariableDeclaration",
                        "scope": 11965,
                        "src": "1605:21:58",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Buffer_$11836_memory_ptr",
                          "typeString": "struct DrawRingBufferLib.Buffer"
                        },
                        "typeName": {
                          "id": 11905,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 11904,
                            "name": "Buffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11836,
                            "src": "1605:6:58"
                          },
                          "referencedDeclaration": 11836,
                          "src": "1605:6:58",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Buffer_$11836_storage_ptr",
                            "typeString": "struct DrawRingBufferLib.Buffer"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 11908,
                        "mutability": "mutable",
                        "name": "_drawId",
                        "nameLocation": "1635:7:58",
                        "nodeType": "VariableDeclaration",
                        "scope": 11965,
                        "src": "1628:14:58",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 11907,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1628:6:58",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1604:39:58"
                  },
                  "returnParameters": {
                    "id": 11912,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11911,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11965,
                        "src": "1667:6:58",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 11910,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1667:6:58",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1666:8:58"
                  },
                  "scope": 11966,
                  "src": "1587:517:58",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 11967,
              "src": "157:1949:58",
              "usedErrors": []
            }
          ],
          "src": "37:2070:58"
        },
        "id": 58
      },
      "@pooltogether/v4-core/contracts/libraries/ExtendedSafeCastLib.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/libraries/ExtendedSafeCastLib.sol",
          "exportedSymbols": {
            "ExtendedSafeCastLib": [
              12045
            ]
          },
          "id": 12046,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 11968,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:59"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "library",
              "documentation": {
                "id": 11969,
                "nodeType": "StructuredDocumentation",
                "src": "61:709:59",
                "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": 12045,
              "linearizedBaseContracts": [
                12045
              ],
              "name": "ExtendedSafeCastLib",
              "nameLocation": "779:19:59",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "body": {
                    "id": 11993,
                    "nodeType": "Block",
                    "src": "1158:128:59",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 11984,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 11978,
                                "name": "_value",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 11972,
                                "src": "1176:6:59",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "expression": {
                                  "arguments": [
                                    {
                                      "id": 11981,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "1191:7:59",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_uint104_$",
                                        "typeString": "type(uint104)"
                                      },
                                      "typeName": {
                                        "id": 11980,
                                        "name": "uint104",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "1191:7:59",
                                        "typeDescriptions": {}
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_type$_t_uint104_$",
                                        "typeString": "type(uint104)"
                                      }
                                    ],
                                    "id": 11979,
                                    "name": "type",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -27,
                                    "src": "1186:4:59",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                      "typeString": "function () pure"
                                    }
                                  },
                                  "id": 11982,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "1186:13:59",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_meta_type_t_uint104",
                                    "typeString": "type(uint104)"
                                  }
                                },
                                "id": 11983,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "max",
                                "nodeType": "MemberAccess",
                                "src": "1186:17:59",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint104",
                                  "typeString": "uint104"
                                }
                              },
                              "src": "1176:27:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e203130342062697473",
                              "id": 11985,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1205:41:59",
                              "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": 11977,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1168:7:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 11986,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1168:79:59",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 11987,
                        "nodeType": "ExpressionStatement",
                        "src": "1168:79:59"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 11990,
                              "name": "_value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11972,
                              "src": "1272:6:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 11989,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "1264:7:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint104_$",
                              "typeString": "type(uint104)"
                            },
                            "typeName": {
                              "id": 11988,
                              "name": "uint104",
                              "nodeType": "ElementaryTypeName",
                              "src": "1264:7:59",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 11991,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1264:15:59",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint104",
                            "typeString": "uint104"
                          }
                        },
                        "functionReturnParameters": 11976,
                        "id": 11992,
                        "nodeType": "Return",
                        "src": "1257:22:59"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 11970,
                    "nodeType": "StructuredDocumentation",
                    "src": "806:280:59",
                    "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": 11994,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toUint104",
                  "nameLocation": "1100:9:59",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11973,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11972,
                        "mutability": "mutable",
                        "name": "_value",
                        "nameLocation": "1118:6:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 11994,
                        "src": "1110:14:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11971,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1110:7:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1109:16:59"
                  },
                  "returnParameters": {
                    "id": 11976,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11975,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 11994,
                        "src": "1149:7:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint104",
                          "typeString": "uint104"
                        },
                        "typeName": {
                          "id": 11974,
                          "name": "uint104",
                          "nodeType": "ElementaryTypeName",
                          "src": "1149:7:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint104",
                            "typeString": "uint104"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1148:9:59"
                  },
                  "scope": 12045,
                  "src": "1091:195:59",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 12018,
                    "nodeType": "Block",
                    "src": "1644:128:59",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 12009,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 12003,
                                "name": "_value",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 11997,
                                "src": "1662:6:59",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "expression": {
                                  "arguments": [
                                    {
                                      "id": 12006,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "1677:7:59",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_uint208_$",
                                        "typeString": "type(uint208)"
                                      },
                                      "typeName": {
                                        "id": 12005,
                                        "name": "uint208",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "1677:7:59",
                                        "typeDescriptions": {}
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_type$_t_uint208_$",
                                        "typeString": "type(uint208)"
                                      }
                                    ],
                                    "id": 12004,
                                    "name": "type",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -27,
                                    "src": "1672:4:59",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                      "typeString": "function () pure"
                                    }
                                  },
                                  "id": 12007,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "1672:13:59",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_meta_type_t_uint208",
                                    "typeString": "type(uint208)"
                                  }
                                },
                                "id": 12008,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "max",
                                "nodeType": "MemberAccess",
                                "src": "1672:17:59",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint208",
                                  "typeString": "uint208"
                                }
                              },
                              "src": "1662:27:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e203230382062697473",
                              "id": 12010,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1691:41:59",
                              "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": 12002,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1654:7:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 12011,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1654:79:59",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 12012,
                        "nodeType": "ExpressionStatement",
                        "src": "1654:79:59"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 12015,
                              "name": "_value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 11997,
                              "src": "1758:6:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 12014,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "1750:7:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint208_$",
                              "typeString": "type(uint208)"
                            },
                            "typeName": {
                              "id": 12013,
                              "name": "uint208",
                              "nodeType": "ElementaryTypeName",
                              "src": "1750:7:59",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 12016,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1750:15:59",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint208",
                            "typeString": "uint208"
                          }
                        },
                        "functionReturnParameters": 12001,
                        "id": 12017,
                        "nodeType": "Return",
                        "src": "1743:22:59"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 11995,
                    "nodeType": "StructuredDocumentation",
                    "src": "1292:280:59",
                    "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": 12019,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toUint208",
                  "nameLocation": "1586:9:59",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 11998,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 11997,
                        "mutability": "mutable",
                        "name": "_value",
                        "nameLocation": "1604:6:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 12019,
                        "src": "1596:14:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 11996,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1596:7:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1595:16:59"
                  },
                  "returnParameters": {
                    "id": 12001,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12000,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 12019,
                        "src": "1635:7:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint208",
                          "typeString": "uint208"
                        },
                        "typeName": {
                          "id": 11999,
                          "name": "uint208",
                          "nodeType": "ElementaryTypeName",
                          "src": "1635:7:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint208",
                            "typeString": "uint208"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1634:9:59"
                  },
                  "scope": 12045,
                  "src": "1577:195:59",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 12043,
                    "nodeType": "Block",
                    "src": "2130:128:59",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 12034,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 12028,
                                "name": "_value",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12022,
                                "src": "2148:6:59",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "expression": {
                                  "arguments": [
                                    {
                                      "id": 12031,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "2163:7:59",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_uint224_$",
                                        "typeString": "type(uint224)"
                                      },
                                      "typeName": {
                                        "id": 12030,
                                        "name": "uint224",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "2163:7:59",
                                        "typeDescriptions": {}
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_type$_t_uint224_$",
                                        "typeString": "type(uint224)"
                                      }
                                    ],
                                    "id": 12029,
                                    "name": "type",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -27,
                                    "src": "2158:4:59",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                      "typeString": "function () pure"
                                    }
                                  },
                                  "id": 12032,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "2158:13:59",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_meta_type_t_uint224",
                                    "typeString": "type(uint224)"
                                  }
                                },
                                "id": 12033,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "max",
                                "nodeType": "MemberAccess",
                                "src": "2158:17:59",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                }
                              },
                              "src": "2148:27:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "53616665436173743a2076616c756520646f65736e27742066697420696e203232342062697473",
                              "id": 12035,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2177:41:59",
                              "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": 12027,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2140:7:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 12036,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2140:79:59",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 12037,
                        "nodeType": "ExpressionStatement",
                        "src": "2140:79:59"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 12040,
                              "name": "_value",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12022,
                              "src": "2244:6:59",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 12039,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "2236:7:59",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint224_$",
                              "typeString": "type(uint224)"
                            },
                            "typeName": {
                              "id": 12038,
                              "name": "uint224",
                              "nodeType": "ElementaryTypeName",
                              "src": "2236:7:59",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 12041,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2236:15:59",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "functionReturnParameters": 12026,
                        "id": 12042,
                        "nodeType": "Return",
                        "src": "2229:22:59"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 12020,
                    "nodeType": "StructuredDocumentation",
                    "src": "1778:280:59",
                    "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": 12044,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "toUint224",
                  "nameLocation": "2072:9:59",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12023,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12022,
                        "mutability": "mutable",
                        "name": "_value",
                        "nameLocation": "2090:6:59",
                        "nodeType": "VariableDeclaration",
                        "scope": 12044,
                        "src": "2082:14:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12021,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2082:7:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2081:16:59"
                  },
                  "returnParameters": {
                    "id": 12026,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12025,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 12044,
                        "src": "2121:7:59",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        },
                        "typeName": {
                          "id": 12024,
                          "name": "uint224",
                          "nodeType": "ElementaryTypeName",
                          "src": "2121:7:59",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2120:9:59"
                  },
                  "scope": 12045,
                  "src": "2063:195:59",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 12046,
              "src": "771:1489:59",
              "usedErrors": []
            }
          ],
          "src": "37:2224:59"
        },
        "id": 59
      },
      "@pooltogether/v4-core/contracts/libraries/ObservationLib.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/libraries/ObservationLib.sol",
          "exportedSymbols": {
            "ObservationLib": [
              12204
            ],
            "OverflowSafeComparatorLib": [
              12376
            ],
            "RingBufferLib": [
              12461
            ],
            "SafeCast": [
              3225
            ]
          },
          "id": 12205,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 12047,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:60"
            },
            {
              "absolutePath": "@openzeppelin/contracts/utils/math/SafeCast.sol",
              "file": "@openzeppelin/contracts/utils/math/SafeCast.sol",
              "id": 12048,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 12205,
              "sourceUnit": 3226,
              "src": "61:57:60",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/libraries/OverflowSafeComparatorLib.sol",
              "file": "./OverflowSafeComparatorLib.sol",
              "id": 12049,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 12205,
              "sourceUnit": 12377,
              "src": "120:41:60",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/libraries/RingBufferLib.sol",
              "file": "./RingBufferLib.sol",
              "id": 12050,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 12205,
              "sourceUnit": 12462,
              "src": "162:29:60",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "library",
              "documentation": {
                "id": 12051,
                "nodeType": "StructuredDocumentation",
                "src": "193:335:60",
                "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": 12204,
              "linearizedBaseContracts": [
                12204
              ],
              "name": "ObservationLib",
              "nameLocation": "537:14:60",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "id": 12054,
                  "libraryName": {
                    "id": 12052,
                    "name": "OverflowSafeComparatorLib",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 12376,
                    "src": "564:25:60"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "558:43:60",
                  "typeName": {
                    "id": 12053,
                    "name": "uint32",
                    "nodeType": "ElementaryTypeName",
                    "src": "594:6:60",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint32",
                      "typeString": "uint32"
                    }
                  }
                },
                {
                  "id": 12057,
                  "libraryName": {
                    "id": 12055,
                    "name": "SafeCast",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 3225,
                    "src": "612:8:60"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "606:27:60",
                  "typeName": {
                    "id": 12056,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "625:7:60",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  }
                },
                {
                  "constant": true,
                  "documentation": {
                    "id": 12058,
                    "nodeType": "StructuredDocumentation",
                    "src": "639:46:60",
                    "text": "@notice The maximum number of observations"
                  },
                  "functionSelector": "8200d873",
                  "id": 12061,
                  "mutability": "constant",
                  "name": "MAX_CARDINALITY",
                  "nameLocation": "713:15:60",
                  "nodeType": "VariableDeclaration",
                  "scope": 12204,
                  "src": "690:49:60",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint24",
                    "typeString": "uint24"
                  },
                  "typeName": {
                    "id": 12059,
                    "name": "uint24",
                    "nodeType": "ElementaryTypeName",
                    "src": "690:6:60",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint24",
                      "typeString": "uint24"
                    }
                  },
                  "value": {
                    "hexValue": "3136373737323135",
                    "id": 12060,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "number",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "731:8:60",
                    "typeDescriptions": {
                      "typeIdentifier": "t_rational_16777215_by_1",
                      "typeString": "int_const 16777215"
                    },
                    "value": "16777215"
                  },
                  "visibility": "public"
                },
                {
                  "canonicalName": "ObservationLib.Observation",
                  "id": 12066,
                  "members": [
                    {
                      "constant": false,
                      "id": 12063,
                      "mutability": "mutable",
                      "name": "amount",
                      "nameLocation": "964:6:60",
                      "nodeType": "VariableDeclaration",
                      "scope": 12066,
                      "src": "956:14:60",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint224",
                        "typeString": "uint224"
                      },
                      "typeName": {
                        "id": 12062,
                        "name": "uint224",
                        "nodeType": "ElementaryTypeName",
                        "src": "956:7:60",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 12065,
                      "mutability": "mutable",
                      "name": "timestamp",
                      "nameLocation": "987:9:60",
                      "nodeType": "VariableDeclaration",
                      "scope": 12066,
                      "src": "980:16:60",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint32",
                        "typeString": "uint32"
                      },
                      "typeName": {
                        "id": 12064,
                        "name": "uint32",
                        "nodeType": "ElementaryTypeName",
                        "src": "980:6:60",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        }
                      },
                      "visibility": "internal"
                    }
                  ],
                  "name": "Observation",
                  "nameLocation": "934:11:60",
                  "nodeType": "StructDefinition",
                  "scope": 12204,
                  "src": "927:76:60",
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 12202,
                    "nodeType": "Block",
                    "src": "2709:1679:60",
                    "statements": [
                      {
                        "assignments": [
                          12092
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 12092,
                            "mutability": "mutable",
                            "name": "leftSide",
                            "nameLocation": "2727:8:60",
                            "nodeType": "VariableDeclaration",
                            "scope": 12202,
                            "src": "2719:16:60",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 12091,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "2719:7:60",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 12094,
                        "initialValue": {
                          "id": 12093,
                          "name": "_oldestObservationIndex",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 12076,
                          "src": "2738:23:60",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2719:42:60"
                      },
                      {
                        "assignments": [
                          12096
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 12096,
                            "mutability": "mutable",
                            "name": "rightSide",
                            "nameLocation": "2779:9:60",
                            "nodeType": "VariableDeclaration",
                            "scope": 12202,
                            "src": "2771:17:60",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 12095,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "2771:7:60",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 12107,
                        "initialValue": {
                          "condition": {
                            "commonType": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "id": 12099,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 12097,
                              "name": "_newestObservationIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12074,
                              "src": "2791:23:60",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "<",
                            "rightExpression": {
                              "id": 12098,
                              "name": "leftSide",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12092,
                              "src": "2817:8:60",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "src": "2791:34:60",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "falseExpression": {
                            "id": 12105,
                            "name": "_newestObservationIndex",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12074,
                            "src": "2882:23:60",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "id": 12106,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "Conditional",
                          "src": "2791:114:60",
                          "trueExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "id": 12104,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 12102,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 12100,
                                "name": "leftSide",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12092,
                                "src": "2840:8:60",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "+",
                              "rightExpression": {
                                "id": 12101,
                                "name": "_cardinality",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12080,
                                "src": "2851:12:60",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint24",
                                  "typeString": "uint24"
                                }
                              },
                              "src": "2840:23:60",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "-",
                            "rightExpression": {
                              "hexValue": "31",
                              "id": 12103,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2866:1:60",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_1_by_1",
                                "typeString": "int_const 1"
                              },
                              "value": "1"
                            },
                            "src": "2840:27:60",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2771:134:60"
                      },
                      {
                        "assignments": [
                          12109
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 12109,
                            "mutability": "mutable",
                            "name": "currentIndex",
                            "nameLocation": "2923:12:60",
                            "nodeType": "VariableDeclaration",
                            "scope": 12202,
                            "src": "2915:20:60",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 12108,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "2915:7:60",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 12110,
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2915:20:60"
                      },
                      {
                        "body": {
                          "id": 12200,
                          "nodeType": "Block",
                          "src": "2959:1423:60",
                          "statements": [
                            {
                              "expression": {
                                "id": 12119,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 12112,
                                  "name": "currentIndex",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12109,
                                  "src": "3197:12:60",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "commonType": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "id": 12118,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "leftExpression": {
                                    "components": [
                                      {
                                        "commonType": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        },
                                        "id": 12115,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "leftExpression": {
                                          "id": 12113,
                                          "name": "leftSide",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 12092,
                                          "src": "3213:8:60",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "nodeType": "BinaryOperation",
                                        "operator": "+",
                                        "rightExpression": {
                                          "id": 12114,
                                          "name": "rightSide",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 12096,
                                          "src": "3224:9:60",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "src": "3213:20:60",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      }
                                    ],
                                    "id": 12116,
                                    "isConstant": false,
                                    "isInlineArray": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "nodeType": "TupleExpression",
                                    "src": "3212:22:60",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "nodeType": "BinaryOperation",
                                  "operator": "/",
                                  "rightExpression": {
                                    "hexValue": "32",
                                    "id": 12117,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "3237:1:60",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_2_by_1",
                                      "typeString": "int_const 2"
                                    },
                                    "value": "2"
                                  },
                                  "src": "3212:26:60",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "3197:41:60",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 12120,
                              "nodeType": "ExpressionStatement",
                              "src": "3197:41:60"
                            },
                            {
                              "expression": {
                                "id": 12132,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 12121,
                                  "name": "beforeOrAt",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12086,
                                  "src": "3253:10:60",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                    "typeString": "struct ObservationLib.Observation memory"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "baseExpression": {
                                    "id": 12122,
                                    "name": "_observations",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 12072,
                                    "src": "3266:13:60",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr",
                                      "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                                    }
                                  },
                                  "id": 12131,
                                  "indexExpression": {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "id": 12127,
                                            "name": "currentIndex",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 12109,
                                            "src": "3306:12:60",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            }
                                          },
                                          {
                                            "id": 12128,
                                            "name": "_cardinality",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 12080,
                                            "src": "3320:12:60",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint24",
                                              "typeString": "uint24"
                                            }
                                          }
                                        ],
                                        "expression": {
                                          "argumentTypes": [
                                            {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            },
                                            {
                                              "typeIdentifier": "t_uint24",
                                              "typeString": "uint24"
                                            }
                                          ],
                                          "expression": {
                                            "id": 12125,
                                            "name": "RingBufferLib",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 12461,
                                            "src": "3287:13:60",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_type$_t_contract$_RingBufferLib_$12461_$",
                                              "typeString": "type(library RingBufferLib)"
                                            }
                                          },
                                          "id": 12126,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "memberName": "wrap",
                                          "nodeType": "MemberAccess",
                                          "referencedDeclaration": 12393,
                                          "src": "3287:18:60",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$",
                                            "typeString": "function (uint256,uint256) pure returns (uint256)"
                                          }
                                        },
                                        "id": 12129,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "kind": "functionCall",
                                        "lValueRequested": false,
                                        "names": [],
                                        "nodeType": "FunctionCall",
                                        "src": "3287:46:60",
                                        "tryCall": false,
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      ],
                                      "id": 12124,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "3280:6:60",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_uint24_$",
                                        "typeString": "type(uint24)"
                                      },
                                      "typeName": {
                                        "id": 12123,
                                        "name": "uint24",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "3280:6:60",
                                        "typeDescriptions": {}
                                      }
                                    },
                                    "id": 12130,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "kind": "typeConversion",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "3280:54:60",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint24",
                                      "typeString": "uint24"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "IndexAccess",
                                  "src": "3266:69:60",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$12066_storage",
                                    "typeString": "struct ObservationLib.Observation storage ref"
                                  }
                                },
                                "src": "3253:82:60",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                  "typeString": "struct ObservationLib.Observation memory"
                                }
                              },
                              "id": 12133,
                              "nodeType": "ExpressionStatement",
                              "src": "3253:82:60"
                            },
                            {
                              "assignments": [
                                12135
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 12135,
                                  "mutability": "mutable",
                                  "name": "beforeOrAtTimestamp",
                                  "nameLocation": "3356:19:60",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 12200,
                                  "src": "3349:26:60",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  },
                                  "typeName": {
                                    "id": 12134,
                                    "name": "uint32",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "3349:6:60",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 12138,
                              "initialValue": {
                                "expression": {
                                  "id": 12136,
                                  "name": "beforeOrAt",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12086,
                                  "src": "3378:10:60",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                    "typeString": "struct ObservationLib.Observation memory"
                                  }
                                },
                                "id": 12137,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "timestamp",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 12065,
                                "src": "3378:20:60",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "3349:49:60"
                            },
                            {
                              "condition": {
                                "commonType": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                },
                                "id": 12141,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 12139,
                                  "name": "beforeOrAtTimestamp",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12135,
                                  "src": "3515:19:60",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "==",
                                "rightExpression": {
                                  "hexValue": "30",
                                  "id": 12140,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "3538:1:60",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                },
                                "src": "3515:24:60",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "id": 12150,
                              "nodeType": "IfStatement",
                              "src": "3511:116:60",
                              "trueBody": {
                                "id": 12149,
                                "nodeType": "Block",
                                "src": "3541:86:60",
                                "statements": [
                                  {
                                    "expression": {
                                      "id": 12146,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftHandSide": {
                                        "id": 12142,
                                        "name": "leftSide",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 12092,
                                        "src": "3559:8:60",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "nodeType": "Assignment",
                                      "operator": "=",
                                      "rightHandSide": {
                                        "commonType": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        },
                                        "id": 12145,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "leftExpression": {
                                          "id": 12143,
                                          "name": "currentIndex",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 12109,
                                          "src": "3570:12:60",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "nodeType": "BinaryOperation",
                                        "operator": "+",
                                        "rightExpression": {
                                          "hexValue": "31",
                                          "id": 12144,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": true,
                                          "kind": "number",
                                          "lValueRequested": false,
                                          "nodeType": "Literal",
                                          "src": "3585:1:60",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_rational_1_by_1",
                                            "typeString": "int_const 1"
                                          },
                                          "value": "1"
                                        },
                                        "src": "3570:16:60",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "src": "3559:27:60",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "id": 12147,
                                    "nodeType": "ExpressionStatement",
                                    "src": "3559:27:60"
                                  },
                                  {
                                    "id": 12148,
                                    "nodeType": "Continue",
                                    "src": "3604:8:60"
                                  }
                                ]
                              }
                            },
                            {
                              "expression": {
                                "id": 12162,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 12151,
                                  "name": "atOrAfter",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12089,
                                  "src": "3641:9:60",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                    "typeString": "struct ObservationLib.Observation memory"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "baseExpression": {
                                    "id": 12152,
                                    "name": "_observations",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 12072,
                                    "src": "3653:13:60",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr",
                                      "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                                    }
                                  },
                                  "id": 12161,
                                  "indexExpression": {
                                    "arguments": [
                                      {
                                        "arguments": [
                                          {
                                            "id": 12157,
                                            "name": "currentIndex",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 12109,
                                            "src": "3698:12:60",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            }
                                          },
                                          {
                                            "id": 12158,
                                            "name": "_cardinality",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 12080,
                                            "src": "3712:12:60",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint24",
                                              "typeString": "uint24"
                                            }
                                          }
                                        ],
                                        "expression": {
                                          "argumentTypes": [
                                            {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            },
                                            {
                                              "typeIdentifier": "t_uint24",
                                              "typeString": "uint24"
                                            }
                                          ],
                                          "expression": {
                                            "id": 12155,
                                            "name": "RingBufferLib",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 12461,
                                            "src": "3674:13:60",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_type$_t_contract$_RingBufferLib_$12461_$",
                                              "typeString": "type(library RingBufferLib)"
                                            }
                                          },
                                          "id": 12156,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "memberName": "nextIndex",
                                          "nodeType": "MemberAccess",
                                          "referencedDeclaration": 12460,
                                          "src": "3674:23:60",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$",
                                            "typeString": "function (uint256,uint256) pure returns (uint256)"
                                          }
                                        },
                                        "id": 12159,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "kind": "functionCall",
                                        "lValueRequested": false,
                                        "names": [],
                                        "nodeType": "FunctionCall",
                                        "src": "3674:51:60",
                                        "tryCall": false,
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      ],
                                      "id": 12154,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "3667:6:60",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_uint24_$",
                                        "typeString": "type(uint24)"
                                      },
                                      "typeName": {
                                        "id": 12153,
                                        "name": "uint24",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "3667:6:60",
                                        "typeDescriptions": {}
                                      }
                                    },
                                    "id": 12160,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "kind": "typeConversion",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "3667:59:60",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint24",
                                      "typeString": "uint24"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "IndexAccess",
                                  "src": "3653:74:60",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$12066_storage",
                                    "typeString": "struct ObservationLib.Observation storage ref"
                                  }
                                },
                                "src": "3641:86:60",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                  "typeString": "struct ObservationLib.Observation memory"
                                }
                              },
                              "id": 12163,
                              "nodeType": "ExpressionStatement",
                              "src": "3641:86:60"
                            },
                            {
                              "assignments": [
                                12165
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 12165,
                                  "mutability": "mutable",
                                  "name": "targetAtOrAfter",
                                  "nameLocation": "3747:15:60",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 12200,
                                  "src": "3742:20:60",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bool",
                                    "typeString": "bool"
                                  },
                                  "typeName": {
                                    "id": 12164,
                                    "name": "bool",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "3742:4:60",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bool",
                                      "typeString": "bool"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 12171,
                              "initialValue": {
                                "arguments": [
                                  {
                                    "id": 12168,
                                    "name": "_target",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 12078,
                                    "src": "3789:7:60",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  },
                                  {
                                    "id": 12169,
                                    "name": "_time",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 12082,
                                    "src": "3798:5:60",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    },
                                    {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  ],
                                  "expression": {
                                    "id": 12166,
                                    "name": "beforeOrAtTimestamp",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 12135,
                                    "src": "3765:19:60",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  },
                                  "id": 12167,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "lte",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 12317,
                                  "src": "3765:23:60",
                                  "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": 12170,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "3765:39:60",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "3742:62:60"
                            },
                            {
                              "condition": {
                                "commonType": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                },
                                "id": 12179,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 12172,
                                  "name": "targetAtOrAfter",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12165,
                                  "src": "3890:15:60",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bool",
                                    "typeString": "bool"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "&&",
                                "rightExpression": {
                                  "arguments": [
                                    {
                                      "expression": {
                                        "id": 12175,
                                        "name": "atOrAfter",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 12089,
                                        "src": "3921:9:60",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                          "typeString": "struct ObservationLib.Observation memory"
                                        }
                                      },
                                      "id": 12176,
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "memberName": "timestamp",
                                      "nodeType": "MemberAccess",
                                      "referencedDeclaration": 12065,
                                      "src": "3921:19:60",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    },
                                    {
                                      "id": 12177,
                                      "name": "_time",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 12082,
                                      "src": "3942:5:60",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      },
                                      {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    ],
                                    "expression": {
                                      "id": 12173,
                                      "name": "_target",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 12078,
                                      "src": "3909:7:60",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    },
                                    "id": 12174,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "lte",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 12317,
                                    "src": "3909:11:60",
                                    "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": 12178,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "3909:39:60",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bool",
                                    "typeString": "bool"
                                  }
                                },
                                "src": "3890:58:60",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "id": 12182,
                              "nodeType": "IfStatement",
                              "src": "3886:102:60",
                              "trueBody": {
                                "id": 12181,
                                "nodeType": "Block",
                                "src": "3950:38:60",
                                "statements": [
                                  {
                                    "id": 12180,
                                    "nodeType": "Break",
                                    "src": "3968:5:60"
                                  }
                                ]
                              }
                            },
                            {
                              "condition": {
                                "id": 12184,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "UnaryOperation",
                                "operator": "!",
                                "prefix": true,
                                "src": "4137:16:60",
                                "subExpression": {
                                  "id": 12183,
                                  "name": "targetAtOrAfter",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12165,
                                  "src": "4138:15:60",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bool",
                                    "typeString": "bool"
                                  }
                                },
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "falseBody": {
                                "id": 12198,
                                "nodeType": "Block",
                                "src": "4222:150:60",
                                "statements": [
                                  {
                                    "expression": {
                                      "id": 12196,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftHandSide": {
                                        "id": 12192,
                                        "name": "leftSide",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 12092,
                                        "src": "4330:8:60",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "nodeType": "Assignment",
                                      "operator": "=",
                                      "rightHandSide": {
                                        "commonType": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        },
                                        "id": 12195,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "leftExpression": {
                                          "id": 12193,
                                          "name": "currentIndex",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 12109,
                                          "src": "4341:12:60",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "nodeType": "BinaryOperation",
                                        "operator": "+",
                                        "rightExpression": {
                                          "hexValue": "31",
                                          "id": 12194,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": true,
                                          "kind": "number",
                                          "lValueRequested": false,
                                          "nodeType": "Literal",
                                          "src": "4356:1:60",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_rational_1_by_1",
                                            "typeString": "int_const 1"
                                          },
                                          "value": "1"
                                        },
                                        "src": "4341:16:60",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "src": "4330:27:60",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "id": 12197,
                                    "nodeType": "ExpressionStatement",
                                    "src": "4330:27:60"
                                  }
                                ]
                              },
                              "id": 12199,
                              "nodeType": "IfStatement",
                              "src": "4133:239:60",
                              "trueBody": {
                                "id": 12191,
                                "nodeType": "Block",
                                "src": "4155:61:60",
                                "statements": [
                                  {
                                    "expression": {
                                      "id": 12189,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftHandSide": {
                                        "id": 12185,
                                        "name": "rightSide",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 12096,
                                        "src": "4173:9:60",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "nodeType": "Assignment",
                                      "operator": "=",
                                      "rightHandSide": {
                                        "commonType": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        },
                                        "id": 12188,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "leftExpression": {
                                          "id": 12186,
                                          "name": "currentIndex",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 12109,
                                          "src": "4185:12:60",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "nodeType": "BinaryOperation",
                                        "operator": "-",
                                        "rightExpression": {
                                          "hexValue": "31",
                                          "id": 12187,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": true,
                                          "kind": "number",
                                          "lValueRequested": false,
                                          "nodeType": "Literal",
                                          "src": "4200:1:60",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_rational_1_by_1",
                                            "typeString": "int_const 1"
                                          },
                                          "value": "1"
                                        },
                                        "src": "4185:16:60",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "src": "4173:28:60",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "id": 12190,
                                    "nodeType": "ExpressionStatement",
                                    "src": "4173:28:60"
                                  }
                                ]
                              }
                            }
                          ]
                        },
                        "condition": {
                          "hexValue": "74727565",
                          "id": 12111,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "2953:4:60",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "id": 12201,
                        "nodeType": "WhileStatement",
                        "src": "2946:1436:60"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 12067,
                    "nodeType": "StructuredDocumentation",
                    "src": "1009:1368:60",
                    "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": 12203,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "binarySearch",
                  "nameLocation": "2391:12:60",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12083,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12072,
                        "mutability": "mutable",
                        "name": "_observations",
                        "nameLocation": "2450:13:60",
                        "nodeType": "VariableDeclaration",
                        "scope": 12203,
                        "src": "2413:50:60",
                        "stateVariable": false,
                        "storageLocation": "storage",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr",
                          "typeString": "struct ObservationLib.Observation[16777215]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 12069,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 12068,
                              "name": "Observation",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 12066,
                              "src": "2413:11:60"
                            },
                            "referencedDeclaration": 12066,
                            "src": "2413:11:60",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12066_storage_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            }
                          },
                          "id": 12071,
                          "length": {
                            "id": 12070,
                            "name": "MAX_CARDINALITY",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12061,
                            "src": "2425:15:60",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "nodeType": "ArrayTypeName",
                          "src": "2413:28:60",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr",
                            "typeString": "struct ObservationLib.Observation[16777215]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12074,
                        "mutability": "mutable",
                        "name": "_newestObservationIndex",
                        "nameLocation": "2480:23:60",
                        "nodeType": "VariableDeclaration",
                        "scope": 12203,
                        "src": "2473:30:60",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint24",
                          "typeString": "uint24"
                        },
                        "typeName": {
                          "id": 12073,
                          "name": "uint24",
                          "nodeType": "ElementaryTypeName",
                          "src": "2473:6:60",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12076,
                        "mutability": "mutable",
                        "name": "_oldestObservationIndex",
                        "nameLocation": "2520:23:60",
                        "nodeType": "VariableDeclaration",
                        "scope": 12203,
                        "src": "2513:30:60",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint24",
                          "typeString": "uint24"
                        },
                        "typeName": {
                          "id": 12075,
                          "name": "uint24",
                          "nodeType": "ElementaryTypeName",
                          "src": "2513:6:60",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12078,
                        "mutability": "mutable",
                        "name": "_target",
                        "nameLocation": "2560:7:60",
                        "nodeType": "VariableDeclaration",
                        "scope": 12203,
                        "src": "2553:14:60",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 12077,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2553:6:60",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12080,
                        "mutability": "mutable",
                        "name": "_cardinality",
                        "nameLocation": "2584:12:60",
                        "nodeType": "VariableDeclaration",
                        "scope": 12203,
                        "src": "2577:19:60",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint24",
                          "typeString": "uint24"
                        },
                        "typeName": {
                          "id": 12079,
                          "name": "uint24",
                          "nodeType": "ElementaryTypeName",
                          "src": "2577:6:60",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12082,
                        "mutability": "mutable",
                        "name": "_time",
                        "nameLocation": "2613:5:60",
                        "nodeType": "VariableDeclaration",
                        "scope": 12203,
                        "src": "2606:12:60",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 12081,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2606:6:60",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2403:221:60"
                  },
                  "returnParameters": {
                    "id": 12090,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12086,
                        "mutability": "mutable",
                        "name": "beforeOrAt",
                        "nameLocation": "2667:10:60",
                        "nodeType": "VariableDeclaration",
                        "scope": 12203,
                        "src": "2648:29:60",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 12085,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 12084,
                            "name": "Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12066,
                            "src": "2648:11:60"
                          },
                          "referencedDeclaration": 12066,
                          "src": "2648:11:60",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12066_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12089,
                        "mutability": "mutable",
                        "name": "atOrAfter",
                        "nameLocation": "2698:9:60",
                        "nodeType": "VariableDeclaration",
                        "scope": 12203,
                        "src": "2679:28:60",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 12088,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 12087,
                            "name": "Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12066,
                            "src": "2679:11:60"
                          },
                          "referencedDeclaration": 12066,
                          "src": "2679:11:60",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12066_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2647:61:60"
                  },
                  "scope": 12204,
                  "src": "2382:2006:60",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 12205,
              "src": "529:3861:60",
              "usedErrors": []
            }
          ],
          "src": "37:4354:60"
        },
        "id": 60
      },
      "@pooltogether/v4-core/contracts/libraries/OverflowSafeComparatorLib.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/libraries/OverflowSafeComparatorLib.sol",
          "exportedSymbols": {
            "OverflowSafeComparatorLib": [
              12376
            ]
          },
          "id": 12377,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 12206,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:61"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "library",
              "documentation": {
                "id": 12207,
                "nodeType": "StructuredDocumentation",
                "src": "61:283:61",
                "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": 12376,
              "linearizedBaseContracts": [
                12376
              ],
              "name": "OverflowSafeComparatorLib",
              "nameLocation": "352:25:61",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "body": {
                    "id": 12261,
                    "nodeType": "Block",
                    "src": "923:301:61",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "id": 12225,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "id": 12221,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 12219,
                              "name": "_a",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12210,
                              "src": "999:2:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "<=",
                            "rightExpression": {
                              "id": 12220,
                              "name": "_timestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12214,
                              "src": "1005:10:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "src": "999:16:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "&&",
                          "rightExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "id": 12224,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 12222,
                              "name": "_b",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12212,
                              "src": "1019:2:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "<=",
                            "rightExpression": {
                              "id": 12223,
                              "name": "_timestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12214,
                              "src": "1025:10:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "src": "1019:16:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "src": "999:36:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 12230,
                        "nodeType": "IfStatement",
                        "src": "995:56:61",
                        "trueBody": {
                          "expression": {
                            "commonType": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "id": 12228,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 12226,
                              "name": "_a",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12210,
                              "src": "1044:2:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "<",
                            "rightExpression": {
                              "id": 12227,
                              "name": "_b",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12212,
                              "src": "1049:2:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "src": "1044:7:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "functionReturnParameters": 12218,
                          "id": 12229,
                          "nodeType": "Return",
                          "src": "1037:14:61"
                        }
                      },
                      {
                        "assignments": [
                          12232
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 12232,
                            "mutability": "mutable",
                            "name": "aAdjusted",
                            "nameLocation": "1070:9:61",
                            "nodeType": "VariableDeclaration",
                            "scope": 12261,
                            "src": "1062:17:61",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 12231,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "1062:7:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 12243,
                        "initialValue": {
                          "condition": {
                            "commonType": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "id": 12235,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 12233,
                              "name": "_a",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12210,
                              "src": "1082:2:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": ">",
                            "rightExpression": {
                              "id": 12234,
                              "name": "_timestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12214,
                              "src": "1087:10:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "src": "1082:15:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "falseExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint40",
                              "typeString": "uint40"
                            },
                            "id": 12241,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 12237,
                              "name": "_a",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12210,
                              "src": "1105:2:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "+",
                            "rightExpression": {
                              "commonType": {
                                "typeIdentifier": "t_rational_4294967296_by_1",
                                "typeString": "int_const 4294967296"
                              },
                              "id": 12240,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "leftExpression": {
                                "hexValue": "32",
                                "id": 12238,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "1110:1:61",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_2_by_1",
                                  "typeString": "int_const 2"
                                },
                                "value": "2"
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "**",
                              "rightExpression": {
                                "hexValue": "3332",
                                "id": 12239,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "1113:2:61",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_32_by_1",
                                  "typeString": "int_const 32"
                                },
                                "value": "32"
                              },
                              "src": "1110:5:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_4294967296_by_1",
                                "typeString": "int_const 4294967296"
                              }
                            },
                            "src": "1105:10:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint40",
                              "typeString": "uint40"
                            }
                          },
                          "id": 12242,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "Conditional",
                          "src": "1082:33:61",
                          "trueExpression": {
                            "id": 12236,
                            "name": "_a",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12210,
                            "src": "1100:2:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint40",
                            "typeString": "uint40"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1062:53:61"
                      },
                      {
                        "assignments": [
                          12245
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 12245,
                            "mutability": "mutable",
                            "name": "bAdjusted",
                            "nameLocation": "1133:9:61",
                            "nodeType": "VariableDeclaration",
                            "scope": 12261,
                            "src": "1125:17:61",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 12244,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "1125:7:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 12256,
                        "initialValue": {
                          "condition": {
                            "commonType": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "id": 12248,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 12246,
                              "name": "_b",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12212,
                              "src": "1145:2:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": ">",
                            "rightExpression": {
                              "id": 12247,
                              "name": "_timestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12214,
                              "src": "1150:10:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "src": "1145:15:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "falseExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint40",
                              "typeString": "uint40"
                            },
                            "id": 12254,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 12250,
                              "name": "_b",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12212,
                              "src": "1168:2:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "+",
                            "rightExpression": {
                              "commonType": {
                                "typeIdentifier": "t_rational_4294967296_by_1",
                                "typeString": "int_const 4294967296"
                              },
                              "id": 12253,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "leftExpression": {
                                "hexValue": "32",
                                "id": 12251,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "1173:1:61",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_2_by_1",
                                  "typeString": "int_const 2"
                                },
                                "value": "2"
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "**",
                              "rightExpression": {
                                "hexValue": "3332",
                                "id": 12252,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "1176:2:61",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_32_by_1",
                                  "typeString": "int_const 32"
                                },
                                "value": "32"
                              },
                              "src": "1173:5:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_4294967296_by_1",
                                "typeString": "int_const 4294967296"
                              }
                            },
                            "src": "1168:10:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint40",
                              "typeString": "uint40"
                            }
                          },
                          "id": 12255,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "Conditional",
                          "src": "1145:33:61",
                          "trueExpression": {
                            "id": 12249,
                            "name": "_b",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12212,
                            "src": "1163:2:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint40",
                            "typeString": "uint40"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1125:53:61"
                      },
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 12259,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 12257,
                            "name": "aAdjusted",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12232,
                            "src": "1196:9:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "id": 12258,
                            "name": "bAdjusted",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12245,
                            "src": "1208:9:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "1196:21:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 12218,
                        "id": 12260,
                        "nodeType": "Return",
                        "src": "1189:28:61"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 12208,
                    "nodeType": "StructuredDocumentation",
                    "src": "384:422:61",
                    "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": 12262,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "lt",
                  "nameLocation": "820:2:61",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12215,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12210,
                        "mutability": "mutable",
                        "name": "_a",
                        "nameLocation": "839:2:61",
                        "nodeType": "VariableDeclaration",
                        "scope": 12262,
                        "src": "832:9:61",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 12209,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "832:6:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12212,
                        "mutability": "mutable",
                        "name": "_b",
                        "nameLocation": "858:2:61",
                        "nodeType": "VariableDeclaration",
                        "scope": 12262,
                        "src": "851:9:61",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 12211,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "851:6:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12214,
                        "mutability": "mutable",
                        "name": "_timestamp",
                        "nameLocation": "877:10:61",
                        "nodeType": "VariableDeclaration",
                        "scope": 12262,
                        "src": "870:17:61",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 12213,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "870:6:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "822:71:61"
                  },
                  "returnParameters": {
                    "id": 12218,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12217,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 12262,
                        "src": "917:4:61",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 12216,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "917:4:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "916:6:61"
                  },
                  "scope": 12376,
                  "src": "811:413:61",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 12316,
                    "nodeType": "Block",
                    "src": "1771:304:61",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "id": 12280,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "id": 12276,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 12274,
                              "name": "_a",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12265,
                              "src": "1848:2:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "<=",
                            "rightExpression": {
                              "id": 12275,
                              "name": "_timestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12269,
                              "src": "1854:10:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "src": "1848:16:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "&&",
                          "rightExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "id": 12279,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 12277,
                              "name": "_b",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12267,
                              "src": "1868:2:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "<=",
                            "rightExpression": {
                              "id": 12278,
                              "name": "_timestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12269,
                              "src": "1874:10:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "src": "1868:16:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "src": "1848:36:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 12285,
                        "nodeType": "IfStatement",
                        "src": "1844:57:61",
                        "trueBody": {
                          "expression": {
                            "commonType": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "id": 12283,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 12281,
                              "name": "_a",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12265,
                              "src": "1893:2:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "<=",
                            "rightExpression": {
                              "id": 12282,
                              "name": "_b",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12267,
                              "src": "1899:2:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "src": "1893:8:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "functionReturnParameters": 12273,
                          "id": 12284,
                          "nodeType": "Return",
                          "src": "1886:15:61"
                        }
                      },
                      {
                        "assignments": [
                          12287
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 12287,
                            "mutability": "mutable",
                            "name": "aAdjusted",
                            "nameLocation": "1920:9:61",
                            "nodeType": "VariableDeclaration",
                            "scope": 12316,
                            "src": "1912:17:61",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 12286,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "1912:7:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 12298,
                        "initialValue": {
                          "condition": {
                            "commonType": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "id": 12290,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 12288,
                              "name": "_a",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12265,
                              "src": "1932:2:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": ">",
                            "rightExpression": {
                              "id": 12289,
                              "name": "_timestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12269,
                              "src": "1937:10:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "src": "1932:15:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "falseExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint40",
                              "typeString": "uint40"
                            },
                            "id": 12296,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 12292,
                              "name": "_a",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12265,
                              "src": "1955:2:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "+",
                            "rightExpression": {
                              "commonType": {
                                "typeIdentifier": "t_rational_4294967296_by_1",
                                "typeString": "int_const 4294967296"
                              },
                              "id": 12295,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "leftExpression": {
                                "hexValue": "32",
                                "id": 12293,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "1960:1:61",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_2_by_1",
                                  "typeString": "int_const 2"
                                },
                                "value": "2"
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "**",
                              "rightExpression": {
                                "hexValue": "3332",
                                "id": 12294,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "1963:2:61",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_32_by_1",
                                  "typeString": "int_const 32"
                                },
                                "value": "32"
                              },
                              "src": "1960:5:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_4294967296_by_1",
                                "typeString": "int_const 4294967296"
                              }
                            },
                            "src": "1955:10:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint40",
                              "typeString": "uint40"
                            }
                          },
                          "id": 12297,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "Conditional",
                          "src": "1932:33:61",
                          "trueExpression": {
                            "id": 12291,
                            "name": "_a",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12265,
                            "src": "1950:2:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint40",
                            "typeString": "uint40"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1912:53:61"
                      },
                      {
                        "assignments": [
                          12300
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 12300,
                            "mutability": "mutable",
                            "name": "bAdjusted",
                            "nameLocation": "1983:9:61",
                            "nodeType": "VariableDeclaration",
                            "scope": 12316,
                            "src": "1975:17:61",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 12299,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "1975:7:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 12311,
                        "initialValue": {
                          "condition": {
                            "commonType": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "id": 12303,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 12301,
                              "name": "_b",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12267,
                              "src": "1995:2:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": ">",
                            "rightExpression": {
                              "id": 12302,
                              "name": "_timestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12269,
                              "src": "2000:10:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "src": "1995:15:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "falseExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint40",
                              "typeString": "uint40"
                            },
                            "id": 12309,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 12305,
                              "name": "_b",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12267,
                              "src": "2018:2:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "+",
                            "rightExpression": {
                              "commonType": {
                                "typeIdentifier": "t_rational_4294967296_by_1",
                                "typeString": "int_const 4294967296"
                              },
                              "id": 12308,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "leftExpression": {
                                "hexValue": "32",
                                "id": 12306,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "2023:1:61",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_2_by_1",
                                  "typeString": "int_const 2"
                                },
                                "value": "2"
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "**",
                              "rightExpression": {
                                "hexValue": "3332",
                                "id": 12307,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "2026:2:61",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_32_by_1",
                                  "typeString": "int_const 32"
                                },
                                "value": "32"
                              },
                              "src": "2023:5:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_4294967296_by_1",
                                "typeString": "int_const 4294967296"
                              }
                            },
                            "src": "2018:10:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint40",
                              "typeString": "uint40"
                            }
                          },
                          "id": 12310,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "Conditional",
                          "src": "1995:33:61",
                          "trueExpression": {
                            "id": 12304,
                            "name": "_b",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12267,
                            "src": "2013:2:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint40",
                            "typeString": "uint40"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1975:53:61"
                      },
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 12314,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 12312,
                            "name": "aAdjusted",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12287,
                            "src": "2046:9:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<=",
                          "rightExpression": {
                            "id": 12313,
                            "name": "bAdjusted",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12300,
                            "src": "2059:9:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "2046:22:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 12273,
                        "id": 12315,
                        "nodeType": "Return",
                        "src": "2039:29:61"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 12263,
                    "nodeType": "StructuredDocumentation",
                    "src": "1230:423:61",
                    "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": 12317,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "lte",
                  "nameLocation": "1667:3:61",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12270,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12265,
                        "mutability": "mutable",
                        "name": "_a",
                        "nameLocation": "1687:2:61",
                        "nodeType": "VariableDeclaration",
                        "scope": 12317,
                        "src": "1680:9:61",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 12264,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1680:6:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12267,
                        "mutability": "mutable",
                        "name": "_b",
                        "nameLocation": "1706:2:61",
                        "nodeType": "VariableDeclaration",
                        "scope": 12317,
                        "src": "1699:9:61",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 12266,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1699:6:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12269,
                        "mutability": "mutable",
                        "name": "_timestamp",
                        "nameLocation": "1725:10:61",
                        "nodeType": "VariableDeclaration",
                        "scope": 12317,
                        "src": "1718:17:61",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 12268,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1718:6:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1670:71:61"
                  },
                  "returnParameters": {
                    "id": 12273,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12272,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 12317,
                        "src": "1765:4:61",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 12271,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "1765:4:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1764:6:61"
                  },
                  "scope": 12376,
                  "src": "1658:417:61",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 12374,
                    "nodeType": "Block",
                    "src": "2608:310:61",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "id": 12335,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "id": 12331,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 12329,
                              "name": "_a",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12320,
                              "src": "2685:2:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "<=",
                            "rightExpression": {
                              "id": 12330,
                              "name": "_timestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12324,
                              "src": "2691:10:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "src": "2685:16:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "&&",
                          "rightExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "id": 12334,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 12332,
                              "name": "_b",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12322,
                              "src": "2705:2:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "<=",
                            "rightExpression": {
                              "id": 12333,
                              "name": "_timestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12324,
                              "src": "2711:10:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "src": "2705:16:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "src": "2685:36:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 12340,
                        "nodeType": "IfStatement",
                        "src": "2681:56:61",
                        "trueBody": {
                          "expression": {
                            "commonType": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "id": 12338,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 12336,
                              "name": "_a",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12320,
                              "src": "2730:2:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "-",
                            "rightExpression": {
                              "id": 12337,
                              "name": "_b",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12322,
                              "src": "2735:2:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "src": "2730:7:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "functionReturnParameters": 12328,
                          "id": 12339,
                          "nodeType": "Return",
                          "src": "2723:14:61"
                        }
                      },
                      {
                        "assignments": [
                          12342
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 12342,
                            "mutability": "mutable",
                            "name": "aAdjusted",
                            "nameLocation": "2756:9:61",
                            "nodeType": "VariableDeclaration",
                            "scope": 12374,
                            "src": "2748:17:61",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 12341,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "2748:7:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 12353,
                        "initialValue": {
                          "condition": {
                            "commonType": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "id": 12345,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 12343,
                              "name": "_a",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12320,
                              "src": "2768:2:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": ">",
                            "rightExpression": {
                              "id": 12344,
                              "name": "_timestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12324,
                              "src": "2773:10:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "src": "2768:15:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "falseExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint40",
                              "typeString": "uint40"
                            },
                            "id": 12351,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 12347,
                              "name": "_a",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12320,
                              "src": "2791:2:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "+",
                            "rightExpression": {
                              "commonType": {
                                "typeIdentifier": "t_rational_4294967296_by_1",
                                "typeString": "int_const 4294967296"
                              },
                              "id": 12350,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "leftExpression": {
                                "hexValue": "32",
                                "id": 12348,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "2796:1:61",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_2_by_1",
                                  "typeString": "int_const 2"
                                },
                                "value": "2"
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "**",
                              "rightExpression": {
                                "hexValue": "3332",
                                "id": 12349,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "2799:2:61",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_32_by_1",
                                  "typeString": "int_const 32"
                                },
                                "value": "32"
                              },
                              "src": "2796:5:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_4294967296_by_1",
                                "typeString": "int_const 4294967296"
                              }
                            },
                            "src": "2791:10:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint40",
                              "typeString": "uint40"
                            }
                          },
                          "id": 12352,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "Conditional",
                          "src": "2768:33:61",
                          "trueExpression": {
                            "id": 12346,
                            "name": "_a",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12320,
                            "src": "2786:2:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint40",
                            "typeString": "uint40"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2748:53:61"
                      },
                      {
                        "assignments": [
                          12355
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 12355,
                            "mutability": "mutable",
                            "name": "bAdjusted",
                            "nameLocation": "2819:9:61",
                            "nodeType": "VariableDeclaration",
                            "scope": 12374,
                            "src": "2811:17:61",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 12354,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "2811:7:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 12366,
                        "initialValue": {
                          "condition": {
                            "commonType": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "id": 12358,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 12356,
                              "name": "_b",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12322,
                              "src": "2831:2:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": ">",
                            "rightExpression": {
                              "id": 12357,
                              "name": "_timestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12324,
                              "src": "2836:10:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "src": "2831:15:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "falseExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint40",
                              "typeString": "uint40"
                            },
                            "id": 12364,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 12360,
                              "name": "_b",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12322,
                              "src": "2854:2:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "+",
                            "rightExpression": {
                              "commonType": {
                                "typeIdentifier": "t_rational_4294967296_by_1",
                                "typeString": "int_const 4294967296"
                              },
                              "id": 12363,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "leftExpression": {
                                "hexValue": "32",
                                "id": 12361,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "2859:1:61",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_2_by_1",
                                  "typeString": "int_const 2"
                                },
                                "value": "2"
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "**",
                              "rightExpression": {
                                "hexValue": "3332",
                                "id": 12362,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "2862:2:61",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_32_by_1",
                                  "typeString": "int_const 32"
                                },
                                "value": "32"
                              },
                              "src": "2859:5:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_4294967296_by_1",
                                "typeString": "int_const 4294967296"
                              }
                            },
                            "src": "2854:10:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint40",
                              "typeString": "uint40"
                            }
                          },
                          "id": 12365,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "Conditional",
                          "src": "2831:33:61",
                          "trueExpression": {
                            "id": 12359,
                            "name": "_b",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12322,
                            "src": "2849:2:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint40",
                            "typeString": "uint40"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2811:53:61"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 12371,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 12369,
                                "name": "aAdjusted",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12342,
                                "src": "2889:9:61",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "-",
                              "rightExpression": {
                                "id": 12370,
                                "name": "bAdjusted",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12355,
                                "src": "2901:9:61",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "2889:21:61",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 12368,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "2882:6:61",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_uint32_$",
                              "typeString": "type(uint32)"
                            },
                            "typeName": {
                              "id": 12367,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "2882:6:61",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 12372,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2882:29:61",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "functionReturnParameters": 12328,
                        "id": 12373,
                        "nodeType": "Return",
                        "src": "2875:36:61"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 12318,
                    "nodeType": "StructuredDocumentation",
                    "src": "2081:400:61",
                    "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": 12375,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "checkedSub",
                  "nameLocation": "2495:10:61",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12325,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12320,
                        "mutability": "mutable",
                        "name": "_a",
                        "nameLocation": "2522:2:61",
                        "nodeType": "VariableDeclaration",
                        "scope": 12375,
                        "src": "2515:9:61",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 12319,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2515:6:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12322,
                        "mutability": "mutable",
                        "name": "_b",
                        "nameLocation": "2541:2:61",
                        "nodeType": "VariableDeclaration",
                        "scope": 12375,
                        "src": "2534:9:61",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 12321,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2534:6:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12324,
                        "mutability": "mutable",
                        "name": "_timestamp",
                        "nameLocation": "2560:10:61",
                        "nodeType": "VariableDeclaration",
                        "scope": 12375,
                        "src": "2553:17:61",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 12323,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2553:6:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2505:71:61"
                  },
                  "returnParameters": {
                    "id": 12328,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12327,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 12375,
                        "src": "2600:6:61",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 12326,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2600:6:61",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2599:8:61"
                  },
                  "scope": 12376,
                  "src": "2486:432:61",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 12377,
              "src": "344:2576:61",
              "usedErrors": []
            }
          ],
          "src": "37:2884:61"
        },
        "id": 61
      },
      "@pooltogether/v4-core/contracts/libraries/RingBufferLib.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/libraries/RingBufferLib.sol",
          "exportedSymbols": {
            "RingBufferLib": [
              12461
            ]
          },
          "id": 12462,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 12378,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:62"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "library",
              "fullyImplemented": true,
              "id": 12461,
              "linearizedBaseContracts": [
                12461
              ],
              "name": "RingBufferLib",
              "nameLocation": "69:13:62",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "body": {
                    "id": 12392,
                    "nodeType": "Block",
                    "src": "664:45:62",
                    "statements": [
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 12390,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 12388,
                            "name": "_index",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12381,
                            "src": "681:6:62",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "%",
                          "rightExpression": {
                            "id": 12389,
                            "name": "_cardinality",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12383,
                            "src": "690:12:62",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "681:21:62",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 12387,
                        "id": 12391,
                        "nodeType": "Return",
                        "src": "674:28:62"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 12379,
                    "nodeType": "StructuredDocumentation",
                    "src": "89:486:62",
                    "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": 12393,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "wrap",
                  "nameLocation": "589:4:62",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12384,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12381,
                        "mutability": "mutable",
                        "name": "_index",
                        "nameLocation": "602:6:62",
                        "nodeType": "VariableDeclaration",
                        "scope": 12393,
                        "src": "594:14:62",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12380,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "594:7:62",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12383,
                        "mutability": "mutable",
                        "name": "_cardinality",
                        "nameLocation": "618:12:62",
                        "nodeType": "VariableDeclaration",
                        "scope": 12393,
                        "src": "610:20:62",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12382,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "610:7:62",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "593:38:62"
                  },
                  "returnParameters": {
                    "id": 12387,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12386,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 12393,
                        "src": "655:7:62",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12385,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "655:7:62",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "654:9:62"
                  },
                  "scope": 12461,
                  "src": "580:129:62",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 12414,
                    "nodeType": "Block",
                    "src": "1319:75:62",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 12410,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 12408,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 12406,
                                  "name": "_index",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12396,
                                  "src": "1341:6:62",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "+",
                                "rightExpression": {
                                  "id": 12407,
                                  "name": "_cardinality",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12400,
                                  "src": "1350:12:62",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "1341:21:62",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "-",
                              "rightExpression": {
                                "id": 12409,
                                "name": "_amount",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12398,
                                "src": "1365:7:62",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "1341:31:62",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 12411,
                              "name": "_cardinality",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12400,
                              "src": "1374:12:62",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 12405,
                            "name": "wrap",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12393,
                            "src": "1336:4:62",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$",
                              "typeString": "function (uint256,uint256) pure returns (uint256)"
                            }
                          },
                          "id": 12412,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1336:51:62",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 12404,
                        "id": 12413,
                        "nodeType": "Return",
                        "src": "1329:58:62"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 12394,
                    "nodeType": "StructuredDocumentation",
                    "src": "715:466:62",
                    "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": 12415,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "offset",
                  "nameLocation": "1195:6:62",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12401,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12396,
                        "mutability": "mutable",
                        "name": "_index",
                        "nameLocation": "1219:6:62",
                        "nodeType": "VariableDeclaration",
                        "scope": 12415,
                        "src": "1211:14:62",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12395,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1211:7:62",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12398,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "1243:7:62",
                        "nodeType": "VariableDeclaration",
                        "scope": 12415,
                        "src": "1235:15:62",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12397,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1235:7:62",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12400,
                        "mutability": "mutable",
                        "name": "_cardinality",
                        "nameLocation": "1268:12:62",
                        "nodeType": "VariableDeclaration",
                        "scope": 12415,
                        "src": "1260:20:62",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12399,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1260:7:62",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1201:85:62"
                  },
                  "returnParameters": {
                    "id": 12404,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12403,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 12415,
                        "src": "1310:7:62",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12402,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1310:7:62",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1309:9:62"
                  },
                  "scope": 12461,
                  "src": "1186:208:62",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 12441,
                    "nodeType": "Block",
                    "src": "1789:139:62",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 12427,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 12425,
                            "name": "_cardinality",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12420,
                            "src": "1803:12:62",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 12426,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "1819:1:62",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "1803:17:62",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 12431,
                        "nodeType": "IfStatement",
                        "src": "1799:56:62",
                        "trueBody": {
                          "id": 12430,
                          "nodeType": "Block",
                          "src": "1822:33:62",
                          "statements": [
                            {
                              "expression": {
                                "hexValue": "30",
                                "id": 12428,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "1843:1:62",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "functionReturnParameters": 12424,
                              "id": 12429,
                              "nodeType": "Return",
                              "src": "1836:8:62"
                            }
                          ]
                        }
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 12437,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 12435,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 12433,
                                  "name": "_nextIndex",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12418,
                                  "src": "1877:10:62",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "+",
                                "rightExpression": {
                                  "id": 12434,
                                  "name": "_cardinality",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12420,
                                  "src": "1890:12:62",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "1877:25:62",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "-",
                              "rightExpression": {
                                "hexValue": "31",
                                "id": 12436,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "1905:1:62",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_1_by_1",
                                  "typeString": "int_const 1"
                                },
                                "value": "1"
                              },
                              "src": "1877:29:62",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 12438,
                              "name": "_cardinality",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12420,
                              "src": "1908:12:62",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 12432,
                            "name": "wrap",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12393,
                            "src": "1872:4:62",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$",
                              "typeString": "function (uint256,uint256) pure returns (uint256)"
                            }
                          },
                          "id": 12439,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1872:49:62",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 12424,
                        "id": 12440,
                        "nodeType": "Return",
                        "src": "1865:56:62"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 12416,
                    "nodeType": "StructuredDocumentation",
                    "src": "1400:261:62",
                    "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": 12442,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "newestIndex",
                  "nameLocation": "1675:11:62",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12421,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12418,
                        "mutability": "mutable",
                        "name": "_nextIndex",
                        "nameLocation": "1695:10:62",
                        "nodeType": "VariableDeclaration",
                        "scope": 12442,
                        "src": "1687:18:62",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12417,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1687:7:62",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12420,
                        "mutability": "mutable",
                        "name": "_cardinality",
                        "nameLocation": "1715:12:62",
                        "nodeType": "VariableDeclaration",
                        "scope": 12442,
                        "src": "1707:20:62",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12419,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1707:7:62",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1686:42:62"
                  },
                  "returnParameters": {
                    "id": 12424,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12423,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 12442,
                        "src": "1776:7:62",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12422,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1776:7:62",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1775:9:62"
                  },
                  "scope": 12461,
                  "src": "1666:262:62",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 12459,
                    "nodeType": "Block",
                    "src": "2380:54:62",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 12455,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 12453,
                                "name": "_index",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12445,
                                "src": "2402:6:62",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "+",
                              "rightExpression": {
                                "hexValue": "31",
                                "id": 12454,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "2411:1:62",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_1_by_1",
                                  "typeString": "int_const 1"
                                },
                                "value": "1"
                              },
                              "src": "2402:10:62",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 12456,
                              "name": "_cardinality",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12447,
                              "src": "2414:12:62",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 12452,
                            "name": "wrap",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12393,
                            "src": "2397:4:62",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$",
                              "typeString": "function (uint256,uint256) pure returns (uint256)"
                            }
                          },
                          "id": 12457,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2397:30:62",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 12451,
                        "id": 12458,
                        "nodeType": "Return",
                        "src": "2390:37:62"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 12443,
                    "nodeType": "StructuredDocumentation",
                    "src": "1934:324:62",
                    "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": 12460,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "nextIndex",
                  "nameLocation": "2272:9:62",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12448,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12445,
                        "mutability": "mutable",
                        "name": "_index",
                        "nameLocation": "2290:6:62",
                        "nodeType": "VariableDeclaration",
                        "scope": 12460,
                        "src": "2282:14:62",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12444,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2282:7:62",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12447,
                        "mutability": "mutable",
                        "name": "_cardinality",
                        "nameLocation": "2306:12:62",
                        "nodeType": "VariableDeclaration",
                        "scope": 12460,
                        "src": "2298:20:62",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12446,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2298:7:62",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2281:38:62"
                  },
                  "returnParameters": {
                    "id": 12451,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12450,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 12460,
                        "src": "2367:7:62",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12449,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2367:7:62",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2366:9:62"
                  },
                  "scope": 12461,
                  "src": "2263:171:62",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 12462,
              "src": "61:2375:62",
              "usedErrors": []
            }
          ],
          "src": "37:2400:62"
        },
        "id": 62
      },
      "@pooltogether/v4-core/contracts/libraries/TwabLib.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/libraries/TwabLib.sol",
          "exportedSymbols": {
            "ExtendedSafeCastLib": [
              12045
            ],
            "ObservationLib": [
              12204
            ],
            "OverflowSafeComparatorLib": [
              12376
            ],
            "RingBufferLib": [
              12461
            ],
            "SafeCast": [
              3225
            ],
            "TwabLib": [
              13211
            ]
          },
          "id": 13212,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 12463,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:63"
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/libraries/ExtendedSafeCastLib.sol",
              "file": "./ExtendedSafeCastLib.sol",
              "id": 12464,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 13212,
              "sourceUnit": 12046,
              "src": "61:35:63",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/libraries/OverflowSafeComparatorLib.sol",
              "file": "./OverflowSafeComparatorLib.sol",
              "id": 12465,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 13212,
              "sourceUnit": 12377,
              "src": "97:41:63",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/libraries/RingBufferLib.sol",
              "file": "./RingBufferLib.sol",
              "id": 12466,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 13212,
              "sourceUnit": 12462,
              "src": "139:29:63",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/libraries/ObservationLib.sol",
              "file": "./ObservationLib.sol",
              "id": 12467,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 13212,
              "sourceUnit": 12205,
              "src": "169:30:63",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "library",
              "documentation": {
                "id": 12468,
                "nodeType": "StructuredDocumentation",
                "src": "201:732:63",
                "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 buffer) 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 of 1block/15sec)\nguarantees minimum 7.4 years of search history."
              },
              "fullyImplemented": true,
              "id": 13211,
              "linearizedBaseContracts": [
                13211
              ],
              "name": "TwabLib",
              "nameLocation": "942:7:63",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "id": 12471,
                  "libraryName": {
                    "id": 12469,
                    "name": "OverflowSafeComparatorLib",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 12376,
                    "src": "962:25:63"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "956:43:63",
                  "typeName": {
                    "id": 12470,
                    "name": "uint32",
                    "nodeType": "ElementaryTypeName",
                    "src": "992:6:63",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint32",
                      "typeString": "uint32"
                    }
                  }
                },
                {
                  "id": 12474,
                  "libraryName": {
                    "id": 12472,
                    "name": "ExtendedSafeCastLib",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 12045,
                    "src": "1010:19:63"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "1004:38:63",
                  "typeName": {
                    "id": 12473,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "1034:7:63",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  }
                },
                {
                  "constant": true,
                  "documentation": {
                    "id": 12475,
                    "nodeType": "StructuredDocumentation",
                    "src": "1048:971:63",
                    "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 seven year minimum,\nof accurate historical lookups with current estimates of 1 new block\nevery 15 seconds - assuming each block contains 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": 12478,
                  "mutability": "constant",
                  "name": "MAX_CARDINALITY",
                  "nameLocation": "2047:15:63",
                  "nodeType": "VariableDeclaration",
                  "scope": 13211,
                  "src": "2024:49:63",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint24",
                    "typeString": "uint24"
                  },
                  "typeName": {
                    "id": 12476,
                    "name": "uint24",
                    "nodeType": "ElementaryTypeName",
                    "src": "2024:6:63",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint24",
                      "typeString": "uint24"
                    }
                  },
                  "value": {
                    "hexValue": "3136373737323135",
                    "id": 12477,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "number",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "2065:8:63",
                    "typeDescriptions": {
                      "typeIdentifier": "t_rational_16777215_by_1",
                      "typeString": "int_const 16777215"
                    },
                    "value": "16777215"
                  },
                  "visibility": "public"
                },
                {
                  "canonicalName": "TwabLib.AccountDetails",
                  "id": 12485,
                  "members": [
                    {
                      "constant": false,
                      "id": 12480,
                      "mutability": "mutable",
                      "name": "balance",
                      "nameLocation": "2577:7:63",
                      "nodeType": "VariableDeclaration",
                      "scope": 12485,
                      "src": "2569:15:63",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint208",
                        "typeString": "uint208"
                      },
                      "typeName": {
                        "id": 12479,
                        "name": "uint208",
                        "nodeType": "ElementaryTypeName",
                        "src": "2569:7:63",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint208",
                          "typeString": "uint208"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 12482,
                      "mutability": "mutable",
                      "name": "nextTwabIndex",
                      "nameLocation": "2601:13:63",
                      "nodeType": "VariableDeclaration",
                      "scope": 12485,
                      "src": "2594:20:63",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint24",
                        "typeString": "uint24"
                      },
                      "typeName": {
                        "id": 12481,
                        "name": "uint24",
                        "nodeType": "ElementaryTypeName",
                        "src": "2594:6:63",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint24",
                          "typeString": "uint24"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 12484,
                      "mutability": "mutable",
                      "name": "cardinality",
                      "nameLocation": "2631:11:63",
                      "nodeType": "VariableDeclaration",
                      "scope": 12485,
                      "src": "2624:18:63",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint24",
                        "typeString": "uint24"
                      },
                      "typeName": {
                        "id": 12483,
                        "name": "uint24",
                        "nodeType": "ElementaryTypeName",
                        "src": "2624:6:63",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint24",
                          "typeString": "uint24"
                        }
                      },
                      "visibility": "internal"
                    }
                  ],
                  "name": "AccountDetails",
                  "nameLocation": "2544:14:63",
                  "nodeType": "StructDefinition",
                  "scope": 13211,
                  "src": "2537:112:63",
                  "visibility": "public"
                },
                {
                  "canonicalName": "TwabLib.Account",
                  "id": 12494,
                  "members": [
                    {
                      "constant": false,
                      "id": 12488,
                      "mutability": "mutable",
                      "name": "details",
                      "nameLocation": "2862:7:63",
                      "nodeType": "VariableDeclaration",
                      "scope": 12494,
                      "src": "2847:22:63",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_struct$_AccountDetails_$12485_storage_ptr",
                        "typeString": "struct TwabLib.AccountDetails"
                      },
                      "typeName": {
                        "id": 12487,
                        "nodeType": "UserDefinedTypeName",
                        "pathNode": {
                          "id": 12486,
                          "name": "AccountDetails",
                          "nodeType": "IdentifierPath",
                          "referencedDeclaration": 12485,
                          "src": "2847:14:63"
                        },
                        "referencedDeclaration": 12485,
                        "src": "2847:14:63",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_AccountDetails_$12485_storage_ptr",
                          "typeString": "struct TwabLib.AccountDetails"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 12493,
                      "mutability": "mutable",
                      "name": "twabs",
                      "nameLocation": "2923:5:63",
                      "nodeType": "VariableDeclaration",
                      "scope": 12494,
                      "src": "2879:49:63",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr",
                        "typeString": "struct ObservationLib.Observation[16777215]"
                      },
                      "typeName": {
                        "baseType": {
                          "id": 12490,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 12489,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12066,
                            "src": "2879:26:63"
                          },
                          "referencedDeclaration": 12066,
                          "src": "2879:26:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12066_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "id": 12492,
                        "length": {
                          "id": 12491,
                          "name": "MAX_CARDINALITY",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 12478,
                          "src": "2906:15:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "nodeType": "ArrayTypeName",
                        "src": "2879:43:63",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr",
                          "typeString": "struct ObservationLib.Observation[16777215]"
                        }
                      },
                      "visibility": "internal"
                    }
                  ],
                  "name": "Account",
                  "nameLocation": "2829:7:63",
                  "nodeType": "StructDefinition",
                  "scope": 13211,
                  "src": "2822:113:63",
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 12540,
                    "nodeType": "Block",
                    "src": "3623:239:63",
                    "statements": [
                      {
                        "assignments": [
                          12515
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 12515,
                            "mutability": "mutable",
                            "name": "_accountDetails",
                            "nameLocation": "3655:15:63",
                            "nodeType": "VariableDeclaration",
                            "scope": 12540,
                            "src": "3633:37:63",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                              "typeString": "struct TwabLib.AccountDetails"
                            },
                            "typeName": {
                              "id": 12514,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 12513,
                                "name": "AccountDetails",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12485,
                                "src": "3633:14:63"
                              },
                              "referencedDeclaration": 12485,
                              "src": "3633:14:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12485_storage_ptr",
                                "typeString": "struct TwabLib.AccountDetails"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 12518,
                        "initialValue": {
                          "expression": {
                            "id": 12516,
                            "name": "_account",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12498,
                            "src": "3673:8:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Account_$12494_storage_ptr",
                              "typeString": "struct TwabLib.Account storage pointer"
                            }
                          },
                          "id": 12517,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "details",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 12488,
                          "src": "3673:16:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12485_storage",
                            "typeString": "struct TwabLib.AccountDetails storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3633:56:63"
                      },
                      {
                        "expression": {
                          "id": 12529,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "components": [
                              {
                                "id": 12519,
                                "name": "accountDetails",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12506,
                                "src": "3700:14:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                                  "typeString": "struct TwabLib.AccountDetails memory"
                                }
                              },
                              {
                                "id": 12520,
                                "name": "twab",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12509,
                                "src": "3716:4:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                  "typeString": "struct ObservationLib.Observation memory"
                                }
                              },
                              {
                                "id": 12521,
                                "name": "isNew",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12511,
                                "src": "3722:5:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              }
                            ],
                            "id": 12522,
                            "isConstant": false,
                            "isInlineArray": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "TupleExpression",
                            "src": "3699:29:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_tuple$_t_struct$_AccountDetails_$12485_memory_ptr_$_t_struct$_Observation_$12066_memory_ptr_$_t_bool_$",
                              "typeString": "tuple(struct TwabLib.AccountDetails memory,struct ObservationLib.Observation memory,bool)"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "expression": {
                                  "id": 12524,
                                  "name": "_account",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12498,
                                  "src": "3741:8:63",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Account_$12494_storage_ptr",
                                    "typeString": "struct TwabLib.Account storage pointer"
                                  }
                                },
                                "id": 12525,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "twabs",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 12493,
                                "src": "3741:14:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage",
                                  "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                                }
                              },
                              {
                                "id": 12526,
                                "name": "_accountDetails",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12515,
                                "src": "3757:15:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                                  "typeString": "struct TwabLib.AccountDetails memory"
                                }
                              },
                              {
                                "id": 12527,
                                "name": "_currentTime",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12502,
                                "src": "3774:12:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage",
                                  "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                                },
                                {
                                  "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                                  "typeString": "struct TwabLib.AccountDetails memory"
                                },
                                {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              ],
                              "id": 12523,
                              "name": "_nextTwab",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13171,
                              "src": "3731:9:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_nonpayable$_t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr_$_t_struct$_AccountDetails_$12485_memory_ptr_$_t_uint32_$returns$_t_struct$_AccountDetails_$12485_memory_ptr_$_t_struct$_Observation_$12066_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": 12528,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "3731:56:63",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_tuple$_t_struct$_AccountDetails_$12485_memory_ptr_$_t_struct$_Observation_$12066_memory_ptr_$_t_bool_$",
                              "typeString": "tuple(struct TwabLib.AccountDetails memory,struct ObservationLib.Observation memory,bool)"
                            }
                          },
                          "src": "3699:88:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 12530,
                        "nodeType": "ExpressionStatement",
                        "src": "3699:88:63"
                      },
                      {
                        "expression": {
                          "id": 12538,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "expression": {
                              "id": 12531,
                              "name": "accountDetails",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12506,
                              "src": "3797:14:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              }
                            },
                            "id": 12533,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "memberName": "balance",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12480,
                            "src": "3797:22:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint208",
                              "typeString": "uint208"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "commonType": {
                              "typeIdentifier": "t_uint208",
                              "typeString": "uint208"
                            },
                            "id": 12537,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "expression": {
                                "id": 12534,
                                "name": "_accountDetails",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12515,
                                "src": "3822:15:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                                  "typeString": "struct TwabLib.AccountDetails memory"
                                }
                              },
                              "id": 12535,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "balance",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12480,
                              "src": "3822:23:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint208",
                                "typeString": "uint208"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "+",
                            "rightExpression": {
                              "id": 12536,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12500,
                              "src": "3848:7:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint208",
                                "typeString": "uint208"
                              }
                            },
                            "src": "3822:33:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint208",
                              "typeString": "uint208"
                            }
                          },
                          "src": "3797:58:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint208",
                            "typeString": "uint208"
                          }
                        },
                        "id": 12539,
                        "nodeType": "ExpressionStatement",
                        "src": "3797:58:63"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 12495,
                    "nodeType": "StructuredDocumentation",
                    "src": "2941:384:63",
                    "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": 12541,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "increaseBalance",
                  "nameLocation": "3339:15:63",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12503,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12498,
                        "mutability": "mutable",
                        "name": "_account",
                        "nameLocation": "3380:8:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 12541,
                        "src": "3364:24:63",
                        "stateVariable": false,
                        "storageLocation": "storage",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Account_$12494_storage_ptr",
                          "typeString": "struct TwabLib.Account"
                        },
                        "typeName": {
                          "id": 12497,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 12496,
                            "name": "Account",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12494,
                            "src": "3364:7:63"
                          },
                          "referencedDeclaration": 12494,
                          "src": "3364:7:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Account_$12494_storage_ptr",
                            "typeString": "struct TwabLib.Account"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12500,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "3406:7:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 12541,
                        "src": "3398:15:63",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint208",
                          "typeString": "uint208"
                        },
                        "typeName": {
                          "id": 12499,
                          "name": "uint208",
                          "nodeType": "ElementaryTypeName",
                          "src": "3398:7:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint208",
                            "typeString": "uint208"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12502,
                        "mutability": "mutable",
                        "name": "_currentTime",
                        "nameLocation": "3430:12:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 12541,
                        "src": "3423:19:63",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 12501,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "3423:6:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3354:94:63"
                  },
                  "returnParameters": {
                    "id": 12512,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12506,
                        "mutability": "mutable",
                        "name": "accountDetails",
                        "nameLocation": "3518:14:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 12541,
                        "src": "3496:36:63",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                          "typeString": "struct TwabLib.AccountDetails"
                        },
                        "typeName": {
                          "id": 12505,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 12504,
                            "name": "AccountDetails",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12485,
                            "src": "3496:14:63"
                          },
                          "referencedDeclaration": 12485,
                          "src": "3496:14:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12485_storage_ptr",
                            "typeString": "struct TwabLib.AccountDetails"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12509,
                        "mutability": "mutable",
                        "name": "twab",
                        "nameLocation": "3580:4:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 12541,
                        "src": "3546:38:63",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 12508,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 12507,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12066,
                            "src": "3546:26:63"
                          },
                          "referencedDeclaration": 12066,
                          "src": "3546:26:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12066_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12511,
                        "mutability": "mutable",
                        "name": "isNew",
                        "nameLocation": "3603:5:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 12541,
                        "src": "3598:10:63",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 12510,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "3598:4:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3482:136:63"
                  },
                  "scope": 13211,
                  "src": "3330:532:63",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 12595,
                    "nodeType": "Block",
                    "src": "4829:319:63",
                    "statements": [
                      {
                        "assignments": [
                          12564
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 12564,
                            "mutability": "mutable",
                            "name": "_accountDetails",
                            "nameLocation": "4861:15:63",
                            "nodeType": "VariableDeclaration",
                            "scope": 12595,
                            "src": "4839:37:63",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                              "typeString": "struct TwabLib.AccountDetails"
                            },
                            "typeName": {
                              "id": 12563,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 12562,
                                "name": "AccountDetails",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12485,
                                "src": "4839:14:63"
                              },
                              "referencedDeclaration": 12485,
                              "src": "4839:14:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12485_storage_ptr",
                                "typeString": "struct TwabLib.AccountDetails"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 12567,
                        "initialValue": {
                          "expression": {
                            "id": 12565,
                            "name": "_account",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12545,
                            "src": "4879:8:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Account_$12494_storage_ptr",
                              "typeString": "struct TwabLib.Account storage pointer"
                            }
                          },
                          "id": 12566,
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "details",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 12488,
                          "src": "4879:16:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12485_storage",
                            "typeString": "struct TwabLib.AccountDetails storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4839:56:63"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint208",
                                "typeString": "uint208"
                              },
                              "id": 12572,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 12569,
                                  "name": "_accountDetails",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12564,
                                  "src": "4914:15:63",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                                    "typeString": "struct TwabLib.AccountDetails memory"
                                  }
                                },
                                "id": 12570,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "balance",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 12480,
                                "src": "4914:23:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint208",
                                  "typeString": "uint208"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">=",
                              "rightExpression": {
                                "id": 12571,
                                "name": "_amount",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12547,
                                "src": "4941:7:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint208",
                                  "typeString": "uint208"
                                }
                              },
                              "src": "4914:34:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "id": 12573,
                              "name": "_revertMessage",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12549,
                              "src": "4950:14:63",
                              "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": 12568,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "4906:7:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 12574,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4906:59:63",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 12575,
                        "nodeType": "ExpressionStatement",
                        "src": "4906:59:63"
                      },
                      {
                        "expression": {
                          "id": 12586,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "components": [
                              {
                                "id": 12576,
                                "name": "accountDetails",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12555,
                                "src": "4977:14:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                                  "typeString": "struct TwabLib.AccountDetails memory"
                                }
                              },
                              {
                                "id": 12577,
                                "name": "twab",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12558,
                                "src": "4993:4:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                  "typeString": "struct ObservationLib.Observation memory"
                                }
                              },
                              {
                                "id": 12578,
                                "name": "isNew",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12560,
                                "src": "4999:5:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              }
                            ],
                            "id": 12579,
                            "isConstant": false,
                            "isInlineArray": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "TupleExpression",
                            "src": "4976:29:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_tuple$_t_struct$_AccountDetails_$12485_memory_ptr_$_t_struct$_Observation_$12066_memory_ptr_$_t_bool_$",
                              "typeString": "tuple(struct TwabLib.AccountDetails memory,struct ObservationLib.Observation memory,bool)"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "expression": {
                                  "id": 12581,
                                  "name": "_account",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12545,
                                  "src": "5018:8:63",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Account_$12494_storage_ptr",
                                    "typeString": "struct TwabLib.Account storage pointer"
                                  }
                                },
                                "id": 12582,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "twabs",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 12493,
                                "src": "5018:14:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage",
                                  "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                                }
                              },
                              {
                                "id": 12583,
                                "name": "_accountDetails",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12564,
                                "src": "5034:15:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                                  "typeString": "struct TwabLib.AccountDetails memory"
                                }
                              },
                              {
                                "id": 12584,
                                "name": "_currentTime",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12551,
                                "src": "5051:12:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage",
                                  "typeString": "struct ObservationLib.Observation storage ref[16777215] storage ref"
                                },
                                {
                                  "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                                  "typeString": "struct TwabLib.AccountDetails memory"
                                },
                                {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              ],
                              "id": 12580,
                              "name": "_nextTwab",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13171,
                              "src": "5008:9:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_nonpayable$_t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr_$_t_struct$_AccountDetails_$12485_memory_ptr_$_t_uint32_$returns$_t_struct$_AccountDetails_$12485_memory_ptr_$_t_struct$_Observation_$12066_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": 12585,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "5008:56:63",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_tuple$_t_struct$_AccountDetails_$12485_memory_ptr_$_t_struct$_Observation_$12066_memory_ptr_$_t_bool_$",
                              "typeString": "tuple(struct TwabLib.AccountDetails memory,struct ObservationLib.Observation memory,bool)"
                            }
                          },
                          "src": "4976:88:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 12587,
                        "nodeType": "ExpressionStatement",
                        "src": "4976:88:63"
                      },
                      {
                        "id": 12594,
                        "nodeType": "UncheckedBlock",
                        "src": "5074:68:63",
                        "statements": [
                          {
                            "expression": {
                              "id": 12592,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftHandSide": {
                                "expression": {
                                  "id": 12588,
                                  "name": "accountDetails",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12555,
                                  "src": "5098:14:63",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                                    "typeString": "struct TwabLib.AccountDetails memory"
                                  }
                                },
                                "id": 12590,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": true,
                                "memberName": "balance",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 12480,
                                "src": "5098:22:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint208",
                                  "typeString": "uint208"
                                }
                              },
                              "nodeType": "Assignment",
                              "operator": "-=",
                              "rightHandSide": {
                                "id": 12591,
                                "name": "_amount",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12547,
                                "src": "5124:7:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint208",
                                  "typeString": "uint208"
                                }
                              },
                              "src": "5098:33:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint208",
                                "typeString": "uint208"
                              }
                            },
                            "id": 12593,
                            "nodeType": "ExpressionStatement",
                            "src": "5098:33:63"
                          }
                        ]
                      }
                    ]
                  },
                  "documentation": {
                    "id": 12542,
                    "nodeType": "StructuredDocumentation",
                    "src": "3868:625:63",
                    "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": 12596,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "decreaseBalance",
                  "nameLocation": "4507:15:63",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12552,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12545,
                        "mutability": "mutable",
                        "name": "_account",
                        "nameLocation": "4548:8:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 12596,
                        "src": "4532:24:63",
                        "stateVariable": false,
                        "storageLocation": "storage",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Account_$12494_storage_ptr",
                          "typeString": "struct TwabLib.Account"
                        },
                        "typeName": {
                          "id": 12544,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 12543,
                            "name": "Account",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12494,
                            "src": "4532:7:63"
                          },
                          "referencedDeclaration": 12494,
                          "src": "4532:7:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Account_$12494_storage_ptr",
                            "typeString": "struct TwabLib.Account"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12547,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "4574:7:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 12596,
                        "src": "4566:15:63",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint208",
                          "typeString": "uint208"
                        },
                        "typeName": {
                          "id": 12546,
                          "name": "uint208",
                          "nodeType": "ElementaryTypeName",
                          "src": "4566:7:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint208",
                            "typeString": "uint208"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12549,
                        "mutability": "mutable",
                        "name": "_revertMessage",
                        "nameLocation": "4605:14:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 12596,
                        "src": "4591:28:63",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 12548,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "4591:6:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12551,
                        "mutability": "mutable",
                        "name": "_currentTime",
                        "nameLocation": "4636:12:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 12596,
                        "src": "4629:19:63",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 12550,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "4629:6:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4522:132:63"
                  },
                  "returnParameters": {
                    "id": 12561,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12555,
                        "mutability": "mutable",
                        "name": "accountDetails",
                        "nameLocation": "4724:14:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 12596,
                        "src": "4702:36:63",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                          "typeString": "struct TwabLib.AccountDetails"
                        },
                        "typeName": {
                          "id": 12554,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 12553,
                            "name": "AccountDetails",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12485,
                            "src": "4702:14:63"
                          },
                          "referencedDeclaration": 12485,
                          "src": "4702:14:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12485_storage_ptr",
                            "typeString": "struct TwabLib.AccountDetails"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12558,
                        "mutability": "mutable",
                        "name": "twab",
                        "nameLocation": "4786:4:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 12596,
                        "src": "4752:38:63",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 12557,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 12556,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12066,
                            "src": "4752:26:63"
                          },
                          "referencedDeclaration": 12066,
                          "src": "4752:26:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12066_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12560,
                        "mutability": "mutable",
                        "name": "isNew",
                        "nameLocation": "4809:5:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 12596,
                        "src": "4804:10:63",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 12559,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "4804:4:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4688:136:63"
                  },
                  "scope": 13211,
                  "src": "4498:650:63",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 12633,
                    "nodeType": "Block",
                    "src": "6160:198:63",
                    "statements": [
                      {
                        "assignments": [
                          12617
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 12617,
                            "mutability": "mutable",
                            "name": "endTime",
                            "nameLocation": "6177:7:63",
                            "nodeType": "VariableDeclaration",
                            "scope": 12633,
                            "src": "6170:14:63",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "typeName": {
                              "id": 12616,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "6170:6:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 12624,
                        "initialValue": {
                          "condition": {
                            "commonType": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "id": 12620,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 12618,
                              "name": "_endTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12609,
                              "src": "6187:8:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": ">",
                            "rightExpression": {
                              "id": 12619,
                              "name": "_currentTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12611,
                              "src": "6198:12:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "src": "6187:23:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "falseExpression": {
                            "id": 12622,
                            "name": "_endTime",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12609,
                            "src": "6228:8:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "id": 12623,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "Conditional",
                          "src": "6187:49:63",
                          "trueExpression": {
                            "id": 12621,
                            "name": "_currentTime",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12611,
                            "src": "6213:12:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "6170:66:63"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 12626,
                              "name": "_twabs",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12602,
                              "src": "6292:6:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                              }
                            },
                            {
                              "id": 12627,
                              "name": "_accountDetails",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12605,
                              "src": "6300:15:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              }
                            },
                            {
                              "id": 12628,
                              "name": "_startTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12607,
                              "src": "6317:10:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 12629,
                              "name": "endTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12617,
                              "src": "6329:7:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 12630,
                              "name": "_currentTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12611,
                              "src": "6338:12:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                              },
                              {
                                "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "id": 12625,
                            "name": "_getAverageBalanceBetween",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12839,
                            "src": "6266:25:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr_$_t_struct$_AccountDetails_$12485_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": 12631,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6266:85:63",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 12615,
                        "id": 12632,
                        "nodeType": "Return",
                        "src": "6247:104:63"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 12597,
                    "nodeType": "StructuredDocumentation",
                    "src": "5154:733:63",
                    "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": 12634,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getAverageBalanceBetween",
                  "nameLocation": "5901:24:63",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12612,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12602,
                        "mutability": "mutable",
                        "name": "_twabs",
                        "nameLocation": "5987:6:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 12634,
                        "src": "5935:58:63",
                        "stateVariable": false,
                        "storageLocation": "storage",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr",
                          "typeString": "struct ObservationLib.Observation[16777215]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 12599,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 12598,
                              "name": "ObservationLib.Observation",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 12066,
                              "src": "5935:26:63"
                            },
                            "referencedDeclaration": 12066,
                            "src": "5935:26:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12066_storage_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            }
                          },
                          "id": 12601,
                          "length": {
                            "id": 12600,
                            "name": "MAX_CARDINALITY",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12478,
                            "src": "5962:15:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "nodeType": "ArrayTypeName",
                          "src": "5935:43:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr",
                            "typeString": "struct ObservationLib.Observation[16777215]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12605,
                        "mutability": "mutable",
                        "name": "_accountDetails",
                        "nameLocation": "6025:15:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 12634,
                        "src": "6003:37:63",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                          "typeString": "struct TwabLib.AccountDetails"
                        },
                        "typeName": {
                          "id": 12604,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 12603,
                            "name": "AccountDetails",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12485,
                            "src": "6003:14:63"
                          },
                          "referencedDeclaration": 12485,
                          "src": "6003:14:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12485_storage_ptr",
                            "typeString": "struct TwabLib.AccountDetails"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12607,
                        "mutability": "mutable",
                        "name": "_startTime",
                        "nameLocation": "6057:10:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 12634,
                        "src": "6050:17:63",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 12606,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "6050:6:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12609,
                        "mutability": "mutable",
                        "name": "_endTime",
                        "nameLocation": "6084:8:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 12634,
                        "src": "6077:15:63",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 12608,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "6077:6:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12611,
                        "mutability": "mutable",
                        "name": "_currentTime",
                        "nameLocation": "6109:12:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 12634,
                        "src": "6102:19:63",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 12610,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "6102:6:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5925:202:63"
                  },
                  "returnParameters": {
                    "id": 12615,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12614,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 12634,
                        "src": "6151:7:63",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12613,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "6151:7:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6150:9:63"
                  },
                  "scope": 13211,
                  "src": "5892:466:63",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 12678,
                    "nodeType": "Block",
                    "src": "6836:287:63",
                    "statements": [
                      {
                        "expression": {
                          "id": 12654,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 12651,
                            "name": "index",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12646,
                            "src": "6846:5:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "expression": {
                              "id": 12652,
                              "name": "_accountDetails",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12643,
                              "src": "6854:15:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              }
                            },
                            "id": 12653,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "nextTwabIndex",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12482,
                            "src": "6854:29:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "src": "6846:37:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "id": 12655,
                        "nodeType": "ExpressionStatement",
                        "src": "6846:37:63"
                      },
                      {
                        "expression": {
                          "id": 12660,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 12656,
                            "name": "twab",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12649,
                            "src": "6893:4:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                              "typeString": "struct ObservationLib.Observation memory"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "baseExpression": {
                              "id": 12657,
                              "name": "_twabs",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12640,
                              "src": "6900:6:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                              }
                            },
                            "id": 12659,
                            "indexExpression": {
                              "id": 12658,
                              "name": "index",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12646,
                              "src": "6907:5:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "IndexAccess",
                            "src": "6900:13:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12066_storage",
                              "typeString": "struct ObservationLib.Observation storage ref"
                            }
                          },
                          "src": "6893:20:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                            "typeString": "struct ObservationLib.Observation memory"
                          }
                        },
                        "id": 12661,
                        "nodeType": "ExpressionStatement",
                        "src": "6893:20:63"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          },
                          "id": 12665,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 12662,
                              "name": "twab",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12649,
                              "src": "7032:4:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            "id": 12663,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "timestamp",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12065,
                            "src": "7032:14:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 12664,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "7050:1:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "7032:19:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 12677,
                        "nodeType": "IfStatement",
                        "src": "7028:89:63",
                        "trueBody": {
                          "id": 12676,
                          "nodeType": "Block",
                          "src": "7053:64:63",
                          "statements": [
                            {
                              "expression": {
                                "id": 12668,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 12666,
                                  "name": "index",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12646,
                                  "src": "7067:5:63",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint24",
                                    "typeString": "uint24"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "hexValue": "30",
                                  "id": 12667,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "7075:1:63",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_0_by_1",
                                    "typeString": "int_const 0"
                                  },
                                  "value": "0"
                                },
                                "src": "7067:9:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint24",
                                  "typeString": "uint24"
                                }
                              },
                              "id": 12669,
                              "nodeType": "ExpressionStatement",
                              "src": "7067:9:63"
                            },
                            {
                              "expression": {
                                "id": 12674,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 12670,
                                  "name": "twab",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12649,
                                  "src": "7090:4:63",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                    "typeString": "struct ObservationLib.Observation memory"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "baseExpression": {
                                    "id": 12671,
                                    "name": "_twabs",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 12640,
                                    "src": "7097:6:63",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr",
                                      "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                                    }
                                  },
                                  "id": 12673,
                                  "indexExpression": {
                                    "hexValue": "30",
                                    "id": 12672,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "7104:1:63",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "IndexAccess",
                                  "src": "7097:9:63",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$12066_storage",
                                    "typeString": "struct ObservationLib.Observation storage ref"
                                  }
                                },
                                "src": "7090:16:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                  "typeString": "struct ObservationLib.Observation memory"
                                }
                              },
                              "id": 12675,
                              "nodeType": "ExpressionStatement",
                              "src": "7090:16:63"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 12635,
                    "nodeType": "StructuredDocumentation",
                    "src": "6364:249:63",
                    "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": 12679,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "oldestTwab",
                  "nameLocation": "6627:10:63",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12644,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12640,
                        "mutability": "mutable",
                        "name": "_twabs",
                        "nameLocation": "6699:6:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 12679,
                        "src": "6647:58:63",
                        "stateVariable": false,
                        "storageLocation": "storage",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr",
                          "typeString": "struct ObservationLib.Observation[16777215]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 12637,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 12636,
                              "name": "ObservationLib.Observation",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 12066,
                              "src": "6647:26:63"
                            },
                            "referencedDeclaration": 12066,
                            "src": "6647:26:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12066_storage_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            }
                          },
                          "id": 12639,
                          "length": {
                            "id": 12638,
                            "name": "MAX_CARDINALITY",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12478,
                            "src": "6674:15:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "nodeType": "ArrayTypeName",
                          "src": "6647:43:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr",
                            "typeString": "struct ObservationLib.Observation[16777215]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12643,
                        "mutability": "mutable",
                        "name": "_accountDetails",
                        "nameLocation": "6737:15:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 12679,
                        "src": "6715:37:63",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                          "typeString": "struct TwabLib.AccountDetails"
                        },
                        "typeName": {
                          "id": 12642,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 12641,
                            "name": "AccountDetails",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12485,
                            "src": "6715:14:63"
                          },
                          "referencedDeclaration": 12485,
                          "src": "6715:14:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12485_storage_ptr",
                            "typeString": "struct TwabLib.AccountDetails"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6637:121:63"
                  },
                  "returnParameters": {
                    "id": 12650,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12646,
                        "mutability": "mutable",
                        "name": "index",
                        "nameLocation": "6789:5:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 12679,
                        "src": "6782:12:63",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint24",
                          "typeString": "uint24"
                        },
                        "typeName": {
                          "id": 12645,
                          "name": "uint24",
                          "nodeType": "ElementaryTypeName",
                          "src": "6782:6:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12649,
                        "mutability": "mutable",
                        "name": "twab",
                        "nameLocation": "6830:4:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 12679,
                        "src": "6796:38:63",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 12648,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 12647,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12066,
                            "src": "6796:26:63"
                          },
                          "referencedDeclaration": 12066,
                          "src": "6796:26:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12066_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6781:54:63"
                  },
                  "scope": 13211,
                  "src": "6618:505:63",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 12714,
                    "nodeType": "Block",
                    "src": "7601:136:63",
                    "statements": [
                      {
                        "expression": {
                          "id": 12706,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 12696,
                            "name": "index",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12691,
                            "src": "7611:5:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "arguments": [
                                  {
                                    "expression": {
                                      "id": 12701,
                                      "name": "_accountDetails",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 12688,
                                      "src": "7652:15:63",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                                        "typeString": "struct TwabLib.AccountDetails memory"
                                      }
                                    },
                                    "id": 12702,
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "nextTwabIndex",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 12482,
                                    "src": "7652:29:63",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint24",
                                      "typeString": "uint24"
                                    }
                                  },
                                  {
                                    "id": 12703,
                                    "name": "MAX_CARDINALITY",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 12478,
                                    "src": "7683:15:63",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint24",
                                      "typeString": "uint24"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_uint24",
                                      "typeString": "uint24"
                                    },
                                    {
                                      "typeIdentifier": "t_uint24",
                                      "typeString": "uint24"
                                    }
                                  ],
                                  "expression": {
                                    "id": 12699,
                                    "name": "RingBufferLib",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 12461,
                                    "src": "7626:13:63",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_contract$_RingBufferLib_$12461_$",
                                      "typeString": "type(library RingBufferLib)"
                                    }
                                  },
                                  "id": 12700,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "newestIndex",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 12442,
                                  "src": "7626:25:63",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$",
                                    "typeString": "function (uint256,uint256) pure returns (uint256)"
                                  }
                                },
                                "id": 12704,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "7626:73:63",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              ],
                              "id": 12698,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "nodeType": "ElementaryTypeNameExpression",
                              "src": "7619:6:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_uint24_$",
                                "typeString": "type(uint24)"
                              },
                              "typeName": {
                                "id": 12697,
                                "name": "uint24",
                                "nodeType": "ElementaryTypeName",
                                "src": "7619:6:63",
                                "typeDescriptions": {}
                              }
                            },
                            "id": 12705,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "typeConversion",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "7619:81:63",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "src": "7611:89:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "id": 12707,
                        "nodeType": "ExpressionStatement",
                        "src": "7611:89:63"
                      },
                      {
                        "expression": {
                          "id": 12712,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 12708,
                            "name": "twab",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12694,
                            "src": "7710:4:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                              "typeString": "struct ObservationLib.Observation memory"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "baseExpression": {
                              "id": 12709,
                              "name": "_twabs",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12685,
                              "src": "7717:6:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                              }
                            },
                            "id": 12711,
                            "indexExpression": {
                              "id": 12710,
                              "name": "index",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12691,
                              "src": "7724:5:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "IndexAccess",
                            "src": "7717:13:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12066_storage",
                              "typeString": "struct ObservationLib.Observation storage ref"
                            }
                          },
                          "src": "7710:20:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                            "typeString": "struct ObservationLib.Observation memory"
                          }
                        },
                        "id": 12713,
                        "nodeType": "ExpressionStatement",
                        "src": "7710:20:63"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 12680,
                    "nodeType": "StructuredDocumentation",
                    "src": "7129:249:63",
                    "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": 12715,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "newestTwab",
                  "nameLocation": "7392:10:63",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12689,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12685,
                        "mutability": "mutable",
                        "name": "_twabs",
                        "nameLocation": "7464:6:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 12715,
                        "src": "7412:58:63",
                        "stateVariable": false,
                        "storageLocation": "storage",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr",
                          "typeString": "struct ObservationLib.Observation[16777215]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 12682,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 12681,
                              "name": "ObservationLib.Observation",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 12066,
                              "src": "7412:26:63"
                            },
                            "referencedDeclaration": 12066,
                            "src": "7412:26:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12066_storage_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            }
                          },
                          "id": 12684,
                          "length": {
                            "id": 12683,
                            "name": "MAX_CARDINALITY",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12478,
                            "src": "7439:15:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "nodeType": "ArrayTypeName",
                          "src": "7412:43:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr",
                            "typeString": "struct ObservationLib.Observation[16777215]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12688,
                        "mutability": "mutable",
                        "name": "_accountDetails",
                        "nameLocation": "7502:15:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 12715,
                        "src": "7480:37:63",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                          "typeString": "struct TwabLib.AccountDetails"
                        },
                        "typeName": {
                          "id": 12687,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 12686,
                            "name": "AccountDetails",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12485,
                            "src": "7480:14:63"
                          },
                          "referencedDeclaration": 12485,
                          "src": "7480:14:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12485_storage_ptr",
                            "typeString": "struct TwabLib.AccountDetails"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7402:121:63"
                  },
                  "returnParameters": {
                    "id": 12695,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12691,
                        "mutability": "mutable",
                        "name": "index",
                        "nameLocation": "7554:5:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 12715,
                        "src": "7547:12:63",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint24",
                          "typeString": "uint24"
                        },
                        "typeName": {
                          "id": 12690,
                          "name": "uint24",
                          "nodeType": "ElementaryTypeName",
                          "src": "7547:6:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12694,
                        "mutability": "mutable",
                        "name": "twab",
                        "nameLocation": "7595:4:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 12715,
                        "src": "7561:38:63",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 12693,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 12692,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12066,
                            "src": "7561:26:63"
                          },
                          "referencedDeclaration": 12066,
                          "src": "7561:26:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12066_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7546:54:63"
                  },
                  "scope": 13211,
                  "src": "7383:354:63",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 12749,
                    "nodeType": "Block",
                    "src": "8271:177:63",
                    "statements": [
                      {
                        "assignments": [
                          12734
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 12734,
                            "mutability": "mutable",
                            "name": "timeToTarget",
                            "nameLocation": "8288:12:63",
                            "nodeType": "VariableDeclaration",
                            "scope": 12749,
                            "src": "8281:19:63",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "typeName": {
                              "id": 12733,
                              "name": "uint32",
                              "nodeType": "ElementaryTypeName",
                              "src": "8281:6:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 12741,
                        "initialValue": {
                          "condition": {
                            "commonType": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            },
                            "id": 12737,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 12735,
                              "name": "_targetTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12726,
                              "src": "8303:11:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": ">",
                            "rightExpression": {
                              "id": 12736,
                              "name": "_currentTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12728,
                              "src": "8317:12:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "src": "8303:26:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "falseExpression": {
                            "id": 12739,
                            "name": "_targetTime",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12726,
                            "src": "8347:11:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "id": 12740,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "Conditional",
                          "src": "8303:55:63",
                          "trueExpression": {
                            "id": 12738,
                            "name": "_currentTime",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12728,
                            "src": "8332:12:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "8281:77:63"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 12743,
                              "name": "_twabs",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12721,
                              "src": "8389:6:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                              }
                            },
                            {
                              "id": 12744,
                              "name": "_accountDetails",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12724,
                              "src": "8397:15:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              }
                            },
                            {
                              "id": 12745,
                              "name": "timeToTarget",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12734,
                              "src": "8414:12:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 12746,
                              "name": "_currentTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12728,
                              "src": "8428:12:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                              },
                              {
                                "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "id": 12742,
                            "name": "_getBalanceAt",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12946,
                            "src": "8375:13:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr_$_t_struct$_AccountDetails_$12485_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": 12747,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8375:66:63",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 12732,
                        "id": 12748,
                        "nodeType": "Return",
                        "src": "8368:73:63"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 12716,
                    "nodeType": "StructuredDocumentation",
                    "src": "7743:291:63",
                    "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": 12750,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getBalanceAt",
                  "nameLocation": "8048:12:63",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12729,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12721,
                        "mutability": "mutable",
                        "name": "_twabs",
                        "nameLocation": "8122:6:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 12750,
                        "src": "8070:58:63",
                        "stateVariable": false,
                        "storageLocation": "storage",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr",
                          "typeString": "struct ObservationLib.Observation[16777215]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 12718,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 12717,
                              "name": "ObservationLib.Observation",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 12066,
                              "src": "8070:26:63"
                            },
                            "referencedDeclaration": 12066,
                            "src": "8070:26:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12066_storage_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            }
                          },
                          "id": 12720,
                          "length": {
                            "id": 12719,
                            "name": "MAX_CARDINALITY",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12478,
                            "src": "8097:15:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "nodeType": "ArrayTypeName",
                          "src": "8070:43:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr",
                            "typeString": "struct ObservationLib.Observation[16777215]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12724,
                        "mutability": "mutable",
                        "name": "_accountDetails",
                        "nameLocation": "8160:15:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 12750,
                        "src": "8138:37:63",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                          "typeString": "struct TwabLib.AccountDetails"
                        },
                        "typeName": {
                          "id": 12723,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 12722,
                            "name": "AccountDetails",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12485,
                            "src": "8138:14:63"
                          },
                          "referencedDeclaration": 12485,
                          "src": "8138:14:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12485_storage_ptr",
                            "typeString": "struct TwabLib.AccountDetails"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12726,
                        "mutability": "mutable",
                        "name": "_targetTime",
                        "nameLocation": "8192:11:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 12750,
                        "src": "8185:18:63",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 12725,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "8185:6:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12728,
                        "mutability": "mutable",
                        "name": "_currentTime",
                        "nameLocation": "8220:12:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 12750,
                        "src": "8213:19:63",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 12727,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "8213:6:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8060:178:63"
                  },
                  "returnParameters": {
                    "id": 12732,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12731,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 12750,
                        "src": "8262:7:63",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12730,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "8262:7:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8261:9:63"
                  },
                  "scope": 13211,
                  "src": "8039:409:63",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 12838,
                    "nodeType": "Block",
                    "src": "9002:1047:63",
                    "statements": [
                      {
                        "assignments": [
                          12771,
                          12774
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 12771,
                            "mutability": "mutable",
                            "name": "oldestTwabIndex",
                            "nameLocation": "9020:15:63",
                            "nodeType": "VariableDeclaration",
                            "scope": 12838,
                            "src": "9013:22:63",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            },
                            "typeName": {
                              "id": 12770,
                              "name": "uint24",
                              "nodeType": "ElementaryTypeName",
                              "src": "9013:6:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 12774,
                            "mutability": "mutable",
                            "name": "oldTwab",
                            "nameLocation": "9071:7:63",
                            "nodeType": "VariableDeclaration",
                            "scope": 12838,
                            "src": "9037:41:63",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            },
                            "typeName": {
                              "id": 12773,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 12772,
                                "name": "ObservationLib.Observation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12066,
                                "src": "9037:26:63"
                              },
                              "referencedDeclaration": 12066,
                              "src": "9037:26:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12066_storage_ptr",
                                "typeString": "struct ObservationLib.Observation"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 12779,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 12776,
                              "name": "_twabs",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12756,
                              "src": "9106:6:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                              }
                            },
                            {
                              "id": 12777,
                              "name": "_accountDetails",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12759,
                              "src": "9126:15:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                              },
                              {
                                "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              }
                            ],
                            "id": 12775,
                            "name": "oldestTwab",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12679,
                            "src": "9082:10:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr_$_t_struct$_AccountDetails_$12485_memory_ptr_$returns$_t_uint24_$_t_struct$_Observation_$12066_memory_ptr_$",
                              "typeString": "function (struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory) view returns (uint24,struct ObservationLib.Observation memory)"
                            }
                          },
                          "id": 12778,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9082:69:63",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_uint24_$_t_struct$_Observation_$12066_memory_ptr_$",
                            "typeString": "tuple(uint24,struct ObservationLib.Observation memory)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "9012:139:63"
                      },
                      {
                        "assignments": [
                          12781,
                          12784
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 12781,
                            "mutability": "mutable",
                            "name": "newestTwabIndex",
                            "nameLocation": "9170:15:63",
                            "nodeType": "VariableDeclaration",
                            "scope": 12838,
                            "src": "9163:22:63",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            },
                            "typeName": {
                              "id": 12780,
                              "name": "uint24",
                              "nodeType": "ElementaryTypeName",
                              "src": "9163:6:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 12784,
                            "mutability": "mutable",
                            "name": "newTwab",
                            "nameLocation": "9221:7:63",
                            "nodeType": "VariableDeclaration",
                            "scope": 12838,
                            "src": "9187:41:63",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            },
                            "typeName": {
                              "id": 12783,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 12782,
                                "name": "ObservationLib.Observation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12066,
                                "src": "9187:26:63"
                              },
                              "referencedDeclaration": 12066,
                              "src": "9187:26:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12066_storage_ptr",
                                "typeString": "struct ObservationLib.Observation"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 12789,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 12786,
                              "name": "_twabs",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12756,
                              "src": "9256:6:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                              }
                            },
                            {
                              "id": 12787,
                              "name": "_accountDetails",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12759,
                              "src": "9276:15:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                              },
                              {
                                "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              }
                            ],
                            "id": 12785,
                            "name": "newestTwab",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12715,
                            "src": "9232:10:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr_$_t_struct$_AccountDetails_$12485_memory_ptr_$returns$_t_uint24_$_t_struct$_Observation_$12066_memory_ptr_$",
                              "typeString": "function (struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory) view returns (uint24,struct ObservationLib.Observation memory)"
                            }
                          },
                          "id": 12788,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9232:69:63",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_uint24_$_t_struct$_Observation_$12066_memory_ptr_$",
                            "typeString": "tuple(uint24,struct ObservationLib.Observation memory)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "9162:139:63"
                      },
                      {
                        "assignments": [
                          12794
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 12794,
                            "mutability": "mutable",
                            "name": "startTwab",
                            "nameLocation": "9346:9:63",
                            "nodeType": "VariableDeclaration",
                            "scope": 12838,
                            "src": "9312:43:63",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            },
                            "typeName": {
                              "id": 12793,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 12792,
                                "name": "ObservationLib.Observation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12066,
                                "src": "9312:26:63"
                              },
                              "referencedDeclaration": 12066,
                              "src": "9312:26:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12066_storage_ptr",
                                "typeString": "struct ObservationLib.Observation"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 12805,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 12796,
                              "name": "_twabs",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12756,
                              "src": "9386:6:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                              }
                            },
                            {
                              "id": 12797,
                              "name": "_accountDetails",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12759,
                              "src": "9406:15:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              }
                            },
                            {
                              "id": 12798,
                              "name": "newTwab",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12784,
                              "src": "9435:7:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            {
                              "id": 12799,
                              "name": "oldTwab",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12774,
                              "src": "9456:7:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            {
                              "id": 12800,
                              "name": "newestTwabIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12781,
                              "src": "9477:15:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            {
                              "id": 12801,
                              "name": "oldestTwabIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12771,
                              "src": "9506:15:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            {
                              "id": 12802,
                              "name": "_startTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12761,
                              "src": "9535:10:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 12803,
                              "name": "_currentTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12765,
                              "src": "9559:12:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                              },
                              {
                                "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              },
                              {
                                "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              },
                              {
                                "typeIdentifier": "t_struct$_Observation_$12066_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": 12795,
                            "name": "_calculateTwab",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13064,
                            "src": "9358:14:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr_$_t_struct$_AccountDetails_$12485_memory_ptr_$_t_struct$_Observation_$12066_memory_ptr_$_t_struct$_Observation_$12066_memory_ptr_$_t_uint24_$_t_uint24_$_t_uint32_$_t_uint32_$returns$_t_struct$_Observation_$12066_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": 12804,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9358:223:63",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                            "typeString": "struct ObservationLib.Observation memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "9312:269:63"
                      },
                      {
                        "assignments": [
                          12810
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 12810,
                            "mutability": "mutable",
                            "name": "endTwab",
                            "nameLocation": "9626:7:63",
                            "nodeType": "VariableDeclaration",
                            "scope": 12838,
                            "src": "9592:41:63",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            },
                            "typeName": {
                              "id": 12809,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 12808,
                                "name": "ObservationLib.Observation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12066,
                                "src": "9592:26:63"
                              },
                              "referencedDeclaration": 12066,
                              "src": "9592:26:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12066_storage_ptr",
                                "typeString": "struct ObservationLib.Observation"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 12821,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 12812,
                              "name": "_twabs",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12756,
                              "src": "9664:6:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                              }
                            },
                            {
                              "id": 12813,
                              "name": "_accountDetails",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12759,
                              "src": "9684:15:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              }
                            },
                            {
                              "id": 12814,
                              "name": "newTwab",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12784,
                              "src": "9713:7:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            {
                              "id": 12815,
                              "name": "oldTwab",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12774,
                              "src": "9734:7:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            {
                              "id": 12816,
                              "name": "newestTwabIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12781,
                              "src": "9755:15:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            {
                              "id": 12817,
                              "name": "oldestTwabIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12771,
                              "src": "9784:15:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            {
                              "id": 12818,
                              "name": "_endTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12763,
                              "src": "9813:8:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 12819,
                              "name": "_currentTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12765,
                              "src": "9835:12:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                              },
                              {
                                "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              },
                              {
                                "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              },
                              {
                                "typeIdentifier": "t_struct$_Observation_$12066_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": 12811,
                            "name": "_calculateTwab",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13064,
                            "src": "9636:14:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr_$_t_struct$_AccountDetails_$12485_memory_ptr_$_t_struct$_Observation_$12066_memory_ptr_$_t_struct$_Observation_$12066_memory_ptr_$_t_uint24_$_t_uint24_$_t_uint32_$_t_uint32_$returns$_t_struct$_Observation_$12066_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": 12820,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9636:221:63",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                            "typeString": "struct ObservationLib.Observation memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "9592:265:63"
                      },
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          },
                          "id": 12836,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "components": [
                              {
                                "commonType": {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                },
                                "id": 12826,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "expression": {
                                    "id": 12822,
                                    "name": "endTwab",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 12810,
                                    "src": "9915:7:63",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                      "typeString": "struct ObservationLib.Observation memory"
                                    }
                                  },
                                  "id": 12823,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "amount",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 12063,
                                  "src": "9915:14:63",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint224",
                                    "typeString": "uint224"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "-",
                                "rightExpression": {
                                  "expression": {
                                    "id": 12824,
                                    "name": "startTwab",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 12794,
                                    "src": "9932:9:63",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                      "typeString": "struct ObservationLib.Observation memory"
                                    }
                                  },
                                  "id": 12825,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "amount",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 12063,
                                  "src": "9932:16:63",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint224",
                                    "typeString": "uint224"
                                  }
                                },
                                "src": "9915:33:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                }
                              }
                            ],
                            "id": 12827,
                            "isConstant": false,
                            "isInlineArray": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "TupleExpression",
                            "src": "9914:35:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint224",
                              "typeString": "uint224"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "/",
                          "rightExpression": {
                            "arguments": [
                              {
                                "expression": {
                                  "id": 12830,
                                  "name": "endTwab",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12810,
                                  "src": "9989:7:63",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                    "typeString": "struct ObservationLib.Observation memory"
                                  }
                                },
                                "id": 12831,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "timestamp",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 12065,
                                "src": "9989:17:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              {
                                "expression": {
                                  "id": 12832,
                                  "name": "startTwab",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12794,
                                  "src": "10008:9:63",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                    "typeString": "struct ObservationLib.Observation memory"
                                  }
                                },
                                "id": 12833,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "timestamp",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 12065,
                                "src": "10008:19:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              {
                                "id": 12834,
                                "name": "_currentTime",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12765,
                                "src": "10029:12:63",
                                "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": 12828,
                                "name": "OverflowSafeComparatorLib",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12376,
                                "src": "9952:25:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_contract$_OverflowSafeComparatorLib_$12376_$",
                                  "typeString": "type(library OverflowSafeComparatorLib)"
                                }
                              },
                              "id": 12829,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "checkedSub",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12375,
                              "src": "9952:36:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_pure$_t_uint32_$_t_uint32_$_t_uint32_$returns$_t_uint32_$",
                                "typeString": "function (uint32,uint32,uint32) pure returns (uint32)"
                              }
                            },
                            "id": 12835,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "9952:90:63",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "9914:128:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "functionReturnParameters": 12769,
                        "id": 12837,
                        "nodeType": "Return",
                        "src": "9907:135:63"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 12751,
                    "nodeType": "StructuredDocumentation",
                    "src": "8454:275:63",
                    "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": 12839,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_getAverageBalanceBetween",
                  "nameLocation": "8743:25:63",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12766,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12756,
                        "mutability": "mutable",
                        "name": "_twabs",
                        "nameLocation": "8830:6:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 12839,
                        "src": "8778:58:63",
                        "stateVariable": false,
                        "storageLocation": "storage",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr",
                          "typeString": "struct ObservationLib.Observation[16777215]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 12753,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 12752,
                              "name": "ObservationLib.Observation",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 12066,
                              "src": "8778:26:63"
                            },
                            "referencedDeclaration": 12066,
                            "src": "8778:26:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12066_storage_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            }
                          },
                          "id": 12755,
                          "length": {
                            "id": 12754,
                            "name": "MAX_CARDINALITY",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12478,
                            "src": "8805:15:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "nodeType": "ArrayTypeName",
                          "src": "8778:43:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr",
                            "typeString": "struct ObservationLib.Observation[16777215]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12759,
                        "mutability": "mutable",
                        "name": "_accountDetails",
                        "nameLocation": "8868:15:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 12839,
                        "src": "8846:37:63",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                          "typeString": "struct TwabLib.AccountDetails"
                        },
                        "typeName": {
                          "id": 12758,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 12757,
                            "name": "AccountDetails",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12485,
                            "src": "8846:14:63"
                          },
                          "referencedDeclaration": 12485,
                          "src": "8846:14:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12485_storage_ptr",
                            "typeString": "struct TwabLib.AccountDetails"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12761,
                        "mutability": "mutable",
                        "name": "_startTime",
                        "nameLocation": "8900:10:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 12839,
                        "src": "8893:17:63",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 12760,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "8893:6:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12763,
                        "mutability": "mutable",
                        "name": "_endTime",
                        "nameLocation": "8927:8:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 12839,
                        "src": "8920:15:63",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 12762,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "8920:6:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12765,
                        "mutability": "mutable",
                        "name": "_currentTime",
                        "nameLocation": "8952:12:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 12839,
                        "src": "8945:19:63",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 12764,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "8945:6:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8768:202:63"
                  },
                  "returnParameters": {
                    "id": 12769,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12768,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 12839,
                        "src": "8993:7:63",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12767,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "8993:7:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8992:9:63"
                  },
                  "scope": 13211,
                  "src": "8734:1315:63",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "private"
                },
                {
                  "body": {
                    "id": 12945,
                    "nodeType": "Block",
                    "src": "10913:1537:63",
                    "statements": [
                      {
                        "assignments": [
                          12858
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 12858,
                            "mutability": "mutable",
                            "name": "newestTwabIndex",
                            "nameLocation": "10930:15:63",
                            "nodeType": "VariableDeclaration",
                            "scope": 12945,
                            "src": "10923:22:63",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            },
                            "typeName": {
                              "id": 12857,
                              "name": "uint24",
                              "nodeType": "ElementaryTypeName",
                              "src": "10923:6:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 12859,
                        "nodeType": "VariableDeclarationStatement",
                        "src": "10923:22:63"
                      },
                      {
                        "assignments": [
                          12864
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 12864,
                            "mutability": "mutable",
                            "name": "afterOrAt",
                            "nameLocation": "10989:9:63",
                            "nodeType": "VariableDeclaration",
                            "scope": 12945,
                            "src": "10955:43:63",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            },
                            "typeName": {
                              "id": 12863,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 12862,
                                "name": "ObservationLib.Observation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12066,
                                "src": "10955:26:63"
                              },
                              "referencedDeclaration": 12066,
                              "src": "10955:26:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12066_storage_ptr",
                                "typeString": "struct ObservationLib.Observation"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 12865,
                        "nodeType": "VariableDeclarationStatement",
                        "src": "10955:43:63"
                      },
                      {
                        "assignments": [
                          12870
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 12870,
                            "mutability": "mutable",
                            "name": "beforeOrAt",
                            "nameLocation": "11042:10:63",
                            "nodeType": "VariableDeclaration",
                            "scope": 12945,
                            "src": "11008:44:63",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            },
                            "typeName": {
                              "id": 12869,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 12868,
                                "name": "ObservationLib.Observation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12066,
                                "src": "11008:26:63"
                              },
                              "referencedDeclaration": 12066,
                              "src": "11008:26:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12066_storage_ptr",
                                "typeString": "struct ObservationLib.Observation"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 12871,
                        "nodeType": "VariableDeclarationStatement",
                        "src": "11008:44:63"
                      },
                      {
                        "expression": {
                          "id": 12879,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "components": [
                              {
                                "id": 12872,
                                "name": "newestTwabIndex",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12858,
                                "src": "11063:15:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint24",
                                  "typeString": "uint24"
                                }
                              },
                              {
                                "id": 12873,
                                "name": "beforeOrAt",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12870,
                                "src": "11080:10:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                  "typeString": "struct ObservationLib.Observation memory"
                                }
                              }
                            ],
                            "id": 12874,
                            "isConstant": false,
                            "isInlineArray": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "TupleExpression",
                            "src": "11062:29:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_tuple$_t_uint24_$_t_struct$_Observation_$12066_memory_ptr_$",
                              "typeString": "tuple(uint24,struct ObservationLib.Observation memory)"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "id": 12876,
                                "name": "_twabs",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12845,
                                "src": "11105:6:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr",
                                  "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                                }
                              },
                              {
                                "id": 12877,
                                "name": "_accountDetails",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12848,
                                "src": "11113:15:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                                  "typeString": "struct TwabLib.AccountDetails memory"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr",
                                  "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                                },
                                {
                                  "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                                  "typeString": "struct TwabLib.AccountDetails memory"
                                }
                              ],
                              "id": 12875,
                              "name": "newestTwab",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12715,
                              "src": "11094:10:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr_$_t_struct$_AccountDetails_$12485_memory_ptr_$returns$_t_uint24_$_t_struct$_Observation_$12066_memory_ptr_$",
                                "typeString": "function (struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory) view returns (uint24,struct ObservationLib.Observation memory)"
                              }
                            },
                            "id": 12878,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "11094:35:63",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_tuple$_t_uint24_$_t_struct$_Observation_$12066_memory_ptr_$",
                              "typeString": "tuple(uint24,struct ObservationLib.Observation memory)"
                            }
                          },
                          "src": "11062:67:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 12880,
                        "nodeType": "ExpressionStatement",
                        "src": "11062:67:63"
                      },
                      {
                        "condition": {
                          "arguments": [
                            {
                              "id": 12884,
                              "name": "_targetTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12850,
                              "src": "11280:11:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 12885,
                              "name": "_currentTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12852,
                              "src": "11293:12:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "expression": {
                                "id": 12881,
                                "name": "beforeOrAt",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12870,
                                "src": "11255:10:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                  "typeString": "struct ObservationLib.Observation memory"
                                }
                              },
                              "id": 12882,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "timestamp",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12065,
                              "src": "11255:20:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "id": 12883,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "lte",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12317,
                            "src": "11255:24:63",
                            "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": 12886,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "11255:51:63",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 12891,
                        "nodeType": "IfStatement",
                        "src": "11251:112:63",
                        "trueBody": {
                          "id": 12890,
                          "nodeType": "Block",
                          "src": "11308:55:63",
                          "statements": [
                            {
                              "expression": {
                                "expression": {
                                  "id": 12887,
                                  "name": "_accountDetails",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12848,
                                  "src": "11329:15:63",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                                    "typeString": "struct TwabLib.AccountDetails memory"
                                  }
                                },
                                "id": 12888,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "balance",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 12480,
                                "src": "11329:23:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint208",
                                  "typeString": "uint208"
                                }
                              },
                              "functionReturnParameters": 12856,
                              "id": 12889,
                              "nodeType": "Return",
                              "src": "11322:30:63"
                            }
                          ]
                        }
                      },
                      {
                        "assignments": [
                          12893
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 12893,
                            "mutability": "mutable",
                            "name": "oldestTwabIndex",
                            "nameLocation": "11380:15:63",
                            "nodeType": "VariableDeclaration",
                            "scope": 12945,
                            "src": "11373:22:63",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            },
                            "typeName": {
                              "id": 12892,
                              "name": "uint24",
                              "nodeType": "ElementaryTypeName",
                              "src": "11373:6:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 12894,
                        "nodeType": "VariableDeclarationStatement",
                        "src": "11373:22:63"
                      },
                      {
                        "expression": {
                          "id": 12902,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "components": [
                              {
                                "id": 12895,
                                "name": "oldestTwabIndex",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12893,
                                "src": "11452:15:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint24",
                                  "typeString": "uint24"
                                }
                              },
                              {
                                "id": 12896,
                                "name": "beforeOrAt",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12870,
                                "src": "11469:10:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                  "typeString": "struct ObservationLib.Observation memory"
                                }
                              }
                            ],
                            "id": 12897,
                            "isConstant": false,
                            "isInlineArray": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "TupleExpression",
                            "src": "11451:29:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_tuple$_t_uint24_$_t_struct$_Observation_$12066_memory_ptr_$",
                              "typeString": "tuple(uint24,struct ObservationLib.Observation memory)"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "id": 12899,
                                "name": "_twabs",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12845,
                                "src": "11494:6:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr",
                                  "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                                }
                              },
                              {
                                "id": 12900,
                                "name": "_accountDetails",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12848,
                                "src": "11502:15:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                                  "typeString": "struct TwabLib.AccountDetails memory"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr",
                                  "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                                },
                                {
                                  "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                                  "typeString": "struct TwabLib.AccountDetails memory"
                                }
                              ],
                              "id": 12898,
                              "name": "oldestTwab",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12679,
                              "src": "11483:10:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr_$_t_struct$_AccountDetails_$12485_memory_ptr_$returns$_t_uint24_$_t_struct$_Observation_$12066_memory_ptr_$",
                                "typeString": "function (struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory) view returns (uint24,struct ObservationLib.Observation memory)"
                              }
                            },
                            "id": 12901,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "11483:35:63",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_tuple$_t_uint24_$_t_struct$_Observation_$12066_memory_ptr_$",
                              "typeString": "tuple(uint24,struct ObservationLib.Observation memory)"
                            }
                          },
                          "src": "11451:67:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 12903,
                        "nodeType": "ExpressionStatement",
                        "src": "11451:67:63"
                      },
                      {
                        "condition": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 12906,
                                "name": "beforeOrAt",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12870,
                                "src": "11639:10:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                  "typeString": "struct ObservationLib.Observation memory"
                                }
                              },
                              "id": 12907,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "timestamp",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12065,
                              "src": "11639:20:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 12908,
                              "name": "_currentTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12852,
                              "src": "11661:12:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 12904,
                              "name": "_targetTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12850,
                              "src": "11624:11:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "id": 12905,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "lt",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12262,
                            "src": "11624:14:63",
                            "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": 12909,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "11624:50:63",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 12913,
                        "nodeType": "IfStatement",
                        "src": "11620:89:63",
                        "trueBody": {
                          "id": 12912,
                          "nodeType": "Block",
                          "src": "11676:33:63",
                          "statements": [
                            {
                              "expression": {
                                "hexValue": "30",
                                "id": 12910,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "11697:1:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "functionReturnParameters": 12856,
                              "id": 12911,
                              "nodeType": "Return",
                              "src": "11690:8:63"
                            }
                          ]
                        }
                      },
                      {
                        "expression": {
                          "id": 12927,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "components": [
                              {
                                "id": 12914,
                                "name": "beforeOrAt",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12870,
                                "src": "11772:10:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                  "typeString": "struct ObservationLib.Observation memory"
                                }
                              },
                              {
                                "id": 12915,
                                "name": "afterOrAt",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12864,
                                "src": "11784:9:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                  "typeString": "struct ObservationLib.Observation memory"
                                }
                              }
                            ],
                            "id": 12916,
                            "isConstant": false,
                            "isInlineArray": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "TupleExpression",
                            "src": "11771:23:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_tuple$_t_struct$_Observation_$12066_memory_ptr_$_t_struct$_Observation_$12066_memory_ptr_$",
                              "typeString": "tuple(struct ObservationLib.Observation memory,struct ObservationLib.Observation memory)"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "id": 12919,
                                "name": "_twabs",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12845,
                                "src": "11838:6:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr",
                                  "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                                }
                              },
                              {
                                "id": 12920,
                                "name": "newestTwabIndex",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12858,
                                "src": "11858:15:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint24",
                                  "typeString": "uint24"
                                }
                              },
                              {
                                "id": 12921,
                                "name": "oldestTwabIndex",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12893,
                                "src": "11887:15:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint24",
                                  "typeString": "uint24"
                                }
                              },
                              {
                                "id": 12922,
                                "name": "_targetTime",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12850,
                                "src": "11916:11:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              {
                                "expression": {
                                  "id": 12923,
                                  "name": "_accountDetails",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12848,
                                  "src": "11941:15:63",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                                    "typeString": "struct TwabLib.AccountDetails memory"
                                  }
                                },
                                "id": 12924,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "cardinality",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 12484,
                                "src": "11941:27:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint24",
                                  "typeString": "uint24"
                                }
                              },
                              {
                                "id": 12925,
                                "name": "_currentTime",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12852,
                                "src": "11982:12:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_array$_t_struct$_Observation_$12066_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": 12917,
                                "name": "ObservationLib",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12204,
                                "src": "11797:14:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_contract$_ObservationLib_$12204_$",
                                  "typeString": "type(library ObservationLib)"
                                }
                              },
                              "id": 12918,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "binarySearch",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12203,
                              "src": "11797:27:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr_$_t_uint24_$_t_uint24_$_t_uint32_$_t_uint24_$_t_uint32_$returns$_t_struct$_Observation_$12066_memory_ptr_$_t_struct$_Observation_$12066_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": 12926,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "11797:207:63",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_tuple$_t_struct$_Observation_$12066_memory_ptr_$_t_struct$_Observation_$12066_memory_ptr_$",
                              "typeString": "tuple(struct ObservationLib.Observation memory,struct ObservationLib.Observation memory)"
                            }
                          },
                          "src": "11771:233:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 12928,
                        "nodeType": "ExpressionStatement",
                        "src": "11771:233:63"
                      },
                      {
                        "expression": {
                          "commonType": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          },
                          "id": 12943,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "components": [
                              {
                                "commonType": {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                },
                                "id": 12933,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "expression": {
                                    "id": 12929,
                                    "name": "afterOrAt",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 12864,
                                    "src": "12310:9:63",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                      "typeString": "struct ObservationLib.Observation memory"
                                    }
                                  },
                                  "id": 12930,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "amount",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 12063,
                                  "src": "12310:16:63",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint224",
                                    "typeString": "uint224"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "-",
                                "rightExpression": {
                                  "expression": {
                                    "id": 12931,
                                    "name": "beforeOrAt",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 12870,
                                    "src": "12329:10:63",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                      "typeString": "struct ObservationLib.Observation memory"
                                    }
                                  },
                                  "id": 12932,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "amount",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 12063,
                                  "src": "12329:17:63",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint224",
                                    "typeString": "uint224"
                                  }
                                },
                                "src": "12310:36:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                }
                              }
                            ],
                            "id": 12934,
                            "isConstant": false,
                            "isInlineArray": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "TupleExpression",
                            "src": "12309:38:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint224",
                              "typeString": "uint224"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "/",
                          "rightExpression": {
                            "arguments": [
                              {
                                "expression": {
                                  "id": 12937,
                                  "name": "afterOrAt",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12864,
                                  "src": "12387:9:63",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                    "typeString": "struct ObservationLib.Observation memory"
                                  }
                                },
                                "id": 12938,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "timestamp",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 12065,
                                "src": "12387:19:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              {
                                "expression": {
                                  "id": 12939,
                                  "name": "beforeOrAt",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 12870,
                                  "src": "12408:10:63",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                    "typeString": "struct ObservationLib.Observation memory"
                                  }
                                },
                                "id": 12940,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "timestamp",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 12065,
                                "src": "12408:20:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              {
                                "id": 12941,
                                "name": "_currentTime",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12852,
                                "src": "12430:12:63",
                                "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": 12935,
                                "name": "OverflowSafeComparatorLib",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12376,
                                "src": "12350:25:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_contract$_OverflowSafeComparatorLib_$12376_$",
                                  "typeString": "type(library OverflowSafeComparatorLib)"
                                }
                              },
                              "id": 12936,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "checkedSub",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12375,
                              "src": "12350:36:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_pure$_t_uint32_$_t_uint32_$_t_uint32_$returns$_t_uint32_$",
                                "typeString": "function (uint32,uint32,uint32) pure returns (uint32)"
                              }
                            },
                            "id": 12942,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "12350:93:63",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "12309:134:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "functionReturnParameters": 12856,
                        "id": 12944,
                        "nodeType": "Return",
                        "src": "12290:153:63"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 12840,
                    "nodeType": "StructuredDocumentation",
                    "src": "10055:621:63",
                    "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": 12946,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_getBalanceAt",
                  "nameLocation": "10690:13:63",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12853,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12845,
                        "mutability": "mutable",
                        "name": "_twabs",
                        "nameLocation": "10765:6:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 12946,
                        "src": "10713:58:63",
                        "stateVariable": false,
                        "storageLocation": "storage",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr",
                          "typeString": "struct ObservationLib.Observation[16777215]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 12842,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 12841,
                              "name": "ObservationLib.Observation",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 12066,
                              "src": "10713:26:63"
                            },
                            "referencedDeclaration": 12066,
                            "src": "10713:26:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12066_storage_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            }
                          },
                          "id": 12844,
                          "length": {
                            "id": 12843,
                            "name": "MAX_CARDINALITY",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12478,
                            "src": "10740:15:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "nodeType": "ArrayTypeName",
                          "src": "10713:43:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr",
                            "typeString": "struct ObservationLib.Observation[16777215]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12848,
                        "mutability": "mutable",
                        "name": "_accountDetails",
                        "nameLocation": "10803:15:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 12946,
                        "src": "10781:37:63",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                          "typeString": "struct TwabLib.AccountDetails"
                        },
                        "typeName": {
                          "id": 12847,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 12846,
                            "name": "AccountDetails",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12485,
                            "src": "10781:14:63"
                          },
                          "referencedDeclaration": 12485,
                          "src": "10781:14:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12485_storage_ptr",
                            "typeString": "struct TwabLib.AccountDetails"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12850,
                        "mutability": "mutable",
                        "name": "_targetTime",
                        "nameLocation": "10835:11:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 12946,
                        "src": "10828:18:63",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 12849,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "10828:6:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12852,
                        "mutability": "mutable",
                        "name": "_currentTime",
                        "nameLocation": "10863:12:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 12946,
                        "src": "10856:19:63",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 12851,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "10856:6:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "10703:178:63"
                  },
                  "returnParameters": {
                    "id": 12856,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12855,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 12946,
                        "src": "10904:7:63",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 12854,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "10904:7:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "10903:9:63"
                  },
                  "scope": 13211,
                  "src": "10681:1769:63",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "private"
                },
                {
                  "body": {
                    "id": 13063,
                    "nodeType": "Block",
                    "src": "14173:1465:63",
                    "statements": [
                      {
                        "condition": {
                          "arguments": [
                            {
                              "id": 12978,
                              "name": "_targetTimestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12967,
                              "src": "14312:16:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 12979,
                              "name": "_time",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12969,
                              "src": "14330:5:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "expression": {
                                "id": 12975,
                                "name": "_newestTwab",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12958,
                                "src": "14287:11:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                  "typeString": "struct ObservationLib.Observation memory"
                                }
                              },
                              "id": 12976,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "timestamp",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12065,
                              "src": "14287:21:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "id": 12977,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "lt",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12262,
                            "src": "14287:24:63",
                            "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": 12980,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "14287:49:63",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 12989,
                        "nodeType": "IfStatement",
                        "src": "14283:159:63",
                        "trueBody": {
                          "id": 12988,
                          "nodeType": "Block",
                          "src": "14338:104:63",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "id": 12982,
                                    "name": "_newestTwab",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 12958,
                                    "src": "14376:11:63",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                      "typeString": "struct ObservationLib.Observation memory"
                                    }
                                  },
                                  {
                                    "expression": {
                                      "id": 12983,
                                      "name": "_accountDetails",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 12955,
                                      "src": "14389:15:63",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                                        "typeString": "struct TwabLib.AccountDetails memory"
                                      }
                                    },
                                    "id": 12984,
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "balance",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 12480,
                                    "src": "14389:23:63",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint208",
                                      "typeString": "uint208"
                                    }
                                  },
                                  {
                                    "id": 12985,
                                    "name": "_targetTimestamp",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 12967,
                                    "src": "14414:16:63",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                      "typeString": "struct ObservationLib.Observation memory"
                                    },
                                    {
                                      "typeIdentifier": "t_uint208",
                                      "typeString": "uint208"
                                    },
                                    {
                                      "typeIdentifier": "t_uint32",
                                      "typeString": "uint32"
                                    }
                                  ],
                                  "id": 12981,
                                  "name": "_computeNextTwab",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13096,
                                  "src": "14359:16:63",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_pure$_t_struct$_Observation_$12066_memory_ptr_$_t_uint224_$_t_uint32_$returns$_t_struct$_Observation_$12066_memory_ptr_$",
                                    "typeString": "function (struct ObservationLib.Observation memory,uint224,uint32) pure returns (struct ObservationLib.Observation memory)"
                                  }
                                },
                                "id": 12986,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "14359:72:63",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                  "typeString": "struct ObservationLib.Observation memory"
                                }
                              },
                              "functionReturnParameters": 12974,
                              "id": 12987,
                              "nodeType": "Return",
                              "src": "14352:79:63"
                            }
                          ]
                        }
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          },
                          "id": 12993,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 12990,
                              "name": "_newestTwab",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12958,
                              "src": "14456:11:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            "id": 12991,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "timestamp",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12065,
                            "src": "14456:21:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "id": 12992,
                            "name": "_targetTimestamp",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12967,
                            "src": "14481:16:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "14456:41:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 12997,
                        "nodeType": "IfStatement",
                        "src": "14452:90:63",
                        "trueBody": {
                          "id": 12996,
                          "nodeType": "Block",
                          "src": "14499:43:63",
                          "statements": [
                            {
                              "expression": {
                                "id": 12994,
                                "name": "_newestTwab",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12958,
                                "src": "14520:11:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                  "typeString": "struct ObservationLib.Observation memory"
                                }
                              },
                              "functionReturnParameters": 12974,
                              "id": 12995,
                              "nodeType": "Return",
                              "src": "14513:18:63"
                            }
                          ]
                        }
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          },
                          "id": 13001,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 12998,
                              "name": "_oldestTwab",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12961,
                              "src": "14556:11:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            "id": 12999,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "timestamp",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12065,
                            "src": "14556:21:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "id": 13000,
                            "name": "_targetTimestamp",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12967,
                            "src": "14581:16:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "14556:41:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 13005,
                        "nodeType": "IfStatement",
                        "src": "14552:90:63",
                        "trueBody": {
                          "id": 13004,
                          "nodeType": "Block",
                          "src": "14599:43:63",
                          "statements": [
                            {
                              "expression": {
                                "id": 13002,
                                "name": "_oldestTwab",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12961,
                                "src": "14620:11:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                  "typeString": "struct ObservationLib.Observation memory"
                                }
                              },
                              "functionReturnParameters": 12974,
                              "id": 13003,
                              "nodeType": "Return",
                              "src": "14613:18:63"
                            }
                          ]
                        }
                      },
                      {
                        "condition": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 13008,
                                "name": "_oldestTwab",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12961,
                                "src": "14774:11:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                  "typeString": "struct ObservationLib.Observation memory"
                                }
                              },
                              "id": 13009,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "timestamp",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12065,
                              "src": "14774:21:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 13010,
                              "name": "_time",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12969,
                              "src": "14797:5:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 13006,
                              "name": "_targetTimestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12967,
                              "src": "14754:16:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            "id": 13007,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "lt",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12262,
                            "src": "14754:19:63",
                            "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": 13011,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "14754:49:63",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 13019,
                        "nodeType": "IfStatement",
                        "src": "14750:157:63",
                        "trueBody": {
                          "id": 13018,
                          "nodeType": "Block",
                          "src": "14805:102:63",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 13014,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "14863:1:63",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_rational_0_by_1",
                                      "typeString": "int_const 0"
                                    },
                                    "value": "0"
                                  },
                                  {
                                    "id": 13015,
                                    "name": "_targetTimestamp",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 12967,
                                    "src": "14877:16:63",
                                    "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": 13012,
                                    "name": "ObservationLib",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 12204,
                                    "src": "14826:14:63",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_contract$_ObservationLib_$12204_$",
                                      "typeString": "type(library ObservationLib)"
                                    }
                                  },
                                  "id": 13013,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "Observation",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 12066,
                                  "src": "14826:26:63",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_struct$_Observation_$12066_storage_ptr_$",
                                    "typeString": "type(struct ObservationLib.Observation storage pointer)"
                                  }
                                },
                                "id": 13016,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "structConstructorCall",
                                "lValueRequested": false,
                                "names": [
                                  "amount",
                                  "timestamp"
                                ],
                                "nodeType": "FunctionCall",
                                "src": "14826:70:63",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                  "typeString": "struct ObservationLib.Observation memory"
                                }
                              },
                              "functionReturnParameters": 12974,
                              "id": 13017,
                              "nodeType": "Return",
                              "src": "14819:77:63"
                            }
                          ]
                        }
                      },
                      {
                        "assignments": [
                          13024,
                          13027
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13024,
                            "mutability": "mutable",
                            "name": "beforeOrAtStart",
                            "nameLocation": "15032:15:63",
                            "nodeType": "VariableDeclaration",
                            "scope": 13063,
                            "src": "14998:49:63",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            },
                            "typeName": {
                              "id": 13023,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 13022,
                                "name": "ObservationLib.Observation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12066,
                                "src": "14998:26:63"
                              },
                              "referencedDeclaration": 12066,
                              "src": "14998:26:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12066_storage_ptr",
                                "typeString": "struct ObservationLib.Observation"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 13027,
                            "mutability": "mutable",
                            "name": "afterOrAtStart",
                            "nameLocation": "15095:14:63",
                            "nodeType": "VariableDeclaration",
                            "scope": 13063,
                            "src": "15061:48:63",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            },
                            "typeName": {
                              "id": 13026,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 13025,
                                "name": "ObservationLib.Observation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12066,
                                "src": "15061:26:63"
                              },
                              "referencedDeclaration": 12066,
                              "src": "15061:26:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12066_storage_ptr",
                                "typeString": "struct ObservationLib.Observation"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13038,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 13030,
                              "name": "_twabs",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12952,
                              "src": "15167:6:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                              }
                            },
                            {
                              "id": 13031,
                              "name": "_newestTwabIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12963,
                              "src": "15191:16:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            {
                              "id": 13032,
                              "name": "_oldestTwabIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12965,
                              "src": "15225:16:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            {
                              "id": 13033,
                              "name": "_targetTimestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12967,
                              "src": "15259:16:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "expression": {
                                "id": 13034,
                                "name": "_accountDetails",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12955,
                                "src": "15293:15:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                                  "typeString": "struct TwabLib.AccountDetails memory"
                                }
                              },
                              "id": 13035,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "cardinality",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12484,
                              "src": "15293:27:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            {
                              "id": 13036,
                              "name": "_time",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12969,
                              "src": "15338:5:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12066_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": 13028,
                              "name": "ObservationLib",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12204,
                              "src": "15122:14:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_ObservationLib_$12204_$",
                                "typeString": "type(library ObservationLib)"
                              }
                            },
                            "id": 13029,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "binarySearch",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12203,
                            "src": "15122:27:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr_$_t_uint24_$_t_uint24_$_t_uint32_$_t_uint24_$_t_uint32_$returns$_t_struct$_Observation_$12066_memory_ptr_$_t_struct$_Observation_$12066_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": 13037,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "15122:235:63",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_struct$_Observation_$12066_memory_ptr_$_t_struct$_Observation_$12066_memory_ptr_$",
                            "typeString": "tuple(struct ObservationLib.Observation memory,struct ObservationLib.Observation memory)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "14984:373:63"
                      },
                      {
                        "assignments": [
                          13040
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13040,
                            "mutability": "mutable",
                            "name": "heldBalance",
                            "nameLocation": "15376:11:63",
                            "nodeType": "VariableDeclaration",
                            "scope": 13063,
                            "src": "15368:19:63",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint224",
                              "typeString": "uint224"
                            },
                            "typeName": {
                              "id": 13039,
                              "name": "uint224",
                              "nodeType": "ElementaryTypeName",
                              "src": "15368:7:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint224",
                                "typeString": "uint224"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13056,
                        "initialValue": {
                          "commonType": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          },
                          "id": 13055,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "components": [
                              {
                                "commonType": {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                },
                                "id": 13045,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "expression": {
                                    "id": 13041,
                                    "name": "afterOrAtStart",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 13027,
                                    "src": "15391:14:63",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                      "typeString": "struct ObservationLib.Observation memory"
                                    }
                                  },
                                  "id": 13042,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "amount",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 12063,
                                  "src": "15391:21:63",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint224",
                                    "typeString": "uint224"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "-",
                                "rightExpression": {
                                  "expression": {
                                    "id": 13043,
                                    "name": "beforeOrAtStart",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 13024,
                                    "src": "15415:15:63",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                      "typeString": "struct ObservationLib.Observation memory"
                                    }
                                  },
                                  "id": 13044,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "amount",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 12063,
                                  "src": "15415:22:63",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint224",
                                    "typeString": "uint224"
                                  }
                                },
                                "src": "15391:46:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                }
                              }
                            ],
                            "id": 13046,
                            "isConstant": false,
                            "isInlineArray": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "TupleExpression",
                            "src": "15390:48:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint224",
                              "typeString": "uint224"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "/",
                          "rightExpression": {
                            "arguments": [
                              {
                                "expression": {
                                  "id": 13049,
                                  "name": "afterOrAtStart",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13027,
                                  "src": "15490:14:63",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                    "typeString": "struct ObservationLib.Observation memory"
                                  }
                                },
                                "id": 13050,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "timestamp",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 12065,
                                "src": "15490:24:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              {
                                "expression": {
                                  "id": 13051,
                                  "name": "beforeOrAtStart",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13024,
                                  "src": "15516:15:63",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                    "typeString": "struct ObservationLib.Observation memory"
                                  }
                                },
                                "id": 13052,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "timestamp",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 12065,
                                "src": "15516:25:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              {
                                "id": 13053,
                                "name": "_time",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12969,
                                "src": "15543:5:63",
                                "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": 13047,
                                "name": "OverflowSafeComparatorLib",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 12376,
                                "src": "15453:25:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_contract$_OverflowSafeComparatorLib_$12376_$",
                                  "typeString": "type(library OverflowSafeComparatorLib)"
                                }
                              },
                              "id": 13048,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "checkedSub",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12375,
                              "src": "15453:36:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_pure$_t_uint32_$_t_uint32_$_t_uint32_$returns$_t_uint32_$",
                                "typeString": "function (uint32,uint32,uint32) pure returns (uint32)"
                              }
                            },
                            "id": 13054,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "15453:96:63",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "15390:159:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "15368:181:63"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 13058,
                              "name": "beforeOrAtStart",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13024,
                              "src": "15584:15:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            {
                              "id": 13059,
                              "name": "heldBalance",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13040,
                              "src": "15601:11:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint224",
                                "typeString": "uint224"
                              }
                            },
                            {
                              "id": 13060,
                              "name": "_targetTimestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12967,
                              "src": "15614:16:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              },
                              {
                                "typeIdentifier": "t_uint224",
                                "typeString": "uint224"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "id": 13057,
                            "name": "_computeNextTwab",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13096,
                            "src": "15567:16:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_struct$_Observation_$12066_memory_ptr_$_t_uint224_$_t_uint32_$returns$_t_struct$_Observation_$12066_memory_ptr_$",
                              "typeString": "function (struct ObservationLib.Observation memory,uint224,uint32) pure returns (struct ObservationLib.Observation memory)"
                            }
                          },
                          "id": 13061,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "15567:64:63",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                            "typeString": "struct ObservationLib.Observation memory"
                          }
                        },
                        "functionReturnParameters": 12974,
                        "id": 13062,
                        "nodeType": "Return",
                        "src": "15560:71:63"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 12947,
                    "nodeType": "StructuredDocumentation",
                    "src": "12456:1279:63",
                    "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": 13064,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_calculateTwab",
                  "nameLocation": "13749:14:63",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 12970,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12952,
                        "mutability": "mutable",
                        "name": "_twabs",
                        "nameLocation": "13825:6:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 13064,
                        "src": "13773:58:63",
                        "stateVariable": false,
                        "storageLocation": "storage",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr",
                          "typeString": "struct ObservationLib.Observation[16777215]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 12949,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 12948,
                              "name": "ObservationLib.Observation",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 12066,
                              "src": "13773:26:63"
                            },
                            "referencedDeclaration": 12066,
                            "src": "13773:26:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12066_storage_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            }
                          },
                          "id": 12951,
                          "length": {
                            "id": 12950,
                            "name": "MAX_CARDINALITY",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12478,
                            "src": "13800:15:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "nodeType": "ArrayTypeName",
                          "src": "13773:43:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr",
                            "typeString": "struct ObservationLib.Observation[16777215]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12955,
                        "mutability": "mutable",
                        "name": "_accountDetails",
                        "nameLocation": "13863:15:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 13064,
                        "src": "13841:37:63",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                          "typeString": "struct TwabLib.AccountDetails"
                        },
                        "typeName": {
                          "id": 12954,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 12953,
                            "name": "AccountDetails",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12485,
                            "src": "13841:14:63"
                          },
                          "referencedDeclaration": 12485,
                          "src": "13841:14:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12485_storage_ptr",
                            "typeString": "struct TwabLib.AccountDetails"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12958,
                        "mutability": "mutable",
                        "name": "_newestTwab",
                        "nameLocation": "13922:11:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 13064,
                        "src": "13888:45:63",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 12957,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 12956,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12066,
                            "src": "13888:26:63"
                          },
                          "referencedDeclaration": 12066,
                          "src": "13888:26:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12066_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12961,
                        "mutability": "mutable",
                        "name": "_oldestTwab",
                        "nameLocation": "13977:11:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 13064,
                        "src": "13943:45:63",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 12960,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 12959,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12066,
                            "src": "13943:26:63"
                          },
                          "referencedDeclaration": 12066,
                          "src": "13943:26:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12066_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12963,
                        "mutability": "mutable",
                        "name": "_newestTwabIndex",
                        "nameLocation": "14005:16:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 13064,
                        "src": "13998:23:63",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint24",
                          "typeString": "uint24"
                        },
                        "typeName": {
                          "id": 12962,
                          "name": "uint24",
                          "nodeType": "ElementaryTypeName",
                          "src": "13998:6:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12965,
                        "mutability": "mutable",
                        "name": "_oldestTwabIndex",
                        "nameLocation": "14038:16:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 13064,
                        "src": "14031:23:63",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint24",
                          "typeString": "uint24"
                        },
                        "typeName": {
                          "id": 12964,
                          "name": "uint24",
                          "nodeType": "ElementaryTypeName",
                          "src": "14031:6:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12967,
                        "mutability": "mutable",
                        "name": "_targetTimestamp",
                        "nameLocation": "14071:16:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 13064,
                        "src": "14064:23:63",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 12966,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "14064:6:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 12969,
                        "mutability": "mutable",
                        "name": "_time",
                        "nameLocation": "14104:5:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 13064,
                        "src": "14097:12:63",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 12968,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "14097:6:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "13763:352:63"
                  },
                  "returnParameters": {
                    "id": 12974,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 12973,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 13064,
                        "src": "14138:33:63",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 12972,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 12971,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12066,
                            "src": "14138:26:63"
                          },
                          "referencedDeclaration": 12066,
                          "src": "14138:26:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12066_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "14137:35:63"
                  },
                  "scope": 13211,
                  "src": "13740:1898:63",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "private"
                },
                {
                  "body": {
                    "id": 13095,
                    "nodeType": "Block",
                    "src": "16302:360:63",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint224",
                                "typeString": "uint224"
                              },
                              "id": 13091,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 13080,
                                  "name": "_currentTwab",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13068,
                                  "src": "16477:12:63",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                    "typeString": "struct ObservationLib.Observation memory"
                                  }
                                },
                                "id": 13081,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "amount",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 12063,
                                "src": "16477:19:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "+",
                              "rightExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                },
                                "id": 13090,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 13082,
                                  "name": "_currentBalance",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13070,
                                  "src": "16519:15:63",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint224",
                                    "typeString": "uint224"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "*",
                                "rightExpression": {
                                  "components": [
                                    {
                                      "arguments": [
                                        {
                                          "expression": {
                                            "id": 13085,
                                            "name": "_currentTwab",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 13068,
                                            "src": "16575:12:63",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                              "typeString": "struct ObservationLib.Observation memory"
                                            }
                                          },
                                          "id": 13086,
                                          "isConstant": false,
                                          "isLValue": true,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "memberName": "timestamp",
                                          "nodeType": "MemberAccess",
                                          "referencedDeclaration": 12065,
                                          "src": "16575:22:63",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint32",
                                            "typeString": "uint32"
                                          }
                                        },
                                        {
                                          "id": 13087,
                                          "name": "_time",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 13072,
                                          "src": "16599:5:63",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint32",
                                            "typeString": "uint32"
                                          }
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_uint32",
                                            "typeString": "uint32"
                                          },
                                          {
                                            "typeIdentifier": "t_uint32",
                                            "typeString": "uint32"
                                          }
                                        ],
                                        "expression": {
                                          "id": 13083,
                                          "name": "_time",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 13072,
                                          "src": "16558:5:63",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint32",
                                            "typeString": "uint32"
                                          }
                                        },
                                        "id": 13084,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "memberName": "checkedSub",
                                        "nodeType": "MemberAccess",
                                        "referencedDeclaration": 12375,
                                        "src": "16558:16:63",
                                        "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": 13088,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "functionCall",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "16558:47:63",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint32",
                                        "typeString": "uint32"
                                      }
                                    }
                                  ],
                                  "id": 13089,
                                  "isConstant": false,
                                  "isInlineArray": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "TupleExpression",
                                  "src": "16557:49:63",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                "src": "16519:87:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint224",
                                  "typeString": "uint224"
                                }
                              },
                              "src": "16477:129:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint224",
                                "typeString": "uint224"
                              }
                            },
                            {
                              "id": 13092,
                              "name": "_time",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13072,
                              "src": "16635:5:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint224",
                                "typeString": "uint224"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "expression": {
                              "id": 13078,
                              "name": "ObservationLib",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 12204,
                              "src": "16424:14:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_ObservationLib_$12204_$",
                                "typeString": "type(library ObservationLib)"
                              }
                            },
                            "id": 13079,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "Observation",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12066,
                            "src": "16424:26:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_struct$_Observation_$12066_storage_ptr_$",
                              "typeString": "type(struct ObservationLib.Observation storage pointer)"
                            }
                          },
                          "id": 13093,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "structConstructorCall",
                          "lValueRequested": false,
                          "names": [
                            "amount",
                            "timestamp"
                          ],
                          "nodeType": "FunctionCall",
                          "src": "16424:231:63",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                            "typeString": "struct ObservationLib.Observation memory"
                          }
                        },
                        "functionReturnParameters": 13077,
                        "id": 13094,
                        "nodeType": "Return",
                        "src": "16405:250:63"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13065,
                    "nodeType": "StructuredDocumentation",
                    "src": "15644:453:63",
                    "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": 13096,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_computeNextTwab",
                  "nameLocation": "16111:16:63",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 13073,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13068,
                        "mutability": "mutable",
                        "name": "_currentTwab",
                        "nameLocation": "16171:12:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 13096,
                        "src": "16137:46:63",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 13067,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13066,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12066,
                            "src": "16137:26:63"
                          },
                          "referencedDeclaration": 12066,
                          "src": "16137:26:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12066_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13070,
                        "mutability": "mutable",
                        "name": "_currentBalance",
                        "nameLocation": "16201:15:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 13096,
                        "src": "16193:23:63",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint224",
                          "typeString": "uint224"
                        },
                        "typeName": {
                          "id": 13069,
                          "name": "uint224",
                          "nodeType": "ElementaryTypeName",
                          "src": "16193:7:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint224",
                            "typeString": "uint224"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13072,
                        "mutability": "mutable",
                        "name": "_time",
                        "nameLocation": "16233:5:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 13096,
                        "src": "16226:12:63",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 13071,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "16226:6:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "16127:117:63"
                  },
                  "returnParameters": {
                    "id": 13077,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13076,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 13096,
                        "src": "16267:33:63",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 13075,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13074,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12066,
                            "src": "16267:26:63"
                          },
                          "referencedDeclaration": 12066,
                          "src": "16267:26:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12066_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "16266:35:63"
                  },
                  "scope": 13211,
                  "src": "16102:560:63",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "private"
                },
                {
                  "body": {
                    "id": 13170,
                    "nodeType": "Block",
                    "src": "17576:627:63",
                    "statements": [
                      {
                        "assignments": [
                          null,
                          13122
                        ],
                        "declarations": [
                          null,
                          {
                            "constant": false,
                            "id": 13122,
                            "mutability": "mutable",
                            "name": "_newestTwab",
                            "nameLocation": "17623:11:63",
                            "nodeType": "VariableDeclaration",
                            "scope": 13170,
                            "src": "17589:45:63",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            },
                            "typeName": {
                              "id": 13121,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 13120,
                                "name": "ObservationLib.Observation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12066,
                                "src": "17589:26:63"
                              },
                              "referencedDeclaration": 12066,
                              "src": "17589:26:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12066_storage_ptr",
                                "typeString": "struct ObservationLib.Observation"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13127,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 13124,
                              "name": "_twabs",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13102,
                              "src": "17649:6:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                              }
                            },
                            {
                              "id": 13125,
                              "name": "_accountDetails",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13105,
                              "src": "17657:15:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                              },
                              {
                                "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              }
                            ],
                            "id": 13123,
                            "name": "newestTwab",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12715,
                            "src": "17638:10:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr_$_t_struct$_AccountDetails_$12485_memory_ptr_$returns$_t_uint24_$_t_struct$_Observation_$12066_memory_ptr_$",
                              "typeString": "function (struct ObservationLib.Observation storage ref[16777215] storage pointer,struct TwabLib.AccountDetails memory) view returns (uint24,struct ObservationLib.Observation memory)"
                            }
                          },
                          "id": 13126,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "17638:35:63",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_uint24_$_t_struct$_Observation_$12066_memory_ptr_$",
                            "typeString": "tuple(uint24,struct ObservationLib.Observation memory)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "17586:87:63"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          },
                          "id": 13131,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 13128,
                              "name": "_newestTwab",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13122,
                              "src": "17734:11:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            "id": 13129,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "timestamp",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12065,
                            "src": "17734:21:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "id": 13130,
                            "name": "_currentTime",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13107,
                            "src": "17759:12:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "src": "17734:37:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 13138,
                        "nodeType": "IfStatement",
                        "src": "17730:112:63",
                        "trueBody": {
                          "id": 13137,
                          "nodeType": "Block",
                          "src": "17773:69:63",
                          "statements": [
                            {
                              "expression": {
                                "components": [
                                  {
                                    "id": 13132,
                                    "name": "_accountDetails",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 13105,
                                    "src": "17795:15:63",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                                      "typeString": "struct TwabLib.AccountDetails memory"
                                    }
                                  },
                                  {
                                    "id": 13133,
                                    "name": "_newestTwab",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 13122,
                                    "src": "17812:11:63",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                      "typeString": "struct ObservationLib.Observation memory"
                                    }
                                  },
                                  {
                                    "hexValue": "66616c7365",
                                    "id": 13134,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "bool",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "17825:5:63",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bool",
                                      "typeString": "bool"
                                    },
                                    "value": "false"
                                  }
                                ],
                                "id": 13135,
                                "isConstant": false,
                                "isInlineArray": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "TupleExpression",
                                "src": "17794:37:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$_t_struct$_AccountDetails_$12485_memory_ptr_$_t_struct$_Observation_$12066_memory_ptr_$_t_bool_$",
                                  "typeString": "tuple(struct TwabLib.AccountDetails memory,struct ObservationLib.Observation memory,bool)"
                                }
                              },
                              "functionReturnParameters": 13117,
                              "id": 13136,
                              "nodeType": "Return",
                              "src": "17787:44:63"
                            }
                          ]
                        }
                      },
                      {
                        "assignments": [
                          13143
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13143,
                            "mutability": "mutable",
                            "name": "newTwab",
                            "nameLocation": "17886:7:63",
                            "nodeType": "VariableDeclaration",
                            "scope": 13170,
                            "src": "17852:41:63",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            },
                            "typeName": {
                              "id": 13142,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 13141,
                                "name": "ObservationLib.Observation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12066,
                                "src": "17852:26:63"
                              },
                              "referencedDeclaration": 12066,
                              "src": "17852:26:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12066_storage_ptr",
                                "typeString": "struct ObservationLib.Observation"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13150,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 13145,
                              "name": "_newestTwab",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13122,
                              "src": "17926:11:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            {
                              "expression": {
                                "id": 13146,
                                "name": "_accountDetails",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13105,
                                "src": "17951:15:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                                  "typeString": "struct TwabLib.AccountDetails memory"
                                }
                              },
                              "id": 13147,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "balance",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12480,
                              "src": "17951:23:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint208",
                                "typeString": "uint208"
                              }
                            },
                            {
                              "id": 13148,
                              "name": "_currentTime",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13107,
                              "src": "17988:12:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              },
                              {
                                "typeIdentifier": "t_uint208",
                                "typeString": "uint208"
                              },
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            ],
                            "id": 13144,
                            "name": "_computeNextTwab",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13096,
                            "src": "17896:16:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_struct$_Observation_$12066_memory_ptr_$_t_uint224_$_t_uint32_$returns$_t_struct$_Observation_$12066_memory_ptr_$",
                              "typeString": "function (struct ObservationLib.Observation memory,uint224,uint32) pure returns (struct ObservationLib.Observation memory)"
                            }
                          },
                          "id": 13149,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "17896:114:63",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                            "typeString": "struct ObservationLib.Observation memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "17852:158:63"
                      },
                      {
                        "expression": {
                          "id": 13156,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "id": 13151,
                              "name": "_twabs",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13102,
                              "src": "18021:6:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr",
                                "typeString": "struct ObservationLib.Observation storage ref[16777215] storage pointer"
                              }
                            },
                            "id": 13154,
                            "indexExpression": {
                              "expression": {
                                "id": 13152,
                                "name": "_accountDetails",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13105,
                                "src": "18028:15:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                                  "typeString": "struct TwabLib.AccountDetails memory"
                                }
                              },
                              "id": 13153,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "nextTwabIndex",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 12482,
                              "src": "18028:29:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint24",
                                "typeString": "uint24"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "18021:37:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12066_storage",
                              "typeString": "struct ObservationLib.Observation storage ref"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 13155,
                            "name": "newTwab",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13143,
                            "src": "18061:7:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                              "typeString": "struct ObservationLib.Observation memory"
                            }
                          },
                          "src": "18021:47:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12066_storage",
                            "typeString": "struct ObservationLib.Observation storage ref"
                          }
                        },
                        "id": 13157,
                        "nodeType": "ExpressionStatement",
                        "src": "18021:47:63"
                      },
                      {
                        "assignments": [
                          13160
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13160,
                            "mutability": "mutable",
                            "name": "nextAccountDetails",
                            "nameLocation": "18101:18:63",
                            "nodeType": "VariableDeclaration",
                            "scope": 13170,
                            "src": "18079:40:63",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                              "typeString": "struct TwabLib.AccountDetails"
                            },
                            "typeName": {
                              "id": 13159,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 13158,
                                "name": "AccountDetails",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 12485,
                                "src": "18079:14:63"
                              },
                              "referencedDeclaration": 12485,
                              "src": "18079:14:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12485_storage_ptr",
                                "typeString": "struct TwabLib.AccountDetails"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13164,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 13162,
                              "name": "_accountDetails",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13105,
                              "src": "18127:15:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              }
                            ],
                            "id": 13161,
                            "name": "push",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13210,
                            "src": "18122:4:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_struct$_AccountDetails_$12485_memory_ptr_$returns$_t_struct$_AccountDetails_$12485_memory_ptr_$",
                              "typeString": "function (struct TwabLib.AccountDetails memory) pure returns (struct TwabLib.AccountDetails memory)"
                            }
                          },
                          "id": 13163,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "18122:21:63",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                            "typeString": "struct TwabLib.AccountDetails memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "18079:64:63"
                      },
                      {
                        "expression": {
                          "components": [
                            {
                              "id": 13165,
                              "name": "nextAccountDetails",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13160,
                              "src": "18162:18:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              }
                            },
                            {
                              "id": 13166,
                              "name": "newTwab",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13143,
                              "src": "18182:7:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                                "typeString": "struct ObservationLib.Observation memory"
                              }
                            },
                            {
                              "hexValue": "74727565",
                              "id": 13167,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "bool",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "18191:4:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              "value": "true"
                            }
                          ],
                          "id": 13168,
                          "isConstant": false,
                          "isInlineArray": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "TupleExpression",
                          "src": "18161:35:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_struct$_AccountDetails_$12485_memory_ptr_$_t_struct$_Observation_$12066_memory_ptr_$_t_bool_$",
                            "typeString": "tuple(struct TwabLib.AccountDetails memory,struct ObservationLib.Observation memory,bool)"
                          }
                        },
                        "functionReturnParameters": 13117,
                        "id": 13169,
                        "nodeType": "Return",
                        "src": "18154:42:63"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13097,
                    "nodeType": "StructuredDocumentation",
                    "src": "16668:561:63",
                    "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": 13171,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_nextTwab",
                  "nameLocation": "17243:9:63",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 13108,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13102,
                        "mutability": "mutable",
                        "name": "_twabs",
                        "nameLocation": "17314:6:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 13171,
                        "src": "17262:58:63",
                        "stateVariable": false,
                        "storageLocation": "storage",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr",
                          "typeString": "struct ObservationLib.Observation[16777215]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 13099,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 13098,
                              "name": "ObservationLib.Observation",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 12066,
                              "src": "17262:26:63"
                            },
                            "referencedDeclaration": 12066,
                            "src": "17262:26:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Observation_$12066_storage_ptr",
                              "typeString": "struct ObservationLib.Observation"
                            }
                          },
                          "id": 13101,
                          "length": {
                            "id": 13100,
                            "name": "MAX_CARDINALITY",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12478,
                            "src": "17289:15:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "nodeType": "ArrayTypeName",
                          "src": "17262:43:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Observation_$12066_storage_$16777215_storage_ptr",
                            "typeString": "struct ObservationLib.Observation[16777215]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13105,
                        "mutability": "mutable",
                        "name": "_accountDetails",
                        "nameLocation": "17352:15:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 13171,
                        "src": "17330:37:63",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                          "typeString": "struct TwabLib.AccountDetails"
                        },
                        "typeName": {
                          "id": 13104,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13103,
                            "name": "AccountDetails",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12485,
                            "src": "17330:14:63"
                          },
                          "referencedDeclaration": 12485,
                          "src": "17330:14:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12485_storage_ptr",
                            "typeString": "struct TwabLib.AccountDetails"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13107,
                        "mutability": "mutable",
                        "name": "_currentTime",
                        "nameLocation": "17384:12:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 13171,
                        "src": "17377:19:63",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 13106,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "17377:6:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "17252:150:63"
                  },
                  "returnParameters": {
                    "id": 13117,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13111,
                        "mutability": "mutable",
                        "name": "accountDetails",
                        "nameLocation": "17471:14:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 13171,
                        "src": "17449:36:63",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                          "typeString": "struct TwabLib.AccountDetails"
                        },
                        "typeName": {
                          "id": 13110,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13109,
                            "name": "AccountDetails",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12485,
                            "src": "17449:14:63"
                          },
                          "referencedDeclaration": 12485,
                          "src": "17449:14:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12485_storage_ptr",
                            "typeString": "struct TwabLib.AccountDetails"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13114,
                        "mutability": "mutable",
                        "name": "twab",
                        "nameLocation": "17533:4:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 13171,
                        "src": "17499:38:63",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Observation_$12066_memory_ptr",
                          "typeString": "struct ObservationLib.Observation"
                        },
                        "typeName": {
                          "id": 13113,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13112,
                            "name": "ObservationLib.Observation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12066,
                            "src": "17499:26:63"
                          },
                          "referencedDeclaration": 12066,
                          "src": "17499:26:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Observation_$12066_storage_ptr",
                            "typeString": "struct ObservationLib.Observation"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13116,
                        "mutability": "mutable",
                        "name": "isNew",
                        "nameLocation": "17556:5:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 13171,
                        "src": "17551:10:63",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 13115,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "17551:4:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "17435:136:63"
                  },
                  "scope": 13211,
                  "src": "17234:969:63",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "private"
                },
                {
                  "body": {
                    "id": 13209,
                    "nodeType": "Block",
                    "src": "18585:739:63",
                    "statements": [
                      {
                        "expression": {
                          "id": 13193,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "expression": {
                              "id": 13181,
                              "name": "_accountDetails",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13175,
                              "src": "18595:15:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              }
                            },
                            "id": 13183,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "memberName": "nextTwabIndex",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12482,
                            "src": "18595:29:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "arguments": [
                                  {
                                    "expression": {
                                      "id": 13188,
                                      "name": "_accountDetails",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 13175,
                                      "src": "18671:15:63",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                                        "typeString": "struct TwabLib.AccountDetails memory"
                                      }
                                    },
                                    "id": 13189,
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "nextTwabIndex",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 12482,
                                    "src": "18671:29:63",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint24",
                                      "typeString": "uint24"
                                    }
                                  },
                                  {
                                    "id": 13190,
                                    "name": "MAX_CARDINALITY",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 12478,
                                    "src": "18702:15:63",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint24",
                                      "typeString": "uint24"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_uint24",
                                      "typeString": "uint24"
                                    },
                                    {
                                      "typeIdentifier": "t_uint24",
                                      "typeString": "uint24"
                                    }
                                  ],
                                  "expression": {
                                    "id": 13186,
                                    "name": "RingBufferLib",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 12461,
                                    "src": "18647:13:63",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_contract$_RingBufferLib_$12461_$",
                                      "typeString": "type(library RingBufferLib)"
                                    }
                                  },
                                  "id": 13187,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "nextIndex",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 12460,
                                  "src": "18647:23:63",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$",
                                    "typeString": "function (uint256,uint256) pure returns (uint256)"
                                  }
                                },
                                "id": 13191,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "18647:71:63",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              ],
                              "id": 13185,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "nodeType": "ElementaryTypeNameExpression",
                              "src": "18627:6:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_uint24_$",
                                "typeString": "type(uint24)"
                              },
                              "typeName": {
                                "id": 13184,
                                "name": "uint24",
                                "nodeType": "ElementaryTypeName",
                                "src": "18627:6:63",
                                "typeDescriptions": {}
                              }
                            },
                            "id": 13192,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "typeConversion",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "18627:101:63",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "src": "18595:133:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          }
                        },
                        "id": 13194,
                        "nodeType": "ExpressionStatement",
                        "src": "18595:133:63"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint24",
                            "typeString": "uint24"
                          },
                          "id": 13198,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 13195,
                              "name": "_accountDetails",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13175,
                              "src": "19181:15:63",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                                "typeString": "struct TwabLib.AccountDetails memory"
                              }
                            },
                            "id": 13196,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "cardinality",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 12484,
                            "src": "19181:27:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "id": 13197,
                            "name": "MAX_CARDINALITY",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 12478,
                            "src": "19211:15:63",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint24",
                              "typeString": "uint24"
                            }
                          },
                          "src": "19181:45:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 13206,
                        "nodeType": "IfStatement",
                        "src": "19177:108:63",
                        "trueBody": {
                          "id": 13205,
                          "nodeType": "Block",
                          "src": "19228:57:63",
                          "statements": [
                            {
                              "expression": {
                                "id": 13203,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "expression": {
                                    "id": 13199,
                                    "name": "_accountDetails",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 13175,
                                    "src": "19242:15:63",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                                      "typeString": "struct TwabLib.AccountDetails memory"
                                    }
                                  },
                                  "id": 13201,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": true,
                                  "memberName": "cardinality",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 12484,
                                  "src": "19242:27:63",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint24",
                                    "typeString": "uint24"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "+=",
                                "rightHandSide": {
                                  "hexValue": "31",
                                  "id": 13202,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "19273:1:63",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_1_by_1",
                                    "typeString": "int_const 1"
                                  },
                                  "value": "1"
                                },
                                "src": "19242:32:63",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint24",
                                  "typeString": "uint24"
                                }
                              },
                              "id": 13204,
                              "nodeType": "ExpressionStatement",
                              "src": "19242:32:63"
                            }
                          ]
                        }
                      },
                      {
                        "expression": {
                          "id": 13207,
                          "name": "_accountDetails",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 13175,
                          "src": "19302:15:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                            "typeString": "struct TwabLib.AccountDetails memory"
                          }
                        },
                        "functionReturnParameters": 13180,
                        "id": 13208,
                        "nodeType": "Return",
                        "src": "19295:22:63"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13172,
                    "nodeType": "StructuredDocumentation",
                    "src": "18209:244:63",
                    "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": 13210,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "push",
                  "nameLocation": "18467:4:63",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 13176,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13175,
                        "mutability": "mutable",
                        "name": "_accountDetails",
                        "nameLocation": "18494:15:63",
                        "nodeType": "VariableDeclaration",
                        "scope": 13210,
                        "src": "18472:37:63",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                          "typeString": "struct TwabLib.AccountDetails"
                        },
                        "typeName": {
                          "id": 13174,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13173,
                            "name": "AccountDetails",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12485,
                            "src": "18472:14:63"
                          },
                          "referencedDeclaration": 12485,
                          "src": "18472:14:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12485_storage_ptr",
                            "typeString": "struct TwabLib.AccountDetails"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "18471:39:63"
                  },
                  "returnParameters": {
                    "id": 13180,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13179,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 13210,
                        "src": "18558:21:63",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_AccountDetails_$12485_memory_ptr",
                          "typeString": "struct TwabLib.AccountDetails"
                        },
                        "typeName": {
                          "id": 13178,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13177,
                            "name": "AccountDetails",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 12485,
                            "src": "18558:14:63"
                          },
                          "referencedDeclaration": 12485,
                          "src": "18558:14:63",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_AccountDetails_$12485_storage_ptr",
                            "typeString": "struct TwabLib.AccountDetails"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "18557:23:63"
                  },
                  "scope": 13211,
                  "src": "18458:866:63",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 13212,
              "src": "934:18392:63",
              "usedErrors": []
            }
          ],
          "src": "37:19290:63"
        },
        "id": 63
      },
      "@pooltogether/v4-core/contracts/permit/EIP2612PermitAndDeposit.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/permit/EIP2612PermitAndDeposit.sol",
          "exportedSymbols": {
            "Address": [
              1775
            ],
            "DelegateSignature": [
              13233
            ],
            "EIP2612PermitAndDeposit": [
              13436
            ],
            "ExtendedSafeCastLib": [
              12045
            ],
            "ICompLike": [
              10642
            ],
            "IControlledToken": [
              10681
            ],
            "IERC20": [
              890
            ],
            "IERC20Permit": [
              1120
            ],
            "IPrizePool": [
              11495
            ],
            "ITicket": [
              11825
            ],
            "ObservationLib": [
              12204
            ],
            "OverflowSafeComparatorLib": [
              12376
            ],
            "RingBufferLib": [
              12461
            ],
            "SafeCast": [
              3225
            ],
            "SafeERC20": [
              1344
            ],
            "Signature": [
              13227
            ],
            "TwabLib": [
              13211
            ]
          },
          "id": 13437,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 13213,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:64"
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "id": 13214,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 13437,
              "sourceUnit": 891,
              "src": "61:56:64",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol",
              "file": "@openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol",
              "id": 13215,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 13437,
              "sourceUnit": 1121,
              "src": "118:79:64",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol",
              "id": 13216,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 13437,
              "sourceUnit": 1345,
              "src": "198:65:64",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IPrizePool.sol",
              "file": "../interfaces/IPrizePool.sol",
              "id": 13217,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 13437,
              "sourceUnit": 11496,
              "src": "265:38:64",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/ITicket.sol",
              "file": "../interfaces/ITicket.sol",
              "id": 13218,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 13437,
              "sourceUnit": 11826,
              "src": "304:35:64",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "canonicalName": "Signature",
              "id": 13227,
              "members": [
                {
                  "constant": false,
                  "id": 13220,
                  "mutability": "mutable",
                  "name": "deadline",
                  "nameLocation": "602:8:64",
                  "nodeType": "VariableDeclaration",
                  "scope": 13227,
                  "src": "594:16:64",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 13219,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "594:7:64",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 13222,
                  "mutability": "mutable",
                  "name": "v",
                  "nameLocation": "622:1:64",
                  "nodeType": "VariableDeclaration",
                  "scope": 13227,
                  "src": "616:7:64",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint8",
                    "typeString": "uint8"
                  },
                  "typeName": {
                    "id": 13221,
                    "name": "uint8",
                    "nodeType": "ElementaryTypeName",
                    "src": "616:5:64",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint8",
                      "typeString": "uint8"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 13224,
                  "mutability": "mutable",
                  "name": "r",
                  "nameLocation": "637:1:64",
                  "nodeType": "VariableDeclaration",
                  "scope": 13227,
                  "src": "629:9:64",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 13223,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "629:7:64",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 13226,
                  "mutability": "mutable",
                  "name": "s",
                  "nameLocation": "652:1:64",
                  "nodeType": "VariableDeclaration",
                  "scope": 13227,
                  "src": "644:9:64",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes32",
                    "typeString": "bytes32"
                  },
                  "typeName": {
                    "id": 13225,
                    "name": "bytes32",
                    "nodeType": "ElementaryTypeName",
                    "src": "644:7:64",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes32",
                      "typeString": "bytes32"
                    }
                  },
                  "visibility": "internal"
                }
              ],
              "name": "Signature",
              "nameLocation": "578:9:64",
              "nodeType": "StructDefinition",
              "scope": 13437,
              "src": "571:85:64",
              "visibility": "public"
            },
            {
              "canonicalName": "DelegateSignature",
              "id": 13233,
              "members": [
                {
                  "constant": false,
                  "id": 13229,
                  "mutability": "mutable",
                  "name": "delegate",
                  "nameLocation": "883:8:64",
                  "nodeType": "VariableDeclaration",
                  "scope": 13233,
                  "src": "875:16:64",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 13228,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "875:7:64",
                    "stateMutability": "nonpayable",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 13232,
                  "mutability": "mutable",
                  "name": "signature",
                  "nameLocation": "907:9:64",
                  "nodeType": "VariableDeclaration",
                  "scope": 13233,
                  "src": "897:19:64",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_struct$_Signature_$13227_storage_ptr",
                    "typeString": "struct Signature"
                  },
                  "typeName": {
                    "id": 13231,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 13230,
                      "name": "Signature",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 13227,
                      "src": "897:9:64"
                    },
                    "referencedDeclaration": 13227,
                    "src": "897:9:64",
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_Signature_$13227_storage_ptr",
                      "typeString": "struct Signature"
                    }
                  },
                  "visibility": "internal"
                }
              ],
              "name": "DelegateSignature",
              "nameLocation": "851:17:64",
              "nodeType": "StructDefinition",
              "scope": 13437,
              "src": "844:75:64",
              "visibility": "public"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 13234,
                "nodeType": "StructuredDocumentation",
                "src": "921:188:64",
                "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": 13436,
              "linearizedBaseContracts": [
                13436
              ],
              "name": "EIP2612PermitAndDeposit",
              "nameLocation": "1118:23:64",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "id": 13238,
                  "libraryName": {
                    "id": 13235,
                    "name": "SafeERC20",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 1344,
                    "src": "1154:9:64"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "1148:27:64",
                  "typeName": {
                    "id": 13237,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 13236,
                      "name": "IERC20",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 890,
                      "src": "1168:6:64"
                    },
                    "referencedDeclaration": 890,
                    "src": "1168:6:64",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IERC20_$890",
                      "typeString": "contract IERC20"
                    }
                  }
                },
                {
                  "body": {
                    "id": 13301,
                    "nodeType": "Block",
                    "src": "1919:546:64",
                    "statements": [
                      {
                        "assignments": [
                          13257
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13257,
                            "mutability": "mutable",
                            "name": "_ticket",
                            "nameLocation": "1937:7:64",
                            "nodeType": "VariableDeclaration",
                            "scope": 13301,
                            "src": "1929:15:64",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_ITicket_$11825",
                              "typeString": "contract ITicket"
                            },
                            "typeName": {
                              "id": 13256,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 13255,
                                "name": "ITicket",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 11825,
                                "src": "1929:7:64"
                              },
                              "referencedDeclaration": 11825,
                              "src": "1929:7:64",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$11825",
                                "typeString": "contract ITicket"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13261,
                        "initialValue": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "id": 13258,
                              "name": "_prizePool",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13242,
                              "src": "1947:10:64",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IPrizePool_$11495",
                                "typeString": "contract IPrizePool"
                              }
                            },
                            "id": 13259,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getTicket",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11404,
                            "src": "1947:20:64",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$__$returns$_t_contract$_ITicket_$11825_$",
                              "typeString": "function () view external returns (contract ITicket)"
                            }
                          },
                          "id": 13260,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1947:22:64",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$11825",
                            "typeString": "contract ITicket"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1929:40:64"
                      },
                      {
                        "assignments": [
                          13263
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13263,
                            "mutability": "mutable",
                            "name": "_token",
                            "nameLocation": "1987:6:64",
                            "nodeType": "VariableDeclaration",
                            "scope": 13301,
                            "src": "1979:14:64",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            },
                            "typeName": {
                              "id": 13262,
                              "name": "address",
                              "nodeType": "ElementaryTypeName",
                              "src": "1979:7:64",
                              "stateMutability": "nonpayable",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13267,
                        "initialValue": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "id": 13264,
                              "name": "_prizePool",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13242,
                              "src": "1996:10:64",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IPrizePool_$11495",
                                "typeString": "contract IPrizePool"
                              }
                            },
                            "id": 13265,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getToken",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11410,
                            "src": "1996:19:64",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$__$returns$_t_address_$",
                              "typeString": "function () view external returns (address)"
                            }
                          },
                          "id": 13266,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1996:21:64",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1979:38:64"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 13272,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "2069:3:64",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 13273,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "2069:10:64",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "id": 13276,
                                  "name": "this",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -28,
                                  "src": "2101:4:64",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_EIP2612PermitAndDeposit_$13436",
                                    "typeString": "contract EIP2612PermitAndDeposit"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_EIP2612PermitAndDeposit_$13436",
                                    "typeString": "contract EIP2612PermitAndDeposit"
                                  }
                                ],
                                "id": 13275,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "2093:7:64",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 13274,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "2093:7:64",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 13277,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "2093:13:64",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 13278,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13244,
                              "src": "2120:7:64",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "expression": {
                                "id": 13279,
                                "name": "_permitSignature",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13249,
                                "src": "2141:16:64",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Signature_$13227_calldata_ptr",
                                  "typeString": "struct Signature calldata"
                                }
                              },
                              "id": 13280,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "deadline",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 13220,
                              "src": "2141:25:64",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "expression": {
                                "id": 13281,
                                "name": "_permitSignature",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13249,
                                "src": "2180:16:64",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Signature_$13227_calldata_ptr",
                                  "typeString": "struct Signature calldata"
                                }
                              },
                              "id": 13282,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "v",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 13222,
                              "src": "2180:18:64",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            {
                              "expression": {
                                "id": 13283,
                                "name": "_permitSignature",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13249,
                                "src": "2212:16:64",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Signature_$13227_calldata_ptr",
                                  "typeString": "struct Signature calldata"
                                }
                              },
                              "id": 13284,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "r",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 13224,
                              "src": "2212:18:64",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            {
                              "expression": {
                                "id": 13285,
                                "name": "_permitSignature",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13249,
                                "src": "2244:16:64",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Signature_$13227_calldata_ptr",
                                  "typeString": "struct Signature calldata"
                                }
                              },
                              "id": 13286,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "s",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 13226,
                              "src": "2244:18:64",
                              "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": 13269,
                                  "name": "_token",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13263,
                                  "src": "2041:6:64",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                ],
                                "id": 13268,
                                "name": "IERC20Permit",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1120,
                                "src": "2028:12:64",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_contract$_IERC20Permit_$1120_$",
                                  "typeString": "type(contract IERC20Permit)"
                                }
                              },
                              "id": 13270,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "2028:20:64",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20Permit_$1120",
                                "typeString": "contract IERC20Permit"
                              }
                            },
                            "id": 13271,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "permit",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 1105,
                            "src": "2028:27:64",
                            "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": 13287,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2028:244:64",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13288,
                        "nodeType": "ExpressionStatement",
                        "src": "2028:244:64"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 13292,
                                  "name": "_prizePool",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13242,
                                  "src": "2326:10:64",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_IPrizePool_$11495",
                                    "typeString": "contract IPrizePool"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_IPrizePool_$11495",
                                    "typeString": "contract IPrizePool"
                                  }
                                ],
                                "id": 13291,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "2318:7:64",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 13290,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "2318:7:64",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 13293,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "2318:19:64",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 13294,
                              "name": "_ticket",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13257,
                              "src": "2351:7:64",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$11825",
                                "typeString": "contract ITicket"
                              }
                            },
                            {
                              "id": 13295,
                              "name": "_token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13263,
                              "src": "2372:6:64",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 13296,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13244,
                              "src": "2392:7:64",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 13297,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13246,
                              "src": "2413:3:64",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 13298,
                              "name": "_delegateSignature",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13252,
                              "src": "2430:18:64",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_DelegateSignature_$13233_calldata_ptr",
                                "typeString": "struct DelegateSignature calldata"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_contract$_ITicket_$11825",
                                "typeString": "contract ITicket"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_struct$_DelegateSignature_$13233_calldata_ptr",
                                "typeString": "struct DelegateSignature calldata"
                              }
                            ],
                            "id": 13289,
                            "name": "_depositToAndDelegate",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13392,
                            "src": "2283:21:64",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_contract$_ITicket_$11825_$_t_address_$_t_uint256_$_t_address_$_t_struct$_DelegateSignature_$13233_calldata_ptr_$returns$__$",
                              "typeString": "function (address,contract ITicket,address,uint256,address,struct DelegateSignature calldata)"
                            }
                          },
                          "id": 13299,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2283:175:64",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13300,
                        "nodeType": "ExpressionStatement",
                        "src": "2283:175:64"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13239,
                    "nodeType": "StructuredDocumentation",
                    "src": "1181:502:64",
                    "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": 13302,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "permitAndDepositToAndDelegate",
                  "nameLocation": "1697:29:64",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 13253,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13242,
                        "mutability": "mutable",
                        "name": "_prizePool",
                        "nameLocation": "1747:10:64",
                        "nodeType": "VariableDeclaration",
                        "scope": 13302,
                        "src": "1736:21:64",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IPrizePool_$11495",
                          "typeString": "contract IPrizePool"
                        },
                        "typeName": {
                          "id": 13241,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13240,
                            "name": "IPrizePool",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11495,
                            "src": "1736:10:64"
                          },
                          "referencedDeclaration": 11495,
                          "src": "1736:10:64",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizePool_$11495",
                            "typeString": "contract IPrizePool"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13244,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "1775:7:64",
                        "nodeType": "VariableDeclaration",
                        "scope": 13302,
                        "src": "1767:15:64",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 13243,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1767:7:64",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13246,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "1800:3:64",
                        "nodeType": "VariableDeclaration",
                        "scope": 13302,
                        "src": "1792:11:64",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 13245,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1792:7:64",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13249,
                        "mutability": "mutable",
                        "name": "_permitSignature",
                        "nameLocation": "1832:16:64",
                        "nodeType": "VariableDeclaration",
                        "scope": 13302,
                        "src": "1813:35:64",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Signature_$13227_calldata_ptr",
                          "typeString": "struct Signature"
                        },
                        "typeName": {
                          "id": 13248,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13247,
                            "name": "Signature",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 13227,
                            "src": "1813:9:64"
                          },
                          "referencedDeclaration": 13227,
                          "src": "1813:9:64",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Signature_$13227_storage_ptr",
                            "typeString": "struct Signature"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13252,
                        "mutability": "mutable",
                        "name": "_delegateSignature",
                        "nameLocation": "1885:18:64",
                        "nodeType": "VariableDeclaration",
                        "scope": 13302,
                        "src": "1858:45:64",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_DelegateSignature_$13233_calldata_ptr",
                          "typeString": "struct DelegateSignature"
                        },
                        "typeName": {
                          "id": 13251,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13250,
                            "name": "DelegateSignature",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 13233,
                            "src": "1858:17:64"
                          },
                          "referencedDeclaration": 13233,
                          "src": "1858:17:64",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_DelegateSignature_$13233_storage_ptr",
                            "typeString": "struct DelegateSignature"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1726:183:64"
                  },
                  "returnParameters": {
                    "id": 13254,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1919:0:64"
                  },
                  "scope": 13436,
                  "src": "1688:777:64",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 13341,
                    "nodeType": "Block",
                    "src": "2988:291:64",
                    "statements": [
                      {
                        "assignments": [
                          13318
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13318,
                            "mutability": "mutable",
                            "name": "_ticket",
                            "nameLocation": "3006:7:64",
                            "nodeType": "VariableDeclaration",
                            "scope": 13341,
                            "src": "2998:15:64",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_ITicket_$11825",
                              "typeString": "contract ITicket"
                            },
                            "typeName": {
                              "id": 13317,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 13316,
                                "name": "ITicket",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 11825,
                                "src": "2998:7:64"
                              },
                              "referencedDeclaration": 11825,
                              "src": "2998:7:64",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$11825",
                                "typeString": "contract ITicket"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13322,
                        "initialValue": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "id": 13319,
                              "name": "_prizePool",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13306,
                              "src": "3016:10:64",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IPrizePool_$11495",
                                "typeString": "contract IPrizePool"
                              }
                            },
                            "id": 13320,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getTicket",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11404,
                            "src": "3016:20:64",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$__$returns$_t_contract$_ITicket_$11825_$",
                              "typeString": "function () view external returns (contract ITicket)"
                            }
                          },
                          "id": 13321,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3016:22:64",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$11825",
                            "typeString": "contract ITicket"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2998:40:64"
                      },
                      {
                        "assignments": [
                          13324
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13324,
                            "mutability": "mutable",
                            "name": "_token",
                            "nameLocation": "3056:6:64",
                            "nodeType": "VariableDeclaration",
                            "scope": 13341,
                            "src": "3048:14:64",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            },
                            "typeName": {
                              "id": 13323,
                              "name": "address",
                              "nodeType": "ElementaryTypeName",
                              "src": "3048:7:64",
                              "stateMutability": "nonpayable",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13328,
                        "initialValue": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "id": 13325,
                              "name": "_prizePool",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13306,
                              "src": "3065:10:64",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IPrizePool_$11495",
                                "typeString": "contract IPrizePool"
                              }
                            },
                            "id": 13326,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getToken",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11410,
                            "src": "3065:19:64",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$__$returns$_t_address_$",
                              "typeString": "function () view external returns (address)"
                            }
                          },
                          "id": 13327,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3065:21:64",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3048:38:64"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 13332,
                                  "name": "_prizePool",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13306,
                                  "src": "3140:10:64",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_IPrizePool_$11495",
                                    "typeString": "contract IPrizePool"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_IPrizePool_$11495",
                                    "typeString": "contract IPrizePool"
                                  }
                                ],
                                "id": 13331,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "3132:7:64",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 13330,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "3132:7:64",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 13333,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "3132:19:64",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 13334,
                              "name": "_ticket",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13318,
                              "src": "3165:7:64",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$11825",
                                "typeString": "contract ITicket"
                              }
                            },
                            {
                              "id": 13335,
                              "name": "_token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13324,
                              "src": "3186:6:64",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 13336,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13308,
                              "src": "3206:7:64",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 13337,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13310,
                              "src": "3227:3:64",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 13338,
                              "name": "_delegateSignature",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13313,
                              "src": "3244:18:64",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_DelegateSignature_$13233_calldata_ptr",
                                "typeString": "struct DelegateSignature calldata"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_contract$_ITicket_$11825",
                                "typeString": "contract ITicket"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_struct$_DelegateSignature_$13233_calldata_ptr",
                                "typeString": "struct DelegateSignature calldata"
                              }
                            ],
                            "id": 13329,
                            "name": "_depositToAndDelegate",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13392,
                            "src": "3097:21:64",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_contract$_ITicket_$11825_$_t_address_$_t_uint256_$_t_address_$_t_struct$_DelegateSignature_$13233_calldata_ptr_$returns$__$",
                              "typeString": "function (address,contract ITicket,address,uint256,address,struct DelegateSignature calldata)"
                            }
                          },
                          "id": 13339,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3097:175:64",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13340,
                        "nodeType": "ExpressionStatement",
                        "src": "3097:175:64"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13303,
                    "nodeType": "StructuredDocumentation",
                    "src": "2471:335:64",
                    "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": 13342,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "depositToAndDelegate",
                  "nameLocation": "2820:20:64",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 13314,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13306,
                        "mutability": "mutable",
                        "name": "_prizePool",
                        "nameLocation": "2861:10:64",
                        "nodeType": "VariableDeclaration",
                        "scope": 13342,
                        "src": "2850:21:64",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IPrizePool_$11495",
                          "typeString": "contract IPrizePool"
                        },
                        "typeName": {
                          "id": 13305,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13304,
                            "name": "IPrizePool",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11495,
                            "src": "2850:10:64"
                          },
                          "referencedDeclaration": 11495,
                          "src": "2850:10:64",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizePool_$11495",
                            "typeString": "contract IPrizePool"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13308,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "2889:7:64",
                        "nodeType": "VariableDeclaration",
                        "scope": 13342,
                        "src": "2881:15:64",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 13307,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2881:7:64",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13310,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "2914:3:64",
                        "nodeType": "VariableDeclaration",
                        "scope": 13342,
                        "src": "2906:11:64",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 13309,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2906:7:64",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13313,
                        "mutability": "mutable",
                        "name": "_delegateSignature",
                        "nameLocation": "2954:18:64",
                        "nodeType": "VariableDeclaration",
                        "scope": 13342,
                        "src": "2927:45:64",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_DelegateSignature_$13233_calldata_ptr",
                          "typeString": "struct DelegateSignature"
                        },
                        "typeName": {
                          "id": 13312,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13311,
                            "name": "DelegateSignature",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 13233,
                            "src": "2927:17:64"
                          },
                          "referencedDeclaration": 13233,
                          "src": "2927:17:64",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_DelegateSignature_$13233_storage_ptr",
                            "typeString": "struct DelegateSignature"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2840:138:64"
                  },
                  "returnParameters": {
                    "id": 13315,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2988:0:64"
                  },
                  "scope": 13436,
                  "src": "2811:468:64",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 13391,
                    "nodeType": "Block",
                    "src": "3996:356:64",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 13361,
                              "name": "_token",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13350,
                              "src": "4017:6:64",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "expression": {
                                "id": 13362,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "4025:3:64",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 13363,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "4025:10:64",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 13364,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13352,
                              "src": "4037:7:64",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 13365,
                              "name": "_prizePool",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13345,
                              "src": "4046:10:64",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 13366,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13354,
                              "src": "4058:3:64",
                              "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": 13360,
                            "name": "_depositTo",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13435,
                            "src": "4006:10:64",
                            "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": 13367,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4006:56:64",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13368,
                        "nodeType": "ExpressionStatement",
                        "src": "4006:56:64"
                      },
                      {
                        "assignments": [
                          13371
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13371,
                            "mutability": "mutable",
                            "name": "signature",
                            "nameLocation": "4090:9:64",
                            "nodeType": "VariableDeclaration",
                            "scope": 13391,
                            "src": "4073:26:64",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Signature_$13227_memory_ptr",
                              "typeString": "struct Signature"
                            },
                            "typeName": {
                              "id": 13370,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 13369,
                                "name": "Signature",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 13227,
                                "src": "4073:9:64"
                              },
                              "referencedDeclaration": 13227,
                              "src": "4073:9:64",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Signature_$13227_storage_ptr",
                                "typeString": "struct Signature"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13374,
                        "initialValue": {
                          "expression": {
                            "id": 13372,
                            "name": "_delegateSignature",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13357,
                            "src": "4102:18:64",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_DelegateSignature_$13233_calldata_ptr",
                              "typeString": "struct DelegateSignature calldata"
                            }
                          },
                          "id": 13373,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "signature",
                          "nodeType": "MemberAccess",
                          "referencedDeclaration": 13232,
                          "src": "4102:28:64",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Signature_$13227_calldata_ptr",
                            "typeString": "struct Signature calldata"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4073:57:64"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 13378,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13354,
                              "src": "4184:3:64",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "expression": {
                                "id": 13379,
                                "name": "_delegateSignature",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13357,
                                "src": "4201:18:64",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_DelegateSignature_$13233_calldata_ptr",
                                  "typeString": "struct DelegateSignature calldata"
                                }
                              },
                              "id": 13380,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "delegate",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 13229,
                              "src": "4201:27:64",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "expression": {
                                "id": 13381,
                                "name": "signature",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13371,
                                "src": "4242:9:64",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Signature_$13227_memory_ptr",
                                  "typeString": "struct Signature memory"
                                }
                              },
                              "id": 13382,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "deadline",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 13220,
                              "src": "4242:18:64",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "expression": {
                                "id": 13383,
                                "name": "signature",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13371,
                                "src": "4274:9:64",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Signature_$13227_memory_ptr",
                                  "typeString": "struct Signature memory"
                                }
                              },
                              "id": 13384,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "v",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 13222,
                              "src": "4274:11:64",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            {
                              "expression": {
                                "id": 13385,
                                "name": "signature",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13371,
                                "src": "4299:9:64",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Signature_$13227_memory_ptr",
                                  "typeString": "struct Signature memory"
                                }
                              },
                              "id": 13386,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "r",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 13224,
                              "src": "4299:11:64",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            {
                              "expression": {
                                "id": 13387,
                                "name": "signature",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13371,
                                "src": "4324:9:64",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Signature_$13227_memory_ptr",
                                  "typeString": "struct Signature memory"
                                }
                              },
                              "id": 13388,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "s",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 13226,
                              "src": "4324:11:64",
                              "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": 13375,
                              "name": "_ticket",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13348,
                              "src": "4141:7:64",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$11825",
                                "typeString": "contract ITicket"
                              }
                            },
                            "id": 13377,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "delegateWithSignature",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11724,
                            "src": "4141:29:64",
                            "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": 13389,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4141:204:64",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13390,
                        "nodeType": "ExpressionStatement",
                        "src": "4141:204:64"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13343,
                    "nodeType": "StructuredDocumentation",
                    "src": "3285:482:64",
                    "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": 13392,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_depositToAndDelegate",
                  "nameLocation": "3781:21:64",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 13358,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13345,
                        "mutability": "mutable",
                        "name": "_prizePool",
                        "nameLocation": "3820:10:64",
                        "nodeType": "VariableDeclaration",
                        "scope": 13392,
                        "src": "3812:18:64",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 13344,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3812:7:64",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13348,
                        "mutability": "mutable",
                        "name": "_ticket",
                        "nameLocation": "3848:7:64",
                        "nodeType": "VariableDeclaration",
                        "scope": 13392,
                        "src": "3840:15:64",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ITicket_$11825",
                          "typeString": "contract ITicket"
                        },
                        "typeName": {
                          "id": 13347,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13346,
                            "name": "ITicket",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11825,
                            "src": "3840:7:64"
                          },
                          "referencedDeclaration": 11825,
                          "src": "3840:7:64",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$11825",
                            "typeString": "contract ITicket"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13350,
                        "mutability": "mutable",
                        "name": "_token",
                        "nameLocation": "3873:6:64",
                        "nodeType": "VariableDeclaration",
                        "scope": 13392,
                        "src": "3865:14:64",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 13349,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3865:7:64",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13352,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "3897:7:64",
                        "nodeType": "VariableDeclaration",
                        "scope": 13392,
                        "src": "3889:15:64",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 13351,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3889:7:64",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13354,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "3922:3:64",
                        "nodeType": "VariableDeclaration",
                        "scope": 13392,
                        "src": "3914:11:64",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 13353,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3914:7:64",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13357,
                        "mutability": "mutable",
                        "name": "_delegateSignature",
                        "nameLocation": "3962:18:64",
                        "nodeType": "VariableDeclaration",
                        "scope": 13392,
                        "src": "3935:45:64",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_DelegateSignature_$13233_calldata_ptr",
                          "typeString": "struct DelegateSignature"
                        },
                        "typeName": {
                          "id": 13356,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13355,
                            "name": "DelegateSignature",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 13233,
                            "src": "3935:17:64"
                          },
                          "referencedDeclaration": 13233,
                          "src": "3935:17:64",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_DelegateSignature_$13233_storage_ptr",
                            "typeString": "struct DelegateSignature"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3802:184:64"
                  },
                  "returnParameters": {
                    "id": 13359,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3996:0:64"
                  },
                  "scope": 13436,
                  "src": "3772:580:64",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 13434,
                    "nodeType": "Block",
                    "src": "4892:203:64",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 13410,
                              "name": "_owner",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13397,
                              "src": "4934:6:64",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "id": 13413,
                                  "name": "this",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -28,
                                  "src": "4950:4:64",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_EIP2612PermitAndDeposit_$13436",
                                    "typeString": "contract EIP2612PermitAndDeposit"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_EIP2612PermitAndDeposit_$13436",
                                    "typeString": "contract EIP2612PermitAndDeposit"
                                  }
                                ],
                                "id": 13412,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "4942:7:64",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 13411,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "4942:7:64",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 13414,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "4942:13:64",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 13415,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13399,
                              "src": "4957:7:64",
                              "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": 13407,
                                  "name": "_token",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13395,
                                  "src": "4909:6:64",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                ],
                                "id": 13406,
                                "name": "IERC20",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 890,
                                "src": "4902:6:64",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_contract$_IERC20_$890_$",
                                  "typeString": "type(contract IERC20)"
                                }
                              },
                              "id": 13408,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "4902:14:64",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$890",
                                "typeString": "contract IERC20"
                              }
                            },
                            "id": 13409,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "safeTransferFrom",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 1177,
                            "src": "4902:31:64",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20_$890_$_t_address_$_t_address_$_t_uint256_$returns$__$bound_to$_t_contract$_IERC20_$890_$",
                              "typeString": "function (contract IERC20,address,address,uint256)"
                            }
                          },
                          "id": 13416,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4902:63:64",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13417,
                        "nodeType": "ExpressionStatement",
                        "src": "4902:63:64"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 13422,
                              "name": "_prizePool",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13401,
                              "src": "5012:10:64",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 13423,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13399,
                              "src": "5024:7:64",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "arguments": [
                                {
                                  "id": 13419,
                                  "name": "_token",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13395,
                                  "src": "4982:6:64",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                ],
                                "id": 13418,
                                "name": "IERC20",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 890,
                                "src": "4975:6:64",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_contract$_IERC20_$890_$",
                                  "typeString": "type(contract IERC20)"
                                }
                              },
                              "id": 13420,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "4975:14:64",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$890",
                                "typeString": "contract IERC20"
                              }
                            },
                            "id": 13421,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "safeIncreaseAllowance",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 1257,
                            "src": "4975:36:64",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20_$890_$_t_address_$_t_uint256_$returns$__$bound_to$_t_contract$_IERC20_$890_$",
                              "typeString": "function (contract IERC20,address,uint256)"
                            }
                          },
                          "id": 13424,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4975:57:64",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13425,
                        "nodeType": "ExpressionStatement",
                        "src": "4975:57:64"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 13430,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13403,
                              "src": "5075:3:64",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 13431,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13399,
                              "src": "5080:7:64",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "arguments": [
                                {
                                  "id": 13427,
                                  "name": "_prizePool",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13401,
                                  "src": "5053:10:64",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                ],
                                "id": 13426,
                                "name": "IPrizePool",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 11495,
                                "src": "5042:10:64",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_contract$_IPrizePool_$11495_$",
                                  "typeString": "type(contract IPrizePool)"
                                }
                              },
                              "id": 13428,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "5042:22:64",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IPrizePool_$11495",
                                "typeString": "contract IPrizePool"
                              }
                            },
                            "id": 13429,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "depositTo",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11325,
                            "src": "5042:32:64",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256) external"
                            }
                          },
                          "id": 13432,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5042:46:64",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13433,
                        "nodeType": "ExpressionStatement",
                        "src": "5042:46:64"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13393,
                    "nodeType": "StructuredDocumentation",
                    "src": "4358:372:64",
                    "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": 13435,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_depositTo",
                  "nameLocation": "4744:10:64",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 13404,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13395,
                        "mutability": "mutable",
                        "name": "_token",
                        "nameLocation": "4772:6:64",
                        "nodeType": "VariableDeclaration",
                        "scope": 13435,
                        "src": "4764:14:64",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 13394,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4764:7:64",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13397,
                        "mutability": "mutable",
                        "name": "_owner",
                        "nameLocation": "4796:6:64",
                        "nodeType": "VariableDeclaration",
                        "scope": 13435,
                        "src": "4788:14:64",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 13396,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4788:7:64",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13399,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "4820:7:64",
                        "nodeType": "VariableDeclaration",
                        "scope": 13435,
                        "src": "4812:15:64",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 13398,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4812:7:64",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13401,
                        "mutability": "mutable",
                        "name": "_prizePool",
                        "nameLocation": "4845:10:64",
                        "nodeType": "VariableDeclaration",
                        "scope": 13435,
                        "src": "4837:18:64",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 13400,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4837:7:64",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13403,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "4873:3:64",
                        "nodeType": "VariableDeclaration",
                        "scope": 13435,
                        "src": "4865:11:64",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 13402,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4865:7:64",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4754:128:64"
                  },
                  "returnParameters": {
                    "id": 13405,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4892:0:64"
                  },
                  "scope": 13436,
                  "src": "4735:360:64",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 13437,
              "src": "1109:3988:64",
              "usedErrors": []
            }
          ],
          "src": "37:5061:64"
        },
        "id": 64
      },
      "@pooltogether/v4-core/contracts/prize-pool/PrizePool.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/prize-pool/PrizePool.sol",
          "exportedSymbols": {
            "Address": [
              1775
            ],
            "ERC165Checker": [
              2820
            ],
            "ExtendedSafeCastLib": [
              12045
            ],
            "ICompLike": [
              10642
            ],
            "IControlledToken": [
              10681
            ],
            "IERC165": [
              2832
            ],
            "IERC20": [
              890
            ],
            "IERC721": [
              1460
            ],
            "IERC721Receiver": [
              1478
            ],
            "IPrizePool": [
              11495
            ],
            "ITicket": [
              11825
            ],
            "ObservationLib": [
              12204
            ],
            "OverflowSafeComparatorLib": [
              12376
            ],
            "Ownable": [
              5355
            ],
            "PrizePool": [
              14487
            ],
            "ReentrancyGuard": [
              266
            ],
            "RingBufferLib": [
              12461
            ],
            "SafeCast": [
              3225
            ],
            "SafeERC20": [
              1344
            ],
            "TwabLib": [
              13211
            ]
          },
          "id": 14488,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 13438,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:65"
            },
            {
              "absolutePath": "@openzeppelin/contracts/utils/math/SafeCast.sol",
              "file": "@openzeppelin/contracts/utils/math/SafeCast.sol",
              "id": 13439,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 14488,
              "sourceUnit": 3226,
              "src": "61:57:65",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/security/ReentrancyGuard.sol",
              "file": "@openzeppelin/contracts/security/ReentrancyGuard.sol",
              "id": 13440,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 14488,
              "sourceUnit": 267,
              "src": "119:62:65",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC721/IERC721.sol",
              "file": "@openzeppelin/contracts/token/ERC721/IERC721.sol",
              "id": 13441,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 14488,
              "sourceUnit": 1461,
              "src": "182:58:65",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol",
              "file": "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol",
              "id": 13442,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 14488,
              "sourceUnit": 1479,
              "src": "241:66:65",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/utils/introspection/ERC165Checker.sol",
              "file": "@openzeppelin/contracts/utils/introspection/ERC165Checker.sol",
              "id": 13443,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 14488,
              "sourceUnit": 2821,
              "src": "308:71:65",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol",
              "id": 13444,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 14488,
              "sourceUnit": 1345,
              "src": "380:65:65",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/owner-manager-contracts/contracts/Ownable.sol",
              "file": "@pooltogether/owner-manager-contracts/contracts/Ownable.sol",
              "id": 13445,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 14488,
              "sourceUnit": 5356,
              "src": "446:69:65",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/external/compound/ICompLike.sol",
              "file": "../external/compound/ICompLike.sol",
              "id": 13446,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 14488,
              "sourceUnit": 10643,
              "src": "517:44:65",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IPrizePool.sol",
              "file": "../interfaces/IPrizePool.sol",
              "id": 13447,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 14488,
              "sourceUnit": 11496,
              "src": "562:38:65",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/ITicket.sol",
              "file": "../interfaces/ITicket.sol",
              "id": 13448,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 14488,
              "sourceUnit": 11826,
              "src": "601:35:65",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": true,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 13450,
                    "name": "IPrizePool",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 11495,
                    "src": "1169:10:65"
                  },
                  "id": 13451,
                  "nodeType": "InheritanceSpecifier",
                  "src": "1169:10:65"
                },
                {
                  "baseName": {
                    "id": 13452,
                    "name": "Ownable",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 5355,
                    "src": "1181:7:65"
                  },
                  "id": 13453,
                  "nodeType": "InheritanceSpecifier",
                  "src": "1181:7:65"
                },
                {
                  "baseName": {
                    "id": 13454,
                    "name": "ReentrancyGuard",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 266,
                    "src": "1190:15:65"
                  },
                  "id": 13455,
                  "nodeType": "InheritanceSpecifier",
                  "src": "1190:15:65"
                },
                {
                  "baseName": {
                    "id": 13456,
                    "name": "IERC721Receiver",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 1478,
                    "src": "1207:15:65"
                  },
                  "id": 13457,
                  "nodeType": "InheritanceSpecifier",
                  "src": "1207:15:65"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 13449,
                "nodeType": "StructuredDocumentation",
                "src": "638:499:65",
                "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": 14487,
              "linearizedBaseContracts": [
                14487,
                1478,
                266,
                5355,
                11495
              ],
              "name": "PrizePool",
              "nameLocation": "1156:9:65",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "id": 13460,
                  "libraryName": {
                    "id": 13458,
                    "name": "SafeCast",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 3225,
                    "src": "1235:8:65"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "1229:27:65",
                  "typeName": {
                    "id": 13459,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "1248:7:65",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  }
                },
                {
                  "id": 13464,
                  "libraryName": {
                    "id": 13461,
                    "name": "SafeERC20",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 1344,
                    "src": "1267:9:65"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "1261:27:65",
                  "typeName": {
                    "id": 13463,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 13462,
                      "name": "IERC20",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 890,
                      "src": "1281:6:65"
                    },
                    "referencedDeclaration": 890,
                    "src": "1281:6:65",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IERC20_$890",
                      "typeString": "contract IERC20"
                    }
                  }
                },
                {
                  "id": 13467,
                  "libraryName": {
                    "id": 13465,
                    "name": "ERC165Checker",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 2820,
                    "src": "1299:13:65"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "1293:32:65",
                  "typeName": {
                    "id": 13466,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "1317:7:65",
                    "stateMutability": "nonpayable",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  }
                },
                {
                  "constant": true,
                  "documentation": {
                    "id": 13468,
                    "nodeType": "StructuredDocumentation",
                    "src": "1331:26:65",
                    "text": "@notice Semver Version"
                  },
                  "functionSelector": "ffa1ad74",
                  "id": 13471,
                  "mutability": "constant",
                  "name": "VERSION",
                  "nameLocation": "1385:7:65",
                  "nodeType": "VariableDeclaration",
                  "scope": 14487,
                  "src": "1362:40:65",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_string_memory_ptr",
                    "typeString": "string"
                  },
                  "typeName": {
                    "id": 13469,
                    "name": "string",
                    "nodeType": "ElementaryTypeName",
                    "src": "1362:6:65",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_storage_ptr",
                      "typeString": "string"
                    }
                  },
                  "value": {
                    "hexValue": "342e302e30",
                    "id": 13470,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "string",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "1395:7:65",
                    "typeDescriptions": {
                      "typeIdentifier": "t_stringliteral_81ed76178093786cbe0cb79744f6e7ca3336fbb9fe7d1ddff1f0157b63e09813",
                      "typeString": "literal_string \"4.0.0\""
                    },
                    "value": "4.0.0"
                  },
                  "visibility": "public"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 13472,
                    "nodeType": "StructuredDocumentation",
                    "src": "1409:77:65",
                    "text": "@notice Prize Pool ticket. Can only be set once by calling `setTicket()`."
                  },
                  "id": 13475,
                  "mutability": "mutable",
                  "name": "ticket",
                  "nameLocation": "1508:6:65",
                  "nodeType": "VariableDeclaration",
                  "scope": 14487,
                  "src": "1491:23:65",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_ITicket_$11825",
                    "typeString": "contract ITicket"
                  },
                  "typeName": {
                    "id": 13474,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 13473,
                      "name": "ITicket",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 11825,
                      "src": "1491:7:65"
                    },
                    "referencedDeclaration": 11825,
                    "src": "1491:7:65",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_ITicket_$11825",
                      "typeString": "contract ITicket"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 13476,
                    "nodeType": "StructuredDocumentation",
                    "src": "1521:64:65",
                    "text": "@notice The Prize Strategy that this Prize Pool is bound to."
                  },
                  "id": 13478,
                  "mutability": "mutable",
                  "name": "prizeStrategy",
                  "nameLocation": "1607:13:65",
                  "nodeType": "VariableDeclaration",
                  "scope": 14487,
                  "src": "1590:30:65",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 13477,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "1590:7:65",
                    "stateMutability": "nonpayable",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 13479,
                    "nodeType": "StructuredDocumentation",
                    "src": "1627:56:65",
                    "text": "@notice The total amount of tickets a user can hold."
                  },
                  "id": 13481,
                  "mutability": "mutable",
                  "name": "balanceCap",
                  "nameLocation": "1705:10:65",
                  "nodeType": "VariableDeclaration",
                  "scope": 14487,
                  "src": "1688:27:65",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 13480,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "1688:7:65",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 13482,
                    "nodeType": "StructuredDocumentation",
                    "src": "1722:67:65",
                    "text": "@notice The total amount of funds that the prize pool can hold."
                  },
                  "id": 13484,
                  "mutability": "mutable",
                  "name": "liquidityCap",
                  "nameLocation": "1811:12:65",
                  "nodeType": "VariableDeclaration",
                  "scope": 14487,
                  "src": "1794:29:65",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 13483,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "1794:7:65",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 13485,
                    "nodeType": "StructuredDocumentation",
                    "src": "1830:37:65",
                    "text": "@notice the The awardable balance"
                  },
                  "id": 13487,
                  "mutability": "mutable",
                  "name": "_currentAwardBalance",
                  "nameLocation": "1889:20:65",
                  "nodeType": "VariableDeclaration",
                  "scope": 14487,
                  "src": "1872:37:65",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 13486,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "1872:7:65",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 13499,
                    "nodeType": "Block",
                    "src": "2062:96:65",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 13494,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 13491,
                                  "name": "msg",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -15,
                                  "src": "2080:3:65",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_message",
                                    "typeString": "msg"
                                  }
                                },
                                "id": 13492,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "sender",
                                "nodeType": "MemberAccess",
                                "src": "2080:10:65",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "==",
                              "rightExpression": {
                                "id": 13493,
                                "name": "prizeStrategy",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13478,
                                "src": "2094:13:65",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "2080:27:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a65506f6f6c2f6f6e6c792d7072697a655374726174656779",
                              "id": 13495,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2109:30:65",
                              "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": 13490,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2072:7:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 13496,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2072:68:65",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13497,
                        "nodeType": "ExpressionStatement",
                        "src": "2072:68:65"
                      },
                      {
                        "id": 13498,
                        "nodeType": "PlaceholderStatement",
                        "src": "2150:1:65"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13488,
                    "nodeType": "StructuredDocumentation",
                    "src": "1963:65:65",
                    "text": "@dev Function modifier to ensure caller is the prize-strategy"
                  },
                  "id": 13500,
                  "name": "onlyPrizeStrategy",
                  "nameLocation": "2042:17:65",
                  "nodeType": "ModifierDefinition",
                  "parameters": {
                    "id": 13489,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2059:2:65"
                  },
                  "src": "2033:125:65",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 13513,
                    "nodeType": "Block",
                    "src": "2309:97:65",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 13507,
                                  "name": "_amount",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13503,
                                  "src": "2344:7:65",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 13506,
                                "name": "_canAddLiquidity",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14360,
                                "src": "2327:16:65",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$_t_uint256_$returns$_t_bool_$",
                                  "typeString": "function (uint256) view returns (bool)"
                                }
                              },
                              "id": 13508,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "2327:25:65",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a65506f6f6c2f657863656564732d6c69717569646974792d636170",
                              "id": 13509,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2354:33:65",
                              "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": 13505,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2319:7:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 13510,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2319:69:65",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13511,
                        "nodeType": "ExpressionStatement",
                        "src": "2319:69:65"
                      },
                      {
                        "id": 13512,
                        "nodeType": "PlaceholderStatement",
                        "src": "2398:1:65"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13501,
                    "nodeType": "StructuredDocumentation",
                    "src": "2164:98:65",
                    "text": "@dev Function modifier to ensure the deposit amount does not exceed the liquidity cap (if set)"
                  },
                  "id": 13514,
                  "name": "canAddLiquidity",
                  "nameLocation": "2276:15:65",
                  "nodeType": "ModifierDefinition",
                  "parameters": {
                    "id": 13504,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13503,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "2300:7:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 13514,
                        "src": "2292:15:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 13502,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2292:7:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2291:17:65"
                  },
                  "src": "2267:139:65",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 13533,
                    "nodeType": "Block",
                    "src": "2615:52:65",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "id": 13528,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "ElementaryTypeNameExpression",
                                    "src": "2647:7:65",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_uint256_$",
                                      "typeString": "type(uint256)"
                                    },
                                    "typeName": {
                                      "id": 13527,
                                      "name": "uint256",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "2647:7:65",
                                      "typeDescriptions": {}
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_type$_t_uint256_$",
                                      "typeString": "type(uint256)"
                                    }
                                  ],
                                  "id": 13526,
                                  "name": "type",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -27,
                                  "src": "2642:4:65",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                    "typeString": "function () pure"
                                  }
                                },
                                "id": 13529,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "2642:13:65",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_meta_type_t_uint256",
                                  "typeString": "type(uint256)"
                                }
                              },
                              "id": 13530,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "memberName": "max",
                              "nodeType": "MemberAccess",
                              "src": "2642:17:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 13525,
                            "name": "_setLiquidityCap",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14405,
                            "src": "2625:16:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_uint256_$returns$__$",
                              "typeString": "function (uint256)"
                            }
                          },
                          "id": 13531,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2625:35:65",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13532,
                        "nodeType": "ExpressionStatement",
                        "src": "2625:35:65"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13515,
                    "nodeType": "StructuredDocumentation",
                    "src": "2461:87:65",
                    "text": "@notice Deploy the Prize Pool\n @param _owner Address of the Prize Pool owner"
                  },
                  "id": 13534,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 13520,
                          "name": "_owner",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 13517,
                          "src": "2589:6:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        }
                      ],
                      "id": 13521,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 13519,
                        "name": "Ownable",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5355,
                        "src": "2581:7:65"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "2581:15:65"
                    },
                    {
                      "arguments": [],
                      "id": 13523,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 13522,
                        "name": "ReentrancyGuard",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 266,
                        "src": "2597:15:65"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "2597:17:65"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 13518,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13517,
                        "mutability": "mutable",
                        "name": "_owner",
                        "nameLocation": "2573:6:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 13534,
                        "src": "2565:14:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 13516,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2565:7:65",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2564:16:65"
                  },
                  "returnParameters": {
                    "id": 13524,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2615:0:65"
                  },
                  "scope": 14487,
                  "src": "2553:114:65",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "baseFunctions": [
                    11379
                  ],
                  "body": {
                    "id": 13544,
                    "nodeType": "Block",
                    "src": "2815:34:65",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 13541,
                            "name": "_balance",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14472,
                            "src": "2832:8:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$__$returns$_t_uint256_$",
                              "typeString": "function () returns (uint256)"
                            }
                          },
                          "id": 13542,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2832:10:65",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 13540,
                        "id": 13543,
                        "nodeType": "Return",
                        "src": "2825:17:65"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13535,
                    "nodeType": "StructuredDocumentation",
                    "src": "2729:26:65",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "b69ef8a8",
                  "id": 13545,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "balance",
                  "nameLocation": "2769:7:65",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 13537,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2788:8:65"
                  },
                  "parameters": {
                    "id": 13536,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2776:2:65"
                  },
                  "returnParameters": {
                    "id": 13540,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13539,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 13545,
                        "src": "2806:7:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 13538,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2806:7:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2805:9:65"
                  },
                  "scope": 14487,
                  "src": "2760:89:65",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11359
                  ],
                  "body": {
                    "id": 13554,
                    "nodeType": "Block",
                    "src": "2951:44:65",
                    "statements": [
                      {
                        "expression": {
                          "id": 13552,
                          "name": "_currentAwardBalance",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 13487,
                          "src": "2968:20:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 13551,
                        "id": 13553,
                        "nodeType": "Return",
                        "src": "2961:27:65"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13546,
                    "nodeType": "StructuredDocumentation",
                    "src": "2855:26:65",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "630665b4",
                  "id": 13555,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "awardBalance",
                  "nameLocation": "2895:12:65",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 13548,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2924:8:65"
                  },
                  "parameters": {
                    "id": 13547,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2907:2:65"
                  },
                  "returnParameters": {
                    "id": 13551,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13550,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 13555,
                        "src": "2942:7:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 13549,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2942:7:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2941:9:65"
                  },
                  "scope": 14487,
                  "src": "2886:109:65",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11373
                  ],
                  "body": {
                    "id": 13568,
                    "nodeType": "Block",
                    "src": "3120:57:65",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 13565,
                              "name": "_externalToken",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13558,
                              "src": "3155:14:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 13564,
                            "name": "_canAwardExternal",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14459,
                            "src": "3137:17:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_address_$returns$_t_bool_$",
                              "typeString": "function (address) view returns (bool)"
                            }
                          },
                          "id": 13566,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3137:33:65",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 13563,
                        "id": 13567,
                        "nodeType": "Return",
                        "src": "3130:40:65"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13556,
                    "nodeType": "StructuredDocumentation",
                    "src": "3001:26:65",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "6a3fd4f9",
                  "id": 13569,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "canAwardExternal",
                  "nameLocation": "3041:16:65",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 13560,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3096:8:65"
                  },
                  "parameters": {
                    "id": 13559,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13558,
                        "mutability": "mutable",
                        "name": "_externalToken",
                        "nameLocation": "3066:14:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 13569,
                        "src": "3058:22:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 13557,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3058:7:65",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3057:24:65"
                  },
                  "returnParameters": {
                    "id": 13563,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13562,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 13569,
                        "src": "3114:4:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 13561,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "3114:4:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3113:6:65"
                  },
                  "scope": 14487,
                  "src": "3032:145:65",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11425
                  ],
                  "body": {
                    "id": 13583,
                    "nodeType": "Block",
                    "src": "3300:55:65",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 13580,
                              "name": "_controlledToken",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13573,
                              "src": "3331:16:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$11825",
                                "typeString": "contract ITicket"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_ITicket_$11825",
                                "typeString": "contract ITicket"
                              }
                            ],
                            "id": 13579,
                            "name": "_isControlled",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14375,
                            "src": "3317:13:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_contract$_ITicket_$11825_$returns$_t_bool_$",
                              "typeString": "function (contract ITicket) view returns (bool)"
                            }
                          },
                          "id": 13581,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3317:31:65",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 13578,
                        "id": 13582,
                        "nodeType": "Return",
                        "src": "3310:38:65"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13570,
                    "nodeType": "StructuredDocumentation",
                    "src": "3183:26:65",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "78b3d327",
                  "id": 13584,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "isControlled",
                  "nameLocation": "3223:12:65",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 13575,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3276:8:65"
                  },
                  "parameters": {
                    "id": 13574,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13573,
                        "mutability": "mutable",
                        "name": "_controlledToken",
                        "nameLocation": "3244:16:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 13584,
                        "src": "3236:24:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ITicket_$11825",
                          "typeString": "contract ITicket"
                        },
                        "typeName": {
                          "id": 13572,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13571,
                            "name": "ITicket",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11825,
                            "src": "3236:7:65"
                          },
                          "referencedDeclaration": 11825,
                          "src": "3236:7:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$11825",
                            "typeString": "contract ITicket"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3235:26:65"
                  },
                  "returnParameters": {
                    "id": 13578,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13577,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 13584,
                        "src": "3294:4:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 13576,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "3294:4:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3293:6:65"
                  },
                  "scope": 14487,
                  "src": "3214:141:65",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11385
                  ],
                  "body": {
                    "id": 13594,
                    "nodeType": "Block",
                    "src": "3464:44:65",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 13591,
                            "name": "_ticketTotalSupply",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14441,
                            "src": "3481:18:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$__$returns$_t_uint256_$",
                              "typeString": "function () view returns (uint256)"
                            }
                          },
                          "id": 13592,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3481:20:65",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 13590,
                        "id": 13593,
                        "nodeType": "Return",
                        "src": "3474:27:65"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13585,
                    "nodeType": "StructuredDocumentation",
                    "src": "3361:26:65",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "33e5761f",
                  "id": 13595,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getAccountedBalance",
                  "nameLocation": "3401:19:65",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 13587,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3437:8:65"
                  },
                  "parameters": {
                    "id": 13586,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3420:2:65"
                  },
                  "returnParameters": {
                    "id": 13590,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13589,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 13595,
                        "src": "3455:7:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 13588,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3455:7:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3454:9:65"
                  },
                  "scope": 14487,
                  "src": "3392:116:65",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11391
                  ],
                  "body": {
                    "id": 13604,
                    "nodeType": "Block",
                    "src": "3611:34:65",
                    "statements": [
                      {
                        "expression": {
                          "id": 13602,
                          "name": "balanceCap",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 13481,
                          "src": "3628:10:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 13601,
                        "id": 13603,
                        "nodeType": "Return",
                        "src": "3621:17:65"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13596,
                    "nodeType": "StructuredDocumentation",
                    "src": "3514:26:65",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "08234319",
                  "id": 13605,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getBalanceCap",
                  "nameLocation": "3554:13:65",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 13598,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3584:8:65"
                  },
                  "parameters": {
                    "id": 13597,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3567:2:65"
                  },
                  "returnParameters": {
                    "id": 13601,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13600,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 13605,
                        "src": "3602:7:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 13599,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3602:7:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3601:9:65"
                  },
                  "scope": 14487,
                  "src": "3545:100:65",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11397
                  ],
                  "body": {
                    "id": 13614,
                    "nodeType": "Block",
                    "src": "3750:36:65",
                    "statements": [
                      {
                        "expression": {
                          "id": 13612,
                          "name": "liquidityCap",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 13484,
                          "src": "3767:12:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 13611,
                        "id": 13613,
                        "nodeType": "Return",
                        "src": "3760:19:65"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13606,
                    "nodeType": "StructuredDocumentation",
                    "src": "3651:26:65",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "b15a49c1",
                  "id": 13615,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getLiquidityCap",
                  "nameLocation": "3691:15:65",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 13608,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3723:8:65"
                  },
                  "parameters": {
                    "id": 13607,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3706:2:65"
                  },
                  "returnParameters": {
                    "id": 13611,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13610,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 13615,
                        "src": "3741:7:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 13609,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3741:7:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3740:9:65"
                  },
                  "scope": 14487,
                  "src": "3682:104:65",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11404
                  ],
                  "body": {
                    "id": 13625,
                    "nodeType": "Block",
                    "src": "3885:30:65",
                    "statements": [
                      {
                        "expression": {
                          "id": 13623,
                          "name": "ticket",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 13475,
                          "src": "3902:6:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$11825",
                            "typeString": "contract ITicket"
                          }
                        },
                        "functionReturnParameters": 13622,
                        "id": 13624,
                        "nodeType": "Return",
                        "src": "3895:13:65"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13616,
                    "nodeType": "StructuredDocumentation",
                    "src": "3792:26:65",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "c002c4d6",
                  "id": 13626,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getTicket",
                  "nameLocation": "3832:9:65",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 13618,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3858:8:65"
                  },
                  "parameters": {
                    "id": 13617,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3841:2:65"
                  },
                  "returnParameters": {
                    "id": 13622,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13621,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 13626,
                        "src": "3876:7:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ITicket_$11825",
                          "typeString": "contract ITicket"
                        },
                        "typeName": {
                          "id": 13620,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 13619,
                            "name": "ITicket",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11825,
                            "src": "3876:7:65"
                          },
                          "referencedDeclaration": 11825,
                          "src": "3876:7:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$11825",
                            "typeString": "contract ITicket"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3875:9:65"
                  },
                  "scope": 14487,
                  "src": "3823:92:65",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11416
                  ],
                  "body": {
                    "id": 13635,
                    "nodeType": "Block",
                    "src": "4021:37:65",
                    "statements": [
                      {
                        "expression": {
                          "id": 13633,
                          "name": "prizeStrategy",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 13478,
                          "src": "4038:13:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "functionReturnParameters": 13632,
                        "id": 13634,
                        "nodeType": "Return",
                        "src": "4031:20:65"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13627,
                    "nodeType": "StructuredDocumentation",
                    "src": "3921:26:65",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "d804abaf",
                  "id": 13636,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPrizeStrategy",
                  "nameLocation": "3961:16:65",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 13629,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3994:8:65"
                  },
                  "parameters": {
                    "id": 13628,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3977:2:65"
                  },
                  "returnParameters": {
                    "id": 13632,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13631,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 13636,
                        "src": "4012:7:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 13630,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4012:7:65",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4011:9:65"
                  },
                  "scope": 14487,
                  "src": "3952:106:65",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11410
                  ],
                  "body": {
                    "id": 13649,
                    "nodeType": "Block",
                    "src": "4156:41:65",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "id": 13645,
                                "name": "_token",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14466,
                                "src": "4181:6:65",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$__$returns$_t_contract$_IERC20_$890_$",
                                  "typeString": "function () view returns (contract IERC20)"
                                }
                              },
                              "id": 13646,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "4181:8:65",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$890",
                                "typeString": "contract IERC20"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IERC20_$890",
                                "typeString": "contract IERC20"
                              }
                            ],
                            "id": 13644,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "ElementaryTypeNameExpression",
                            "src": "4173:7:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_address_$",
                              "typeString": "type(address)"
                            },
                            "typeName": {
                              "id": 13643,
                              "name": "address",
                              "nodeType": "ElementaryTypeName",
                              "src": "4173:7:65",
                              "typeDescriptions": {}
                            }
                          },
                          "id": 13647,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4173:17:65",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "functionReturnParameters": 13642,
                        "id": 13648,
                        "nodeType": "Return",
                        "src": "4166:24:65"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13637,
                    "nodeType": "StructuredDocumentation",
                    "src": "4064:26:65",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "21df0da7",
                  "id": 13650,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getToken",
                  "nameLocation": "4104:8:65",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 13639,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "4129:8:65"
                  },
                  "parameters": {
                    "id": 13638,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4112:2:65"
                  },
                  "returnParameters": {
                    "id": 13642,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13641,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 13650,
                        "src": "4147:7:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 13640,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4147:7:65",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4146:9:65"
                  },
                  "scope": 14487,
                  "src": "4095:102:65",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11365
                  ],
                  "body": {
                    "id": 13716,
                    "nodeType": "Block",
                    "src": "4314:823:65",
                    "statements": [
                      {
                        "assignments": [
                          13660
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13660,
                            "mutability": "mutable",
                            "name": "ticketTotalSupply",
                            "nameLocation": "4332:17:65",
                            "nodeType": "VariableDeclaration",
                            "scope": 13716,
                            "src": "4324:25:65",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 13659,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "4324:7:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13663,
                        "initialValue": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 13661,
                            "name": "_ticketTotalSupply",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14441,
                            "src": "4352:18:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$__$returns$_t_uint256_$",
                              "typeString": "function () view returns (uint256)"
                            }
                          },
                          "id": 13662,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4352:20:65",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4324:48:65"
                      },
                      {
                        "assignments": [
                          13665
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13665,
                            "mutability": "mutable",
                            "name": "currentAwardBalance",
                            "nameLocation": "4390:19:65",
                            "nodeType": "VariableDeclaration",
                            "scope": 13716,
                            "src": "4382:27:65",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 13664,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "4382:7:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13667,
                        "initialValue": {
                          "id": 13666,
                          "name": "_currentAwardBalance",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 13487,
                          "src": "4412:20:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4382:50:65"
                      },
                      {
                        "assignments": [
                          13669
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13669,
                            "mutability": "mutable",
                            "name": "currentBalance",
                            "nameLocation": "4566:14:65",
                            "nodeType": "VariableDeclaration",
                            "scope": 13716,
                            "src": "4558:22:65",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 13668,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "4558:7:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13672,
                        "initialValue": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 13670,
                            "name": "_balance",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14472,
                            "src": "4583:8:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$__$returns$_t_uint256_$",
                              "typeString": "function () returns (uint256)"
                            }
                          },
                          "id": 13671,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4583:10:65",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4558:35:65"
                      },
                      {
                        "assignments": [
                          13674
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13674,
                            "mutability": "mutable",
                            "name": "totalInterest",
                            "nameLocation": "4611:13:65",
                            "nodeType": "VariableDeclaration",
                            "scope": 13716,
                            "src": "4603:21:65",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 13673,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "4603:7:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13684,
                        "initialValue": {
                          "condition": {
                            "components": [
                              {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 13677,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 13675,
                                  "name": "currentBalance",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13669,
                                  "src": "4628:14:65",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": ">",
                                "rightExpression": {
                                  "id": 13676,
                                  "name": "ticketTotalSupply",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13660,
                                  "src": "4645:17:65",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "4628:34:65",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              }
                            ],
                            "id": 13678,
                            "isConstant": false,
                            "isInlineArray": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "TupleExpression",
                            "src": "4627:36:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "falseExpression": {
                            "hexValue": "30",
                            "id": 13682,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "4727:1:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "id": 13683,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "Conditional",
                          "src": "4627:101:65",
                          "trueExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "id": 13681,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 13679,
                              "name": "currentBalance",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13669,
                              "src": "4678:14:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "-",
                            "rightExpression": {
                              "id": 13680,
                              "name": "ticketTotalSupply",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13660,
                              "src": "4695:17:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "src": "4678:34:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4603:125:65"
                      },
                      {
                        "assignments": [
                          13686
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13686,
                            "mutability": "mutable",
                            "name": "unaccountedPrizeBalance",
                            "nameLocation": "4747:23:65",
                            "nodeType": "VariableDeclaration",
                            "scope": 13716,
                            "src": "4739:31:65",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 13685,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "4739:7:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13696,
                        "initialValue": {
                          "condition": {
                            "components": [
                              {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 13689,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 13687,
                                  "name": "totalInterest",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13674,
                                  "src": "4774:13:65",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": ">",
                                "rightExpression": {
                                  "id": 13688,
                                  "name": "currentAwardBalance",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13665,
                                  "src": "4790:19:65",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "4774:35:65",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              }
                            ],
                            "id": 13690,
                            "isConstant": false,
                            "isInlineArray": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "TupleExpression",
                            "src": "4773:37:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "falseExpression": {
                            "hexValue": "30",
                            "id": 13694,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "4875:1:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "id": 13695,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "Conditional",
                          "src": "4773:103:65",
                          "trueExpression": {
                            "commonType": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "id": 13693,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "leftExpression": {
                              "id": 13691,
                              "name": "totalInterest",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13674,
                              "src": "4825:13:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "nodeType": "BinaryOperation",
                            "operator": "-",
                            "rightExpression": {
                              "id": 13692,
                              "name": "currentAwardBalance",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13665,
                              "src": "4841:19:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "src": "4825:35:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4739:137:65"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 13699,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 13697,
                            "name": "unaccountedPrizeBalance",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13686,
                            "src": "4891:23:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": ">",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 13698,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "4917:1:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "4891:27:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 13713,
                        "nodeType": "IfStatement",
                        "src": "4887:207:65",
                        "trueBody": {
                          "id": 13712,
                          "nodeType": "Block",
                          "src": "4920:174:65",
                          "statements": [
                            {
                              "expression": {
                                "id": 13702,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 13700,
                                  "name": "currentAwardBalance",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13665,
                                  "src": "4934:19:65",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "id": 13701,
                                  "name": "totalInterest",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13674,
                                  "src": "4956:13:65",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "4934:35:65",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 13703,
                              "nodeType": "ExpressionStatement",
                              "src": "4934:35:65"
                            },
                            {
                              "expression": {
                                "id": 13706,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 13704,
                                  "name": "_currentAwardBalance",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13487,
                                  "src": "4983:20:65",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "id": 13705,
                                  "name": "currentAwardBalance",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13665,
                                  "src": "5006:19:65",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "4983:42:65",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 13707,
                              "nodeType": "ExpressionStatement",
                              "src": "4983:42:65"
                            },
                            {
                              "eventCall": {
                                "arguments": [
                                  {
                                    "id": 13709,
                                    "name": "unaccountedPrizeBalance",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 13686,
                                    "src": "5059:23:65",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  ],
                                  "id": 13708,
                                  "name": "AwardCaptured",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 11227,
                                  "src": "5045:13:65",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_event_nonpayable$_t_uint256_$returns$__$",
                                    "typeString": "function (uint256)"
                                  }
                                },
                                "id": 13710,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "5045:38:65",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 13711,
                              "nodeType": "EmitStatement",
                              "src": "5040:43:65"
                            }
                          ]
                        }
                      },
                      {
                        "expression": {
                          "id": 13714,
                          "name": "currentAwardBalance",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 13665,
                          "src": "5111:19:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 13658,
                        "id": 13715,
                        "nodeType": "Return",
                        "src": "5104:26:65"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13651,
                    "nodeType": "StructuredDocumentation",
                    "src": "4203:26:65",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "e6d8a94b",
                  "id": 13717,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 13655,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 13654,
                        "name": "nonReentrant",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 265,
                        "src": "4283:12:65"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "4283:12:65"
                    }
                  ],
                  "name": "captureAwardBalance",
                  "nameLocation": "4243:19:65",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 13653,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "4274:8:65"
                  },
                  "parameters": {
                    "id": 13652,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4262:2:65"
                  },
                  "returnParameters": {
                    "id": 13658,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13657,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 13717,
                        "src": "4305:7:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 13656,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4305:7:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4304:9:65"
                  },
                  "scope": 14487,
                  "src": "4234:903:65",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11325
                  ],
                  "body": {
                    "id": 13738,
                    "nodeType": "Block",
                    "src": "5315:53:65",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 13732,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "5336:3:65",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 13733,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "5336:10:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 13734,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13720,
                              "src": "5348:3:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 13735,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13722,
                              "src": "5353:7:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 13731,
                            "name": "_depositTo",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13823,
                            "src": "5325:10:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 13736,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5325:36:65",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13737,
                        "nodeType": "ExpressionStatement",
                        "src": "5325:36:65"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13718,
                    "nodeType": "StructuredDocumentation",
                    "src": "5143:26:65",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "ffaad6a5",
                  "id": 13739,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 13726,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 13725,
                        "name": "nonReentrant",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 265,
                        "src": "5265:12:65"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "5265:12:65"
                    },
                    {
                      "arguments": [
                        {
                          "id": 13728,
                          "name": "_amount",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 13722,
                          "src": "5302:7:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        }
                      ],
                      "id": 13729,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 13727,
                        "name": "canAddLiquidity",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 13514,
                        "src": "5286:15:65"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "5286:24:65"
                    }
                  ],
                  "name": "depositTo",
                  "nameLocation": "5183:9:65",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 13724,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "5248:8:65"
                  },
                  "parameters": {
                    "id": 13723,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13720,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "5201:3:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 13739,
                        "src": "5193:11:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 13719,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5193:7:65",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13722,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "5214:7:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 13739,
                        "src": "5206:15:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 13721,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "5206:7:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5192:30:65"
                  },
                  "returnParameters": {
                    "id": 13730,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "5315:0:65"
                  },
                  "scope": 14487,
                  "src": "5174:194:65",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11335
                  ],
                  "body": {
                    "id": 13770,
                    "nodeType": "Block",
                    "src": "5576:114:65",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 13756,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "5597:3:65",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 13757,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "5597:10:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 13758,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13742,
                              "src": "5609:3:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 13759,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13744,
                              "src": "5614:7:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 13755,
                            "name": "_depositTo",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13823,
                            "src": "5586:10:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 13760,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5586:36:65",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13761,
                        "nodeType": "ExpressionStatement",
                        "src": "5586:36:65"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 13765,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "5661:3:65",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 13766,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "5661:10:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 13767,
                              "name": "_delegate",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13746,
                              "src": "5673:9:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "expression": {
                              "id": 13762,
                              "name": "ticket",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13475,
                              "src": "5632:6:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$11825",
                                "typeString": "contract ITicket"
                              }
                            },
                            "id": 13764,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "controllerDelegateFor",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11708,
                            "src": "5632:28:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_address_$_t_address_$returns$__$",
                              "typeString": "function (address,address) external"
                            }
                          },
                          "id": 13768,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "5632:51:65",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13769,
                        "nodeType": "ExpressionStatement",
                        "src": "5632:51:65"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13740,
                    "nodeType": "StructuredDocumentation",
                    "src": "5374:26:65",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "d7a169eb",
                  "id": 13771,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 13750,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 13749,
                        "name": "nonReentrant",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 265,
                        "src": "5526:12:65"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "5526:12:65"
                    },
                    {
                      "arguments": [
                        {
                          "id": 13752,
                          "name": "_amount",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 13744,
                          "src": "5563:7:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        }
                      ],
                      "id": 13753,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 13751,
                        "name": "canAddLiquidity",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 13514,
                        "src": "5547:15:65"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "5547:24:65"
                    }
                  ],
                  "name": "depositToAndDelegate",
                  "nameLocation": "5414:20:65",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 13748,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "5509:8:65"
                  },
                  "parameters": {
                    "id": 13747,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13742,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "5443:3:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 13771,
                        "src": "5435:11:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 13741,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5435:7:65",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13744,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "5456:7:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 13771,
                        "src": "5448:15:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 13743,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "5448:7:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13746,
                        "mutability": "mutable",
                        "name": "_delegate",
                        "nameLocation": "5473:9:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 13771,
                        "src": "5465:17:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 13745,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5465:7:65",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5434:49:65"
                  },
                  "returnParameters": {
                    "id": 13754,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "5576:0:65"
                  },
                  "scope": 14487,
                  "src": "5405:285:65",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 13822,
                    "nodeType": "Block",
                    "src": "6020:314:65",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 13783,
                                  "name": "_to",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13776,
                                  "src": "6050:3:65",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "id": 13784,
                                  "name": "_amount",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13778,
                                  "src": "6055:7:65",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 13782,
                                "name": "_canDeposit",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14329,
                                "src": "6038:11:65",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$_t_address_$_t_uint256_$returns$_t_bool_$",
                                  "typeString": "function (address,uint256) view returns (bool)"
                                }
                              },
                              "id": 13785,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "6038:25:65",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a65506f6f6c2f657863656564732d62616c616e63652d636170",
                              "id": 13786,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "6065:31:65",
                              "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": 13781,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "6030:7:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 13787,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6030:67:65",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13788,
                        "nodeType": "ExpressionStatement",
                        "src": "6030:67:65"
                      },
                      {
                        "assignments": [
                          13791
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13791,
                            "mutability": "mutable",
                            "name": "_ticket",
                            "nameLocation": "6116:7:65",
                            "nodeType": "VariableDeclaration",
                            "scope": 13822,
                            "src": "6108:15:65",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_ITicket_$11825",
                              "typeString": "contract ITicket"
                            },
                            "typeName": {
                              "id": 13790,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 13789,
                                "name": "ITicket",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 11825,
                                "src": "6108:7:65"
                              },
                              "referencedDeclaration": 11825,
                              "src": "6108:7:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$11825",
                                "typeString": "contract ITicket"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13793,
                        "initialValue": {
                          "id": 13792,
                          "name": "ticket",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 13475,
                          "src": "6126:6:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$11825",
                            "typeString": "contract ITicket"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "6108:24:65"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 13797,
                              "name": "_operator",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13774,
                              "src": "6169:9:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "id": 13800,
                                  "name": "this",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -28,
                                  "src": "6188:4:65",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_PrizePool_$14487",
                                    "typeString": "contract PrizePool"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_PrizePool_$14487",
                                    "typeString": "contract PrizePool"
                                  }
                                ],
                                "id": 13799,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "6180:7:65",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 13798,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "6180:7:65",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 13801,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "6180:13:65",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 13802,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13778,
                              "src": "6195:7:65",
                              "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": 13794,
                                "name": "_token",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14466,
                                "src": "6143:6:65",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$__$returns$_t_contract$_IERC20_$890_$",
                                  "typeString": "function () view returns (contract IERC20)"
                                }
                              },
                              "id": 13795,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "6143:8:65",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$890",
                                "typeString": "contract IERC20"
                              }
                            },
                            "id": 13796,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "safeTransferFrom",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 1177,
                            "src": "6143:25:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20_$890_$_t_address_$_t_address_$_t_uint256_$returns$__$bound_to$_t_contract$_IERC20_$890_$",
                              "typeString": "function (contract IERC20,address,address,uint256)"
                            }
                          },
                          "id": 13803,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6143:60:65",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13804,
                        "nodeType": "ExpressionStatement",
                        "src": "6143:60:65"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 13806,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13776,
                              "src": "6220:3:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 13807,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13778,
                              "src": "6225:7:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 13808,
                              "name": "_ticket",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13791,
                              "src": "6234:7:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$11825",
                                "typeString": "contract ITicket"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_contract$_ITicket_$11825",
                                "typeString": "contract ITicket"
                              }
                            ],
                            "id": 13805,
                            "name": "_mint",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14294,
                            "src": "6214:5:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$_t_contract$_ITicket_$11825_$returns$__$",
                              "typeString": "function (address,uint256,contract ITicket)"
                            }
                          },
                          "id": 13809,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6214:28:65",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13810,
                        "nodeType": "ExpressionStatement",
                        "src": "6214:28:65"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 13812,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13778,
                              "src": "6260:7:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 13811,
                            "name": "_supply",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14478,
                            "src": "6252:7:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_uint256_$returns$__$",
                              "typeString": "function (uint256)"
                            }
                          },
                          "id": 13813,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6252:16:65",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13814,
                        "nodeType": "ExpressionStatement",
                        "src": "6252:16:65"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 13816,
                              "name": "_operator",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13774,
                              "src": "6294:9:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 13817,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13776,
                              "src": "6305:3:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 13818,
                              "name": "_ticket",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13791,
                              "src": "6310:7:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$11825",
                                "typeString": "contract ITicket"
                              }
                            },
                            {
                              "id": 13819,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13778,
                              "src": "6319:7:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_contract$_ITicket_$11825",
                                "typeString": "contract ITicket"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 13815,
                            "name": "Deposited",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11239,
                            "src": "6284:9:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$_t_contract$_ITicket_$11825_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,contract ITicket,uint256)"
                            }
                          },
                          "id": 13820,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6284:43:65",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13821,
                        "nodeType": "EmitStatement",
                        "src": "6279:48:65"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13772,
                    "nodeType": "StructuredDocumentation",
                    "src": "5696:237:65",
                    "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": 13823,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_depositTo",
                  "nameLocation": "5947:10:65",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 13779,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13774,
                        "mutability": "mutable",
                        "name": "_operator",
                        "nameLocation": "5966:9:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 13823,
                        "src": "5958:17:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 13773,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5958:7:65",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13776,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "5985:3:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 13823,
                        "src": "5977:11:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 13775,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5977:7:65",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13778,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "5998:7:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 13823,
                        "src": "5990:15:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 13777,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "5990:7:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5957:49:65"
                  },
                  "returnParameters": {
                    "id": 13780,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "6020:0:65"
                  },
                  "scope": 14487,
                  "src": "5938:396:65",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "baseFunctions": [
                    11345
                  ],
                  "body": {
                    "id": 13874,
                    "nodeType": "Block",
                    "src": "6510:362:65",
                    "statements": [
                      {
                        "assignments": [
                          13838
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13838,
                            "mutability": "mutable",
                            "name": "_ticket",
                            "nameLocation": "6528:7:65",
                            "nodeType": "VariableDeclaration",
                            "scope": 13874,
                            "src": "6520:15:65",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_ITicket_$11825",
                              "typeString": "contract ITicket"
                            },
                            "typeName": {
                              "id": 13837,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 13836,
                                "name": "ITicket",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 11825,
                                "src": "6520:7:65"
                              },
                              "referencedDeclaration": 11825,
                              "src": "6520:7:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$11825",
                                "typeString": "contract ITicket"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13840,
                        "initialValue": {
                          "id": 13839,
                          "name": "ticket",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 13475,
                          "src": "6538:6:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$11825",
                            "typeString": "contract ITicket"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "6520:24:65"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 13844,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "6610:3:65",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 13845,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "6610:10:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 13846,
                              "name": "_from",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13826,
                              "src": "6622:5:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 13847,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13828,
                              "src": "6629:7:65",
                              "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": 13841,
                              "name": "_ticket",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13838,
                              "src": "6583:7:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$11825",
                                "typeString": "contract ITicket"
                              }
                            },
                            "id": 13843,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "controllerBurnFrom",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 10680,
                            "src": "6583:26:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256) external"
                            }
                          },
                          "id": 13848,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6583:54:65",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13849,
                        "nodeType": "ExpressionStatement",
                        "src": "6583:54:65"
                      },
                      {
                        "assignments": [
                          13851
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13851,
                            "mutability": "mutable",
                            "name": "_redeemed",
                            "nameLocation": "6686:9:65",
                            "nodeType": "VariableDeclaration",
                            "scope": 13874,
                            "src": "6678:17:65",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 13850,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "6678:7:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13855,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 13853,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13828,
                              "src": "6706:7:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 13852,
                            "name": "_redeem",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14486,
                            "src": "6698:7:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_uint256_$returns$_t_uint256_$",
                              "typeString": "function (uint256) returns (uint256)"
                            }
                          },
                          "id": 13854,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6698:16:65",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "6678:36:65"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 13859,
                              "name": "_from",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13826,
                              "src": "6747:5:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 13860,
                              "name": "_redeemed",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13851,
                              "src": "6754:9:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "id": 13856,
                                "name": "_token",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14466,
                                "src": "6725:6:65",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$__$returns$_t_contract$_IERC20_$890_$",
                                  "typeString": "function () view returns (contract IERC20)"
                                }
                              },
                              "id": 13857,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "6725:8:65",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$890",
                                "typeString": "contract IERC20"
                              }
                            },
                            "id": 13858,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "safeTransfer",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 1151,
                            "src": "6725:21:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20_$890_$_t_address_$_t_uint256_$returns$__$bound_to$_t_contract$_IERC20_$890_$",
                              "typeString": "function (contract IERC20,address,uint256)"
                            }
                          },
                          "id": 13861,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6725:39:65",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13862,
                        "nodeType": "ExpressionStatement",
                        "src": "6725:39:65"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 13864,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "6791:3:65",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 13865,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "6791:10:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 13866,
                              "name": "_from",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13826,
                              "src": "6803:5:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 13867,
                              "name": "_ticket",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13838,
                              "src": "6810:7:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$11825",
                                "typeString": "contract ITicket"
                              }
                            },
                            {
                              "id": 13868,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13828,
                              "src": "6819:7:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 13869,
                              "name": "_redeemed",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13851,
                              "src": "6828:9:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_contract$_ITicket_$11825",
                                "typeString": "contract ITicket"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 13863,
                            "name": "Withdrawal",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11291,
                            "src": "6780:10:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$_t_contract$_ITicket_$11825_$_t_uint256_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,contract ITicket,uint256,uint256)"
                            }
                          },
                          "id": 13870,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6780:58:65",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13871,
                        "nodeType": "EmitStatement",
                        "src": "6775:63:65"
                      },
                      {
                        "expression": {
                          "id": 13872,
                          "name": "_redeemed",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 13851,
                          "src": "6856:9:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 13835,
                        "id": 13873,
                        "nodeType": "Return",
                        "src": "6849:16:65"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13824,
                    "nodeType": "StructuredDocumentation",
                    "src": "6340:26:65",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "9470b0bd",
                  "id": 13875,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 13832,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 13831,
                        "name": "nonReentrant",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 265,
                        "src": "6467:12:65"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "6467:12:65"
                    }
                  ],
                  "name": "withdrawFrom",
                  "nameLocation": "6380:12:65",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 13830,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "6450:8:65"
                  },
                  "parameters": {
                    "id": 13829,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13826,
                        "mutability": "mutable",
                        "name": "_from",
                        "nameLocation": "6401:5:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 13875,
                        "src": "6393:13:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 13825,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6393:7:65",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13828,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "6416:7:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 13875,
                        "src": "6408:15:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 13827,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "6408:7:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6392:32:65"
                  },
                  "returnParameters": {
                    "id": 13835,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13834,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 13875,
                        "src": "6497:7:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 13833,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "6497:7:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6496:9:65"
                  },
                  "scope": 14487,
                  "src": "6371:501:65",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11353
                  ],
                  "body": {
                    "id": 13927,
                    "nodeType": "Block",
                    "src": "6990:426:65",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 13888,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 13886,
                            "name": "_amount",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13880,
                            "src": "7004:7:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 13887,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "7015:1:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "7004:12:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 13891,
                        "nodeType": "IfStatement",
                        "src": "7000:49:65",
                        "trueBody": {
                          "id": 13890,
                          "nodeType": "Block",
                          "src": "7018:31:65",
                          "statements": [
                            {
                              "functionReturnParameters": 13885,
                              "id": 13889,
                              "nodeType": "Return",
                              "src": "7032:7:65"
                            }
                          ]
                        }
                      },
                      {
                        "assignments": [
                          13893
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13893,
                            "mutability": "mutable",
                            "name": "currentAwardBalance",
                            "nameLocation": "7067:19:65",
                            "nodeType": "VariableDeclaration",
                            "scope": 13927,
                            "src": "7059:27:65",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 13892,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "7059:7:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13895,
                        "initialValue": {
                          "id": 13894,
                          "name": "_currentAwardBalance",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 13487,
                          "src": "7089:20:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7059:50:65"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 13899,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 13897,
                                "name": "_amount",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13880,
                                "src": "7128:7:65",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "id": 13898,
                                "name": "currentAwardBalance",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13893,
                                "src": "7139:19:65",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "7128:30:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a65506f6f6c2f61776172642d657863656564732d617661696c",
                              "id": 13900,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "7160:31:65",
                              "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": 13896,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "7120:7:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 13901,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7120:72:65",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13902,
                        "nodeType": "ExpressionStatement",
                        "src": "7120:72:65"
                      },
                      {
                        "id": 13909,
                        "nodeType": "UncheckedBlock",
                        "src": "7203:87:65",
                        "statements": [
                          {
                            "expression": {
                              "id": 13907,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftHandSide": {
                                "id": 13903,
                                "name": "_currentAwardBalance",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13487,
                                "src": "7227:20:65",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "Assignment",
                              "operator": "=",
                              "rightHandSide": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 13906,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 13904,
                                  "name": "currentAwardBalance",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13893,
                                  "src": "7250:19:65",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "-",
                                "rightExpression": {
                                  "id": 13905,
                                  "name": "_amount",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13880,
                                  "src": "7272:7:65",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "7250:29:65",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "7227:52:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "id": 13908,
                            "nodeType": "ExpressionStatement",
                            "src": "7227:52:65"
                          }
                        ]
                      },
                      {
                        "assignments": [
                          13912
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 13912,
                            "mutability": "mutable",
                            "name": "_ticket",
                            "nameLocation": "7308:7:65",
                            "nodeType": "VariableDeclaration",
                            "scope": 13927,
                            "src": "7300:15:65",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_ITicket_$11825",
                              "typeString": "contract ITicket"
                            },
                            "typeName": {
                              "id": 13911,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 13910,
                                "name": "ITicket",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 11825,
                                "src": "7300:7:65"
                              },
                              "referencedDeclaration": 11825,
                              "src": "7300:7:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$11825",
                                "typeString": "contract ITicket"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 13914,
                        "initialValue": {
                          "id": 13913,
                          "name": "ticket",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 13475,
                          "src": "7318:6:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$11825",
                            "typeString": "contract ITicket"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "7300:24:65"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 13916,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13878,
                              "src": "7341:3:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 13917,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13880,
                              "src": "7346:7:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 13918,
                              "name": "_ticket",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13912,
                              "src": "7355:7:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$11825",
                                "typeString": "contract ITicket"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_contract$_ITicket_$11825",
                                "typeString": "contract ITicket"
                              }
                            ],
                            "id": 13915,
                            "name": "_mint",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14294,
                            "src": "7335:5:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$_t_contract$_ITicket_$11825_$returns$__$",
                              "typeString": "function (address,uint256,contract ITicket)"
                            }
                          },
                          "id": 13919,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7335:28:65",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13920,
                        "nodeType": "ExpressionStatement",
                        "src": "7335:28:65"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 13922,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13878,
                              "src": "7387:3:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 13923,
                              "name": "_ticket",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13912,
                              "src": "7392:7:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$11825",
                                "typeString": "contract ITicket"
                              }
                            },
                            {
                              "id": 13924,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13880,
                              "src": "7401:7:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_contract$_ITicket_$11825",
                                "typeString": "contract ITicket"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 13921,
                            "name": "Awarded",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11249,
                            "src": "7379:7:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_contract$_ITicket_$11825_$_t_uint256_$returns$__$",
                              "typeString": "function (address,contract ITicket,uint256)"
                            }
                          },
                          "id": 13925,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7379:30:65",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 13926,
                        "nodeType": "EmitStatement",
                        "src": "7374:35:65"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13876,
                    "nodeType": "StructuredDocumentation",
                    "src": "6878:26:65",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "5d8a776e",
                  "id": 13928,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 13884,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 13883,
                        "name": "onlyPrizeStrategy",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 13500,
                        "src": "6972:17:65"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "6972:17:65"
                    }
                  ],
                  "name": "award",
                  "nameLocation": "6918:5:65",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 13882,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "6963:8:65"
                  },
                  "parameters": {
                    "id": 13881,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13878,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "6932:3:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 13928,
                        "src": "6924:11:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 13877,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6924:7:65",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13880,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "6945:7:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 13928,
                        "src": "6937:15:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 13879,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "6937:7:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6923:30:65"
                  },
                  "returnParameters": {
                    "id": 13885,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "6990:0:65"
                  },
                  "scope": 14487,
                  "src": "6909:507:65",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11435
                  ],
                  "body": {
                    "id": 13954,
                    "nodeType": "Block",
                    "src": "7604:148:65",
                    "statements": [
                      {
                        "condition": {
                          "arguments": [
                            {
                              "id": 13942,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13931,
                              "src": "7631:3:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 13943,
                              "name": "_externalToken",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13933,
                              "src": "7636:14:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 13944,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13935,
                              "src": "7652:7:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 13941,
                            "name": "_transferOut",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14275,
                            "src": "7618:12:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$_t_bool_$",
                              "typeString": "function (address,address,uint256) returns (bool)"
                            }
                          },
                          "id": 13945,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7618:42:65",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 13953,
                        "nodeType": "IfStatement",
                        "src": "7614:132:65",
                        "trueBody": {
                          "id": 13952,
                          "nodeType": "Block",
                          "src": "7662:84:65",
                          "statements": [
                            {
                              "eventCall": {
                                "arguments": [
                                  {
                                    "id": 13947,
                                    "name": "_to",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 13931,
                                    "src": "7706:3:65",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "id": 13948,
                                    "name": "_externalToken",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 13933,
                                    "src": "7711:14:65",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "id": 13949,
                                    "name": "_amount",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 13935,
                                    "src": "7727:7:65",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  ],
                                  "id": 13946,
                                  "name": "TransferredExternalERC20",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 11267,
                                  "src": "7681:24:65",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                                    "typeString": "function (address,address,uint256)"
                                  }
                                },
                                "id": 13950,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "7681:54:65",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 13951,
                              "nodeType": "EmitStatement",
                              "src": "7676:59:65"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13929,
                    "nodeType": "StructuredDocumentation",
                    "src": "7422:26:65",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "13f55e39",
                  "id": 13955,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 13939,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 13938,
                        "name": "onlyPrizeStrategy",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 13500,
                        "src": "7586:17:65"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "7586:17:65"
                    }
                  ],
                  "name": "transferExternalERC20",
                  "nameLocation": "7462:21:65",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 13937,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "7577:8:65"
                  },
                  "parameters": {
                    "id": 13936,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13931,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "7501:3:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 13955,
                        "src": "7493:11:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 13930,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "7493:7:65",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13933,
                        "mutability": "mutable",
                        "name": "_externalToken",
                        "nameLocation": "7522:14:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 13955,
                        "src": "7514:22:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 13932,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "7514:7:65",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13935,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "7554:7:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 13955,
                        "src": "7546:15:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 13934,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "7546:7:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7483:84:65"
                  },
                  "returnParameters": {
                    "id": 13940,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "7604:0:65"
                  },
                  "scope": 14487,
                  "src": "7453:299:65",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11445
                  ],
                  "body": {
                    "id": 13981,
                    "nodeType": "Block",
                    "src": "7937:144:65",
                    "statements": [
                      {
                        "condition": {
                          "arguments": [
                            {
                              "id": 13969,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13958,
                              "src": "7964:3:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 13970,
                              "name": "_externalToken",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13960,
                              "src": "7969:14:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 13971,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13962,
                              "src": "7985:7:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 13968,
                            "name": "_transferOut",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14275,
                            "src": "7951:12:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$_t_bool_$",
                              "typeString": "function (address,address,uint256) returns (bool)"
                            }
                          },
                          "id": 13972,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7951:42:65",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 13980,
                        "nodeType": "IfStatement",
                        "src": "7947:128:65",
                        "trueBody": {
                          "id": 13979,
                          "nodeType": "Block",
                          "src": "7995:80:65",
                          "statements": [
                            {
                              "eventCall": {
                                "arguments": [
                                  {
                                    "id": 13974,
                                    "name": "_to",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 13958,
                                    "src": "8035:3:65",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "id": 13975,
                                    "name": "_externalToken",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 13960,
                                    "src": "8040:14:65",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "id": 13976,
                                    "name": "_amount",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 13962,
                                    "src": "8056:7:65",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  ],
                                  "id": 13973,
                                  "name": "AwardedExternalERC20",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 11258,
                                  "src": "8014:20:65",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                                    "typeString": "function (address,address,uint256)"
                                  }
                                },
                                "id": 13977,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "8014:50:65",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 13978,
                              "nodeType": "EmitStatement",
                              "src": "8009:55:65"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13956,
                    "nodeType": "StructuredDocumentation",
                    "src": "7758:26:65",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "2b0ab144",
                  "id": 13982,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 13966,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 13965,
                        "name": "onlyPrizeStrategy",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 13500,
                        "src": "7919:17:65"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "7919:17:65"
                    }
                  ],
                  "name": "awardExternalERC20",
                  "nameLocation": "7798:18:65",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 13964,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "7910:8:65"
                  },
                  "parameters": {
                    "id": 13963,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13958,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "7834:3:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 13982,
                        "src": "7826:11:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 13957,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "7826:7:65",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13960,
                        "mutability": "mutable",
                        "name": "_externalToken",
                        "nameLocation": "7855:14:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 13982,
                        "src": "7847:22:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 13959,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "7847:7:65",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13962,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "7887:7:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 13982,
                        "src": "7879:15:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 13961,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "7879:7:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7816:84:65"
                  },
                  "returnParameters": {
                    "id": 13967,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "7937:0:65"
                  },
                  "scope": 14487,
                  "src": "7789:292:65",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11456
                  ],
                  "body": {
                    "id": 14084,
                    "nodeType": "Block",
                    "src": "8280:799:65",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 13998,
                                  "name": "_externalToken",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 13987,
                                  "src": "8316:14:65",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                ],
                                "id": 13997,
                                "name": "_canAwardExternal",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14459,
                                "src": "8298:17:65",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$_t_address_$returns$_t_bool_$",
                                  "typeString": "function (address) view returns (bool)"
                                }
                              },
                              "id": 13999,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "8298:33:65",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a65506f6f6c2f696e76616c69642d65787465726e616c2d746f6b656e",
                              "id": 14000,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "8333:34:65",
                              "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": 13996,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "8290:7:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 14001,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8290:78:65",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14002,
                        "nodeType": "ExpressionStatement",
                        "src": "8290:78:65"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 14006,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 14003,
                              "name": "_tokenIds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13990,
                              "src": "8383:9:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_calldata_ptr",
                                "typeString": "uint256[] calldata"
                              }
                            },
                            "id": 14004,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "length",
                            "nodeType": "MemberAccess",
                            "src": "8383:16:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 14005,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "8403:1:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "8383:21:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 14009,
                        "nodeType": "IfStatement",
                        "src": "8379:58:65",
                        "trueBody": {
                          "id": 14008,
                          "nodeType": "Block",
                          "src": "8406:31:65",
                          "statements": [
                            {
                              "functionReturnParameters": 13995,
                              "id": 14007,
                              "nodeType": "Return",
                              "src": "8420:7:65"
                            }
                          ]
                        }
                      },
                      {
                        "assignments": [
                          14014
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 14014,
                            "mutability": "mutable",
                            "name": "_awardedTokenIds",
                            "nameLocation": "8464:16:65",
                            "nodeType": "VariableDeclaration",
                            "scope": 14084,
                            "src": "8447:33:65",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                              "typeString": "uint256[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 14012,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "8447:7:65",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 14013,
                              "nodeType": "ArrayTypeName",
                              "src": "8447:9:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 14021,
                        "initialValue": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 14018,
                                "name": "_tokenIds",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13990,
                                "src": "8497:9:65",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_array$_t_uint256_$dyn_calldata_ptr",
                                  "typeString": "uint256[] calldata"
                                }
                              },
                              "id": 14019,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "length",
                              "nodeType": "MemberAccess",
                              "src": "8497:16:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 14017,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "8483:13:65",
                            "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": 14015,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "8487:7:65",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 14016,
                              "nodeType": "ArrayTypeName",
                              "src": "8487:9:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                                "typeString": "uint256[]"
                              }
                            }
                          },
                          "id": 14020,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8483:31:65",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                            "typeString": "uint256[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "8447:67:65"
                      },
                      {
                        "assignments": [
                          14023
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 14023,
                            "mutability": "mutable",
                            "name": "hasAwardedTokenIds",
                            "nameLocation": "8530:18:65",
                            "nodeType": "VariableDeclaration",
                            "scope": 14084,
                            "src": "8525:23:65",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            },
                            "typeName": {
                              "id": 14022,
                              "name": "bool",
                              "nodeType": "ElementaryTypeName",
                              "src": "8525:4:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 14024,
                        "nodeType": "VariableDeclarationStatement",
                        "src": "8525:23:65"
                      },
                      {
                        "body": {
                          "id": 14073,
                          "nodeType": "Block",
                          "src": "8606:343:65",
                          "statements": [
                            {
                              "clauses": [
                                {
                                  "block": {
                                    "id": 14061,
                                    "nodeType": "Block",
                                    "src": "8699:110:65",
                                    "statements": [
                                      {
                                        "expression": {
                                          "id": 14051,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "leftHandSide": {
                                            "id": 14049,
                                            "name": "hasAwardedTokenIds",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 14023,
                                            "src": "8717:18:65",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_bool",
                                              "typeString": "bool"
                                            }
                                          },
                                          "nodeType": "Assignment",
                                          "operator": "=",
                                          "rightHandSide": {
                                            "hexValue": "74727565",
                                            "id": 14050,
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": true,
                                            "kind": "bool",
                                            "lValueRequested": false,
                                            "nodeType": "Literal",
                                            "src": "8738:4:65",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_bool",
                                              "typeString": "bool"
                                            },
                                            "value": "true"
                                          },
                                          "src": "8717:25:65",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_bool",
                                            "typeString": "bool"
                                          }
                                        },
                                        "id": 14052,
                                        "nodeType": "ExpressionStatement",
                                        "src": "8717:25:65"
                                      },
                                      {
                                        "expression": {
                                          "id": 14059,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "leftHandSide": {
                                            "baseExpression": {
                                              "id": 14053,
                                              "name": "_awardedTokenIds",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 14014,
                                              "src": "8760:16:65",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                                                "typeString": "uint256[] memory"
                                              }
                                            },
                                            "id": 14055,
                                            "indexExpression": {
                                              "id": 14054,
                                              "name": "i",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 14026,
                                              "src": "8777:1:65",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_uint256",
                                                "typeString": "uint256"
                                              }
                                            },
                                            "isConstant": false,
                                            "isLValue": true,
                                            "isPure": false,
                                            "lValueRequested": true,
                                            "nodeType": "IndexAccess",
                                            "src": "8760:19:65",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            }
                                          },
                                          "nodeType": "Assignment",
                                          "operator": "=",
                                          "rightHandSide": {
                                            "baseExpression": {
                                              "id": 14056,
                                              "name": "_tokenIds",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 13990,
                                              "src": "8782:9:65",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_array$_t_uint256_$dyn_calldata_ptr",
                                                "typeString": "uint256[] calldata"
                                              }
                                            },
                                            "id": 14058,
                                            "indexExpression": {
                                              "id": 14057,
                                              "name": "i",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 14026,
                                              "src": "8792:1:65",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_uint256",
                                                "typeString": "uint256"
                                              }
                                            },
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": false,
                                            "lValueRequested": false,
                                            "nodeType": "IndexAccess",
                                            "src": "8782:12:65",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_uint256",
                                              "typeString": "uint256"
                                            }
                                          },
                                          "src": "8760:34:65",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint256",
                                            "typeString": "uint256"
                                          }
                                        },
                                        "id": 14060,
                                        "nodeType": "ExpressionStatement",
                                        "src": "8760:34:65"
                                      }
                                    ]
                                  },
                                  "errorName": "",
                                  "id": 14062,
                                  "nodeType": "TryCatchClause",
                                  "src": "8699:110:65"
                                },
                                {
                                  "block": {
                                    "id": 14070,
                                    "nodeType": "Block",
                                    "src": "8867:72:65",
                                    "statements": [
                                      {
                                        "eventCall": {
                                          "arguments": [
                                            {
                                              "id": 14067,
                                              "name": "error",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 14064,
                                              "src": "8918:5:65",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_bytes_memory_ptr",
                                                "typeString": "bytes memory"
                                              }
                                            }
                                          ],
                                          "expression": {
                                            "argumentTypes": [
                                              {
                                                "typeIdentifier": "t_bytes_memory_ptr",
                                                "typeString": "bytes memory"
                                              }
                                            ],
                                            "id": 14066,
                                            "name": "ErrorAwardingExternalERC721",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 11317,
                                            "src": "8890:27:65",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_function_event_nonpayable$_t_bytes_memory_ptr_$returns$__$",
                                              "typeString": "function (bytes memory)"
                                            }
                                          },
                                          "id": 14068,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": false,
                                          "kind": "functionCall",
                                          "lValueRequested": false,
                                          "names": [],
                                          "nodeType": "FunctionCall",
                                          "src": "8890:34:65",
                                          "tryCall": false,
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_tuple$__$",
                                            "typeString": "tuple()"
                                          }
                                        },
                                        "id": 14069,
                                        "nodeType": "EmitStatement",
                                        "src": "8885:39:65"
                                      }
                                    ]
                                  },
                                  "errorName": "",
                                  "id": 14071,
                                  "nodeType": "TryCatchClause",
                                  "parameters": {
                                    "id": 14065,
                                    "nodeType": "ParameterList",
                                    "parameters": [
                                      {
                                        "constant": false,
                                        "id": 14064,
                                        "mutability": "mutable",
                                        "name": "error",
                                        "nameLocation": "8847:5:65",
                                        "nodeType": "VariableDeclaration",
                                        "scope": 14071,
                                        "src": "8834:18:65",
                                        "stateVariable": false,
                                        "storageLocation": "memory",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_bytes_memory_ptr",
                                          "typeString": "bytes"
                                        },
                                        "typeName": {
                                          "id": 14063,
                                          "name": "bytes",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "8834:5:65",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_bytes_storage_ptr",
                                            "typeString": "bytes"
                                          }
                                        },
                                        "visibility": "internal"
                                      }
                                    ],
                                    "src": "8816:50:65"
                                  },
                                  "src": "8810:129:65"
                                }
                              ],
                              "externalCall": {
                                "arguments": [
                                  {
                                    "arguments": [
                                      {
                                        "id": 14042,
                                        "name": "this",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": -28,
                                        "src": "8673:4:65",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_contract$_PrizePool_$14487",
                                          "typeString": "contract PrizePool"
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_contract$_PrizePool_$14487",
                                          "typeString": "contract PrizePool"
                                        }
                                      ],
                                      "id": 14041,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "8665:7:65",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_address_$",
                                        "typeString": "type(address)"
                                      },
                                      "typeName": {
                                        "id": 14040,
                                        "name": "address",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "8665:7:65",
                                        "typeDescriptions": {}
                                      }
                                    },
                                    "id": 14043,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "kind": "typeConversion",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "8665:13:65",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "id": 14044,
                                    "name": "_to",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 13985,
                                    "src": "8680:3:65",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "baseExpression": {
                                      "id": 14045,
                                      "name": "_tokenIds",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 13990,
                                      "src": "8685:9:65",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_array$_t_uint256_$dyn_calldata_ptr",
                                        "typeString": "uint256[] calldata"
                                      }
                                    },
                                    "id": 14047,
                                    "indexExpression": {
                                      "id": 14046,
                                      "name": "i",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 14026,
                                      "src": "8695:1:65",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "nodeType": "IndexAccess",
                                    "src": "8685:12:65",
                                    "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": 14037,
                                        "name": "_externalToken",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 13987,
                                        "src": "8632:14:65",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_address",
                                          "typeString": "address"
                                        }
                                      }
                                    ],
                                    "expression": {
                                      "argumentTypes": [
                                        {
                                          "typeIdentifier": "t_address",
                                          "typeString": "address"
                                        }
                                      ],
                                      "id": 14036,
                                      "name": "IERC721",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 1460,
                                      "src": "8624:7:65",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_contract$_IERC721_$1460_$",
                                        "typeString": "type(contract IERC721)"
                                      }
                                    },
                                    "id": 14038,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "kind": "typeConversion",
                                    "lValueRequested": false,
                                    "names": [],
                                    "nodeType": "FunctionCall",
                                    "src": "8624:23:65",
                                    "tryCall": false,
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_IERC721_$1460",
                                      "typeString": "contract IERC721"
                                    }
                                  },
                                  "id": 14039,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "safeTransferFrom",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 1403,
                                  "src": "8624:40:65",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                                    "typeString": "function (address,address,uint256) external"
                                  }
                                },
                                "id": 14048,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "8624:74:65",
                                "tryCall": true,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 14072,
                              "nodeType": "TryStatement",
                              "src": "8620:319:65"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 14032,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 14029,
                            "name": "i",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14026,
                            "src": "8579:1:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "expression": {
                              "id": 14030,
                              "name": "_tokenIds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13990,
                              "src": "8583:9:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint256_$dyn_calldata_ptr",
                                "typeString": "uint256[] calldata"
                              }
                            },
                            "id": 14031,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "length",
                            "nodeType": "MemberAccess",
                            "src": "8583:16:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "8579:20:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 14074,
                        "initializationExpression": {
                          "assignments": [
                            14026
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 14026,
                              "mutability": "mutable",
                              "name": "i",
                              "nameLocation": "8572:1:65",
                              "nodeType": "VariableDeclaration",
                              "scope": 14074,
                              "src": "8564:9:65",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "typeName": {
                                "id": 14025,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "8564:7:65",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 14028,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 14027,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "8576:1:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "8564:13:65"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 14034,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "8601:3:65",
                            "subExpression": {
                              "id": 14033,
                              "name": "i",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14026,
                              "src": "8601:1:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 14035,
                          "nodeType": "ExpressionStatement",
                          "src": "8601:3:65"
                        },
                        "nodeType": "ForStatement",
                        "src": "8559:390:65"
                      },
                      {
                        "condition": {
                          "id": 14075,
                          "name": "hasAwardedTokenIds",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 14023,
                          "src": "8962:18:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 14083,
                        "nodeType": "IfStatement",
                        "src": "8958:115:65",
                        "trueBody": {
                          "id": 14082,
                          "nodeType": "Block",
                          "src": "8982:91:65",
                          "statements": [
                            {
                              "eventCall": {
                                "arguments": [
                                  {
                                    "id": 14077,
                                    "name": "_to",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 13985,
                                    "src": "9024:3:65",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "id": 14078,
                                    "name": "_externalToken",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 13987,
                                    "src": "9029:14:65",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "id": 14079,
                                    "name": "_awardedTokenIds",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 14014,
                                    "src": "9045:16:65",
                                    "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": 14076,
                                  "name": "AwardedExternalERC721",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 11277,
                                  "src": "9002:21:65",
                                  "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": 14080,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "9002:60:65",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 14081,
                              "nodeType": "EmitStatement",
                              "src": "8997:65:65"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 13983,
                    "nodeType": "StructuredDocumentation",
                    "src": "8087:26:65",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "16960d55",
                  "id": 14085,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 13994,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 13993,
                        "name": "onlyPrizeStrategy",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 13500,
                        "src": "8262:17:65"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "8262:17:65"
                    }
                  ],
                  "name": "awardExternalERC721",
                  "nameLocation": "8127:19:65",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 13992,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "8253:8:65"
                  },
                  "parameters": {
                    "id": 13991,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 13985,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "8164:3:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 14085,
                        "src": "8156:11:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 13984,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "8156:7:65",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13987,
                        "mutability": "mutable",
                        "name": "_externalToken",
                        "nameLocation": "8185:14:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 14085,
                        "src": "8177:22:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 13986,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "8177:7:65",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 13990,
                        "mutability": "mutable",
                        "name": "_tokenIds",
                        "nameLocation": "8228:9:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 14085,
                        "src": "8209:28:65",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_calldata_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 13988,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "8209:7:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 13989,
                          "nodeType": "ArrayTypeName",
                          "src": "8209:9:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8146:97:65"
                  },
                  "returnParameters": {
                    "id": 13995,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "8280:0:65"
                  },
                  "scope": 14487,
                  "src": "8118:961:65",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11464
                  ],
                  "body": {
                    "id": 14102,
                    "nodeType": "Block",
                    "src": "9203:65:65",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 14097,
                              "name": "_balanceCap",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14088,
                              "src": "9228:11:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 14096,
                            "name": "_setBalanceCap",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14390,
                            "src": "9213:14:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_uint256_$returns$__$",
                              "typeString": "function (uint256)"
                            }
                          },
                          "id": 14098,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9213:27:65",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14099,
                        "nodeType": "ExpressionStatement",
                        "src": "9213:27:65"
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 14100,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "9257:4:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 14095,
                        "id": 14101,
                        "nodeType": "Return",
                        "src": "9250:11:65"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14086,
                    "nodeType": "StructuredDocumentation",
                    "src": "9085:26:65",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "aec9c307",
                  "id": 14103,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 14092,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 14091,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5341,
                        "src": "9178:9:65"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "9178:9:65"
                    }
                  ],
                  "name": "setBalanceCap",
                  "nameLocation": "9125:13:65",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 14090,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "9169:8:65"
                  },
                  "parameters": {
                    "id": 14089,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14088,
                        "mutability": "mutable",
                        "name": "_balanceCap",
                        "nameLocation": "9147:11:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 14103,
                        "src": "9139:19:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14087,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "9139:7:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9138:21:65"
                  },
                  "returnParameters": {
                    "id": 14095,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14094,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14103,
                        "src": "9197:4:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 14093,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "9197:4:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9196:6:65"
                  },
                  "scope": 14487,
                  "src": "9116:152:65",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11470
                  ],
                  "body": {
                    "id": 14116,
                    "nodeType": "Block",
                    "src": "9381:48:65",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 14113,
                              "name": "_liquidityCap",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14106,
                              "src": "9408:13:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 14112,
                            "name": "_setLiquidityCap",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14405,
                            "src": "9391:16:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_uint256_$returns$__$",
                              "typeString": "function (uint256)"
                            }
                          },
                          "id": 14114,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9391:31:65",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14115,
                        "nodeType": "ExpressionStatement",
                        "src": "9391:31:65"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14104,
                    "nodeType": "StructuredDocumentation",
                    "src": "9274:26:65",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "7b99adb1",
                  "id": 14117,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 14110,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 14109,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5341,
                        "src": "9371:9:65"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "9371:9:65"
                    }
                  ],
                  "name": "setLiquidityCap",
                  "nameLocation": "9314:15:65",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 14108,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "9362:8:65"
                  },
                  "parameters": {
                    "id": 14107,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14106,
                        "mutability": "mutable",
                        "name": "_liquidityCap",
                        "nameLocation": "9338:13:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 14117,
                        "src": "9330:21:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14105,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "9330:7:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9329:23:65"
                  },
                  "returnParameters": {
                    "id": 14111,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "9381:0:65"
                  },
                  "scope": 14487,
                  "src": "9305:124:65",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11485
                  ],
                  "body": {
                    "id": 14173,
                    "nodeType": "Block",
                    "src": "9545:300:65",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 14138,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 14132,
                                    "name": "_ticket",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 14121,
                                    "src": "9571:7:65",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_ITicket_$11825",
                                      "typeString": "contract ITicket"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_ITicket_$11825",
                                      "typeString": "contract ITicket"
                                    }
                                  ],
                                  "id": 14131,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "9563:7:65",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 14130,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "9563:7:65",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 14133,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "9563:16:65",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 14136,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "9591:1:65",
                                    "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": 14135,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "9583:7:65",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 14134,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "9583:7:65",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 14137,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "9583:10:65",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "9563:30:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a65506f6f6c2f7469636b65742d6e6f742d7a65726f2d61646472657373",
                              "id": 14139,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "9595:35:65",
                              "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": 14129,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "9555:7:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 14140,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9555:76:65",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14141,
                        "nodeType": "ExpressionStatement",
                        "src": "9555:76:65"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 14151,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 14145,
                                    "name": "ticket",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 13475,
                                    "src": "9657:6:65",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_ITicket_$11825",
                                      "typeString": "contract ITicket"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_ITicket_$11825",
                                      "typeString": "contract ITicket"
                                    }
                                  ],
                                  "id": 14144,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "9649:7:65",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 14143,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "9649:7:65",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 14146,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "9649:15:65",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "==",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 14149,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "9676:1:65",
                                    "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": 14148,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "9668:7:65",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 14147,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "9668:7:65",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 14150,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "9668:10:65",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "9649:29:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a65506f6f6c2f7469636b65742d616c72656164792d736574",
                              "id": 14152,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "9680:30:65",
                              "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": 14142,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "9641:7:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 14153,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9641:70:65",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14154,
                        "nodeType": "ExpressionStatement",
                        "src": "9641:70:65"
                      },
                      {
                        "expression": {
                          "id": 14157,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 14155,
                            "name": "ticket",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13475,
                            "src": "9722:6:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_ITicket_$11825",
                              "typeString": "contract ITicket"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 14156,
                            "name": "_ticket",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14121,
                            "src": "9731:7:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_ITicket_$11825",
                              "typeString": "contract ITicket"
                            }
                          },
                          "src": "9722:16:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$11825",
                            "typeString": "contract ITicket"
                          }
                        },
                        "id": 14158,
                        "nodeType": "ExpressionStatement",
                        "src": "9722:16:65"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 14160,
                              "name": "_ticket",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14121,
                              "src": "9764:7:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$11825",
                                "typeString": "contract ITicket"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_ITicket_$11825",
                                "typeString": "contract ITicket"
                              }
                            ],
                            "id": 14159,
                            "name": "TicketSet",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11312,
                            "src": "9754:9:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_contract$_ITicket_$11825_$returns$__$",
                              "typeString": "function (contract ITicket)"
                            }
                          },
                          "id": 14161,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9754:18:65",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14162,
                        "nodeType": "EmitStatement",
                        "src": "9749:23:65"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "id": 14166,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "ElementaryTypeNameExpression",
                                    "src": "9803:7:65",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_uint256_$",
                                      "typeString": "type(uint256)"
                                    },
                                    "typeName": {
                                      "id": 14165,
                                      "name": "uint256",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "9803:7:65",
                                      "typeDescriptions": {}
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_type$_t_uint256_$",
                                      "typeString": "type(uint256)"
                                    }
                                  ],
                                  "id": 14164,
                                  "name": "type",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -27,
                                  "src": "9798:4:65",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                    "typeString": "function () pure"
                                  }
                                },
                                "id": 14167,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "9798:13:65",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_meta_type_t_uint256",
                                  "typeString": "type(uint256)"
                                }
                              },
                              "id": 14168,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "lValueRequested": false,
                              "memberName": "max",
                              "nodeType": "MemberAccess",
                              "src": "9798:17:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 14163,
                            "name": "_setBalanceCap",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14390,
                            "src": "9783:14:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_uint256_$returns$__$",
                              "typeString": "function (uint256)"
                            }
                          },
                          "id": 14169,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9783:33:65",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14170,
                        "nodeType": "ExpressionStatement",
                        "src": "9783:33:65"
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 14171,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "9834:4:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 14128,
                        "id": 14172,
                        "nodeType": "Return",
                        "src": "9827:11:65"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14118,
                    "nodeType": "StructuredDocumentation",
                    "src": "9435:26:65",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "1c65c78b",
                  "id": 14174,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 14125,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 14124,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5341,
                        "src": "9520:9:65"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "9520:9:65"
                    }
                  ],
                  "name": "setTicket",
                  "nameLocation": "9475:9:65",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 14123,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "9511:8:65"
                  },
                  "parameters": {
                    "id": 14122,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14121,
                        "mutability": "mutable",
                        "name": "_ticket",
                        "nameLocation": "9493:7:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 14174,
                        "src": "9485:15:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ITicket_$11825",
                          "typeString": "contract ITicket"
                        },
                        "typeName": {
                          "id": 14120,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 14119,
                            "name": "ITicket",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11825,
                            "src": "9485:7:65"
                          },
                          "referencedDeclaration": 11825,
                          "src": "9485:7:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$11825",
                            "typeString": "contract ITicket"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9484:17:65"
                  },
                  "returnParameters": {
                    "id": 14128,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14127,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14174,
                        "src": "9539:4:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 14126,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "9539:4:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9538:6:65"
                  },
                  "scope": 14487,
                  "src": "9466:379:65",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11476
                  ],
                  "body": {
                    "id": 14187,
                    "nodeType": "Block",
                    "src": "9960:50:65",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 14184,
                              "name": "_prizeStrategy",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14177,
                              "src": "9988:14:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 14183,
                            "name": "_setPrizeStrategy",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14430,
                            "src": "9970:17:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$returns$__$",
                              "typeString": "function (address)"
                            }
                          },
                          "id": 14185,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9970:33:65",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14186,
                        "nodeType": "ExpressionStatement",
                        "src": "9970:33:65"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14175,
                    "nodeType": "StructuredDocumentation",
                    "src": "9851:26:65",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "91ca480e",
                  "id": 14188,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 14181,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 14180,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5341,
                        "src": "9950:9:65"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "9950:9:65"
                    }
                  ],
                  "name": "setPrizeStrategy",
                  "nameLocation": "9891:16:65",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 14179,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "9941:8:65"
                  },
                  "parameters": {
                    "id": 14178,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14177,
                        "mutability": "mutable",
                        "name": "_prizeStrategy",
                        "nameLocation": "9916:14:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 14188,
                        "src": "9908:22:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 14176,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "9908:7:65",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9907:24:65"
                  },
                  "returnParameters": {
                    "id": 14182,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "9960:0:65"
                  },
                  "scope": 14487,
                  "src": "9882:128:65",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11494
                  ],
                  "body": {
                    "id": 14217,
                    "nodeType": "Block",
                    "src": "10135:108:65",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 14208,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "arguments": [
                              {
                                "arguments": [
                                  {
                                    "id": 14204,
                                    "name": "this",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -28,
                                    "src": "10177:4:65",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_PrizePool_$14487",
                                      "typeString": "contract PrizePool"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_PrizePool_$14487",
                                      "typeString": "contract PrizePool"
                                    }
                                  ],
                                  "id": 14203,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "10169:7:65",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 14202,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "10169:7:65",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 14205,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "10169:13:65",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              ],
                              "expression": {
                                "id": 14200,
                                "name": "_compLike",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14192,
                                "src": "10149:9:65",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_contract$_ICompLike_$10642",
                                  "typeString": "contract ICompLike"
                                }
                              },
                              "id": 14201,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "balanceOf",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 829,
                              "src": "10149:19:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_external_view$_t_address_$returns$_t_uint256_$",
                                "typeString": "function (address) view external returns (uint256)"
                              }
                            },
                            "id": 14206,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "10149:34:65",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": ">",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 14207,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "10186:1:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "10149:38:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 14216,
                        "nodeType": "IfStatement",
                        "src": "10145:92:65",
                        "trueBody": {
                          "id": 14215,
                          "nodeType": "Block",
                          "src": "10189:48:65",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "id": 14212,
                                    "name": "_to",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 14194,
                                    "src": "10222:3:65",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  ],
                                  "expression": {
                                    "id": 14209,
                                    "name": "_compLike",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 14192,
                                    "src": "10203:9:65",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_ICompLike_$10642",
                                      "typeString": "contract ICompLike"
                                    }
                                  },
                                  "id": 14211,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "delegate",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 10641,
                                  "src": "10203:18:65",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_external_nonpayable$_t_address_$returns$__$",
                                    "typeString": "function (address) external"
                                  }
                                },
                                "id": 14213,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "10203:23:65",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 14214,
                              "nodeType": "ExpressionStatement",
                              "src": "10203:23:65"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14189,
                    "nodeType": "StructuredDocumentation",
                    "src": "10016:26:65",
                    "text": "@inheritdoc IPrizePool"
                  },
                  "functionSelector": "2f7627e3",
                  "id": 14218,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 14198,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 14197,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5341,
                        "src": "10125:9:65"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "10125:9:65"
                    }
                  ],
                  "name": "compLikeDelegate",
                  "nameLocation": "10056:16:65",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 14196,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "10116:8:65"
                  },
                  "parameters": {
                    "id": 14195,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14192,
                        "mutability": "mutable",
                        "name": "_compLike",
                        "nameLocation": "10083:9:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 14218,
                        "src": "10073:19:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ICompLike_$10642",
                          "typeString": "contract ICompLike"
                        },
                        "typeName": {
                          "id": 14191,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 14190,
                            "name": "ICompLike",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 10642,
                            "src": "10073:9:65"
                          },
                          "referencedDeclaration": 10642,
                          "src": "10073:9:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ICompLike_$10642",
                            "typeString": "contract ICompLike"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 14194,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "10102:3:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 14218,
                        "src": "10094:11:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 14193,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "10094:7:65",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "10072:34:65"
                  },
                  "returnParameters": {
                    "id": 14199,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "10135:0:65"
                  },
                  "scope": 14487,
                  "src": "10047:196:65",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    1477
                  ],
                  "body": {
                    "id": 14237,
                    "nodeType": "Block",
                    "src": "10432:65:65",
                    "statements": [
                      {
                        "expression": {
                          "expression": {
                            "expression": {
                              "id": 14233,
                              "name": "IERC721Receiver",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 1478,
                              "src": "10449:15:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_IERC721Receiver_$1478_$",
                                "typeString": "type(contract IERC721Receiver)"
                              }
                            },
                            "id": 14234,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "memberName": "onERC721Received",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 1477,
                            "src": "10449:32:65",
                            "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": 14235,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "lValueRequested": false,
                          "memberName": "selector",
                          "nodeType": "MemberAccess",
                          "src": "10449:41:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes4",
                            "typeString": "bytes4"
                          }
                        },
                        "functionReturnParameters": 14232,
                        "id": 14236,
                        "nodeType": "Return",
                        "src": "10442:48:65"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14219,
                    "nodeType": "StructuredDocumentation",
                    "src": "10249:31:65",
                    "text": "@inheritdoc IERC721Receiver"
                  },
                  "functionSelector": "150b7a02",
                  "id": 14238,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "onERC721Received",
                  "nameLocation": "10294:16:65",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 14229,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "10406:8:65"
                  },
                  "parameters": {
                    "id": 14228,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14221,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14238,
                        "src": "10320:7:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 14220,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "10320:7:65",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 14223,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14238,
                        "src": "10337:7:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 14222,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "10337:7:65",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 14225,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14238,
                        "src": "10354:7:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14224,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "10354:7:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 14227,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14238,
                        "src": "10371:14:65",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_calldata_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 14226,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "10371:5:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "10310:81:65"
                  },
                  "returnParameters": {
                    "id": 14232,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14231,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14238,
                        "src": "10424:6:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes4",
                          "typeString": "bytes4"
                        },
                        "typeName": {
                          "id": 14230,
                          "name": "bytes4",
                          "nodeType": "ElementaryTypeName",
                          "src": "10424:6:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes4",
                            "typeString": "bytes4"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "10423:8:65"
                  },
                  "scope": 14487,
                  "src": "10285:212:65",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 14274,
                    "nodeType": "Block",
                    "src": "11066:242:65",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 14252,
                                  "name": "_externalToken",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 14243,
                                  "src": "11102:14:65",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                ],
                                "id": 14251,
                                "name": "_canAwardExternal",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14459,
                                "src": "11084:17:65",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$_t_address_$returns$_t_bool_$",
                                  "typeString": "function (address) view returns (bool)"
                                }
                              },
                              "id": 14253,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "11084:33:65",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a65506f6f6c2f696e76616c69642d65787465726e616c2d746f6b656e",
                              "id": 14254,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "11119:34:65",
                              "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": 14250,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "11076:7:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 14255,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "11076:78:65",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14256,
                        "nodeType": "ExpressionStatement",
                        "src": "11076:78:65"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 14259,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 14257,
                            "name": "_amount",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14245,
                            "src": "11169:7:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 14258,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "11180:1:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "11169:12:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 14263,
                        "nodeType": "IfStatement",
                        "src": "11165:55:65",
                        "trueBody": {
                          "id": 14262,
                          "nodeType": "Block",
                          "src": "11183:37:65",
                          "statements": [
                            {
                              "expression": {
                                "hexValue": "66616c7365",
                                "id": 14260,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "bool",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "11204:5:65",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                },
                                "value": "false"
                              },
                              "functionReturnParameters": 14249,
                              "id": 14261,
                              "nodeType": "Return",
                              "src": "11197:12:65"
                            }
                          ]
                        }
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 14268,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14241,
                              "src": "11266:3:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 14269,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14245,
                              "src": "11271:7:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "arguments": [
                                {
                                  "id": 14265,
                                  "name": "_externalToken",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 14243,
                                  "src": "11237:14:65",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                ],
                                "id": 14264,
                                "name": "IERC20",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 890,
                                "src": "11230:6:65",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_contract$_IERC20_$890_$",
                                  "typeString": "type(contract IERC20)"
                                }
                              },
                              "id": 14266,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "11230:22:65",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$890",
                                "typeString": "contract IERC20"
                              }
                            },
                            "id": 14267,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "safeTransfer",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 1151,
                            "src": "11230:35:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20_$890_$_t_address_$_t_uint256_$returns$__$bound_to$_t_contract$_IERC20_$890_$",
                              "typeString": "function (contract IERC20,address,uint256)"
                            }
                          },
                          "id": 14270,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "11230:49:65",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14271,
                        "nodeType": "ExpressionStatement",
                        "src": "11230:49:65"
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 14272,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "11297:4:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 14249,
                        "id": 14273,
                        "nodeType": "Return",
                        "src": "11290:11:65"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14239,
                    "nodeType": "StructuredDocumentation",
                    "src": "10559:372:65",
                    "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": 14275,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_transferOut",
                  "nameLocation": "10945:12:65",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 14246,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14241,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "10975:3:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 14275,
                        "src": "10967:11:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 14240,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "10967:7:65",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 14243,
                        "mutability": "mutable",
                        "name": "_externalToken",
                        "nameLocation": "10996:14:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 14275,
                        "src": "10988:22:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 14242,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "10988:7:65",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 14245,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "11028:7:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 14275,
                        "src": "11020:15:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14244,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "11020:7:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "10957:84:65"
                  },
                  "returnParameters": {
                    "id": 14249,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14248,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14275,
                        "src": "11060:4:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 14247,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "11060:4:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "11059:6:65"
                  },
                  "scope": 14487,
                  "src": "10936:372:65",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 14293,
                    "nodeType": "Block",
                    "src": "11712:62:65",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 14289,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14278,
                              "src": "11754:3:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 14290,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14280,
                              "src": "11759:7:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "id": 14286,
                              "name": "_controlledToken",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14283,
                              "src": "11722:16:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$11825",
                                "typeString": "contract ITicket"
                              }
                            },
                            "id": 14288,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "controllerMint",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 10662,
                            "src": "11722:31:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256) external"
                            }
                          },
                          "id": 14291,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "11722:45:65",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14292,
                        "nodeType": "ExpressionStatement",
                        "src": "11722:45:65"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14276,
                    "nodeType": "StructuredDocumentation",
                    "src": "11314:283:65",
                    "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": 14294,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_mint",
                  "nameLocation": "11611:5:65",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 14284,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14278,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "11634:3:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 14294,
                        "src": "11626:11:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 14277,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "11626:7:65",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 14280,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "11655:7:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 14294,
                        "src": "11647:15:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14279,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "11647:7:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 14283,
                        "mutability": "mutable",
                        "name": "_controlledToken",
                        "nameLocation": "11680:16:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 14294,
                        "src": "11672:24:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ITicket_$11825",
                          "typeString": "contract ITicket"
                        },
                        "typeName": {
                          "id": 14282,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 14281,
                            "name": "ITicket",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11825,
                            "src": "11672:7:65"
                          },
                          "referencedDeclaration": 11825,
                          "src": "11672:7:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$11825",
                            "typeString": "contract ITicket"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "11616:86:65"
                  },
                  "returnParameters": {
                    "id": 14285,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "11712:0:65"
                  },
                  "scope": 14487,
                  "src": "11602:172:65",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 14328,
                    "nodeType": "Block",
                    "src": "12175:177:65",
                    "statements": [
                      {
                        "assignments": [
                          14305
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 14305,
                            "mutability": "mutable",
                            "name": "_balanceCap",
                            "nameLocation": "12193:11:65",
                            "nodeType": "VariableDeclaration",
                            "scope": 14328,
                            "src": "12185:19:65",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 14304,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "12185:7:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 14307,
                        "initialValue": {
                          "id": 14306,
                          "name": "balanceCap",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 13481,
                          "src": "12207:10:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "12185:32:65"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 14314,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 14308,
                            "name": "_balanceCap",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14305,
                            "src": "12232:11:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "expression": {
                              "arguments": [
                                {
                                  "id": 14311,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "12252:7:65",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_uint256_$",
                                    "typeString": "type(uint256)"
                                  },
                                  "typeName": {
                                    "id": 14310,
                                    "name": "uint256",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "12252:7:65",
                                    "typeDescriptions": {}
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_type$_t_uint256_$",
                                    "typeString": "type(uint256)"
                                  }
                                ],
                                "id": 14309,
                                "name": "type",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -27,
                                "src": "12247:4:65",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                  "typeString": "function () pure"
                                }
                              },
                              "id": 14312,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "12247:13:65",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_magic_meta_type_t_uint256",
                                "typeString": "type(uint256)"
                              }
                            },
                            "id": 14313,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "memberName": "max",
                            "nodeType": "MemberAccess",
                            "src": "12247:17:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "12232:32:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 14317,
                        "nodeType": "IfStatement",
                        "src": "12228:49:65",
                        "trueBody": {
                          "expression": {
                            "hexValue": "74727565",
                            "id": 14315,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "bool",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "12273:4:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            },
                            "value": "true"
                          },
                          "functionReturnParameters": 14303,
                          "id": 14316,
                          "nodeType": "Return",
                          "src": "12266:11:65"
                        }
                      },
                      {
                        "expression": {
                          "components": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 14325,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 14323,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "arguments": [
                                    {
                                      "id": 14320,
                                      "name": "_user",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 14297,
                                      "src": "12313:5:65",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_address",
                                        "typeString": "address"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_address",
                                        "typeString": "address"
                                      }
                                    ],
                                    "expression": {
                                      "id": 14318,
                                      "name": "ticket",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 13475,
                                      "src": "12296:6:65",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_contract$_ITicket_$11825",
                                        "typeString": "contract ITicket"
                                      }
                                    },
                                    "id": 14319,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "balanceOf",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 829,
                                    "src": "12296:16:65",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_external_view$_t_address_$returns$_t_uint256_$",
                                      "typeString": "function (address) view external returns (uint256)"
                                    }
                                  },
                                  "id": 14321,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "12296:23:65",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "+",
                                "rightExpression": {
                                  "id": 14322,
                                  "name": "_amount",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 14299,
                                  "src": "12322:7:65",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "12296:33:65",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "id": 14324,
                                "name": "_balanceCap",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14305,
                                "src": "12333:11:65",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "12296:48:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            }
                          ],
                          "id": 14326,
                          "isConstant": false,
                          "isInlineArray": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "TupleExpression",
                          "src": "12295:50:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 14303,
                        "id": 14327,
                        "nodeType": "Return",
                        "src": "12288:57:65"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14295,
                    "nodeType": "StructuredDocumentation",
                    "src": "11780:308:65",
                    "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": 14329,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_canDeposit",
                  "nameLocation": "12102:11:65",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 14300,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14297,
                        "mutability": "mutable",
                        "name": "_user",
                        "nameLocation": "12122:5:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 14329,
                        "src": "12114:13:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 14296,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "12114:7:65",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 14299,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "12137:7:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 14329,
                        "src": "12129:15:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14298,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "12129:7:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "12113:32:65"
                  },
                  "returnParameters": {
                    "id": 14303,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14302,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14329,
                        "src": "12169:4:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 14301,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "12169:4:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "12168:6:65"
                  },
                  "scope": 14487,
                  "src": "12093:259:65",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 14359,
                    "nodeType": "Block",
                    "src": "12677:180:65",
                    "statements": [
                      {
                        "assignments": [
                          14338
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 14338,
                            "mutability": "mutable",
                            "name": "_liquidityCap",
                            "nameLocation": "12695:13:65",
                            "nodeType": "VariableDeclaration",
                            "scope": 14359,
                            "src": "12687:21:65",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 14337,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "12687:7:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 14340,
                        "initialValue": {
                          "id": 14339,
                          "name": "liquidityCap",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 13484,
                          "src": "12711:12:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "12687:36:65"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 14347,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 14341,
                            "name": "_liquidityCap",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14338,
                            "src": "12737:13:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "expression": {
                              "arguments": [
                                {
                                  "id": 14344,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "12759:7:65",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_uint256_$",
                                    "typeString": "type(uint256)"
                                  },
                                  "typeName": {
                                    "id": 14343,
                                    "name": "uint256",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "12759:7:65",
                                    "typeDescriptions": {}
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_type$_t_uint256_$",
                                    "typeString": "type(uint256)"
                                  }
                                ],
                                "id": 14342,
                                "name": "type",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -27,
                                "src": "12754:4:65",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                  "typeString": "function () pure"
                                }
                              },
                              "id": 14345,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "12754:13:65",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_magic_meta_type_t_uint256",
                                "typeString": "type(uint256)"
                              }
                            },
                            "id": 14346,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "memberName": "max",
                            "nodeType": "MemberAccess",
                            "src": "12754:17:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "12737:34:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 14350,
                        "nodeType": "IfStatement",
                        "src": "12733:51:65",
                        "trueBody": {
                          "expression": {
                            "hexValue": "74727565",
                            "id": 14348,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "bool",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "12780:4:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            },
                            "value": "true"
                          },
                          "functionReturnParameters": 14336,
                          "id": 14349,
                          "nodeType": "Return",
                          "src": "12773:11:65"
                        }
                      },
                      {
                        "expression": {
                          "components": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 14356,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 14354,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "arguments": [],
                                  "expression": {
                                    "argumentTypes": [],
                                    "id": 14351,
                                    "name": "_ticketTotalSupply",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 14441,
                                    "src": "12802:18:65",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_view$__$returns$_t_uint256_$",
                                      "typeString": "function () view returns (uint256)"
                                    }
                                  },
                                  "id": 14352,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "12802:20:65",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "+",
                                "rightExpression": {
                                  "id": 14353,
                                  "name": "_amount",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 14332,
                                  "src": "12825:7:65",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "12802:30:65",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "id": 14355,
                                "name": "_liquidityCap",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14338,
                                "src": "12836:13:65",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "12802:47:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            }
                          ],
                          "id": 14357,
                          "isConstant": false,
                          "isInlineArray": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "TupleExpression",
                          "src": "12801:49:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 14336,
                        "id": 14358,
                        "nodeType": "Return",
                        "src": "12794:56:65"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14330,
                    "nodeType": "StructuredDocumentation",
                    "src": "12358:242:65",
                    "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": 14360,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_canAddLiquidity",
                  "nameLocation": "12614:16:65",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 14333,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14332,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "12639:7:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 14360,
                        "src": "12631:15:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14331,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "12631:7:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "12630:17:65"
                  },
                  "returnParameters": {
                    "id": 14336,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14335,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14360,
                        "src": "12671:4:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 14334,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "12671:4:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "12670:6:65"
                  },
                  "scope": 14487,
                  "src": "12605:252:65",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 14374,
                    "nodeType": "Block",
                    "src": "13152:52:65",
                    "statements": [
                      {
                        "expression": {
                          "components": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_contract$_ITicket_$11825",
                                "typeString": "contract ITicket"
                              },
                              "id": 14371,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 14369,
                                "name": "ticket",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 13475,
                                "src": "13170:6:65",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_contract$_ITicket_$11825",
                                  "typeString": "contract ITicket"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "==",
                              "rightExpression": {
                                "id": 14370,
                                "name": "_controlledToken",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14364,
                                "src": "13180:16:65",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_contract$_ITicket_$11825",
                                  "typeString": "contract ITicket"
                                }
                              },
                              "src": "13170:26:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            }
                          ],
                          "id": 14372,
                          "isConstant": false,
                          "isInlineArray": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "TupleExpression",
                          "src": "13169:28:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 14368,
                        "id": 14373,
                        "nodeType": "Return",
                        "src": "13162:35:65"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14361,
                    "nodeType": "StructuredDocumentation",
                    "src": "12863:206:65",
                    "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": 14375,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_isControlled",
                  "nameLocation": "13083:13:65",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 14365,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14364,
                        "mutability": "mutable",
                        "name": "_controlledToken",
                        "nameLocation": "13105:16:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 14375,
                        "src": "13097:24:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ITicket_$11825",
                          "typeString": "contract ITicket"
                        },
                        "typeName": {
                          "id": 14363,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 14362,
                            "name": "ITicket",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11825,
                            "src": "13097:7:65"
                          },
                          "referencedDeclaration": 11825,
                          "src": "13097:7:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$11825",
                            "typeString": "contract ITicket"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "13096:26:65"
                  },
                  "returnParameters": {
                    "id": 14368,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14367,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14375,
                        "src": "13146:4:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 14366,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "13146:4:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "13145:6:65"
                  },
                  "scope": 14487,
                  "src": "13074:130:65",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 14389,
                    "nodeType": "Block",
                    "src": "13388:82:65",
                    "statements": [
                      {
                        "expression": {
                          "id": 14383,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 14381,
                            "name": "balanceCap",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13481,
                            "src": "13398:10:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 14382,
                            "name": "_balanceCap",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14378,
                            "src": "13411:11:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "13398:24:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 14384,
                        "nodeType": "ExpressionStatement",
                        "src": "13398:24:65"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 14386,
                              "name": "_balanceCap",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14378,
                              "src": "13451:11:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 14385,
                            "name": "BalanceCapSet",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11296,
                            "src": "13437:13:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint256_$returns$__$",
                              "typeString": "function (uint256)"
                            }
                          },
                          "id": 14387,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "13437:26:65",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14388,
                        "nodeType": "EmitStatement",
                        "src": "13432:31:65"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14376,
                    "nodeType": "StructuredDocumentation",
                    "src": "13210:119:65",
                    "text": "@notice Allows the owner to set a balance cap per `token` for the pool.\n @param _balanceCap New balance cap."
                  },
                  "id": 14390,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_setBalanceCap",
                  "nameLocation": "13343:14:65",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 14379,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14378,
                        "mutability": "mutable",
                        "name": "_balanceCap",
                        "nameLocation": "13366:11:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 14390,
                        "src": "13358:19:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14377,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "13358:7:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "13357:21:65"
                  },
                  "returnParameters": {
                    "id": 14380,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "13388:0:65"
                  },
                  "scope": 14487,
                  "src": "13334:136:65",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 14404,
                    "nodeType": "Block",
                    "src": "13650:90:65",
                    "statements": [
                      {
                        "expression": {
                          "id": 14398,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 14396,
                            "name": "liquidityCap",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13484,
                            "src": "13660:12:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 14397,
                            "name": "_liquidityCap",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14393,
                            "src": "13675:13:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "13660:28:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 14399,
                        "nodeType": "ExpressionStatement",
                        "src": "13660:28:65"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 14401,
                              "name": "_liquidityCap",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14393,
                              "src": "13719:13:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 14400,
                            "name": "LiquidityCapSet",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11301,
                            "src": "13703:15:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint256_$returns$__$",
                              "typeString": "function (uint256)"
                            }
                          },
                          "id": 14402,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "13703:30:65",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14403,
                        "nodeType": "EmitStatement",
                        "src": "13698:35:65"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14391,
                    "nodeType": "StructuredDocumentation",
                    "src": "13476:111:65",
                    "text": "@notice Allows the owner to set a liquidity cap for the pool\n @param _liquidityCap New liquidity cap"
                  },
                  "id": 14405,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_setLiquidityCap",
                  "nameLocation": "13601:16:65",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 14394,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14393,
                        "mutability": "mutable",
                        "name": "_liquidityCap",
                        "nameLocation": "13626:13:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 14405,
                        "src": "13618:21:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14392,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "13618:7:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "13617:23:65"
                  },
                  "returnParameters": {
                    "id": 14395,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "13650:0:65"
                  },
                  "scope": 14487,
                  "src": "13592:148:65",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 14429,
                    "nodeType": "Block",
                    "src": "13947:179:65",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 14417,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 14412,
                                "name": "_prizeStrategy",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14408,
                                "src": "13965:14:65",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 14415,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "13991:1:65",
                                    "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": 14414,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "13983:7:65",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 14413,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "13983:7:65",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 14416,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "13983:10:65",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "13965:28:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a65506f6f6c2f7072697a6553747261746567792d6e6f742d7a65726f",
                              "id": 14418,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "13995:34:65",
                              "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": 14411,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "13957:7:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 14419,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "13957:73:65",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14420,
                        "nodeType": "ExpressionStatement",
                        "src": "13957:73:65"
                      },
                      {
                        "expression": {
                          "id": 14423,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 14421,
                            "name": "prizeStrategy",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 13478,
                            "src": "14041:13:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 14422,
                            "name": "_prizeStrategy",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14408,
                            "src": "14057:14:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "14041:30:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "id": 14424,
                        "nodeType": "ExpressionStatement",
                        "src": "14041:30:65"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 14426,
                              "name": "_prizeStrategy",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14408,
                              "src": "14104:14:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 14425,
                            "name": "PrizeStrategySet",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11306,
                            "src": "14087:16:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$returns$__$",
                              "typeString": "function (address)"
                            }
                          },
                          "id": 14427,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "14087:32:65",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14428,
                        "nodeType": "EmitStatement",
                        "src": "14082:37:65"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14406,
                    "nodeType": "StructuredDocumentation",
                    "src": "13746:136:65",
                    "text": "@notice Sets the prize strategy of the prize pool.  Only callable by the owner.\n @param _prizeStrategy The new prize strategy"
                  },
                  "id": 14430,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_setPrizeStrategy",
                  "nameLocation": "13896:17:65",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 14409,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14408,
                        "mutability": "mutable",
                        "name": "_prizeStrategy",
                        "nameLocation": "13922:14:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 14430,
                        "src": "13914:22:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 14407,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "13914:7:65",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "13913:24:65"
                  },
                  "returnParameters": {
                    "id": 14410,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "13947:0:65"
                  },
                  "scope": 14487,
                  "src": "13887:239:65",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 14440,
                    "nodeType": "Block",
                    "src": "14277:44:65",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "id": 14436,
                              "name": "ticket",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 13475,
                              "src": "14294:6:65",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$11825",
                                "typeString": "contract ITicket"
                              }
                            },
                            "id": 14437,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "totalSupply",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 821,
                            "src": "14294:18:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$__$returns$_t_uint256_$",
                              "typeString": "function () view external returns (uint256)"
                            }
                          },
                          "id": 14438,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "14294:20:65",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 14435,
                        "id": 14439,
                        "nodeType": "Return",
                        "src": "14287:27:65"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14431,
                    "nodeType": "StructuredDocumentation",
                    "src": "14132:78:65",
                    "text": "@notice The current total of tickets.\n @return Ticket total supply."
                  },
                  "id": 14441,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_ticketTotalSupply",
                  "nameLocation": "14224:18:65",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 14432,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "14242:2:65"
                  },
                  "returnParameters": {
                    "id": 14435,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14434,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14441,
                        "src": "14268:7:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14433,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "14268:7:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "14267:9:65"
                  },
                  "scope": 14487,
                  "src": "14215:106:65",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 14450,
                    "nodeType": "Block",
                    "src": "14513:39:65",
                    "statements": [
                      {
                        "expression": {
                          "expression": {
                            "id": 14447,
                            "name": "block",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": -4,
                            "src": "14530:5:65",
                            "typeDescriptions": {
                              "typeIdentifier": "t_magic_block",
                              "typeString": "block"
                            }
                          },
                          "id": 14448,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "timestamp",
                          "nodeType": "MemberAccess",
                          "src": "14530:15:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 14446,
                        "id": 14449,
                        "nodeType": "Return",
                        "src": "14523:22:65"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14442,
                    "nodeType": "StructuredDocumentation",
                    "src": "14327:117:65",
                    "text": "@dev Gets the current time as represented by the current block\n @return The timestamp of the current block"
                  },
                  "id": 14451,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_currentTime",
                  "nameLocation": "14458:12:65",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 14443,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "14470:2:65"
                  },
                  "returnParameters": {
                    "id": 14446,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14445,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14451,
                        "src": "14504:7:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14444,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "14504:7:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "14503:9:65"
                  },
                  "scope": 14487,
                  "src": "14449:103:65",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "documentation": {
                    "id": 14452,
                    "nodeType": "StructuredDocumentation",
                    "src": "14629:406:65",
                    "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": 14459,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_canAwardExternal",
                  "nameLocation": "15049:17:65",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 14455,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14454,
                        "mutability": "mutable",
                        "name": "_externalToken",
                        "nameLocation": "15075:14:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 14459,
                        "src": "15067:22:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 14453,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "15067:7:65",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "15066:24:65"
                  },
                  "returnParameters": {
                    "id": 14458,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14457,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14459,
                        "src": "15122:4:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 14456,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "15122:4:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "15121:6:65"
                  },
                  "scope": 14487,
                  "src": "15040:88:65",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "documentation": {
                    "id": 14460,
                    "nodeType": "StructuredDocumentation",
                    "src": "15134:98:65",
                    "text": "@notice Returns the ERC20 asset token used for deposits.\n @return The ERC20 asset token"
                  },
                  "id": 14466,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_token",
                  "nameLocation": "15246:6:65",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 14461,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "15252:2:65"
                  },
                  "returnParameters": {
                    "id": 14465,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14464,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14466,
                        "src": "15286:6:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$890",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 14463,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 14462,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 890,
                            "src": "15286:6:65"
                          },
                          "referencedDeclaration": 890,
                          "src": "15286:6:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$890",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "15285:8:65"
                  },
                  "scope": 14487,
                  "src": "15237:57:65",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "documentation": {
                    "id": 14467,
                    "nodeType": "StructuredDocumentation",
                    "src": "15300:153:65",
                    "text": "@notice Returns the total balance (in asset tokens).  This includes the deposits and interest.\n @return The underlying balance of asset tokens"
                  },
                  "id": 14472,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_balance",
                  "nameLocation": "15467:8:65",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 14468,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "15475:2:65"
                  },
                  "returnParameters": {
                    "id": 14471,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14470,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14472,
                        "src": "15504:7:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14469,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "15504:7:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "15503:9:65"
                  },
                  "scope": 14487,
                  "src": "15458:55:65",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "documentation": {
                    "id": 14473,
                    "nodeType": "StructuredDocumentation",
                    "src": "15519:123:65",
                    "text": "@notice Supplies asset tokens to the yield source.\n @param _mintAmount The amount of asset tokens to be supplied"
                  },
                  "id": 14478,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_supply",
                  "nameLocation": "15656:7:65",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 14476,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14475,
                        "mutability": "mutable",
                        "name": "_mintAmount",
                        "nameLocation": "15672:11:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 14478,
                        "src": "15664:19:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14474,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "15664:7:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "15663:21:65"
                  },
                  "returnParameters": {
                    "id": 14477,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "15701:0:65"
                  },
                  "scope": 14487,
                  "src": "15647:55:65",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "documentation": {
                    "id": 14479,
                    "nodeType": "StructuredDocumentation",
                    "src": "15708:198:65",
                    "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": 14486,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_redeem",
                  "nameLocation": "15920:7:65",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 14482,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14481,
                        "mutability": "mutable",
                        "name": "_redeemAmount",
                        "nameLocation": "15936:13:65",
                        "nodeType": "VariableDeclaration",
                        "scope": 14486,
                        "src": "15928:21:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14480,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "15928:7:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "15927:23:65"
                  },
                  "returnParameters": {
                    "id": 14485,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14484,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14486,
                        "src": "15977:7:65",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14483,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "15977:7:65",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "15976:9:65"
                  },
                  "scope": 14487,
                  "src": "15911:75:65",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "internal"
                }
              ],
              "scope": 14488,
              "src": "1138:14850:65",
              "usedErrors": []
            }
          ],
          "src": "37:15952:65"
        },
        "id": 65
      },
      "@pooltogether/v4-core/contracts/prize-pool/YieldSourcePrizePool.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/prize-pool/YieldSourcePrizePool.sol",
          "exportedSymbols": {
            "Address": [
              1775
            ],
            "ERC165Checker": [
              2820
            ],
            "ExtendedSafeCastLib": [
              12045
            ],
            "ICompLike": [
              10642
            ],
            "IControlledToken": [
              10681
            ],
            "IERC165": [
              2832
            ],
            "IERC20": [
              890
            ],
            "IERC721": [
              1460
            ],
            "IERC721Receiver": [
              1478
            ],
            "IPrizePool": [
              11495
            ],
            "ITicket": [
              11825
            ],
            "IYieldSource": [
              17542
            ],
            "ObservationLib": [
              12204
            ],
            "OverflowSafeComparatorLib": [
              12376
            ],
            "Ownable": [
              5355
            ],
            "PrizePool": [
              14487
            ],
            "ReentrancyGuard": [
              266
            ],
            "RingBufferLib": [
              12461
            ],
            "SafeCast": [
              3225
            ],
            "SafeERC20": [
              1344
            ],
            "TwabLib": [
              13211
            ],
            "YieldSourcePrizePool": [
              14735
            ]
          },
          "id": 14736,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 14489,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:66"
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "id": 14490,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 14736,
              "sourceUnit": 891,
              "src": "61:56:66",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol",
              "id": 14491,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 14736,
              "sourceUnit": 1345,
              "src": "118:65:66",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/utils/Address.sol",
              "file": "@openzeppelin/contracts/utils/Address.sol",
              "id": 14492,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 14736,
              "sourceUnit": 1776,
              "src": "184:51:66",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/yield-source-interface/contracts/IYieldSource.sol",
              "file": "@pooltogether/yield-source-interface/contracts/IYieldSource.sol",
              "id": 14493,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 14736,
              "sourceUnit": 17543,
              "src": "236:73:66",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/prize-pool/PrizePool.sol",
              "file": "./PrizePool.sol",
              "id": 14494,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 14736,
              "sourceUnit": 14488,
              "src": "311:25:66",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 14496,
                    "name": "PrizePool",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 14487,
                    "src": "674:9:66"
                  },
                  "id": 14497,
                  "nodeType": "InheritanceSpecifier",
                  "src": "674:9:66"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 14495,
                "nodeType": "StructuredDocumentation",
                "src": "338:302:66",
                "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": 14735,
              "linearizedBaseContracts": [
                14735,
                14487,
                1478,
                266,
                5355,
                11495
              ],
              "name": "YieldSourcePrizePool",
              "nameLocation": "650:20:66",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "id": 14501,
                  "libraryName": {
                    "id": 14498,
                    "name": "SafeERC20",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 1344,
                    "src": "696:9:66"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "690:27:66",
                  "typeName": {
                    "id": 14500,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 14499,
                      "name": "IERC20",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 890,
                      "src": "710:6:66"
                    },
                    "referencedDeclaration": 890,
                    "src": "710:6:66",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IERC20_$890",
                      "typeString": "contract IERC20"
                    }
                  }
                },
                {
                  "id": 14504,
                  "libraryName": {
                    "id": 14502,
                    "name": "Address",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 1775,
                    "src": "728:7:66"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "722:26:66",
                  "typeName": {
                    "id": 14503,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "740:7:66",
                    "stateMutability": "nonpayable",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  }
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 14505,
                    "nodeType": "StructuredDocumentation",
                    "src": "754:40:66",
                    "text": "@notice Address of the yield source."
                  },
                  "functionSelector": "b2470e5c",
                  "id": 14508,
                  "mutability": "immutable",
                  "name": "yieldSource",
                  "nameLocation": "829:11:66",
                  "nodeType": "VariableDeclaration",
                  "scope": 14735,
                  "src": "799:41:66",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IYieldSource_$17542",
                    "typeString": "contract IYieldSource"
                  },
                  "typeName": {
                    "id": 14507,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 14506,
                      "name": "IYieldSource",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 17542,
                      "src": "799:12:66"
                    },
                    "referencedDeclaration": 17542,
                    "src": "799:12:66",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IYieldSource_$17542",
                      "typeString": "contract IYieldSource"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 14509,
                    "nodeType": "StructuredDocumentation",
                    "src": "847:114:66",
                    "text": "@dev Emitted when yield source prize pool is deployed.\n @param yieldSource Address of the yield source."
                  },
                  "id": 14513,
                  "name": "Deployed",
                  "nameLocation": "972:8:66",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 14512,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14511,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "yieldSource",
                        "nameLocation": "997:11:66",
                        "nodeType": "VariableDeclaration",
                        "scope": 14513,
                        "src": "981:27:66",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 14510,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "981:7:66",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "980:29:66"
                  },
                  "src": "966:44:66"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 14514,
                    "nodeType": "StructuredDocumentation",
                    "src": "1016:126:66",
                    "text": "@notice Emitted when stray deposit token balance in this contract is swept\n @param amount The amount that was swept"
                  },
                  "id": 14518,
                  "name": "Swept",
                  "nameLocation": "1153:5:66",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 14517,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14516,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "1167:6:66",
                        "nodeType": "VariableDeclaration",
                        "scope": 14518,
                        "src": "1159:14:66",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14515,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1159:7:66",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1158:16:66"
                  },
                  "src": "1147:28:66"
                },
                {
                  "body": {
                    "id": 14602,
                    "nodeType": "Block",
                    "src": "1472:699:66",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 14539,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 14533,
                                    "name": "_yieldSource",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 14524,
                                    "src": "1511:12:66",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_IYieldSource_$17542",
                                      "typeString": "contract IYieldSource"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_IYieldSource_$17542",
                                      "typeString": "contract IYieldSource"
                                    }
                                  ],
                                  "id": 14532,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "1503:7:66",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 14531,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "1503:7:66",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 14534,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1503:21:66",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 14537,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "1536:1:66",
                                    "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": 14536,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "1528:7:66",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 14535,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "1528:7:66",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 14538,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1528:10:66",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "1503:35:66",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5969656c64536f757263655072697a65506f6f6c2f7969656c642d736f757263652d6e6f742d7a65726f2d61646472657373",
                              "id": 14540,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1552:52:66",
                              "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": 14530,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1482:7:66",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 14541,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1482:132:66",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14542,
                        "nodeType": "ExpressionStatement",
                        "src": "1482:132:66"
                      },
                      {
                        "expression": {
                          "id": 14545,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 14543,
                            "name": "yieldSource",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14508,
                            "src": "1625:11:66",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IYieldSource_$17542",
                              "typeString": "contract IYieldSource"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 14544,
                            "name": "_yieldSource",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14524,
                            "src": "1639:12:66",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IYieldSource_$17542",
                              "typeString": "contract IYieldSource"
                            }
                          },
                          "src": "1625:26:66",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IYieldSource_$17542",
                            "typeString": "contract IYieldSource"
                          }
                        },
                        "id": 14546,
                        "nodeType": "ExpressionStatement",
                        "src": "1625:26:66"
                      },
                      {
                        "assignments": [
                          14548,
                          14550
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 14548,
                            "mutability": "mutable",
                            "name": "succeeded",
                            "nameLocation": "1735:9:66",
                            "nodeType": "VariableDeclaration",
                            "scope": 14602,
                            "src": "1730:14:66",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            },
                            "typeName": {
                              "id": 14547,
                              "name": "bool",
                              "nodeType": "ElementaryTypeName",
                              "src": "1730:4:66",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 14550,
                            "mutability": "mutable",
                            "name": "data",
                            "nameLocation": "1759:4:66",
                            "nodeType": "VariableDeclaration",
                            "scope": 14602,
                            "src": "1746:17:66",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes_memory_ptr",
                              "typeString": "bytes"
                            },
                            "typeName": {
                              "id": 14549,
                              "name": "bytes",
                              "nodeType": "ElementaryTypeName",
                              "src": "1746:5:66",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_storage_ptr",
                                "typeString": "bytes"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 14563,
                        "initialValue": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "expression": {
                                    "expression": {
                                      "id": 14558,
                                      "name": "_yieldSource",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 14524,
                                      "src": "1830:12:66",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_contract$_IYieldSource_$17542",
                                        "typeString": "contract IYieldSource"
                                      }
                                    },
                                    "id": 14559,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "depositToken",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 17517,
                                    "src": "1830:25:66",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_external_view$__$returns$_t_address_$",
                                      "typeString": "function () view external returns (address)"
                                    }
                                  },
                                  "id": 14560,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "selector",
                                  "nodeType": "MemberAccess",
                                  "src": "1830:34:66",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes4",
                                    "typeString": "bytes4"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_bytes4",
                                    "typeString": "bytes4"
                                  }
                                ],
                                "expression": {
                                  "id": 14556,
                                  "name": "abi",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -1,
                                  "src": "1813:3:66",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_abi",
                                    "typeString": "abi"
                                  }
                                },
                                "id": 14557,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "encodePacked",
                                "nodeType": "MemberAccess",
                                "src": "1813:16:66",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$",
                                  "typeString": "function () pure returns (bytes memory)"
                                }
                              },
                              "id": 14561,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "1813:52:66",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "expression": {
                              "arguments": [
                                {
                                  "id": 14553,
                                  "name": "_yieldSource",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 14524,
                                  "src": "1775:12:66",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_IYieldSource_$17542",
                                    "typeString": "contract IYieldSource"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_IYieldSource_$17542",
                                    "typeString": "contract IYieldSource"
                                  }
                                ],
                                "id": 14552,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "1767:7:66",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 14551,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "1767:7:66",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 14554,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "1767:21:66",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "id": 14555,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "staticcall",
                            "nodeType": "MemberAccess",
                            "src": "1767:32:66",
                            "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": 14562,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1767:108:66",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_bool_$_t_bytes_memory_ptr_$",
                            "typeString": "tuple(bool,bytes memory)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1729:146:66"
                      },
                      {
                        "assignments": [
                          14565
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 14565,
                            "mutability": "mutable",
                            "name": "resultingAddress",
                            "nameLocation": "1893:16:66",
                            "nodeType": "VariableDeclaration",
                            "scope": 14602,
                            "src": "1885:24:66",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            },
                            "typeName": {
                              "id": 14564,
                              "name": "address",
                              "nodeType": "ElementaryTypeName",
                              "src": "1885:7:66",
                              "stateMutability": "nonpayable",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 14566,
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1885:24:66"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 14570,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 14567,
                              "name": "data",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14550,
                              "src": "1923:4:66",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            },
                            "id": 14568,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "length",
                            "nodeType": "MemberAccess",
                            "src": "1923:11:66",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": ">",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 14569,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "1937:1:66",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "1923:15:66",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 14582,
                        "nodeType": "IfStatement",
                        "src": "1919:92:66",
                        "trueBody": {
                          "id": 14581,
                          "nodeType": "Block",
                          "src": "1940:71:66",
                          "statements": [
                            {
                              "expression": {
                                "id": 14579,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 14571,
                                  "name": "resultingAddress",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 14565,
                                  "src": "1954:16:66",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "arguments": [
                                    {
                                      "id": 14574,
                                      "name": "data",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 14550,
                                      "src": "1984:4:66",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_bytes_memory_ptr",
                                        "typeString": "bytes memory"
                                      }
                                    },
                                    {
                                      "components": [
                                        {
                                          "id": 14576,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": true,
                                          "lValueRequested": false,
                                          "nodeType": "ElementaryTypeNameExpression",
                                          "src": "1991:7:66",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_type$_t_address_$",
                                            "typeString": "type(address)"
                                          },
                                          "typeName": {
                                            "id": 14575,
                                            "name": "address",
                                            "nodeType": "ElementaryTypeName",
                                            "src": "1991:7:66",
                                            "typeDescriptions": {}
                                          }
                                        }
                                      ],
                                      "id": 14577,
                                      "isConstant": false,
                                      "isInlineArray": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "TupleExpression",
                                      "src": "1990:9:66",
                                      "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": 14572,
                                      "name": "abi",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -1,
                                      "src": "1973:3:66",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_magic_abi",
                                        "typeString": "abi"
                                      }
                                    },
                                    "id": 14573,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "memberName": "decode",
                                    "nodeType": "MemberAccess",
                                    "src": "1973:10:66",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_abidecode_pure$__$returns$__$",
                                      "typeString": "function () pure"
                                    }
                                  },
                                  "id": 14578,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "1973:27:66",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address_payable",
                                    "typeString": "address payable"
                                  }
                                },
                                "src": "1954:46:66",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "id": 14580,
                              "nodeType": "ExpressionStatement",
                              "src": "1954:46:66"
                            }
                          ]
                        }
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              "id": 14591,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 14584,
                                "name": "succeeded",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14548,
                                "src": "2028:9:66",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "&&",
                              "rightExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                },
                                "id": 14590,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 14585,
                                  "name": "resultingAddress",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 14565,
                                  "src": "2041:16:66",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "!=",
                                "rightExpression": {
                                  "arguments": [
                                    {
                                      "hexValue": "30",
                                      "id": 14588,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "kind": "number",
                                      "lValueRequested": false,
                                      "nodeType": "Literal",
                                      "src": "2069:1:66",
                                      "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": 14587,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "ElementaryTypeNameExpression",
                                    "src": "2061:7:66",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_address_$",
                                      "typeString": "type(address)"
                                    },
                                    "typeName": {
                                      "id": 14586,
                                      "name": "address",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "2061:7:66",
                                      "typeDescriptions": {}
                                    }
                                  },
                                  "id": 14589,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "typeConversion",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "2061:10:66",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "src": "2041:30:66",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "src": "2028:43:66",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5969656c64536f757263655072697a65506f6f6c2f696e76616c69642d7969656c642d736f75726365",
                              "id": 14592,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2073:43:66",
                              "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": 14583,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2020:7:66",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 14593,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2020:97:66",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14594,
                        "nodeType": "ExpressionStatement",
                        "src": "2020:97:66"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 14598,
                                  "name": "_yieldSource",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 14524,
                                  "src": "2150:12:66",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_IYieldSource_$17542",
                                    "typeString": "contract IYieldSource"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_IYieldSource_$17542",
                                    "typeString": "contract IYieldSource"
                                  }
                                ],
                                "id": 14597,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "2142:7:66",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 14596,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "2142:7:66",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 14599,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "2142:21:66",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 14595,
                            "name": "Deployed",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14513,
                            "src": "2133:8:66",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$returns$__$",
                              "typeString": "function (address)"
                            }
                          },
                          "id": 14600,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2133:31:66",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14601,
                        "nodeType": "EmitStatement",
                        "src": "2128:36:66"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14519,
                    "nodeType": "StructuredDocumentation",
                    "src": "1181:213:66",
                    "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": 14603,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 14527,
                          "name": "_owner",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 14521,
                          "src": "1464:6:66",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        }
                      ],
                      "id": 14528,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 14526,
                        "name": "PrizePool",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 14487,
                        "src": "1454:9:66"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "1454:17:66"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 14525,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14521,
                        "mutability": "mutable",
                        "name": "_owner",
                        "nameLocation": "1419:6:66",
                        "nodeType": "VariableDeclaration",
                        "scope": 14603,
                        "src": "1411:14:66",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 14520,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1411:7:66",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 14524,
                        "mutability": "mutable",
                        "name": "_yieldSource",
                        "nameLocation": "1440:12:66",
                        "nodeType": "VariableDeclaration",
                        "scope": 14603,
                        "src": "1427:25:66",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IYieldSource_$17542",
                          "typeString": "contract IYieldSource"
                        },
                        "typeName": {
                          "id": 14523,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 14522,
                            "name": "IYieldSource",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 17542,
                            "src": "1427:12:66"
                          },
                          "referencedDeclaration": 17542,
                          "src": "1427:12:66",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IYieldSource_$17542",
                            "typeString": "contract IYieldSource"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1410:43:66"
                  },
                  "returnParameters": {
                    "id": 14529,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1472:0:66"
                  },
                  "scope": 14735,
                  "src": "1399:772:66",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 14630,
                    "nodeType": "Block",
                    "src": "2346:124:66",
                    "statements": [
                      {
                        "assignments": [
                          14612
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 14612,
                            "mutability": "mutable",
                            "name": "balance",
                            "nameLocation": "2364:7:66",
                            "nodeType": "VariableDeclaration",
                            "scope": 14630,
                            "src": "2356:15:66",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 14611,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "2356:7:66",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 14621,
                        "initialValue": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 14618,
                                  "name": "this",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -28,
                                  "src": "2401:4:66",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_YieldSourcePrizePool_$14735",
                                    "typeString": "contract YieldSourcePrizePool"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_YieldSourcePrizePool_$14735",
                                    "typeString": "contract YieldSourcePrizePool"
                                  }
                                ],
                                "id": 14617,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "2393:7:66",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 14616,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "2393:7:66",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 14619,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "2393:13:66",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "expression": {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "id": 14613,
                                "name": "_token",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [
                                  14691
                                ],
                                "referencedDeclaration": 14691,
                                "src": "2374:6:66",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$__$returns$_t_contract$_IERC20_$890_$",
                                  "typeString": "function () view returns (contract IERC20)"
                                }
                              },
                              "id": 14614,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "2374:8:66",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$890",
                                "typeString": "contract IERC20"
                              }
                            },
                            "id": 14615,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "balanceOf",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 829,
                            "src": "2374:18:66",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$_t_address_$returns$_t_uint256_$",
                              "typeString": "function (address) view external returns (uint256)"
                            }
                          },
                          "id": 14620,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2374:33:66",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2356:51:66"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 14623,
                              "name": "balance",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14612,
                              "src": "2425:7:66",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 14622,
                            "name": "_supply",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              14719
                            ],
                            "referencedDeclaration": 14719,
                            "src": "2417:7:66",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_uint256_$returns$__$",
                              "typeString": "function (uint256)"
                            }
                          },
                          "id": 14624,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2417:16:66",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14625,
                        "nodeType": "ExpressionStatement",
                        "src": "2417:16:66"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 14627,
                              "name": "balance",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14612,
                              "src": "2455:7:66",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 14626,
                            "name": "Swept",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14518,
                            "src": "2449:5:66",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint256_$returns$__$",
                              "typeString": "function (uint256)"
                            }
                          },
                          "id": 14628,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2449:14:66",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14629,
                        "nodeType": "EmitStatement",
                        "src": "2444:19:66"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14604,
                    "nodeType": "StructuredDocumentation",
                    "src": "2177:115:66",
                    "text": "@notice Sweeps any stray balance of deposit tokens into the yield source.\n @dev This becomes prize money"
                  },
                  "functionSelector": "35faa416",
                  "id": 14631,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 14607,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 14606,
                        "name": "nonReentrant",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 265,
                        "src": "2323:12:66"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "2323:12:66"
                    },
                    {
                      "id": 14609,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 14608,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5341,
                        "src": "2336:9:66"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "2336:9:66"
                    }
                  ],
                  "name": "sweep",
                  "nameLocation": "2306:5:66",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 14605,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2311:2:66"
                  },
                  "returnParameters": {
                    "id": 14610,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2346:0:66"
                  },
                  "scope": 14735,
                  "src": "2297:173:66",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    14459
                  ],
                  "body": {
                    "id": 14659,
                    "nodeType": "Block",
                    "src": "2976:197:66",
                    "statements": [
                      {
                        "assignments": [
                          14642
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 14642,
                            "mutability": "mutable",
                            "name": "_yieldSource",
                            "nameLocation": "2999:12:66",
                            "nodeType": "VariableDeclaration",
                            "scope": 14659,
                            "src": "2986:25:66",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IYieldSource_$17542",
                              "typeString": "contract IYieldSource"
                            },
                            "typeName": {
                              "id": 14641,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 14640,
                                "name": "IYieldSource",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 17542,
                                "src": "2986:12:66"
                              },
                              "referencedDeclaration": 17542,
                              "src": "2986:12:66",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IYieldSource_$17542",
                                "typeString": "contract IYieldSource"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 14644,
                        "initialValue": {
                          "id": 14643,
                          "name": "yieldSource",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 14508,
                          "src": "3014:11:66",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IYieldSource_$17542",
                            "typeString": "contract IYieldSource"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2986:39:66"
                      },
                      {
                        "expression": {
                          "components": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              "id": 14656,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                },
                                "id": 14650,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 14645,
                                  "name": "_externalToken",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 14634,
                                  "src": "3056:14:66",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "!=",
                                "rightExpression": {
                                  "arguments": [
                                    {
                                      "id": 14648,
                                      "name": "_yieldSource",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 14642,
                                      "src": "3082:12:66",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_contract$_IYieldSource_$17542",
                                        "typeString": "contract IYieldSource"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_contract$_IYieldSource_$17542",
                                        "typeString": "contract IYieldSource"
                                      }
                                    ],
                                    "id": 14647,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "ElementaryTypeNameExpression",
                                    "src": "3074:7:66",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_address_$",
                                      "typeString": "type(address)"
                                    },
                                    "typeName": {
                                      "id": 14646,
                                      "name": "address",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "3074:7:66",
                                      "typeDescriptions": {}
                                    }
                                  },
                                  "id": 14649,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "typeConversion",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "3074:21:66",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "src": "3056:39:66",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "&&",
                              "rightExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                },
                                "id": 14655,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 14651,
                                  "name": "_externalToken",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 14634,
                                  "src": "3111:14:66",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "!=",
                                "rightExpression": {
                                  "arguments": [],
                                  "expression": {
                                    "argumentTypes": [],
                                    "expression": {
                                      "id": 14652,
                                      "name": "_yieldSource",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 14642,
                                      "src": "3129:12:66",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_contract$_IYieldSource_$17542",
                                        "typeString": "contract IYieldSource"
                                      }
                                    },
                                    "id": 14653,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "depositToken",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 17517,
                                    "src": "3129:25:66",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_external_view$__$returns$_t_address_$",
                                      "typeString": "function () view external returns (address)"
                                    }
                                  },
                                  "id": 14654,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "3129:27:66",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "src": "3111:45:66",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "src": "3056:100:66",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            }
                          ],
                          "id": 14657,
                          "isConstant": false,
                          "isInlineArray": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "TupleExpression",
                          "src": "3042:124:66",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 14639,
                        "id": 14658,
                        "nodeType": "Return",
                        "src": "3035:131:66"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14632,
                    "nodeType": "StructuredDocumentation",
                    "src": "2476:406:66",
                    "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": 14660,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_canAwardExternal",
                  "nameLocation": "2896:17:66",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 14636,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2952:8:66"
                  },
                  "parameters": {
                    "id": 14635,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14634,
                        "mutability": "mutable",
                        "name": "_externalToken",
                        "nameLocation": "2922:14:66",
                        "nodeType": "VariableDeclaration",
                        "scope": 14660,
                        "src": "2914:22:66",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 14633,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2914:7:66",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2913:24:66"
                  },
                  "returnParameters": {
                    "id": 14639,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14638,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14660,
                        "src": "2970:4:66",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 14637,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "2970:4:66",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2969:6:66"
                  },
                  "scope": 14735,
                  "src": "2887:286:66",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "baseFunctions": [
                    14472
                  ],
                  "body": {
                    "id": 14675,
                    "nodeType": "Block",
                    "src": "3393:65:66",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 14671,
                                  "name": "this",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -28,
                                  "src": "3445:4:66",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_YieldSourcePrizePool_$14735",
                                    "typeString": "contract YieldSourcePrizePool"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_YieldSourcePrizePool_$14735",
                                    "typeString": "contract YieldSourcePrizePool"
                                  }
                                ],
                                "id": 14670,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "3437:7:66",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 14669,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "3437:7:66",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 14672,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "3437:13:66",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "expression": {
                              "id": 14667,
                              "name": "yieldSource",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14508,
                              "src": "3410:11:66",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IYieldSource_$17542",
                                "typeString": "contract IYieldSource"
                              }
                            },
                            "id": 14668,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "balanceOfToken",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 17525,
                            "src": "3410:26:66",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_address_$returns$_t_uint256_$",
                              "typeString": "function (address) external returns (uint256)"
                            }
                          },
                          "id": 14673,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3410:41:66",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 14666,
                        "id": 14674,
                        "nodeType": "Return",
                        "src": "3403:48:66"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14661,
                    "nodeType": "StructuredDocumentation",
                    "src": "3179:153:66",
                    "text": "@notice Returns the total balance (in asset tokens).  This includes the deposits and interest.\n @return The underlying balance of asset tokens"
                  },
                  "id": 14676,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_balance",
                  "nameLocation": "3346:8:66",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 14663,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3366:8:66"
                  },
                  "parameters": {
                    "id": 14662,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3354:2:66"
                  },
                  "returnParameters": {
                    "id": 14666,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14665,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14676,
                        "src": "3384:7:66",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14664,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3384:7:66",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3383:9:66"
                  },
                  "scope": 14735,
                  "src": "3337:121:66",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "baseFunctions": [
                    14466
                  ],
                  "body": {
                    "id": 14690,
                    "nodeType": "Block",
                    "src": "3652:58:66",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "expression": {
                                  "id": 14685,
                                  "name": "yieldSource",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 14508,
                                  "src": "3676:11:66",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_IYieldSource_$17542",
                                    "typeString": "contract IYieldSource"
                                  }
                                },
                                "id": 14686,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "depositToken",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 17517,
                                "src": "3676:24:66",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_external_view$__$returns$_t_address_$",
                                  "typeString": "function () view external returns (address)"
                                }
                              },
                              "id": 14687,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "3676:26:66",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 14684,
                            "name": "IERC20",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 890,
                            "src": "3669:6:66",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_contract$_IERC20_$890_$",
                              "typeString": "type(contract IERC20)"
                            }
                          },
                          "id": 14688,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3669:34:66",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$890",
                            "typeString": "contract IERC20"
                          }
                        },
                        "functionReturnParameters": 14683,
                        "id": 14689,
                        "nodeType": "Return",
                        "src": "3662:41:66"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14677,
                    "nodeType": "StructuredDocumentation",
                    "src": "3464:125:66",
                    "text": "@notice Returns the address of the ERC20 asset token used for deposits.\n @return Address of the ERC20 asset token."
                  },
                  "id": 14691,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_token",
                  "nameLocation": "3603:6:66",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 14679,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3626:8:66"
                  },
                  "parameters": {
                    "id": 14678,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3609:2:66"
                  },
                  "returnParameters": {
                    "id": 14683,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14682,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14691,
                        "src": "3644:6:66",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20_$890",
                          "typeString": "contract IERC20"
                        },
                        "typeName": {
                          "id": 14681,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 14680,
                            "name": "IERC20",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 890,
                            "src": "3644:6:66"
                          },
                          "referencedDeclaration": 890,
                          "src": "3644:6:66",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20_$890",
                            "typeString": "contract IERC20"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3643:8:66"
                  },
                  "scope": 14735,
                  "src": "3594:116:66",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "baseFunctions": [
                    14478
                  ],
                  "body": {
                    "id": 14718,
                    "nodeType": "Block",
                    "src": "3900:145:66",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 14703,
                                  "name": "yieldSource",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 14508,
                                  "src": "3949:11:66",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_IYieldSource_$17542",
                                    "typeString": "contract IYieldSource"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_IYieldSource_$17542",
                                    "typeString": "contract IYieldSource"
                                  }
                                ],
                                "id": 14702,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "3941:7:66",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 14701,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "3941:7:66",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 14704,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "3941:20:66",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 14705,
                              "name": "_mintAmount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14694,
                              "src": "3963:11:66",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "arguments": [],
                              "expression": {
                                "argumentTypes": [],
                                "id": 14698,
                                "name": "_token",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [
                                  14691
                                ],
                                "referencedDeclaration": 14691,
                                "src": "3910:6:66",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$__$returns$_t_contract$_IERC20_$890_$",
                                  "typeString": "function () view returns (contract IERC20)"
                                }
                              },
                              "id": 14699,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "3910:8:66",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$890",
                                "typeString": "contract IERC20"
                              }
                            },
                            "id": 14700,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "safeIncreaseAllowance",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 1257,
                            "src": "3910:30:66",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20_$890_$_t_address_$_t_uint256_$returns$__$bound_to$_t_contract$_IERC20_$890_$",
                              "typeString": "function (contract IERC20,address,uint256)"
                            }
                          },
                          "id": 14706,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3910:65:66",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14707,
                        "nodeType": "ExpressionStatement",
                        "src": "3910:65:66"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 14711,
                              "name": "_mintAmount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14694,
                              "src": "4011:11:66",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "id": 14714,
                                  "name": "this",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -28,
                                  "src": "4032:4:66",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_YieldSourcePrizePool_$14735",
                                    "typeString": "contract YieldSourcePrizePool"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_YieldSourcePrizePool_$14735",
                                    "typeString": "contract YieldSourcePrizePool"
                                  }
                                ],
                                "id": 14713,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "4024:7:66",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 14712,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "4024:7:66",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 14715,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "4024:13:66",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "expression": {
                              "id": 14708,
                              "name": "yieldSource",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14508,
                              "src": "3985:11:66",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IYieldSource_$17542",
                                "typeString": "contract IYieldSource"
                              }
                            },
                            "id": 14710,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "supplyTokenTo",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 17533,
                            "src": "3985:25:66",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_uint256_$_t_address_$returns$__$",
                              "typeString": "function (uint256,address) external"
                            }
                          },
                          "id": 14716,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3985:53:66",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14717,
                        "nodeType": "ExpressionStatement",
                        "src": "3985:53:66"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14692,
                    "nodeType": "StructuredDocumentation",
                    "src": "3716:123:66",
                    "text": "@notice Supplies asset tokens to the yield source.\n @param _mintAmount The amount of asset tokens to be supplied"
                  },
                  "id": 14719,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_supply",
                  "nameLocation": "3853:7:66",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 14696,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3891:8:66"
                  },
                  "parameters": {
                    "id": 14695,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14694,
                        "mutability": "mutable",
                        "name": "_mintAmount",
                        "nameLocation": "3869:11:66",
                        "nodeType": "VariableDeclaration",
                        "scope": 14719,
                        "src": "3861:19:66",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14693,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3861:7:66",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3860:21:66"
                  },
                  "returnParameters": {
                    "id": 14697,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3900:0:66"
                  },
                  "scope": 14735,
                  "src": "3844:201:66",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "baseFunctions": [
                    14486
                  ],
                  "body": {
                    "id": 14733,
                    "nodeType": "Block",
                    "src": "4330:62:66",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 14730,
                              "name": "_redeemAmount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14722,
                              "src": "4371:13:66",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "id": 14728,
                              "name": "yieldSource",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14508,
                              "src": "4347:11:66",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IYieldSource_$17542",
                                "typeString": "contract IYieldSource"
                              }
                            },
                            "id": 14729,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "redeemToken",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 17541,
                            "src": "4347:23:66",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_uint256_$returns$_t_uint256_$",
                              "typeString": "function (uint256) external returns (uint256)"
                            }
                          },
                          "id": 14731,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4347:38:66",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 14727,
                        "id": 14732,
                        "nodeType": "Return",
                        "src": "4340:45:66"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14720,
                    "nodeType": "StructuredDocumentation",
                    "src": "4051:198:66",
                    "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": 14734,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_redeem",
                  "nameLocation": "4263:7:66",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 14724,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "4303:8:66"
                  },
                  "parameters": {
                    "id": 14723,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14722,
                        "mutability": "mutable",
                        "name": "_redeemAmount",
                        "nameLocation": "4279:13:66",
                        "nodeType": "VariableDeclaration",
                        "scope": 14734,
                        "src": "4271:21:66",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14721,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4271:7:66",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4270:23:66"
                  },
                  "returnParameters": {
                    "id": 14727,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14726,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14734,
                        "src": "4321:7:66",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14725,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4321:7:66",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4320:9:66"
                  },
                  "scope": 14735,
                  "src": "4254:138:66",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 14736,
              "src": "641:3753:66",
              "usedErrors": []
            }
          ],
          "src": "37:4358:66"
        },
        "id": 66
      },
      "@pooltogether/v4-core/contracts/prize-strategy/PrizeSplit.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/prize-strategy/PrizeSplit.sol",
          "exportedSymbols": {
            "ExtendedSafeCastLib": [
              12045
            ],
            "ICompLike": [
              10642
            ],
            "IControlledToken": [
              10681
            ],
            "IERC20": [
              890
            ],
            "IPrizePool": [
              11495
            ],
            "IPrizeSplit": [
              11571
            ],
            "ITicket": [
              11825
            ],
            "ObservationLib": [
              12204
            ],
            "OverflowSafeComparatorLib": [
              12376
            ],
            "Ownable": [
              5355
            ],
            "PrizeSplit": [
              15085
            ],
            "RingBufferLib": [
              12461
            ],
            "SafeCast": [
              3225
            ],
            "TwabLib": [
              13211
            ]
          },
          "id": 15086,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 14737,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:67"
            },
            {
              "absolutePath": "@pooltogether/owner-manager-contracts/contracts/Ownable.sol",
              "file": "@pooltogether/owner-manager-contracts/contracts/Ownable.sol",
              "id": 14738,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15086,
              "sourceUnit": 5356,
              "src": "61:69:67",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IPrizeSplit.sol",
              "file": "../interfaces/IPrizeSplit.sol",
              "id": 14739,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15086,
              "sourceUnit": 11572,
              "src": "132:39:67",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": true,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 14741,
                    "name": "IPrizeSplit",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 11571,
                    "src": "277:11:67"
                  },
                  "id": 14742,
                  "nodeType": "InheritanceSpecifier",
                  "src": "277:11:67"
                },
                {
                  "baseName": {
                    "id": 14743,
                    "name": "Ownable",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 5355,
                    "src": "290:7:67"
                  },
                  "id": 14744,
                  "nodeType": "InheritanceSpecifier",
                  "src": "290:7:67"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 14740,
                "nodeType": "StructuredDocumentation",
                "src": "173:71:67",
                "text": " @title PrizeSplit Interface\n @author PoolTogether Inc Team"
              },
              "fullyImplemented": false,
              "id": 15085,
              "linearizedBaseContracts": [
                15085,
                5355,
                11571
              ],
              "name": "PrizeSplit",
              "nameLocation": "263:10:67",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "constant": false,
                  "id": 14748,
                  "mutability": "mutable",
                  "name": "_prizeSplits",
                  "nameLocation": "385:12:67",
                  "nodeType": "VariableDeclaration",
                  "scope": 15085,
                  "src": "357:40:67",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$11515_storage_$dyn_storage",
                    "typeString": "struct IPrizeSplit.PrizeSplitConfig[]"
                  },
                  "typeName": {
                    "baseType": {
                      "id": 14746,
                      "nodeType": "UserDefinedTypeName",
                      "pathNode": {
                        "id": 14745,
                        "name": "PrizeSplitConfig",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 11515,
                        "src": "357:16:67"
                      },
                      "referencedDeclaration": 11515,
                      "src": "357:16:67",
                      "typeDescriptions": {
                        "typeIdentifier": "t_struct$_PrizeSplitConfig_$11515_storage_ptr",
                        "typeString": "struct IPrizeSplit.PrizeSplitConfig"
                      }
                    },
                    "id": 14747,
                    "nodeType": "ArrayTypeName",
                    "src": "357:18:67",
                    "typeDescriptions": {
                      "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$11515_storage_$dyn_storage_ptr",
                      "typeString": "struct IPrizeSplit.PrizeSplitConfig[]"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": true,
                  "functionSelector": "45a9f187",
                  "id": 14751,
                  "mutability": "constant",
                  "name": "ONE_AS_FIXED_POINT_3",
                  "nameLocation": "427:20:67",
                  "nodeType": "VariableDeclaration",
                  "scope": 15085,
                  "src": "404:50:67",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint16",
                    "typeString": "uint16"
                  },
                  "typeName": {
                    "id": 14749,
                    "name": "uint16",
                    "nodeType": "ElementaryTypeName",
                    "src": "404:6:67",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint16",
                      "typeString": "uint16"
                    }
                  },
                  "value": {
                    "hexValue": "31303030",
                    "id": 14750,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "number",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "450:4:67",
                    "typeDescriptions": {
                      "typeIdentifier": "t_rational_1000_by_1",
                      "typeString": "int_const 1000"
                    },
                    "value": "1000"
                  },
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    11538
                  ],
                  "body": {
                    "id": 14765,
                    "nodeType": "Block",
                    "src": "691:54:67",
                    "statements": [
                      {
                        "expression": {
                          "baseExpression": {
                            "id": 14761,
                            "name": "_prizeSplits",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14748,
                            "src": "708:12:67",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$11515_storage_$dyn_storage",
                              "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref[] storage ref"
                            }
                          },
                          "id": 14763,
                          "indexExpression": {
                            "id": 14762,
                            "name": "_prizeSplitIndex",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14754,
                            "src": "721:16:67",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "708:30:67",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeSplitConfig_$11515_storage",
                            "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref"
                          }
                        },
                        "functionReturnParameters": 14760,
                        "id": 14764,
                        "nodeType": "Return",
                        "src": "701:37:67"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14752,
                    "nodeType": "StructuredDocumentation",
                    "src": "517:27:67",
                    "text": "@inheritdoc IPrizeSplit"
                  },
                  "functionSelector": "cf713d6e",
                  "id": 14766,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPrizeSplit",
                  "nameLocation": "558:13:67",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 14756,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "636:8:67"
                  },
                  "parameters": {
                    "id": 14755,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14754,
                        "mutability": "mutable",
                        "name": "_prizeSplitIndex",
                        "nameLocation": "580:16:67",
                        "nodeType": "VariableDeclaration",
                        "scope": 14766,
                        "src": "572:24:67",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14753,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "572:7:67",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "571:26:67"
                  },
                  "returnParameters": {
                    "id": 14760,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14759,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14766,
                        "src": "662:23:67",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeSplitConfig_$11515_memory_ptr",
                          "typeString": "struct IPrizeSplit.PrizeSplitConfig"
                        },
                        "typeName": {
                          "id": 14758,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 14757,
                            "name": "PrizeSplitConfig",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11515,
                            "src": "662:16:67"
                          },
                          "referencedDeclaration": 11515,
                          "src": "662:16:67",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeSplitConfig_$11515_storage_ptr",
                            "typeString": "struct IPrizeSplit.PrizeSplitConfig"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "661:25:67"
                  },
                  "scope": 15085,
                  "src": "549:196:67",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11546
                  ],
                  "body": {
                    "id": 14777,
                    "nodeType": "Block",
                    "src": "868:36:67",
                    "statements": [
                      {
                        "expression": {
                          "id": 14775,
                          "name": "_prizeSplits",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 14748,
                          "src": "885:12:67",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$11515_storage_$dyn_storage",
                            "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref[] storage ref"
                          }
                        },
                        "functionReturnParameters": 14774,
                        "id": 14776,
                        "nodeType": "Return",
                        "src": "878:19:67"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14767,
                    "nodeType": "StructuredDocumentation",
                    "src": "751:27:67",
                    "text": "@inheritdoc IPrizeSplit"
                  },
                  "functionSelector": "cf1e3b59",
                  "id": 14778,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPrizeSplits",
                  "nameLocation": "792:14:67",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 14769,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "823:8:67"
                  },
                  "parameters": {
                    "id": 14768,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "806:2:67"
                  },
                  "returnParameters": {
                    "id": 14774,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14773,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 14778,
                        "src": "841:25:67",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$11515_memory_ptr_$dyn_memory_ptr",
                          "typeString": "struct IPrizeSplit.PrizeSplitConfig[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 14771,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 14770,
                              "name": "PrizeSplitConfig",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 11515,
                              "src": "841:16:67"
                            },
                            "referencedDeclaration": 11515,
                            "src": "841:16:67",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeSplitConfig_$11515_storage_ptr",
                              "typeString": "struct IPrizeSplit.PrizeSplitConfig"
                            }
                          },
                          "id": 14772,
                          "nodeType": "ArrayTypeName",
                          "src": "841:18:67",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$11515_storage_$dyn_storage_ptr",
                            "typeString": "struct IPrizeSplit.PrizeSplitConfig[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "840:27:67"
                  },
                  "scope": 15085,
                  "src": "783:121:67",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11561
                  ],
                  "body": {
                    "id": 14922,
                    "nodeType": "Block",
                    "src": "1067:2160:67",
                    "statements": [
                      {
                        "assignments": [
                          14790
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 14790,
                            "mutability": "mutable",
                            "name": "newPrizeSplitsLength",
                            "nameLocation": "1085:20:67",
                            "nodeType": "VariableDeclaration",
                            "scope": 14922,
                            "src": "1077:28:67",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 14789,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "1077:7:67",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 14793,
                        "initialValue": {
                          "expression": {
                            "id": 14791,
                            "name": "_newPrizeSplits",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14783,
                            "src": "1108:15:67",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$11515_calldata_ptr_$dyn_calldata_ptr",
                              "typeString": "struct IPrizeSplit.PrizeSplitConfig calldata[] calldata"
                            }
                          },
                          "id": 14792,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "length",
                          "nodeType": "MemberAccess",
                          "src": "1108:22:67",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1077:53:67"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 14801,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 14795,
                                "name": "newPrizeSplitsLength",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14790,
                                "src": "1148:20:67",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "expression": {
                                  "arguments": [
                                    {
                                      "id": 14798,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "lValueRequested": false,
                                      "nodeType": "ElementaryTypeNameExpression",
                                      "src": "1177:5:67",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_uint8_$",
                                        "typeString": "type(uint8)"
                                      },
                                      "typeName": {
                                        "id": 14797,
                                        "name": "uint8",
                                        "nodeType": "ElementaryTypeName",
                                        "src": "1177:5:67",
                                        "typeDescriptions": {}
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_type$_t_uint8_$",
                                        "typeString": "type(uint8)"
                                      }
                                    ],
                                    "id": 14796,
                                    "name": "type",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -27,
                                    "src": "1172:4:67",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_metatype_pure$__$returns$__$",
                                      "typeString": "function () pure"
                                    }
                                  },
                                  "id": 14799,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "1172:11:67",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_meta_type_t_uint8",
                                    "typeString": "type(uint8)"
                                  }
                                },
                                "id": 14800,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "max",
                                "nodeType": "MemberAccess",
                                "src": "1172:15:67",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                }
                              },
                              "src": "1148:39:67",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a6553706c69742f696e76616c69642d7072697a6573706c6974732d6c656e677468",
                              "id": 14802,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1189:39:67",
                              "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": 14794,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1140:7:67",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 14803,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1140:89:67",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14804,
                        "nodeType": "ExpressionStatement",
                        "src": "1140:89:67"
                      },
                      {
                        "body": {
                          "id": 14882,
                          "nodeType": "Block",
                          "src": "1406:1207:67",
                          "statements": [
                            {
                              "assignments": [
                                14817
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 14817,
                                  "mutability": "mutable",
                                  "name": "split",
                                  "nameLocation": "1444:5:67",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 14882,
                                  "src": "1420:29:67",
                                  "stateVariable": false,
                                  "storageLocation": "memory",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_PrizeSplitConfig_$11515_memory_ptr",
                                    "typeString": "struct IPrizeSplit.PrizeSplitConfig"
                                  },
                                  "typeName": {
                                    "id": 14816,
                                    "nodeType": "UserDefinedTypeName",
                                    "pathNode": {
                                      "id": 14815,
                                      "name": "PrizeSplitConfig",
                                      "nodeType": "IdentifierPath",
                                      "referencedDeclaration": 11515,
                                      "src": "1420:16:67"
                                    },
                                    "referencedDeclaration": 11515,
                                    "src": "1420:16:67",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_PrizeSplitConfig_$11515_storage_ptr",
                                      "typeString": "struct IPrizeSplit.PrizeSplitConfig"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 14821,
                              "initialValue": {
                                "baseExpression": {
                                  "id": 14818,
                                  "name": "_newPrizeSplits",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 14783,
                                  "src": "1452:15:67",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$11515_calldata_ptr_$dyn_calldata_ptr",
                                    "typeString": "struct IPrizeSplit.PrizeSplitConfig calldata[] calldata"
                                  }
                                },
                                "id": 14820,
                                "indexExpression": {
                                  "id": 14819,
                                  "name": "index",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 14806,
                                  "src": "1468:5:67",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "IndexAccess",
                                "src": "1452:22:67",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_PrizeSplitConfig_$11515_calldata_ptr",
                                  "typeString": "struct IPrizeSplit.PrizeSplitConfig calldata"
                                }
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "1420:54:67"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "commonType": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    "id": 14829,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "leftExpression": {
                                      "expression": {
                                        "id": 14823,
                                        "name": "split",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 14817,
                                        "src": "1560:5:67",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_PrizeSplitConfig_$11515_memory_ptr",
                                          "typeString": "struct IPrizeSplit.PrizeSplitConfig memory"
                                        }
                                      },
                                      "id": 14824,
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "memberName": "target",
                                      "nodeType": "MemberAccess",
                                      "referencedDeclaration": 11512,
                                      "src": "1560:12:67",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_address",
                                        "typeString": "address"
                                      }
                                    },
                                    "nodeType": "BinaryOperation",
                                    "operator": "!=",
                                    "rightExpression": {
                                      "arguments": [
                                        {
                                          "hexValue": "30",
                                          "id": 14827,
                                          "isConstant": false,
                                          "isLValue": false,
                                          "isPure": true,
                                          "kind": "number",
                                          "lValueRequested": false,
                                          "nodeType": "Literal",
                                          "src": "1584:1:67",
                                          "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": 14826,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "1576:7:67",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_address_$",
                                          "typeString": "type(address)"
                                        },
                                        "typeName": {
                                          "id": 14825,
                                          "name": "address",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "1576:7:67",
                                          "typeDescriptions": {}
                                        }
                                      },
                                      "id": 14828,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": true,
                                      "kind": "typeConversion",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "1576:10:67",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_address",
                                        "typeString": "address"
                                      }
                                    },
                                    "src": "1560:26:67",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_bool",
                                      "typeString": "bool"
                                    }
                                  },
                                  {
                                    "hexValue": "5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d746172676574",
                                    "id": 14830,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "string",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "1588:38:67",
                                    "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": 14822,
                                  "name": "require",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [
                                    -18,
                                    -18
                                  ],
                                  "referencedDeclaration": -18,
                                  "src": "1552:7:67",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                                    "typeString": "function (bool,string memory) pure"
                                  }
                                },
                                "id": 14831,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1552:75:67",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 14832,
                              "nodeType": "ExpressionStatement",
                              "src": "1552:75:67"
                            },
                            {
                              "condition": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 14836,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "expression": {
                                    "id": 14833,
                                    "name": "_prizeSplits",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 14748,
                                    "src": "1786:12:67",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$11515_storage_$dyn_storage",
                                      "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref[] storage ref"
                                    }
                                  },
                                  "id": 14834,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "length",
                                  "nodeType": "MemberAccess",
                                  "src": "1786:19:67",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "<=",
                                "rightExpression": {
                                  "id": 14835,
                                  "name": "index",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 14806,
                                  "src": "1809:5:67",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "1786:28:67",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "falseBody": {
                                "id": 14872,
                                "nodeType": "Block",
                                "src": "1879:594:67",
                                "statements": [
                                  {
                                    "assignments": [
                                      14846
                                    ],
                                    "declarations": [
                                      {
                                        "constant": false,
                                        "id": 14846,
                                        "mutability": "mutable",
                                        "name": "currentSplit",
                                        "nameLocation": "2002:12:67",
                                        "nodeType": "VariableDeclaration",
                                        "scope": 14872,
                                        "src": "1978:36:67",
                                        "stateVariable": false,
                                        "storageLocation": "memory",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_PrizeSplitConfig_$11515_memory_ptr",
                                          "typeString": "struct IPrizeSplit.PrizeSplitConfig"
                                        },
                                        "typeName": {
                                          "id": 14845,
                                          "nodeType": "UserDefinedTypeName",
                                          "pathNode": {
                                            "id": 14844,
                                            "name": "PrizeSplitConfig",
                                            "nodeType": "IdentifierPath",
                                            "referencedDeclaration": 11515,
                                            "src": "1978:16:67"
                                          },
                                          "referencedDeclaration": 11515,
                                          "src": "1978:16:67",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_struct$_PrizeSplitConfig_$11515_storage_ptr",
                                            "typeString": "struct IPrizeSplit.PrizeSplitConfig"
                                          }
                                        },
                                        "visibility": "internal"
                                      }
                                    ],
                                    "id": 14850,
                                    "initialValue": {
                                      "baseExpression": {
                                        "id": 14847,
                                        "name": "_prizeSplits",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 14748,
                                        "src": "2017:12:67",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$11515_storage_$dyn_storage",
                                          "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref[] storage ref"
                                        }
                                      },
                                      "id": 14849,
                                      "indexExpression": {
                                        "id": 14848,
                                        "name": "index",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 14806,
                                        "src": "2030:5:67",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "nodeType": "IndexAccess",
                                      "src": "2017:19:67",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_PrizeSplitConfig_$11515_storage",
                                        "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref"
                                      }
                                    },
                                    "nodeType": "VariableDeclarationStatement",
                                    "src": "1978:58:67"
                                  },
                                  {
                                    "condition": {
                                      "commonType": {
                                        "typeIdentifier": "t_bool",
                                        "typeString": "bool"
                                      },
                                      "id": 14861,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "commonType": {
                                          "typeIdentifier": "t_address",
                                          "typeString": "address"
                                        },
                                        "id": 14855,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "leftExpression": {
                                          "expression": {
                                            "id": 14851,
                                            "name": "split",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 14817,
                                            "src": "2215:5:67",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_struct$_PrizeSplitConfig_$11515_memory_ptr",
                                              "typeString": "struct IPrizeSplit.PrizeSplitConfig memory"
                                            }
                                          },
                                          "id": 14852,
                                          "isConstant": false,
                                          "isLValue": true,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "memberName": "target",
                                          "nodeType": "MemberAccess",
                                          "referencedDeclaration": 11512,
                                          "src": "2215:12:67",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_address",
                                            "typeString": "address"
                                          }
                                        },
                                        "nodeType": "BinaryOperation",
                                        "operator": "!=",
                                        "rightExpression": {
                                          "expression": {
                                            "id": 14853,
                                            "name": "currentSplit",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 14846,
                                            "src": "2231:12:67",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_struct$_PrizeSplitConfig_$11515_memory_ptr",
                                              "typeString": "struct IPrizeSplit.PrizeSplitConfig memory"
                                            }
                                          },
                                          "id": 14854,
                                          "isConstant": false,
                                          "isLValue": true,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "memberName": "target",
                                          "nodeType": "MemberAccess",
                                          "referencedDeclaration": 11512,
                                          "src": "2231:19:67",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_address",
                                            "typeString": "address"
                                          }
                                        },
                                        "src": "2215:35:67",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_bool",
                                          "typeString": "bool"
                                        }
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": "||",
                                      "rightExpression": {
                                        "commonType": {
                                          "typeIdentifier": "t_uint16",
                                          "typeString": "uint16"
                                        },
                                        "id": 14860,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "leftExpression": {
                                          "expression": {
                                            "id": 14856,
                                            "name": "split",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 14817,
                                            "src": "2274:5:67",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_struct$_PrizeSplitConfig_$11515_memory_ptr",
                                              "typeString": "struct IPrizeSplit.PrizeSplitConfig memory"
                                            }
                                          },
                                          "id": 14857,
                                          "isConstant": false,
                                          "isLValue": true,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "memberName": "percentage",
                                          "nodeType": "MemberAccess",
                                          "referencedDeclaration": 11514,
                                          "src": "2274:16:67",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint16",
                                            "typeString": "uint16"
                                          }
                                        },
                                        "nodeType": "BinaryOperation",
                                        "operator": "!=",
                                        "rightExpression": {
                                          "expression": {
                                            "id": 14858,
                                            "name": "currentSplit",
                                            "nodeType": "Identifier",
                                            "overloadedDeclarations": [],
                                            "referencedDeclaration": 14846,
                                            "src": "2294:12:67",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_struct$_PrizeSplitConfig_$11515_memory_ptr",
                                              "typeString": "struct IPrizeSplit.PrizeSplitConfig memory"
                                            }
                                          },
                                          "id": 14859,
                                          "isConstant": false,
                                          "isLValue": true,
                                          "isPure": false,
                                          "lValueRequested": false,
                                          "memberName": "percentage",
                                          "nodeType": "MemberAccess",
                                          "referencedDeclaration": 11514,
                                          "src": "2294:23:67",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_uint16",
                                            "typeString": "uint16"
                                          }
                                        },
                                        "src": "2274:43:67",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_bool",
                                          "typeString": "bool"
                                        }
                                      },
                                      "src": "2215:102:67",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_bool",
                                        "typeString": "bool"
                                      }
                                    },
                                    "falseBody": {
                                      "id": 14870,
                                      "nodeType": "Block",
                                      "src": "2410:49:67",
                                      "statements": [
                                        {
                                          "id": 14869,
                                          "nodeType": "Continue",
                                          "src": "2432:8:67"
                                        }
                                      ]
                                    },
                                    "id": 14871,
                                    "nodeType": "IfStatement",
                                    "src": "2190:269:67",
                                    "trueBody": {
                                      "id": 14868,
                                      "nodeType": "Block",
                                      "src": "2336:68:67",
                                      "statements": [
                                        {
                                          "expression": {
                                            "id": 14866,
                                            "isConstant": false,
                                            "isLValue": false,
                                            "isPure": false,
                                            "lValueRequested": false,
                                            "leftHandSide": {
                                              "baseExpression": {
                                                "id": 14862,
                                                "name": "_prizeSplits",
                                                "nodeType": "Identifier",
                                                "overloadedDeclarations": [],
                                                "referencedDeclaration": 14748,
                                                "src": "2358:12:67",
                                                "typeDescriptions": {
                                                  "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$11515_storage_$dyn_storage",
                                                  "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref[] storage ref"
                                                }
                                              },
                                              "id": 14864,
                                              "indexExpression": {
                                                "id": 14863,
                                                "name": "index",
                                                "nodeType": "Identifier",
                                                "overloadedDeclarations": [],
                                                "referencedDeclaration": 14806,
                                                "src": "2371:5:67",
                                                "typeDescriptions": {
                                                  "typeIdentifier": "t_uint256",
                                                  "typeString": "uint256"
                                                }
                                              },
                                              "isConstant": false,
                                              "isLValue": true,
                                              "isPure": false,
                                              "lValueRequested": true,
                                              "nodeType": "IndexAccess",
                                              "src": "2358:19:67",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_struct$_PrizeSplitConfig_$11515_storage",
                                                "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref"
                                              }
                                            },
                                            "nodeType": "Assignment",
                                            "operator": "=",
                                            "rightHandSide": {
                                              "id": 14865,
                                              "name": "split",
                                              "nodeType": "Identifier",
                                              "overloadedDeclarations": [],
                                              "referencedDeclaration": 14817,
                                              "src": "2380:5:67",
                                              "typeDescriptions": {
                                                "typeIdentifier": "t_struct$_PrizeSplitConfig_$11515_memory_ptr",
                                                "typeString": "struct IPrizeSplit.PrizeSplitConfig memory"
                                              }
                                            },
                                            "src": "2358:27:67",
                                            "typeDescriptions": {
                                              "typeIdentifier": "t_struct$_PrizeSplitConfig_$11515_storage",
                                              "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref"
                                            }
                                          },
                                          "id": 14867,
                                          "nodeType": "ExpressionStatement",
                                          "src": "2358:27:67"
                                        }
                                      ]
                                    }
                                  }
                                ]
                              },
                              "id": 14873,
                              "nodeType": "IfStatement",
                              "src": "1782:691:67",
                              "trueBody": {
                                "id": 14843,
                                "nodeType": "Block",
                                "src": "1816:57:67",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "id": 14840,
                                          "name": "split",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 14817,
                                          "src": "1852:5:67",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_struct$_PrizeSplitConfig_$11515_memory_ptr",
                                            "typeString": "struct IPrizeSplit.PrizeSplitConfig memory"
                                          }
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_struct$_PrizeSplitConfig_$11515_memory_ptr",
                                            "typeString": "struct IPrizeSplit.PrizeSplitConfig memory"
                                          }
                                        ],
                                        "expression": {
                                          "id": 14837,
                                          "name": "_prizeSplits",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 14748,
                                          "src": "1834:12:67",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$11515_storage_$dyn_storage",
                                            "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref[] storage ref"
                                          }
                                        },
                                        "id": 14839,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "memberName": "push",
                                        "nodeType": "MemberAccess",
                                        "src": "1834:17:67",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_function_arraypush_nonpayable$_t_array$_t_struct$_PrizeSplitConfig_$11515_storage_$dyn_storage_ptr_$_t_struct$_PrizeSplitConfig_$11515_storage_$returns$__$bound_to$_t_array$_t_struct$_PrizeSplitConfig_$11515_storage_$dyn_storage_ptr_$",
                                          "typeString": "function (struct IPrizeSplit.PrizeSplitConfig storage ref[] storage pointer,struct IPrizeSplit.PrizeSplitConfig storage ref)"
                                        }
                                      },
                                      "id": 14841,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "functionCall",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "1834:24:67",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_tuple$__$",
                                        "typeString": "tuple()"
                                      }
                                    },
                                    "id": 14842,
                                    "nodeType": "ExpressionStatement",
                                    "src": "1834:24:67"
                                  }
                                ]
                              }
                            },
                            {
                              "eventCall": {
                                "arguments": [
                                  {
                                    "expression": {
                                      "id": 14875,
                                      "name": "split",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 14817,
                                      "src": "2564:5:67",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_PrizeSplitConfig_$11515_memory_ptr",
                                        "typeString": "struct IPrizeSplit.PrizeSplitConfig memory"
                                      }
                                    },
                                    "id": 14876,
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "target",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 11512,
                                    "src": "2564:12:67",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "expression": {
                                      "id": 14877,
                                      "name": "split",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 14817,
                                      "src": "2578:5:67",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_PrizeSplitConfig_$11515_memory_ptr",
                                        "typeString": "struct IPrizeSplit.PrizeSplitConfig memory"
                                      }
                                    },
                                    "id": 14878,
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "percentage",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 11514,
                                    "src": "2578:16:67",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint16",
                                      "typeString": "uint16"
                                    }
                                  },
                                  {
                                    "id": 14879,
                                    "name": "index",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 14806,
                                    "src": "2596:5:67",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_uint16",
                                      "typeString": "uint16"
                                    },
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  ],
                                  "id": 14874,
                                  "name": "PrizeSplitSet",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 11524,
                                  "src": "2550:13:67",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_uint16_$_t_uint256_$returns$__$",
                                    "typeString": "function (address,uint16,uint256)"
                                  }
                                },
                                "id": 14880,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "2550:52:67",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 14881,
                              "nodeType": "EmitStatement",
                              "src": "2545:57:67"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 14811,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 14809,
                            "name": "index",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14806,
                            "src": "1367:5:67",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "id": 14810,
                            "name": "newPrizeSplitsLength",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14790,
                            "src": "1375:20:67",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "1367:28:67",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 14883,
                        "initializationExpression": {
                          "assignments": [
                            14806
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 14806,
                              "mutability": "mutable",
                              "name": "index",
                              "nameLocation": "1356:5:67",
                              "nodeType": "VariableDeclaration",
                              "scope": 14883,
                              "src": "1348:13:67",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "typeName": {
                                "id": 14805,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "1348:7:67",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 14808,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 14807,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "1364:1:67",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "1348:17:67"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 14813,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "1397:7:67",
                            "subExpression": {
                              "id": 14812,
                              "name": "index",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14806,
                              "src": "1397:5:67",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 14814,
                          "nodeType": "ExpressionStatement",
                          "src": "1397:7:67"
                        },
                        "nodeType": "ForStatement",
                        "src": "1343:1270:67"
                      },
                      {
                        "body": {
                          "id": 14908,
                          "nodeType": "Block",
                          "src": "2791:203:67",
                          "statements": [
                            {
                              "assignments": [
                                14889
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 14889,
                                  "mutability": "mutable",
                                  "name": "_index",
                                  "nameLocation": "2813:6:67",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 14908,
                                  "src": "2805:14:67",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "typeName": {
                                    "id": 14888,
                                    "name": "uint256",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "2805:7:67",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 14890,
                              "nodeType": "VariableDeclarationStatement",
                              "src": "2805:14:67"
                            },
                            {
                              "id": 14898,
                              "nodeType": "UncheckedBlock",
                              "src": "2833:75:67",
                              "statements": [
                                {
                                  "expression": {
                                    "id": 14896,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "leftHandSide": {
                                      "id": 14891,
                                      "name": "_index",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 14889,
                                      "src": "2861:6:67",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "nodeType": "Assignment",
                                    "operator": "=",
                                    "rightHandSide": {
                                      "commonType": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      },
                                      "id": 14895,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "expression": {
                                          "id": 14892,
                                          "name": "_prizeSplits",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 14748,
                                          "src": "2870:12:67",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$11515_storage_$dyn_storage",
                                            "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref[] storage ref"
                                          }
                                        },
                                        "id": 14893,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "memberName": "length",
                                        "nodeType": "MemberAccess",
                                        "src": "2870:19:67",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": "-",
                                      "rightExpression": {
                                        "hexValue": "31",
                                        "id": 14894,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "kind": "number",
                                        "lValueRequested": false,
                                        "nodeType": "Literal",
                                        "src": "2892:1:67",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_rational_1_by_1",
                                          "typeString": "int_const 1"
                                        },
                                        "value": "1"
                                      },
                                      "src": "2870:23:67",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "src": "2861:32:67",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "id": 14897,
                                  "nodeType": "ExpressionStatement",
                                  "src": "2861:32:67"
                                }
                              ]
                            },
                            {
                              "expression": {
                                "arguments": [],
                                "expression": {
                                  "argumentTypes": [],
                                  "expression": {
                                    "id": 14899,
                                    "name": "_prizeSplits",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 14748,
                                    "src": "2921:12:67",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$11515_storage_$dyn_storage",
                                      "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref[] storage ref"
                                    }
                                  },
                                  "id": 14901,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "pop",
                                  "nodeType": "MemberAccess",
                                  "src": "2921:16:67",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_arraypop_nonpayable$_t_array$_t_struct$_PrizeSplitConfig_$11515_storage_$dyn_storage_ptr_$returns$__$bound_to$_t_array$_t_struct$_PrizeSplitConfig_$11515_storage_$dyn_storage_ptr_$",
                                    "typeString": "function (struct IPrizeSplit.PrizeSplitConfig storage ref[] storage pointer)"
                                  }
                                },
                                "id": 14902,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "2921:18:67",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 14903,
                              "nodeType": "ExpressionStatement",
                              "src": "2921:18:67"
                            },
                            {
                              "eventCall": {
                                "arguments": [
                                  {
                                    "id": 14905,
                                    "name": "_index",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 14889,
                                    "src": "2976:6:67",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  ],
                                  "id": 14904,
                                  "name": "PrizeSplitRemoved",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 11529,
                                  "src": "2958:17:67",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_event_nonpayable$_t_uint256_$returns$__$",
                                    "typeString": "function (uint256)"
                                  }
                                },
                                "id": 14906,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "2958:25:67",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 14907,
                              "nodeType": "EmitStatement",
                              "src": "2953:30:67"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 14887,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 14884,
                              "name": "_prizeSplits",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14748,
                              "src": "2747:12:67",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$11515_storage_$dyn_storage",
                                "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref[] storage ref"
                              }
                            },
                            "id": 14885,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "length",
                            "nodeType": "MemberAccess",
                            "src": "2747:19:67",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": ">",
                          "rightExpression": {
                            "id": 14886,
                            "name": "newPrizeSplitsLength",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14790,
                            "src": "2769:20:67",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "2747:42:67",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 14909,
                        "nodeType": "WhileStatement",
                        "src": "2740:254:67"
                      },
                      {
                        "assignments": [
                          14911
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 14911,
                            "mutability": "mutable",
                            "name": "totalPercentage",
                            "nameLocation": "3060:15:67",
                            "nodeType": "VariableDeclaration",
                            "scope": 14922,
                            "src": "3052:23:67",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 14910,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "3052:7:67",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 14914,
                        "initialValue": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 14912,
                            "name": "_totalPrizeSplitPercentageAmount",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15017,
                            "src": "3078:32:67",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$__$returns$_t_uint256_$",
                              "typeString": "function () view returns (uint256)"
                            }
                          },
                          "id": 14913,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3078:34:67",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3052:60:67"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 14918,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 14916,
                                "name": "totalPercentage",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14911,
                                "src": "3130:15:67",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "id": 14917,
                                "name": "ONE_AS_FIXED_POINT_3",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14751,
                                "src": "3149:20:67",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint16",
                                  "typeString": "uint16"
                                }
                              },
                              "src": "3130:39:67",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d70657263656e746167652d746f74616c",
                              "id": 14919,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "3171:48:67",
                              "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": 14915,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "3122:7:67",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 14920,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3122:98:67",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14921,
                        "nodeType": "ExpressionStatement",
                        "src": "3122:98:67"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14779,
                    "nodeType": "StructuredDocumentation",
                    "src": "910:27:67",
                    "text": "@inheritdoc IPrizeSplit"
                  },
                  "functionSelector": "063a2298",
                  "id": 14923,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 14787,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 14786,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5341,
                        "src": "1053:9:67"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "1053:9:67"
                    }
                  ],
                  "name": "setPrizeSplits",
                  "nameLocation": "951:14:67",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 14785,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "1036:8:67"
                  },
                  "parameters": {
                    "id": 14784,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14783,
                        "mutability": "mutable",
                        "name": "_newPrizeSplits",
                        "nameLocation": "994:15:67",
                        "nodeType": "VariableDeclaration",
                        "scope": 14923,
                        "src": "966:43:67",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$11515_calldata_ptr_$dyn_calldata_ptr",
                          "typeString": "struct IPrizeSplit.PrizeSplitConfig[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 14781,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 14780,
                              "name": "PrizeSplitConfig",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 11515,
                              "src": "966:16:67"
                            },
                            "referencedDeclaration": 11515,
                            "src": "966:16:67",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeSplitConfig_$11515_storage_ptr",
                              "typeString": "struct IPrizeSplit.PrizeSplitConfig"
                            }
                          },
                          "id": 14782,
                          "nodeType": "ArrayTypeName",
                          "src": "966:18:67",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$11515_storage_$dyn_storage_ptr",
                            "typeString": "struct IPrizeSplit.PrizeSplitConfig[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "965:45:67"
                  },
                  "returnParameters": {
                    "id": 14788,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1067:0:67"
                  },
                  "scope": 15085,
                  "src": "942:2285:67",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11570
                  ],
                  "body": {
                    "id": 14980,
                    "nodeType": "Block",
                    "src": "3405:695:67",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 14939,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 14936,
                                "name": "_prizeSplitIndex",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14929,
                                "src": "3423:16:67",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint8",
                                  "typeString": "uint8"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<",
                              "rightExpression": {
                                "expression": {
                                  "id": 14937,
                                  "name": "_prizeSplits",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 14748,
                                  "src": "3442:12:67",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$11515_storage_$dyn_storage",
                                    "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref[] storage ref"
                                  }
                                },
                                "id": 14938,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "length",
                                "nodeType": "MemberAccess",
                                "src": "3442:19:67",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "3423:38:67",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a6553706c69742f6e6f6e6578697374656e742d7072697a6573706c6974",
                              "id": 14940,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "3463:35:67",
                              "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": 14935,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "3415:7:67",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 14941,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3415:84:67",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14942,
                        "nodeType": "ExpressionStatement",
                        "src": "3415:84:67"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 14950,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 14944,
                                  "name": "_prizeSplit",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 14927,
                                  "src": "3517:11:67",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_PrizeSplitConfig_$11515_memory_ptr",
                                    "typeString": "struct IPrizeSplit.PrizeSplitConfig memory"
                                  }
                                },
                                "id": 14945,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "target",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 11512,
                                "src": "3517:18:67",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 14948,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "3547:1:67",
                                    "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": 14947,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "3539:7:67",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 14946,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "3539:7:67",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 14949,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "3539:10:67",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "3517:32:67",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d746172676574",
                              "id": 14951,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "3551:38:67",
                              "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": 14943,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "3509:7:67",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 14952,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3509:81:67",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14953,
                        "nodeType": "ExpressionStatement",
                        "src": "3509:81:67"
                      },
                      {
                        "expression": {
                          "id": 14958,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "id": 14954,
                              "name": "_prizeSplits",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14748,
                              "src": "3642:12:67",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$11515_storage_$dyn_storage",
                                "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref[] storage ref"
                              }
                            },
                            "id": 14956,
                            "indexExpression": {
                              "id": 14955,
                              "name": "_prizeSplitIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14929,
                              "src": "3655:16:67",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "3642:30:67",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeSplitConfig_$11515_storage",
                              "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 14957,
                            "name": "_prizeSplit",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14927,
                            "src": "3675:11:67",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_PrizeSplitConfig_$11515_memory_ptr",
                              "typeString": "struct IPrizeSplit.PrizeSplitConfig memory"
                            }
                          },
                          "src": "3642:44:67",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeSplitConfig_$11515_storage",
                            "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref"
                          }
                        },
                        "id": 14959,
                        "nodeType": "ExpressionStatement",
                        "src": "3642:44:67"
                      },
                      {
                        "assignments": [
                          14961
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 14961,
                            "mutability": "mutable",
                            "name": "totalPercentage",
                            "nameLocation": "3753:15:67",
                            "nodeType": "VariableDeclaration",
                            "scope": 14980,
                            "src": "3745:23:67",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 14960,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "3745:7:67",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 14964,
                        "initialValue": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "id": 14962,
                            "name": "_totalPrizeSplitPercentageAmount",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15017,
                            "src": "3771:32:67",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$__$returns$_t_uint256_$",
                              "typeString": "function () view returns (uint256)"
                            }
                          },
                          "id": 14963,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3771:34:67",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "3745:60:67"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 14968,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 14966,
                                "name": "totalPercentage",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14961,
                                "src": "3823:15:67",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "id": 14967,
                                "name": "ONE_AS_FIXED_POINT_3",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14751,
                                "src": "3842:20:67",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint16",
                                  "typeString": "uint16"
                                }
                              },
                              "src": "3823:39:67",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a6553706c69742f696e76616c69642d7072697a6573706c69742d70657263656e746167652d746f74616c",
                              "id": 14969,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "3864:48:67",
                              "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": 14965,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "3815:7:67",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 14970,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3815:98:67",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14971,
                        "nodeType": "ExpressionStatement",
                        "src": "3815:98:67"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 14973,
                                "name": "_prizeSplit",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14927,
                                "src": "3999:11:67",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_PrizeSplitConfig_$11515_memory_ptr",
                                  "typeString": "struct IPrizeSplit.PrizeSplitConfig memory"
                                }
                              },
                              "id": 14974,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "target",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 11512,
                              "src": "3999:18:67",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "expression": {
                                "id": 14975,
                                "name": "_prizeSplit",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 14927,
                                "src": "4031:11:67",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_PrizeSplitConfig_$11515_memory_ptr",
                                  "typeString": "struct IPrizeSplit.PrizeSplitConfig memory"
                                }
                              },
                              "id": 14976,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "percentage",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 11514,
                              "src": "4031:22:67",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint16",
                                "typeString": "uint16"
                              }
                            },
                            {
                              "id": 14977,
                              "name": "_prizeSplitIndex",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14929,
                              "src": "4067:16:67",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint16",
                                "typeString": "uint16"
                              },
                              {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            ],
                            "id": 14972,
                            "name": "PrizeSplitSet",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11524,
                            "src": "3972:13:67",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_uint16_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint16,uint256)"
                            }
                          },
                          "id": 14978,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3972:121:67",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 14979,
                        "nodeType": "EmitStatement",
                        "src": "3967:126:67"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14924,
                    "nodeType": "StructuredDocumentation",
                    "src": "3233:27:67",
                    "text": "@inheritdoc IPrizeSplit"
                  },
                  "functionSelector": "056ea84f",
                  "id": 14981,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 14933,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 14932,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5341,
                        "src": "3391:9:67"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "3391:9:67"
                    }
                  ],
                  "name": "setPrizeSplit",
                  "nameLocation": "3274:13:67",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 14931,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3374:8:67"
                  },
                  "parameters": {
                    "id": 14930,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14927,
                        "mutability": "mutable",
                        "name": "_prizeSplit",
                        "nameLocation": "3312:11:67",
                        "nodeType": "VariableDeclaration",
                        "scope": 14981,
                        "src": "3288:35:67",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeSplitConfig_$11515_memory_ptr",
                          "typeString": "struct IPrizeSplit.PrizeSplitConfig"
                        },
                        "typeName": {
                          "id": 14926,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 14925,
                            "name": "PrizeSplitConfig",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11515,
                            "src": "3288:16:67"
                          },
                          "referencedDeclaration": 11515,
                          "src": "3288:16:67",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeSplitConfig_$11515_storage_ptr",
                            "typeString": "struct IPrizeSplit.PrizeSplitConfig"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 14929,
                        "mutability": "mutable",
                        "name": "_prizeSplitIndex",
                        "nameLocation": "3331:16:67",
                        "nodeType": "VariableDeclaration",
                        "scope": 14981,
                        "src": "3325:22:67",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 14928,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "3325:5:67",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3287:61:67"
                  },
                  "returnParameters": {
                    "id": 14934,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3405:0:67"
                  },
                  "scope": 15085,
                  "src": "3265:835:67",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 15016,
                    "nodeType": "Block",
                    "src": "4507:289:67",
                    "statements": [
                      {
                        "assignments": [
                          14988
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 14988,
                            "mutability": "mutable",
                            "name": "_tempTotalPercentage",
                            "nameLocation": "4525:20:67",
                            "nodeType": "VariableDeclaration",
                            "scope": 15016,
                            "src": "4517:28:67",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 14987,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "4517:7:67",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 14989,
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4517:28:67"
                      },
                      {
                        "assignments": [
                          14991
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 14991,
                            "mutability": "mutable",
                            "name": "prizeSplitsLength",
                            "nameLocation": "4563:17:67",
                            "nodeType": "VariableDeclaration",
                            "scope": 15016,
                            "src": "4555:25:67",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 14990,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "4555:7:67",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 14994,
                        "initialValue": {
                          "expression": {
                            "id": 14992,
                            "name": "_prizeSplits",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14748,
                            "src": "4583:12:67",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$11515_storage_$dyn_storage",
                              "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref[] storage ref"
                            }
                          },
                          "id": 14993,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "length",
                          "nodeType": "MemberAccess",
                          "src": "4583:19:67",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "4555:47:67"
                      },
                      {
                        "body": {
                          "id": 15012,
                          "nodeType": "Block",
                          "src": "4673:79:67",
                          "statements": [
                            {
                              "expression": {
                                "id": 15010,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 15005,
                                  "name": "_tempTotalPercentage",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 14988,
                                  "src": "4687:20:67",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "+=",
                                "rightHandSide": {
                                  "expression": {
                                    "baseExpression": {
                                      "id": 15006,
                                      "name": "_prizeSplits",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 14748,
                                      "src": "4711:12:67",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$11515_storage_$dyn_storage",
                                        "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref[] storage ref"
                                      }
                                    },
                                    "id": 15008,
                                    "indexExpression": {
                                      "id": 15007,
                                      "name": "index",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 14996,
                                      "src": "4724:5:67",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    },
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "nodeType": "IndexAccess",
                                    "src": "4711:19:67",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_PrizeSplitConfig_$11515_storage",
                                      "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref"
                                    }
                                  },
                                  "id": 15009,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "percentage",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 11514,
                                  "src": "4711:30:67",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint16",
                                    "typeString": "uint16"
                                  }
                                },
                                "src": "4687:54:67",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 15011,
                              "nodeType": "ExpressionStatement",
                              "src": "4687:54:67"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 15001,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 14999,
                            "name": "index",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14996,
                            "src": "4637:5:67",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "id": 15000,
                            "name": "prizeSplitsLength",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14991,
                            "src": "4645:17:67",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "4637:25:67",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 15013,
                        "initializationExpression": {
                          "assignments": [
                            14996
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 14996,
                              "mutability": "mutable",
                              "name": "index",
                              "nameLocation": "4626:5:67",
                              "nodeType": "VariableDeclaration",
                              "scope": 15013,
                              "src": "4618:13:67",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "typeName": {
                                "id": 14995,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "4618:7:67",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 14998,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 14997,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "4634:1:67",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "4618:17:67"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 15003,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "4664:7:67",
                            "subExpression": {
                              "id": 15002,
                              "name": "index",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 14996,
                              "src": "4664:5:67",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 15004,
                          "nodeType": "ExpressionStatement",
                          "src": "4664:7:67"
                        },
                        "nodeType": "ForStatement",
                        "src": "4613:139:67"
                      },
                      {
                        "expression": {
                          "id": 15014,
                          "name": "_tempTotalPercentage",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 14988,
                          "src": "4769:20:67",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 14986,
                        "id": 15015,
                        "nodeType": "Return",
                        "src": "4762:27:67"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 14982,
                    "nodeType": "StructuredDocumentation",
                    "src": "4162:264:67",
                    "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": 15017,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_totalPrizeSplitPercentageAmount",
                  "nameLocation": "4440:32:67",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 14983,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4472:2:67"
                  },
                  "returnParameters": {
                    "id": 14986,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 14985,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15017,
                        "src": "4498:7:67",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 14984,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4498:7:67",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4497:9:67"
                  },
                  "scope": 15085,
                  "src": "4431:365:67",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 15075,
                    "nodeType": "Block",
                    "src": "5118:606:67",
                    "statements": [
                      {
                        "assignments": [
                          15026
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 15026,
                            "mutability": "mutable",
                            "name": "_prizeTemp",
                            "nameLocation": "5136:10:67",
                            "nodeType": "VariableDeclaration",
                            "scope": 15075,
                            "src": "5128:18:67",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 15025,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "5128:7:67",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 15028,
                        "initialValue": {
                          "id": 15027,
                          "name": "_prize",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 15020,
                          "src": "5149:6:67",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "5128:27:67"
                      },
                      {
                        "assignments": [
                          15030
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 15030,
                            "mutability": "mutable",
                            "name": "prizeSplitsLength",
                            "nameLocation": "5173:17:67",
                            "nodeType": "VariableDeclaration",
                            "scope": 15075,
                            "src": "5165:25:67",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 15029,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "5165:7:67",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 15033,
                        "initialValue": {
                          "expression": {
                            "id": 15031,
                            "name": "_prizeSplits",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 14748,
                            "src": "5193:12:67",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$11515_storage_$dyn_storage",
                              "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref[] storage ref"
                            }
                          },
                          "id": 15032,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "length",
                          "nodeType": "MemberAccess",
                          "src": "5193:19:67",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "5165:47:67"
                      },
                      {
                        "body": {
                          "id": 15071,
                          "nodeType": "Block",
                          "src": "5283:407:67",
                          "statements": [
                            {
                              "assignments": [
                                15046
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 15046,
                                  "mutability": "mutable",
                                  "name": "split",
                                  "nameLocation": "5321:5:67",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 15071,
                                  "src": "5297:29:67",
                                  "stateVariable": false,
                                  "storageLocation": "memory",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_PrizeSplitConfig_$11515_memory_ptr",
                                    "typeString": "struct IPrizeSplit.PrizeSplitConfig"
                                  },
                                  "typeName": {
                                    "id": 15045,
                                    "nodeType": "UserDefinedTypeName",
                                    "pathNode": {
                                      "id": 15044,
                                      "name": "PrizeSplitConfig",
                                      "nodeType": "IdentifierPath",
                                      "referencedDeclaration": 11515,
                                      "src": "5297:16:67"
                                    },
                                    "referencedDeclaration": 11515,
                                    "src": "5297:16:67",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_PrizeSplitConfig_$11515_storage_ptr",
                                      "typeString": "struct IPrizeSplit.PrizeSplitConfig"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 15050,
                              "initialValue": {
                                "baseExpression": {
                                  "id": 15047,
                                  "name": "_prizeSplits",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 14748,
                                  "src": "5329:12:67",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_array$_t_struct$_PrizeSplitConfig_$11515_storage_$dyn_storage",
                                    "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref[] storage ref"
                                  }
                                },
                                "id": 15049,
                                "indexExpression": {
                                  "id": 15048,
                                  "name": "index",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 15035,
                                  "src": "5342:5:67",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "IndexAccess",
                                "src": "5329:19:67",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_PrizeSplitConfig_$11515_storage",
                                  "typeString": "struct IPrizeSplit.PrizeSplitConfig storage ref"
                                }
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "5297:51:67"
                            },
                            {
                              "assignments": [
                                15052
                              ],
                              "declarations": [
                                {
                                  "constant": false,
                                  "id": 15052,
                                  "mutability": "mutable",
                                  "name": "_splitAmount",
                                  "nameLocation": "5370:12:67",
                                  "nodeType": "VariableDeclaration",
                                  "scope": 15071,
                                  "src": "5362:20:67",
                                  "stateVariable": false,
                                  "storageLocation": "default",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  },
                                  "typeName": {
                                    "id": 15051,
                                    "name": "uint256",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "5362:7:67",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "visibility": "internal"
                                }
                              ],
                              "id": 15060,
                              "initialValue": {
                                "commonType": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                },
                                "id": 15059,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "components": [
                                    {
                                      "commonType": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      },
                                      "id": 15056,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "leftExpression": {
                                        "id": 15053,
                                        "name": "_prize",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 15020,
                                        "src": "5386:6:67",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "nodeType": "BinaryOperation",
                                      "operator": "*",
                                      "rightExpression": {
                                        "expression": {
                                          "id": 15054,
                                          "name": "split",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 15046,
                                          "src": "5395:5:67",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_struct$_PrizeSplitConfig_$11515_memory_ptr",
                                            "typeString": "struct IPrizeSplit.PrizeSplitConfig memory"
                                          }
                                        },
                                        "id": 15055,
                                        "isConstant": false,
                                        "isLValue": true,
                                        "isPure": false,
                                        "lValueRequested": false,
                                        "memberName": "percentage",
                                        "nodeType": "MemberAccess",
                                        "referencedDeclaration": 11514,
                                        "src": "5395:16:67",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint16",
                                          "typeString": "uint16"
                                        }
                                      },
                                      "src": "5386:25:67",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    }
                                  ],
                                  "id": 15057,
                                  "isConstant": false,
                                  "isInlineArray": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "TupleExpression",
                                  "src": "5385:27:67",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "/",
                                "rightExpression": {
                                  "hexValue": "31303030",
                                  "id": 15058,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "5415:4:67",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_1000_by_1",
                                    "typeString": "int_const 1000"
                                  },
                                  "value": "1000"
                                },
                                "src": "5385:34:67",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "VariableDeclarationStatement",
                              "src": "5362:57:67"
                            },
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "expression": {
                                      "id": 15062,
                                      "name": "split",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 15046,
                                      "src": "5515:5:67",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_struct$_PrizeSplitConfig_$11515_memory_ptr",
                                        "typeString": "struct IPrizeSplit.PrizeSplitConfig memory"
                                      }
                                    },
                                    "id": 15063,
                                    "isConstant": false,
                                    "isLValue": true,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "target",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 11512,
                                    "src": "5515:12:67",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "id": 15064,
                                    "name": "_splitAmount",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 15052,
                                    "src": "5529:12:67",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  ],
                                  "id": 15061,
                                  "name": "_awardPrizeSplitAmount",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 15084,
                                  "src": "5492:22:67",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$",
                                    "typeString": "function (address,uint256)"
                                  }
                                },
                                "id": 15065,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "5492:50:67",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 15066,
                              "nodeType": "ExpressionStatement",
                              "src": "5492:50:67"
                            },
                            {
                              "expression": {
                                "id": 15069,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 15067,
                                  "name": "_prizeTemp",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 15026,
                                  "src": "5653:10:67",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "-=",
                                "rightHandSide": {
                                  "id": 15068,
                                  "name": "_splitAmount",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 15052,
                                  "src": "5667:12:67",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "src": "5653:26:67",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 15070,
                              "nodeType": "ExpressionStatement",
                              "src": "5653:26:67"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 15040,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 15038,
                            "name": "index",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15035,
                            "src": "5247:5:67",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "id": 15039,
                            "name": "prizeSplitsLength",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15030,
                            "src": "5255:17:67",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "5247:25:67",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 15072,
                        "initializationExpression": {
                          "assignments": [
                            15035
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 15035,
                              "mutability": "mutable",
                              "name": "index",
                              "nameLocation": "5236:5:67",
                              "nodeType": "VariableDeclaration",
                              "scope": 15072,
                              "src": "5228:13:67",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "typeName": {
                                "id": 15034,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "5228:7:67",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 15037,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 15036,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "5244:1:67",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "5228:17:67"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 15042,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "5274:7:67",
                            "subExpression": {
                              "id": 15041,
                              "name": "index",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15035,
                              "src": "5274:5:67",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 15043,
                          "nodeType": "ExpressionStatement",
                          "src": "5274:7:67"
                        },
                        "nodeType": "ForStatement",
                        "src": "5223:467:67"
                      },
                      {
                        "expression": {
                          "id": 15073,
                          "name": "_prizeTemp",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 15026,
                          "src": "5707:10:67",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 15024,
                        "id": 15074,
                        "nodeType": "Return",
                        "src": "5700:17:67"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 15018,
                    "nodeType": "StructuredDocumentation",
                    "src": "4802:236:67",
                    "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": 15076,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_distributePrizeSplits",
                  "nameLocation": "5052:22:67",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15021,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15020,
                        "mutability": "mutable",
                        "name": "_prize",
                        "nameLocation": "5083:6:67",
                        "nodeType": "VariableDeclaration",
                        "scope": 15076,
                        "src": "5075:14:67",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 15019,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "5075:7:67",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5074:16:67"
                  },
                  "returnParameters": {
                    "id": 15024,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15023,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15076,
                        "src": "5109:7:67",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 15022,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "5109:7:67",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5108:9:67"
                  },
                  "scope": 15085,
                  "src": "5043:681:67",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "documentation": {
                    "id": 15077,
                    "nodeType": "StructuredDocumentation",
                    "src": "5730:289:67",
                    "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": 15084,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_awardPrizeSplitAmount",
                  "nameLocation": "6033:22:67",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15082,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15079,
                        "mutability": "mutable",
                        "name": "_target",
                        "nameLocation": "6064:7:67",
                        "nodeType": "VariableDeclaration",
                        "scope": 15084,
                        "src": "6056:15:67",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 15078,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6056:7:67",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15081,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "6081:7:67",
                        "nodeType": "VariableDeclaration",
                        "scope": 15084,
                        "src": "6073:15:67",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 15080,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "6073:7:67",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6055:34:67"
                  },
                  "returnParameters": {
                    "id": 15083,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "6106:0:67"
                  },
                  "scope": 15085,
                  "src": "6024:83:67",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "internal"
                }
              ],
              "scope": 15086,
              "src": "245:5864:67",
              "usedErrors": []
            }
          ],
          "src": "37:6073:67"
        },
        "id": 67
      },
      "@pooltogether/v4-core/contracts/prize-strategy/PrizeSplitStrategy.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-core/contracts/prize-strategy/PrizeSplitStrategy.sol",
          "exportedSymbols": {
            "ExtendedSafeCastLib": [
              12045
            ],
            "ICompLike": [
              10642
            ],
            "IControlledToken": [
              10681
            ],
            "IERC20": [
              890
            ],
            "IPrizePool": [
              11495
            ],
            "IPrizeSplit": [
              11571
            ],
            "IStrategy": [
              11632
            ],
            "ITicket": [
              11825
            ],
            "ObservationLib": [
              12204
            ],
            "OverflowSafeComparatorLib": [
              12376
            ],
            "Ownable": [
              5355
            ],
            "PrizeSplit": [
              15085
            ],
            "PrizeSplitStrategy": [
              15218
            ],
            "RingBufferLib": [
              12461
            ],
            "SafeCast": [
              3225
            ],
            "TwabLib": [
              13211
            ]
          },
          "id": 15219,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 15087,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:68"
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/prize-strategy/PrizeSplit.sol",
              "file": "./PrizeSplit.sol",
              "id": 15088,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15219,
              "sourceUnit": 15086,
              "src": "61:26:68",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IStrategy.sol",
              "file": "../interfaces/IStrategy.sol",
              "id": 15089,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15219,
              "sourceUnit": 11633,
              "src": "88:37:68",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IPrizePool.sol",
              "file": "../interfaces/IPrizePool.sol",
              "id": 15090,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15219,
              "sourceUnit": 11496,
              "src": "126:38:68",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 15092,
                    "name": "PrizeSplit",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 15085,
                    "src": "908:10:68"
                  },
                  "id": 15093,
                  "nodeType": "InheritanceSpecifier",
                  "src": "908:10:68"
                },
                {
                  "baseName": {
                    "id": 15094,
                    "name": "IStrategy",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 11632,
                    "src": "920:9:68"
                  },
                  "id": 15095,
                  "nodeType": "InheritanceSpecifier",
                  "src": "920:9:68"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 15091,
                "nodeType": "StructuredDocumentation",
                "src": "166:710:68",
                "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": 15218,
              "linearizedBaseContracts": [
                15218,
                11632,
                15085,
                5355,
                11571
              ],
              "name": "PrizeSplitStrategy",
              "nameLocation": "886:18:68",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "constant": false,
                  "documentation": {
                    "id": 15096,
                    "nodeType": "StructuredDocumentation",
                    "src": "936:44:68",
                    "text": " @notice PrizePool address"
                  },
                  "id": 15099,
                  "mutability": "immutable",
                  "name": "prizePool",
                  "nameLocation": "1015:9:68",
                  "nodeType": "VariableDeclaration",
                  "scope": 15218,
                  "src": "985:39:68",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IPrizePool_$11495",
                    "typeString": "contract IPrizePool"
                  },
                  "typeName": {
                    "id": 15098,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 15097,
                      "name": "IPrizePool",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 11495,
                      "src": "985:10:68"
                    },
                    "referencedDeclaration": 11495,
                    "src": "985:10:68",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IPrizePool_$11495",
                      "typeString": "contract IPrizePool"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 15100,
                    "nodeType": "StructuredDocumentation",
                    "src": "1031:126:68",
                    "text": " @notice Deployed Event\n @param owner Contract owner\n @param prizePool Linked PrizePool contract"
                  },
                  "id": 15107,
                  "name": "Deployed",
                  "nameLocation": "1168:8:68",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 15106,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15102,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "owner",
                        "nameLocation": "1193:5:68",
                        "nodeType": "VariableDeclaration",
                        "scope": 15107,
                        "src": "1177:21:68",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 15101,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1177:7:68",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15105,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "prizePool",
                        "nameLocation": "1211:9:68",
                        "nodeType": "VariableDeclaration",
                        "scope": 15107,
                        "src": "1200:20:68",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IPrizePool_$11495",
                          "typeString": "contract IPrizePool"
                        },
                        "typeName": {
                          "id": 15104,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15103,
                            "name": "IPrizePool",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11495,
                            "src": "1200:10:68"
                          },
                          "referencedDeclaration": 11495,
                          "src": "1200:10:68",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizePool_$11495",
                            "typeString": "contract IPrizePool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1176:45:68"
                  },
                  "src": "1162:60:68"
                },
                {
                  "body": {
                    "id": 15141,
                    "nodeType": "Block",
                    "src": "1503:218:68",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 15128,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 15122,
                                    "name": "_prizePool",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 15113,
                                    "src": "1542:10:68",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_IPrizePool_$11495",
                                      "typeString": "contract IPrizePool"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_IPrizePool_$11495",
                                      "typeString": "contract IPrizePool"
                                    }
                                  ],
                                  "id": 15121,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "1534:7:68",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 15120,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "1534:7:68",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 15123,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1534:19:68",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 15126,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "1565:1:68",
                                    "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": 15125,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "1557:7:68",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 15124,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "1557:7:68",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 15127,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1557:10:68",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "1534:33:68",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5072697a6553706c697453747261746567792f7072697a652d706f6f6c2d6e6f742d7a65726f2d61646472657373",
                              "id": 15129,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1581:48:68",
                              "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": 15119,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1513:7:68",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 15130,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1513:126:68",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 15131,
                        "nodeType": "ExpressionStatement",
                        "src": "1513:126:68"
                      },
                      {
                        "expression": {
                          "id": 15134,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 15132,
                            "name": "prizePool",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15099,
                            "src": "1649:9:68",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IPrizePool_$11495",
                              "typeString": "contract IPrizePool"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 15133,
                            "name": "_prizePool",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15113,
                            "src": "1661:10:68",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IPrizePool_$11495",
                              "typeString": "contract IPrizePool"
                            }
                          },
                          "src": "1649:22:68",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizePool_$11495",
                            "typeString": "contract IPrizePool"
                          }
                        },
                        "id": 15135,
                        "nodeType": "ExpressionStatement",
                        "src": "1649:22:68"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 15137,
                              "name": "_owner",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15110,
                              "src": "1695:6:68",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 15138,
                              "name": "_prizePool",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15113,
                              "src": "1703:10:68",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IPrizePool_$11495",
                                "typeString": "contract IPrizePool"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_contract$_IPrizePool_$11495",
                                "typeString": "contract IPrizePool"
                              }
                            ],
                            "id": 15136,
                            "name": "Deployed",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15107,
                            "src": "1686:8:68",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_contract$_IPrizePool_$11495_$returns$__$",
                              "typeString": "function (address,contract IPrizePool)"
                            }
                          },
                          "id": 15139,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1686:28:68",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 15140,
                        "nodeType": "EmitStatement",
                        "src": "1681:33:68"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 15108,
                    "nodeType": "StructuredDocumentation",
                    "src": "1277:154:68",
                    "text": " @notice Deploy the PrizeSplitStrategy smart contract.\n @param _owner     Owner address\n @param _prizePool PrizePool address"
                  },
                  "id": 15142,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 15116,
                          "name": "_owner",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 15110,
                          "src": "1495:6:68",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        }
                      ],
                      "id": 15117,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 15115,
                        "name": "Ownable",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5355,
                        "src": "1487:7:68"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "1487:15:68"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15114,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15110,
                        "mutability": "mutable",
                        "name": "_owner",
                        "nameLocation": "1456:6:68",
                        "nodeType": "VariableDeclaration",
                        "scope": 15142,
                        "src": "1448:14:68",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 15109,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1448:7:68",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15113,
                        "mutability": "mutable",
                        "name": "_prizePool",
                        "nameLocation": "1475:10:68",
                        "nodeType": "VariableDeclaration",
                        "scope": 15142,
                        "src": "1464:21:68",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IPrizePool_$11495",
                          "typeString": "contract IPrizePool"
                        },
                        "typeName": {
                          "id": 15112,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15111,
                            "name": "IPrizePool",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11495,
                            "src": "1464:10:68"
                          },
                          "referencedDeclaration": 11495,
                          "src": "1464:10:68",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizePool_$11495",
                            "typeString": "contract IPrizePool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1447:39:68"
                  },
                  "returnParameters": {
                    "id": 15118,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1503:0:68"
                  },
                  "scope": 15218,
                  "src": "1436:285:68",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    11631
                  ],
                  "body": {
                    "id": 15175,
                    "nodeType": "Block",
                    "src": "1871:238:68",
                    "statements": [
                      {
                        "assignments": [
                          15150
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 15150,
                            "mutability": "mutable",
                            "name": "prize",
                            "nameLocation": "1889:5:68",
                            "nodeType": "VariableDeclaration",
                            "scope": 15175,
                            "src": "1881:13:68",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 15149,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "1881:7:68",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 15154,
                        "initialValue": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "id": 15151,
                              "name": "prizePool",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15099,
                              "src": "1897:9:68",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IPrizePool_$11495",
                                "typeString": "contract IPrizePool"
                              }
                            },
                            "id": 15152,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "captureAwardBalance",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11365,
                            "src": "1897:29:68",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$__$returns$_t_uint256_$",
                              "typeString": "function () external returns (uint256)"
                            }
                          },
                          "id": 15153,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1897:31:68",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1881:47:68"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 15157,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 15155,
                            "name": "prize",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15150,
                            "src": "1943:5:68",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 15156,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "1952:1:68",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "1943:10:68",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 15160,
                        "nodeType": "IfStatement",
                        "src": "1939:24:68",
                        "trueBody": {
                          "expression": {
                            "hexValue": "30",
                            "id": 15158,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "1962:1:68",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "functionReturnParameters": 15148,
                          "id": 15159,
                          "nodeType": "Return",
                          "src": "1955:8:68"
                        }
                      },
                      {
                        "assignments": [
                          15162
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 15162,
                            "mutability": "mutable",
                            "name": "prizeRemaining",
                            "nameLocation": "1982:14:68",
                            "nodeType": "VariableDeclaration",
                            "scope": 15175,
                            "src": "1974:22:68",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 15161,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "1974:7:68",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 15166,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 15164,
                              "name": "prize",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15150,
                              "src": "2022:5:68",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 15163,
                            "name": "_distributePrizeSplits",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15076,
                            "src": "1999:22:68",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_uint256_$returns$_t_uint256_$",
                              "typeString": "function (uint256) returns (uint256)"
                            }
                          },
                          "id": 15165,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1999:29:68",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1974:54:68"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 15170,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 15168,
                                "name": "prize",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 15150,
                                "src": "2056:5:68",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "-",
                              "rightExpression": {
                                "id": 15169,
                                "name": "prizeRemaining",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 15162,
                                "src": "2064:14:68",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "2056:22:68",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 15167,
                            "name": "Distributed",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11625,
                            "src": "2044:11:68",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint256_$returns$__$",
                              "typeString": "function (uint256)"
                            }
                          },
                          "id": 15171,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2044:35:68",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 15172,
                        "nodeType": "EmitStatement",
                        "src": "2039:40:68"
                      },
                      {
                        "expression": {
                          "id": 15173,
                          "name": "prize",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 15150,
                          "src": "2097:5:68",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "functionReturnParameters": 15148,
                        "id": 15174,
                        "nodeType": "Return",
                        "src": "2090:12:68"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 15143,
                    "nodeType": "StructuredDocumentation",
                    "src": "1783:25:68",
                    "text": "@inheritdoc IStrategy"
                  },
                  "functionSelector": "e4fc6b6d",
                  "id": 15176,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "distribute",
                  "nameLocation": "1822:10:68",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 15145,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "1844:8:68"
                  },
                  "parameters": {
                    "id": 15144,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1832:2:68"
                  },
                  "returnParameters": {
                    "id": 15148,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15147,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15176,
                        "src": "1862:7:68",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 15146,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1862:7:68",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1861:9:68"
                  },
                  "scope": 15218,
                  "src": "1813:296:68",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    11553
                  ],
                  "body": {
                    "id": 15186,
                    "nodeType": "Block",
                    "src": "2215:33:68",
                    "statements": [
                      {
                        "expression": {
                          "id": 15184,
                          "name": "prizePool",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 15099,
                          "src": "2232:9:68",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizePool_$11495",
                            "typeString": "contract IPrizePool"
                          }
                        },
                        "functionReturnParameters": 15183,
                        "id": 15185,
                        "nodeType": "Return",
                        "src": "2225:16:68"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 15177,
                    "nodeType": "StructuredDocumentation",
                    "src": "2115:27:68",
                    "text": "@inheritdoc IPrizeSplit"
                  },
                  "functionSelector": "884bf67c",
                  "id": 15187,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getPrizePool",
                  "nameLocation": "2156:12:68",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 15179,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2185:8:68"
                  },
                  "parameters": {
                    "id": 15178,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2168:2:68"
                  },
                  "returnParameters": {
                    "id": 15183,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15182,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15187,
                        "src": "2203:10:68",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IPrizePool_$11495",
                          "typeString": "contract IPrizePool"
                        },
                        "typeName": {
                          "id": 15181,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15180,
                            "name": "IPrizePool",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11495,
                            "src": "2203:10:68"
                          },
                          "referencedDeclaration": 11495,
                          "src": "2203:10:68",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizePool_$11495",
                            "typeString": "contract IPrizePool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2202:12:68"
                  },
                  "scope": 15218,
                  "src": "2147:101:68",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    15084
                  ],
                  "body": {
                    "id": 15216,
                    "nodeType": "Block",
                    "src": "2652:159:68",
                    "statements": [
                      {
                        "assignments": [
                          15198
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 15198,
                            "mutability": "mutable",
                            "name": "_ticket",
                            "nameLocation": "2679:7:68",
                            "nodeType": "VariableDeclaration",
                            "scope": 15216,
                            "src": "2662:24:68",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IControlledToken_$10681",
                              "typeString": "contract IControlledToken"
                            },
                            "typeName": {
                              "id": 15197,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 15196,
                                "name": "IControlledToken",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 10681,
                                "src": "2662:16:68"
                              },
                              "referencedDeclaration": 10681,
                              "src": "2662:16:68",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IControlledToken_$10681",
                                "typeString": "contract IControlledToken"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 15202,
                        "initialValue": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "id": 15199,
                              "name": "prizePool",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15099,
                              "src": "2689:9:68",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IPrizePool_$11495",
                                "typeString": "contract IPrizePool"
                              }
                            },
                            "id": 15200,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "getTicket",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11404,
                            "src": "2689:19:68",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$__$returns$_t_contract$_ITicket_$11825_$",
                              "typeString": "function () view external returns (contract ITicket)"
                            }
                          },
                          "id": 15201,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2689:21:68",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$11825",
                            "typeString": "contract ITicket"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2662:48:68"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 15206,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15190,
                              "src": "2736:3:68",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 15207,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15192,
                              "src": "2741:7:68",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "id": 15203,
                              "name": "prizePool",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15099,
                              "src": "2720:9:68",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IPrizePool_$11495",
                                "typeString": "contract IPrizePool"
                              }
                            },
                            "id": 15205,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "award",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11353,
                            "src": "2720:15:68",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256) external"
                            }
                          },
                          "id": 15208,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2720:29:68",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 15209,
                        "nodeType": "ExpressionStatement",
                        "src": "2720:29:68"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 15211,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15190,
                              "src": "2782:3:68",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 15212,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15192,
                              "src": "2787:7:68",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 15213,
                              "name": "_ticket",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15198,
                              "src": "2796:7:68",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IControlledToken_$10681",
                                "typeString": "contract IControlledToken"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_contract$_IControlledToken_$10681",
                                "typeString": "contract IControlledToken"
                              }
                            ],
                            "id": 15210,
                            "name": "PrizeSplitAwarded",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 11510,
                            "src": "2764:17:68",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_uint256_$_t_contract$_IControlledToken_$10681_$returns$__$",
                              "typeString": "function (address,uint256,contract IControlledToken)"
                            }
                          },
                          "id": 15214,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2764:40:68",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 15215,
                        "nodeType": "EmitStatement",
                        "src": "2759:45:68"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 15188,
                    "nodeType": "StructuredDocumentation",
                    "src": "2310:257:68",
                    "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": 15217,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_awardPrizeSplitAmount",
                  "nameLocation": "2581:22:68",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 15194,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2643:8:68"
                  },
                  "parameters": {
                    "id": 15193,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15190,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "2612:3:68",
                        "nodeType": "VariableDeclaration",
                        "scope": 15217,
                        "src": "2604:11:68",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 15189,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2604:7:68",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15192,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "2625:7:68",
                        "nodeType": "VariableDeclaration",
                        "scope": 15217,
                        "src": "2617:15:68",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 15191,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2617:7:68",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2603:30:68"
                  },
                  "returnParameters": {
                    "id": 15195,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2652:0:68"
                  },
                  "scope": 15218,
                  "src": "2572:239:68",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 15219,
              "src": "877:1936:68",
              "usedErrors": []
            }
          ],
          "src": "37:2777:68"
        },
        "id": 68
      },
      "@pooltogether/v4-timelocks/contracts/BeaconTimelockTrigger.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-timelocks/contracts/BeaconTimelockTrigger.sol",
          "exportedSymbols": {
            "Address": [
              1775
            ],
            "BeaconTimelockTrigger": [
              15309
            ],
            "DrawRingBufferLib": [
              11966
            ],
            "ExtendedSafeCastLib": [
              12045
            ],
            "IBeaconTimelockTrigger": [
              15924
            ],
            "IControlledToken": [
              10681
            ],
            "IDrawBeacon": [
              10853
            ],
            "IDrawBuffer": [
              10930
            ],
            "IDrawCalculator": [
              11003
            ],
            "IDrawCalculatorTimelock": [
              15999
            ],
            "IERC20": [
              890
            ],
            "IPrizeDistributionBuffer": [
              11079
            ],
            "IPrizeDistributionFactory": [
              16009
            ],
            "IPrizeDistributionSource": [
              11115
            ],
            "IPrizeDistributor": [
              11213
            ],
            "ITicket": [
              11825
            ],
            "Manageable": [
              5200
            ],
            "ObservationLib": [
              12204
            ],
            "OverflowSafeComparatorLib": [
              12376
            ],
            "Ownable": [
              5355
            ],
            "PrizeDistributionBuffer": [
              8796
            ],
            "PrizeDistributor": [
              9169
            ],
            "RNGInterface": [
              5835
            ],
            "RingBufferLib": [
              12461
            ],
            "SafeCast": [
              3225
            ],
            "SafeERC20": [
              1344
            ],
            "TwabLib": [
              13211
            ]
          },
          "id": 15310,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 15220,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "36:22:69"
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol",
              "file": "@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol",
              "id": 15221,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15310,
              "sourceUnit": 10854,
              "src": "59:68:69",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol",
              "file": "@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol",
              "id": 15222,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15310,
              "sourceUnit": 10931,
              "src": "128:68:69",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/owner-manager-contracts/contracts/Manageable.sol",
              "file": "@pooltogether/owner-manager-contracts/contracts/Manageable.sol",
              "id": 15223,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15310,
              "sourceUnit": 5201,
              "src": "197:72:69",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-timelocks/contracts/interfaces/IBeaconTimelockTrigger.sol",
              "file": "./interfaces/IBeaconTimelockTrigger.sol",
              "id": 15224,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15310,
              "sourceUnit": 15925,
              "src": "270:49:69",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-timelocks/contracts/interfaces/IPrizeDistributionFactory.sol",
              "file": "./interfaces/IPrizeDistributionFactory.sol",
              "id": 15225,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15310,
              "sourceUnit": 16010,
              "src": "320:52:69",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-timelocks/contracts/interfaces/IDrawCalculatorTimelock.sol",
              "file": "./interfaces/IDrawCalculatorTimelock.sol",
              "id": 15226,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15310,
              "sourceUnit": 16000,
              "src": "373:50:69",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 15228,
                    "name": "IBeaconTimelockTrigger",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 15924,
                    "src": "905:22:69"
                  },
                  "id": 15229,
                  "nodeType": "InheritanceSpecifier",
                  "src": "905:22:69"
                },
                {
                  "baseName": {
                    "id": 15230,
                    "name": "Manageable",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 5200,
                    "src": "929:10:69"
                  },
                  "id": 15231,
                  "nodeType": "InheritanceSpecifier",
                  "src": "929:10:69"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 15227,
                "nodeType": "StructuredDocumentation",
                "src": "425:445:69",
                "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": 15309,
              "linearizedBaseContracts": [
                15309,
                5200,
                5355,
                15924
              ],
              "name": "BeaconTimelockTrigger",
              "nameLocation": "880:21:69",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "constant": false,
                  "documentation": {
                    "id": 15232,
                    "nodeType": "StructuredDocumentation",
                    "src": "1000:47:69",
                    "text": "@notice PrizeDistributionFactory reference."
                  },
                  "functionSelector": "78e072a9",
                  "id": 15235,
                  "mutability": "immutable",
                  "name": "prizeDistributionFactory",
                  "nameLocation": "1095:24:69",
                  "nodeType": "VariableDeclaration",
                  "scope": 15309,
                  "src": "1052:67:69",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IPrizeDistributionFactory_$16009",
                    "typeString": "contract IPrizeDistributionFactory"
                  },
                  "typeName": {
                    "id": 15234,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 15233,
                      "name": "IPrizeDistributionFactory",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 16009,
                      "src": "1052:25:69"
                    },
                    "referencedDeclaration": 16009,
                    "src": "1052:25:69",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IPrizeDistributionFactory_$16009",
                      "typeString": "contract IPrizeDistributionFactory"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 15236,
                    "nodeType": "StructuredDocumentation",
                    "src": "1126:45:69",
                    "text": "@notice DrawCalculatorTimelock reference."
                  },
                  "functionSelector": "d33219b4",
                  "id": 15239,
                  "mutability": "immutable",
                  "name": "timelock",
                  "nameLocation": "1217:8:69",
                  "nodeType": "VariableDeclaration",
                  "scope": 15309,
                  "src": "1176:49:69",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$15999",
                    "typeString": "contract IDrawCalculatorTimelock"
                  },
                  "typeName": {
                    "id": 15238,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 15237,
                      "name": "IDrawCalculatorTimelock",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 15999,
                      "src": "1176:23:69"
                    },
                    "referencedDeclaration": 15999,
                    "src": "1176:23:69",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$15999",
                      "typeString": "contract IDrawCalculatorTimelock"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 15267,
                    "nodeType": "Block",
                    "src": "1697:160:69",
                    "statements": [
                      {
                        "expression": {
                          "id": 15256,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 15254,
                            "name": "prizeDistributionFactory",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15235,
                            "src": "1707:24:69",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IPrizeDistributionFactory_$16009",
                              "typeString": "contract IPrizeDistributionFactory"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 15255,
                            "name": "_prizeDistributionFactory",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15245,
                            "src": "1734:25:69",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IPrizeDistributionFactory_$16009",
                              "typeString": "contract IPrizeDistributionFactory"
                            }
                          },
                          "src": "1707:52:69",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizeDistributionFactory_$16009",
                            "typeString": "contract IPrizeDistributionFactory"
                          }
                        },
                        "id": 15257,
                        "nodeType": "ExpressionStatement",
                        "src": "1707:52:69"
                      },
                      {
                        "expression": {
                          "id": 15260,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 15258,
                            "name": "timelock",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15239,
                            "src": "1769:8:69",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$15999",
                              "typeString": "contract IDrawCalculatorTimelock"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 15259,
                            "name": "_timelock",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15248,
                            "src": "1780:9:69",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$15999",
                              "typeString": "contract IDrawCalculatorTimelock"
                            }
                          },
                          "src": "1769:20:69",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$15999",
                            "typeString": "contract IDrawCalculatorTimelock"
                          }
                        },
                        "id": 15261,
                        "nodeType": "ExpressionStatement",
                        "src": "1769:20:69"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 15263,
                              "name": "_prizeDistributionFactory",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15245,
                              "src": "1813:25:69",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IPrizeDistributionFactory_$16009",
                                "typeString": "contract IPrizeDistributionFactory"
                              }
                            },
                            {
                              "id": 15264,
                              "name": "_timelock",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15248,
                              "src": "1840:9:69",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$15999",
                                "typeString": "contract IDrawCalculatorTimelock"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IPrizeDistributionFactory_$16009",
                                "typeString": "contract IPrizeDistributionFactory"
                              },
                              {
                                "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$15999",
                                "typeString": "contract IDrawCalculatorTimelock"
                              }
                            ],
                            "id": 15262,
                            "name": "Deployed",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15904,
                            "src": "1804:8:69",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_contract$_IPrizeDistributionFactory_$16009_$_t_contract$_IDrawCalculatorTimelock_$15999_$returns$__$",
                              "typeString": "function (contract IPrizeDistributionFactory,contract IDrawCalculatorTimelock)"
                            }
                          },
                          "id": 15265,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1804:46:69",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 15266,
                        "nodeType": "EmitStatement",
                        "src": "1799:51:69"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 15240,
                    "nodeType": "StructuredDocumentation",
                    "src": "1281:249:69",
                    "text": " @notice Initialize BeaconTimelockTrigger smart contract.\n @param _owner The smart contract owner\n @param _prizeDistributionFactory PrizeDistributionFactory address\n @param _timelock DrawCalculatorTimelock address"
                  },
                  "id": 15268,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 15251,
                          "name": "_owner",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 15242,
                          "src": "1689:6:69",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        }
                      ],
                      "id": 15252,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 15250,
                        "name": "Ownable",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5355,
                        "src": "1681:7:69"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "1681:15:69"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15249,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15242,
                        "mutability": "mutable",
                        "name": "_owner",
                        "nameLocation": "1564:6:69",
                        "nodeType": "VariableDeclaration",
                        "scope": 15268,
                        "src": "1556:14:69",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 15241,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1556:7:69",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15245,
                        "mutability": "mutable",
                        "name": "_prizeDistributionFactory",
                        "nameLocation": "1606:25:69",
                        "nodeType": "VariableDeclaration",
                        "scope": 15268,
                        "src": "1580:51:69",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IPrizeDistributionFactory_$16009",
                          "typeString": "contract IPrizeDistributionFactory"
                        },
                        "typeName": {
                          "id": 15244,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15243,
                            "name": "IPrizeDistributionFactory",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 16009,
                            "src": "1580:25:69"
                          },
                          "referencedDeclaration": 16009,
                          "src": "1580:25:69",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizeDistributionFactory_$16009",
                            "typeString": "contract IPrizeDistributionFactory"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15248,
                        "mutability": "mutable",
                        "name": "_timelock",
                        "nameLocation": "1665:9:69",
                        "nodeType": "VariableDeclaration",
                        "scope": 15268,
                        "src": "1641:33:69",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$15999",
                          "typeString": "contract IDrawCalculatorTimelock"
                        },
                        "typeName": {
                          "id": 15247,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15246,
                            "name": "IDrawCalculatorTimelock",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 15999,
                            "src": "1641:23:69"
                          },
                          "referencedDeclaration": 15999,
                          "src": "1641:23:69",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$15999",
                            "typeString": "contract IDrawCalculatorTimelock"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1546:134:69"
                  },
                  "returnParameters": {
                    "id": 15253,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1697:0:69"
                  },
                  "scope": 15309,
                  "src": "1535:322:69",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    15923
                  ],
                  "body": {
                    "id": 15307,
                    "nodeType": "Block",
                    "src": "2051:338:69",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 15283,
                                "name": "_draw",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 15272,
                                "src": "2075:5:69",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                                  "typeString": "struct IDrawBeacon.Draw memory"
                                }
                              },
                              "id": 15284,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "drawId",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 10690,
                              "src": "2075:12:69",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              },
                              "id": 15289,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 15285,
                                  "name": "_draw",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 15272,
                                  "src": "2089:5:69",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                                    "typeString": "struct IDrawBeacon.Draw memory"
                                  }
                                },
                                "id": 15286,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "timestamp",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 10692,
                                "src": "2089:15:69",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "+",
                              "rightExpression": {
                                "expression": {
                                  "id": 15287,
                                  "name": "_draw",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 15272,
                                  "src": "2107:5:69",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                                    "typeString": "struct IDrawBeacon.Draw memory"
                                  }
                                },
                                "id": 15288,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "beaconPeriodSeconds",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 10696,
                                "src": "2107:25:69",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "src": "2089:43:69",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            ],
                            "expression": {
                              "id": 15280,
                              "name": "timelock",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15239,
                              "src": "2061:8:69",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$15999",
                                "typeString": "contract IDrawCalculatorTimelock"
                              }
                            },
                            "id": 15282,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "lock",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 15971,
                            "src": "2061:13:69",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_uint32_$_t_uint64_$returns$_t_bool_$",
                              "typeString": "function (uint32,uint64) external returns (bool)"
                            }
                          },
                          "id": 15290,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2061:72:69",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 15291,
                        "nodeType": "ExpressionStatement",
                        "src": "2061:72:69"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 15295,
                                "name": "_draw",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 15272,
                                "src": "2190:5:69",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                                  "typeString": "struct IDrawBeacon.Draw memory"
                                }
                              },
                              "id": 15296,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "drawId",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 10690,
                              "src": "2190:12:69",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 15297,
                              "name": "_totalNetworkTicketSupply",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15274,
                              "src": "2204:25:69",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "id": 15292,
                              "name": "prizeDistributionFactory",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15235,
                              "src": "2143:24:69",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IPrizeDistributionFactory_$16009",
                                "typeString": "contract IPrizeDistributionFactory"
                              }
                            },
                            "id": 15294,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "pushPrizeDistribution",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 16008,
                            "src": "2143:46:69",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_uint32_$_t_uint256_$returns$__$",
                              "typeString": "function (uint32,uint256) external"
                            }
                          },
                          "id": 15298,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2143:87:69",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 15299,
                        "nodeType": "ExpressionStatement",
                        "src": "2143:87:69"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 15301,
                                "name": "_draw",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 15272,
                                "src": "2302:5:69",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                                  "typeString": "struct IDrawBeacon.Draw memory"
                                }
                              },
                              "id": 15302,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "drawId",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 10690,
                              "src": "2302:12:69",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 15303,
                              "name": "_draw",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15272,
                              "src": "2328:5:69",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory"
                              }
                            },
                            {
                              "id": 15304,
                              "name": "_totalNetworkTicketSupply",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15274,
                              "src": "2347:25:69",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 15300,
                            "name": "DrawLockedAndTotalNetworkTicketSupplyPushed",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15914,
                            "src": "2245:43:69",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint32_$_t_struct$_Draw_$10697_memory_ptr_$_t_uint256_$returns$__$",
                              "typeString": "function (uint32,struct IDrawBeacon.Draw memory,uint256)"
                            }
                          },
                          "id": 15305,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2245:137:69",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 15306,
                        "nodeType": "EmitStatement",
                        "src": "2240:142:69"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 15269,
                    "nodeType": "StructuredDocumentation",
                    "src": "1863:38:69",
                    "text": "@inheritdoc IBeaconTimelockTrigger"
                  },
                  "functionSelector": "a913c9da",
                  "id": 15308,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 15278,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 15277,
                        "name": "onlyManagerOrOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5199,
                        "src": "2028:18:69"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "2028:18:69"
                    }
                  ],
                  "name": "push",
                  "nameLocation": "1915:4:69",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 15276,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2011:8:69"
                  },
                  "parameters": {
                    "id": 15275,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15272,
                        "mutability": "mutable",
                        "name": "_draw",
                        "nameLocation": "1944:5:69",
                        "nodeType": "VariableDeclaration",
                        "scope": 15308,
                        "src": "1920:29:69",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw"
                        },
                        "typeName": {
                          "id": 15271,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15270,
                            "name": "IDrawBeacon.Draw",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 10697,
                            "src": "1920:16:69"
                          },
                          "referencedDeclaration": 10697,
                          "src": "1920:16:69",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$10697_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15274,
                        "mutability": "mutable",
                        "name": "_totalNetworkTicketSupply",
                        "nameLocation": "1959:25:69",
                        "nodeType": "VariableDeclaration",
                        "scope": 15308,
                        "src": "1951:33:69",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 15273,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1951:7:69",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1919:66:69"
                  },
                  "returnParameters": {
                    "id": 15279,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2051:0:69"
                  },
                  "scope": 15309,
                  "src": "1906:483:69",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 15310,
              "src": "871:1520:69",
              "usedErrors": []
            }
          ],
          "src": "36:2356:69"
        },
        "id": 69
      },
      "@pooltogether/v4-timelocks/contracts/DrawCalculatorTimelock.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-timelocks/contracts/DrawCalculatorTimelock.sol",
          "exportedSymbols": {
            "Address": [
              1775
            ],
            "DrawCalculatorTimelock": [
              15549
            ],
            "DrawRingBufferLib": [
              11966
            ],
            "ExtendedSafeCastLib": [
              12045
            ],
            "IControlledToken": [
              10681
            ],
            "IDrawBeacon": [
              10853
            ],
            "IDrawBuffer": [
              10930
            ],
            "IDrawCalculator": [
              11003
            ],
            "IDrawCalculatorTimelock": [
              15999
            ],
            "IERC20": [
              890
            ],
            "IPrizeDistributionBuffer": [
              11079
            ],
            "IPrizeDistributionSource": [
              11115
            ],
            "IPrizeDistributor": [
              11213
            ],
            "ITicket": [
              11825
            ],
            "Manageable": [
              5200
            ],
            "ObservationLib": [
              12204
            ],
            "OverflowSafeComparatorLib": [
              12376
            ],
            "Ownable": [
              5355
            ],
            "PrizeDistributionBuffer": [
              8796
            ],
            "PrizeDistributor": [
              9169
            ],
            "RingBufferLib": [
              12461
            ],
            "SafeCast": [
              3225
            ],
            "SafeERC20": [
              1344
            ],
            "TwabLib": [
              13211
            ]
          },
          "id": 15550,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 15311,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:70"
            },
            {
              "absolutePath": "@pooltogether/owner-manager-contracts/contracts/Manageable.sol",
              "file": "@pooltogether/owner-manager-contracts/contracts/Manageable.sol",
              "id": 15312,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15550,
              "sourceUnit": 5201,
              "src": "61:72:70",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-timelocks/contracts/interfaces/IDrawCalculatorTimelock.sol",
              "file": "./interfaces/IDrawCalculatorTimelock.sol",
              "id": 15313,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15550,
              "sourceUnit": 16000,
              "src": "135:50:70",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 15315,
                    "name": "IDrawCalculatorTimelock",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 15999,
                    "src": "760:23:70"
                  },
                  "id": 15316,
                  "nodeType": "InheritanceSpecifier",
                  "src": "760:23:70"
                },
                {
                  "baseName": {
                    "id": 15317,
                    "name": "Manageable",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 5200,
                    "src": "785:10:70"
                  },
                  "id": 15318,
                  "nodeType": "InheritanceSpecifier",
                  "src": "785:10:70"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 15314,
                "nodeType": "StructuredDocumentation",
                "src": "187:537:70",
                "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": 15549,
              "linearizedBaseContracts": [
                15549,
                5200,
                5355,
                15999
              ],
              "name": "DrawCalculatorTimelock",
              "nameLocation": "734:22:70",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "constant": false,
                  "documentation": {
                    "id": 15319,
                    "nodeType": "StructuredDocumentation",
                    "src": "856:46:70",
                    "text": "@notice Internal DrawCalculator reference."
                  },
                  "id": 15322,
                  "mutability": "immutable",
                  "name": "calculator",
                  "nameLocation": "942:10:70",
                  "nodeType": "VariableDeclaration",
                  "scope": 15549,
                  "src": "907:45:70",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IDrawCalculator_$11003",
                    "typeString": "contract IDrawCalculator"
                  },
                  "typeName": {
                    "id": 15321,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 15320,
                      "name": "IDrawCalculator",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 11003,
                      "src": "907:15:70"
                    },
                    "referencedDeclaration": 11003,
                    "src": "907:15:70",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IDrawCalculator_$11003",
                      "typeString": "contract IDrawCalculator"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 15323,
                    "nodeType": "StructuredDocumentation",
                    "src": "959:47:70",
                    "text": "@notice Internal Timelock struct reference."
                  },
                  "id": 15326,
                  "mutability": "mutable",
                  "name": "timelock",
                  "nameLocation": "1029:8:70",
                  "nodeType": "VariableDeclaration",
                  "scope": 15549,
                  "src": "1011:26:70",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_struct$_Timelock_$15932_storage",
                    "typeString": "struct IDrawCalculatorTimelock.Timelock"
                  },
                  "typeName": {
                    "id": 15325,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 15324,
                      "name": "Timelock",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 15932,
                      "src": "1011:8:70"
                    },
                    "referencedDeclaration": 15932,
                    "src": "1011:8:70",
                    "typeDescriptions": {
                      "typeIdentifier": "t_struct$_Timelock_$15932_storage_ptr",
                      "typeString": "struct IDrawCalculatorTimelock.Timelock"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 15327,
                    "nodeType": "StructuredDocumentation",
                    "src": "1088:147:70",
                    "text": " @notice Deployed event when the constructor is called\n @param drawCalculator DrawCalculator address bound to this timelock"
                  },
                  "id": 15332,
                  "name": "Deployed",
                  "nameLocation": "1246:8:70",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 15331,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15330,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "drawCalculator",
                        "nameLocation": "1279:14:70",
                        "nodeType": "VariableDeclaration",
                        "scope": 15332,
                        "src": "1255:38:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawCalculator_$11003",
                          "typeString": "contract IDrawCalculator"
                        },
                        "typeName": {
                          "id": 15329,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15328,
                            "name": "IDrawCalculator",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11003,
                            "src": "1255:15:70"
                          },
                          "referencedDeclaration": 11003,
                          "src": "1255:15:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculator_$11003",
                            "typeString": "contract IDrawCalculator"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1254:40:70"
                  },
                  "src": "1240:55:70"
                },
                {
                  "body": {
                    "id": 15352,
                    "nodeType": "Block",
                    "src": "1652:78:70",
                    "statements": [
                      {
                        "expression": {
                          "id": 15346,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 15344,
                            "name": "calculator",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15322,
                            "src": "1662:10:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IDrawCalculator_$11003",
                              "typeString": "contract IDrawCalculator"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 15345,
                            "name": "_calculator",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15338,
                            "src": "1675:11:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IDrawCalculator_$11003",
                              "typeString": "contract IDrawCalculator"
                            }
                          },
                          "src": "1662:24:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculator_$11003",
                            "typeString": "contract IDrawCalculator"
                          }
                        },
                        "id": 15347,
                        "nodeType": "ExpressionStatement",
                        "src": "1662:24:70"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 15349,
                              "name": "_calculator",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15338,
                              "src": "1711:11:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawCalculator_$11003",
                                "typeString": "contract IDrawCalculator"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IDrawCalculator_$11003",
                                "typeString": "contract IDrawCalculator"
                              }
                            ],
                            "id": 15348,
                            "name": "Deployed",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15332,
                            "src": "1702:8:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_contract$_IDrawCalculator_$11003_$returns$__$",
                              "typeString": "function (contract IDrawCalculator)"
                            }
                          },
                          "id": 15350,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1702:21:70",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 15351,
                        "nodeType": "EmitStatement",
                        "src": "1697:26:70"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 15333,
                    "nodeType": "StructuredDocumentation",
                    "src": "1345:229:70",
                    "text": " @notice Initialize DrawCalculatorTimelockTrigger smart contract.\n @param _owner                       Address of the DrawCalculator owner.\n @param _calculator                 DrawCalculator address."
                  },
                  "id": 15353,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 15341,
                          "name": "_owner",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 15335,
                          "src": "1644:6:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        }
                      ],
                      "id": 15342,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 15340,
                        "name": "Ownable",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5355,
                        "src": "1636:7:70"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "1636:15:70"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15339,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15335,
                        "mutability": "mutable",
                        "name": "_owner",
                        "nameLocation": "1599:6:70",
                        "nodeType": "VariableDeclaration",
                        "scope": 15353,
                        "src": "1591:14:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 15334,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1591:7:70",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15338,
                        "mutability": "mutable",
                        "name": "_calculator",
                        "nameLocation": "1623:11:70",
                        "nodeType": "VariableDeclaration",
                        "scope": 15353,
                        "src": "1607:27:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawCalculator_$11003",
                          "typeString": "contract IDrawCalculator"
                        },
                        "typeName": {
                          "id": 15337,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15336,
                            "name": "IDrawCalculator",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11003,
                            "src": "1607:15:70"
                          },
                          "referencedDeclaration": 11003,
                          "src": "1607:15:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculator_$11003",
                            "typeString": "contract IDrawCalculator"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1590:45:70"
                  },
                  "returnParameters": {
                    "id": 15343,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1652:0:70"
                  },
                  "scope": 15549,
                  "src": "1579:151:70",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    15961
                  ],
                  "body": {
                    "id": 15407,
                    "nodeType": "Block",
                    "src": "2011:361:70",
                    "statements": [
                      {
                        "assignments": [
                          15372
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 15372,
                            "mutability": "mutable",
                            "name": "_timelock",
                            "nameLocation": "2037:9:70",
                            "nodeType": "VariableDeclaration",
                            "scope": 15407,
                            "src": "2021:25:70",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Timelock_$15932_memory_ptr",
                              "typeString": "struct IDrawCalculatorTimelock.Timelock"
                            },
                            "typeName": {
                              "id": 15371,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 15370,
                                "name": "Timelock",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 15932,
                                "src": "2021:8:70"
                              },
                              "referencedDeclaration": 15932,
                              "src": "2021:8:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Timelock_$15932_storage_ptr",
                                "typeString": "struct IDrawCalculatorTimelock.Timelock"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 15374,
                        "initialValue": {
                          "id": 15373,
                          "name": "timelock",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 15326,
                          "src": "2049:8:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Timelock_$15932_storage",
                            "typeString": "struct IDrawCalculatorTimelock.Timelock storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2021:36:70"
                      },
                      {
                        "body": {
                          "id": 15398,
                          "nodeType": "Block",
                          "src": "2113:194:70",
                          "statements": [
                            {
                              "condition": {
                                "commonType": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                },
                                "id": 15391,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "baseExpression": {
                                    "id": 15386,
                                    "name": "drawIds",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 15359,
                                    "src": "2198:7:70",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                                      "typeString": "uint32[] calldata"
                                    }
                                  },
                                  "id": 15388,
                                  "indexExpression": {
                                    "id": 15387,
                                    "name": "i",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 15376,
                                    "src": "2206:1:70",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "IndexAccess",
                                  "src": "2198:10:70",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "==",
                                "rightExpression": {
                                  "expression": {
                                    "id": 15389,
                                    "name": "_timelock",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 15372,
                                    "src": "2212:9:70",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Timelock_$15932_memory_ptr",
                                      "typeString": "struct IDrawCalculatorTimelock.Timelock memory"
                                    }
                                  },
                                  "id": 15390,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "drawId",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 15931,
                                  "src": "2212:16:70",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                "src": "2198:30:70",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "id": 15397,
                              "nodeType": "IfStatement",
                              "src": "2194:103:70",
                              "trueBody": {
                                "id": 15396,
                                "nodeType": "Block",
                                "src": "2230:67:70",
                                "statements": [
                                  {
                                    "expression": {
                                      "arguments": [
                                        {
                                          "id": 15393,
                                          "name": "_timelock",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": 15372,
                                          "src": "2272:9:70",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_struct$_Timelock_$15932_memory_ptr",
                                            "typeString": "struct IDrawCalculatorTimelock.Timelock memory"
                                          }
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_struct$_Timelock_$15932_memory_ptr",
                                            "typeString": "struct IDrawCalculatorTimelock.Timelock memory"
                                          }
                                        ],
                                        "id": 15392,
                                        "name": "_requireTimelockElapsed",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 15548,
                                        "src": "2248:23:70",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_function_internal_view$_t_struct$_Timelock_$15932_memory_ptr_$returns$__$",
                                          "typeString": "function (struct IDrawCalculatorTimelock.Timelock memory) view"
                                        }
                                      },
                                      "id": 15394,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "functionCall",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "2248:34:70",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_tuple$__$",
                                        "typeString": "tuple()"
                                      }
                                    },
                                    "id": 15395,
                                    "nodeType": "ExpressionStatement",
                                    "src": "2248:34:70"
                                  }
                                ]
                              }
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 15382,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 15379,
                            "name": "i",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15376,
                            "src": "2088:1:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "expression": {
                              "id": 15380,
                              "name": "drawIds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15359,
                              "src": "2092:7:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                                "typeString": "uint32[] calldata"
                              }
                            },
                            "id": 15381,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "length",
                            "nodeType": "MemberAccess",
                            "src": "2092:14:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "2088:18:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 15399,
                        "initializationExpression": {
                          "assignments": [
                            15376
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 15376,
                              "mutability": "mutable",
                              "name": "i",
                              "nameLocation": "2081:1:70",
                              "nodeType": "VariableDeclaration",
                              "scope": 15399,
                              "src": "2073:9:70",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "typeName": {
                                "id": 15375,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "2073:7:70",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 15378,
                          "initialValue": {
                            "hexValue": "30",
                            "id": 15377,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "2085:1:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "nodeType": "VariableDeclarationStatement",
                          "src": "2073:13:70"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 15384,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "2108:3:70",
                            "subExpression": {
                              "id": 15383,
                              "name": "i",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15376,
                              "src": "2108:1:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 15385,
                          "nodeType": "ExpressionStatement",
                          "src": "2108:3:70"
                        },
                        "nodeType": "ForStatement",
                        "src": "2068:239:70"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 15402,
                              "name": "user",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15356,
                              "src": "2345:4:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 15403,
                              "name": "drawIds",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15359,
                              "src": "2351:7:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                                "typeString": "uint32[] calldata"
                              }
                            },
                            {
                              "id": 15404,
                              "name": "data",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15361,
                              "src": "2360:4:70",
                              "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": 15400,
                              "name": "calculator",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15322,
                              "src": "2324:10:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawCalculator_$11003",
                                "typeString": "contract IDrawCalculator"
                              }
                            },
                            "id": 15401,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "calculate",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 10976,
                            "src": "2324:20:70",
                            "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": 15405,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2324:41:70",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_array$_t_uint256_$dyn_memory_ptr_$_t_bytes_memory_ptr_$",
                            "typeString": "tuple(uint256[] memory,bytes memory)"
                          }
                        },
                        "functionReturnParameters": 15369,
                        "id": 15406,
                        "nodeType": "Return",
                        "src": "2317:48:70"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 15354,
                    "nodeType": "StructuredDocumentation",
                    "src": "1792:39:70",
                    "text": "@inheritdoc IDrawCalculatorTimelock"
                  },
                  "functionSelector": "aaca392e",
                  "id": 15408,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "calculate",
                  "nameLocation": "1845:9:70",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 15363,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "1961:8:70"
                  },
                  "parameters": {
                    "id": 15362,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15356,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "1872:4:70",
                        "nodeType": "VariableDeclaration",
                        "scope": 15408,
                        "src": "1864:12:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 15355,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1864:7:70",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15359,
                        "mutability": "mutable",
                        "name": "drawIds",
                        "nameLocation": "1904:7:70",
                        "nodeType": "VariableDeclaration",
                        "scope": 15408,
                        "src": "1886:25:70",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                          "typeString": "uint32[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 15357,
                            "name": "uint32",
                            "nodeType": "ElementaryTypeName",
                            "src": "1886:6:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "id": 15358,
                          "nodeType": "ArrayTypeName",
                          "src": "1886:8:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint32_$dyn_storage_ptr",
                            "typeString": "uint32[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15361,
                        "mutability": "mutable",
                        "name": "data",
                        "nameLocation": "1936:4:70",
                        "nodeType": "VariableDeclaration",
                        "scope": 15408,
                        "src": "1921:19:70",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_calldata_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 15360,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "1921:5:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1854:92:70"
                  },
                  "returnParameters": {
                    "id": 15369,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15366,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15408,
                        "src": "1979:16:70",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 15364,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "1979:7:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 15365,
                          "nodeType": "ArrayTypeName",
                          "src": "1979:9:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15368,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15408,
                        "src": "1997:12:70",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 15367,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "1997:5:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1978:32:70"
                  },
                  "scope": 15549,
                  "src": "1836:536:70",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    15971
                  ],
                  "body": {
                    "id": 15454,
                    "nodeType": "Block",
                    "src": "2559:315:70",
                    "statements": [
                      {
                        "assignments": [
                          15423
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 15423,
                            "mutability": "mutable",
                            "name": "_timelock",
                            "nameLocation": "2585:9:70",
                            "nodeType": "VariableDeclaration",
                            "scope": 15454,
                            "src": "2569:25:70",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Timelock_$15932_memory_ptr",
                              "typeString": "struct IDrawCalculatorTimelock.Timelock"
                            },
                            "typeName": {
                              "id": 15422,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 15421,
                                "name": "Timelock",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 15932,
                                "src": "2569:8:70"
                              },
                              "referencedDeclaration": 15932,
                              "src": "2569:8:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Timelock_$15932_storage_ptr",
                                "typeString": "struct IDrawCalculatorTimelock.Timelock"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 15425,
                        "initialValue": {
                          "id": 15424,
                          "name": "timelock",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 15326,
                          "src": "2597:8:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Timelock_$15932_storage",
                            "typeString": "struct IDrawCalculatorTimelock.Timelock storage ref"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2569:36:70"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              "id": 15432,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 15427,
                                "name": "_drawId",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 15411,
                                "src": "2623:7:70",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "==",
                              "rightExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                },
                                "id": 15431,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "expression": {
                                    "id": 15428,
                                    "name": "_timelock",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 15423,
                                    "src": "2634:9:70",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_struct$_Timelock_$15932_memory_ptr",
                                      "typeString": "struct IDrawCalculatorTimelock.Timelock memory"
                                    }
                                  },
                                  "id": 15429,
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "drawId",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 15931,
                                  "src": "2634:16:70",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint32",
                                    "typeString": "uint32"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "+",
                                "rightExpression": {
                                  "hexValue": "31",
                                  "id": 15430,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "2653:1:70",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_rational_1_by_1",
                                    "typeString": "int_const 1"
                                  },
                                  "value": "1"
                                },
                                "src": "2634:20:70",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "src": "2623:31:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4f4d2f6e6f742d6472617769642d706c75732d6f6e65",
                              "id": 15433,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2656:24:70",
                              "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": 15426,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2615:7:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 15434,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2615:66:70",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 15435,
                        "nodeType": "ExpressionStatement",
                        "src": "2615:66:70"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 15437,
                              "name": "_timelock",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15423,
                              "src": "2716:9:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Timelock_$15932_memory_ptr",
                                "typeString": "struct IDrawCalculatorTimelock.Timelock memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Timelock_$15932_memory_ptr",
                                "typeString": "struct IDrawCalculatorTimelock.Timelock memory"
                              }
                            ],
                            "id": 15436,
                            "name": "_requireTimelockElapsed",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15548,
                            "src": "2692:23:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_struct$_Timelock_$15932_memory_ptr_$returns$__$",
                              "typeString": "function (struct IDrawCalculatorTimelock.Timelock memory) view"
                            }
                          },
                          "id": 15438,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2692:34:70",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 15439,
                        "nodeType": "ExpressionStatement",
                        "src": "2692:34:70"
                      },
                      {
                        "expression": {
                          "id": 15445,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 15440,
                            "name": "timelock",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15326,
                            "src": "2736:8:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Timelock_$15932_storage",
                              "typeString": "struct IDrawCalculatorTimelock.Timelock storage ref"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "id": 15442,
                                "name": "_drawId",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 15411,
                                "src": "2766:7:70",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              {
                                "id": 15443,
                                "name": "_timestamp",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 15413,
                                "src": "2786:10:70",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                },
                                {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                }
                              ],
                              "id": 15441,
                              "name": "Timelock",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15932,
                              "src": "2747:8:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_struct$_Timelock_$15932_storage_ptr_$",
                                "typeString": "type(struct IDrawCalculatorTimelock.Timelock storage pointer)"
                              }
                            },
                            "id": 15444,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "structConstructorCall",
                            "lValueRequested": false,
                            "names": [
                              "drawId",
                              "timestamp"
                            ],
                            "nodeType": "FunctionCall",
                            "src": "2747:52:70",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Timelock_$15932_memory_ptr",
                              "typeString": "struct IDrawCalculatorTimelock.Timelock memory"
                            }
                          },
                          "src": "2736:63:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Timelock_$15932_storage",
                            "typeString": "struct IDrawCalculatorTimelock.Timelock storage ref"
                          }
                        },
                        "id": 15446,
                        "nodeType": "ExpressionStatement",
                        "src": "2736:63:70"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 15448,
                              "name": "_drawId",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15411,
                              "src": "2825:7:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 15449,
                              "name": "_timestamp",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15413,
                              "src": "2834:10:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            ],
                            "id": 15447,
                            "name": "LockedDraw",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15939,
                            "src": "2814:10:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint32_$_t_uint64_$returns$__$",
                              "typeString": "function (uint32,uint64)"
                            }
                          },
                          "id": 15450,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2814:31:70",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 15451,
                        "nodeType": "EmitStatement",
                        "src": "2809:36:70"
                      },
                      {
                        "expression": {
                          "hexValue": "74727565",
                          "id": 15452,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "bool",
                          "lValueRequested": false,
                          "nodeType": "Literal",
                          "src": "2863:4:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          },
                          "value": "true"
                        },
                        "functionReturnParameters": 15420,
                        "id": 15453,
                        "nodeType": "Return",
                        "src": "2856:11:70"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 15409,
                    "nodeType": "StructuredDocumentation",
                    "src": "2378:39:70",
                    "text": "@inheritdoc IDrawCalculatorTimelock"
                  },
                  "functionSelector": "8871189b",
                  "id": 15455,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 15417,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 15416,
                        "name": "onlyManagerOrOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5199,
                        "src": "2513:18:70"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "2513:18:70"
                    }
                  ],
                  "name": "lock",
                  "nameLocation": "2431:4:70",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 15415,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2496:8:70"
                  },
                  "parameters": {
                    "id": 15414,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15411,
                        "mutability": "mutable",
                        "name": "_drawId",
                        "nameLocation": "2443:7:70",
                        "nodeType": "VariableDeclaration",
                        "scope": 15455,
                        "src": "2436:14:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 15410,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "2436:6:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15413,
                        "mutability": "mutable",
                        "name": "_timestamp",
                        "nameLocation": "2459:10:70",
                        "nodeType": "VariableDeclaration",
                        "scope": 15455,
                        "src": "2452:17:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 15412,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "2452:6:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2435:35:70"
                  },
                  "returnParameters": {
                    "id": 15420,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15419,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15455,
                        "src": "2549:4:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 15418,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "2549:4:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2548:6:70"
                  },
                  "scope": 15549,
                  "src": "2422:452:70",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    15978
                  ],
                  "body": {
                    "id": 15465,
                    "nodeType": "Block",
                    "src": "3002:34:70",
                    "statements": [
                      {
                        "expression": {
                          "id": 15463,
                          "name": "calculator",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 15322,
                          "src": "3019:10:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculator_$11003",
                            "typeString": "contract IDrawCalculator"
                          }
                        },
                        "functionReturnParameters": 15462,
                        "id": 15464,
                        "nodeType": "Return",
                        "src": "3012:17:70"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 15456,
                    "nodeType": "StructuredDocumentation",
                    "src": "2880:39:70",
                    "text": "@inheritdoc IDrawCalculatorTimelock"
                  },
                  "functionSelector": "2d680cfa",
                  "id": 15466,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getDrawCalculator",
                  "nameLocation": "2933:17:70",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 15458,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2967:8:70"
                  },
                  "parameters": {
                    "id": 15457,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2950:2:70"
                  },
                  "returnParameters": {
                    "id": 15462,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15461,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15466,
                        "src": "2985:15:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawCalculator_$11003",
                          "typeString": "contract IDrawCalculator"
                        },
                        "typeName": {
                          "id": 15460,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15459,
                            "name": "IDrawCalculator",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11003,
                            "src": "2985:15:70"
                          },
                          "referencedDeclaration": 11003,
                          "src": "2985:15:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculator_$11003",
                            "typeString": "contract IDrawCalculator"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2984:17:70"
                  },
                  "scope": 15549,
                  "src": "2924:112:70",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    15985
                  ],
                  "body": {
                    "id": 15476,
                    "nodeType": "Block",
                    "src": "3158:32:70",
                    "statements": [
                      {
                        "expression": {
                          "id": 15474,
                          "name": "timelock",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 15326,
                          "src": "3175:8:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Timelock_$15932_storage",
                            "typeString": "struct IDrawCalculatorTimelock.Timelock storage ref"
                          }
                        },
                        "functionReturnParameters": 15473,
                        "id": 15475,
                        "nodeType": "Return",
                        "src": "3168:15:70"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 15467,
                    "nodeType": "StructuredDocumentation",
                    "src": "3042:39:70",
                    "text": "@inheritdoc IDrawCalculatorTimelock"
                  },
                  "functionSelector": "6221a54b",
                  "id": 15477,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getTimelock",
                  "nameLocation": "3095:11:70",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 15469,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3123:8:70"
                  },
                  "parameters": {
                    "id": 15468,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3106:2:70"
                  },
                  "returnParameters": {
                    "id": 15473,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15472,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15477,
                        "src": "3141:15:70",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Timelock_$15932_memory_ptr",
                          "typeString": "struct IDrawCalculatorTimelock.Timelock"
                        },
                        "typeName": {
                          "id": 15471,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15470,
                            "name": "Timelock",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 15932,
                            "src": "3141:8:70"
                          },
                          "referencedDeclaration": 15932,
                          "src": "3141:8:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Timelock_$15932_storage_ptr",
                            "typeString": "struct IDrawCalculatorTimelock.Timelock"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3140:17:70"
                  },
                  "scope": 15549,
                  "src": "3086:104:70",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    15992
                  ],
                  "body": {
                    "id": 15495,
                    "nodeType": "Block",
                    "src": "3316:75:70",
                    "statements": [
                      {
                        "expression": {
                          "id": 15489,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 15487,
                            "name": "timelock",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15326,
                            "src": "3326:8:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Timelock_$15932_storage",
                              "typeString": "struct IDrawCalculatorTimelock.Timelock storage ref"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 15488,
                            "name": "_timelock",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15481,
                            "src": "3337:9:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Timelock_$15932_memory_ptr",
                              "typeString": "struct IDrawCalculatorTimelock.Timelock memory"
                            }
                          },
                          "src": "3326:20:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Timelock_$15932_storage",
                            "typeString": "struct IDrawCalculatorTimelock.Timelock storage ref"
                          }
                        },
                        "id": 15490,
                        "nodeType": "ExpressionStatement",
                        "src": "3326:20:70"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 15492,
                              "name": "_timelock",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15481,
                              "src": "3374:9:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Timelock_$15932_memory_ptr",
                                "typeString": "struct IDrawCalculatorTimelock.Timelock memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Timelock_$15932_memory_ptr",
                                "typeString": "struct IDrawCalculatorTimelock.Timelock memory"
                              }
                            ],
                            "id": 15491,
                            "name": "TimelockSet",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15945,
                            "src": "3362:11:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_struct$_Timelock_$15932_memory_ptr_$returns$__$",
                              "typeString": "function (struct IDrawCalculatorTimelock.Timelock memory)"
                            }
                          },
                          "id": 15493,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3362:22:70",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 15494,
                        "nodeType": "EmitStatement",
                        "src": "3357:27:70"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 15478,
                    "nodeType": "StructuredDocumentation",
                    "src": "3196:39:70",
                    "text": "@inheritdoc IDrawCalculatorTimelock"
                  },
                  "functionSelector": "bdf28f5e",
                  "id": 15496,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 15485,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 15484,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5341,
                        "src": "3306:9:70"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "3306:9:70"
                    }
                  ],
                  "name": "setTimelock",
                  "nameLocation": "3249:11:70",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 15483,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3297:8:70"
                  },
                  "parameters": {
                    "id": 15482,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15481,
                        "mutability": "mutable",
                        "name": "_timelock",
                        "nameLocation": "3277:9:70",
                        "nodeType": "VariableDeclaration",
                        "scope": 15496,
                        "src": "3261:25:70",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Timelock_$15932_memory_ptr",
                          "typeString": "struct IDrawCalculatorTimelock.Timelock"
                        },
                        "typeName": {
                          "id": 15480,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15479,
                            "name": "Timelock",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 15932,
                            "src": "3261:8:70"
                          },
                          "referencedDeclaration": 15932,
                          "src": "3261:8:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Timelock_$15932_storage_ptr",
                            "typeString": "struct IDrawCalculatorTimelock.Timelock"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3260:27:70"
                  },
                  "returnParameters": {
                    "id": 15486,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3316:0:70"
                  },
                  "scope": 15549,
                  "src": "3240:151:70",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    15998
                  ],
                  "body": {
                    "id": 15507,
                    "nodeType": "Block",
                    "src": "3501:53:70",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 15504,
                              "name": "timelock",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15326,
                              "src": "3538:8:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Timelock_$15932_storage",
                                "typeString": "struct IDrawCalculatorTimelock.Timelock storage ref"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Timelock_$15932_storage",
                                "typeString": "struct IDrawCalculatorTimelock.Timelock storage ref"
                              }
                            ],
                            "id": 15503,
                            "name": "_timelockHasElapsed",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15533,
                            "src": "3518:19:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_struct$_Timelock_$15932_memory_ptr_$returns$_t_bool_$",
                              "typeString": "function (struct IDrawCalculatorTimelock.Timelock memory) view returns (bool)"
                            }
                          },
                          "id": 15505,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3518:29:70",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 15502,
                        "id": 15506,
                        "nodeType": "Return",
                        "src": "3511:36:70"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 15497,
                    "nodeType": "StructuredDocumentation",
                    "src": "3397:39:70",
                    "text": "@inheritdoc IDrawCalculatorTimelock"
                  },
                  "functionSelector": "d3a9c612",
                  "id": 15508,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "hasElapsed",
                  "nameLocation": "3450:10:70",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 15499,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "3477:8:70"
                  },
                  "parameters": {
                    "id": 15498,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3460:2:70"
                  },
                  "returnParameters": {
                    "id": 15502,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15501,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15508,
                        "src": "3495:4:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 15500,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "3495:4:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3494:6:70"
                  },
                  "scope": 15549,
                  "src": "3441:113:70",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 15532,
                    "nodeType": "Block",
                    "src": "3800:271:70",
                    "statements": [
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          },
                          "id": 15520,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "expression": {
                              "id": 15517,
                              "name": "_timelock",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15512,
                              "src": "3884:9:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Timelock_$15932_memory_ptr",
                                "typeString": "struct IDrawCalculatorTimelock.Timelock memory"
                              }
                            },
                            "id": 15518,
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "timestamp",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 15929,
                            "src": "3884:19:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint64",
                              "typeString": "uint64"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "==",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 15519,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "3907:1:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "3884:24:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 15524,
                        "nodeType": "IfStatement",
                        "src": "3880:66:70",
                        "trueBody": {
                          "id": 15523,
                          "nodeType": "Block",
                          "src": "3910:36:70",
                          "statements": [
                            {
                              "expression": {
                                "hexValue": "74727565",
                                "id": 15521,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "bool",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "3931:4:70",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                },
                                "value": "true"
                              },
                              "functionReturnParameters": 15516,
                              "id": 15522,
                              "nodeType": "Return",
                              "src": "3924:11:70"
                            }
                          ]
                        }
                      },
                      {
                        "expression": {
                          "components": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 15529,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 15525,
                                  "name": "block",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -4,
                                  "src": "4026:5:70",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_block",
                                    "typeString": "block"
                                  }
                                },
                                "id": 15526,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "timestamp",
                                "nodeType": "MemberAccess",
                                "src": "4026:15:70",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">",
                              "rightExpression": {
                                "expression": {
                                  "id": 15527,
                                  "name": "_timelock",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 15512,
                                  "src": "4044:9:70",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Timelock_$15932_memory_ptr",
                                    "typeString": "struct IDrawCalculatorTimelock.Timelock memory"
                                  }
                                },
                                "id": 15528,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "timestamp",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 15929,
                                "src": "4044:19:70",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                }
                              },
                              "src": "4026:37:70",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            }
                          ],
                          "id": 15530,
                          "isConstant": false,
                          "isInlineArray": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "TupleExpression",
                          "src": "4025:39:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 15516,
                        "id": 15531,
                        "nodeType": "Return",
                        "src": "4018:46:70"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 15509,
                    "nodeType": "StructuredDocumentation",
                    "src": "3616:94:70",
                    "text": " @notice Read global DrawCalculator variable.\n @return IDrawCalculator"
                  },
                  "id": 15533,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_timelockHasElapsed",
                  "nameLocation": "3724:19:70",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15513,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15512,
                        "mutability": "mutable",
                        "name": "_timelock",
                        "nameLocation": "3760:9:70",
                        "nodeType": "VariableDeclaration",
                        "scope": 15533,
                        "src": "3744:25:70",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Timelock_$15932_memory_ptr",
                          "typeString": "struct IDrawCalculatorTimelock.Timelock"
                        },
                        "typeName": {
                          "id": 15511,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15510,
                            "name": "Timelock",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 15932,
                            "src": "3744:8:70"
                          },
                          "referencedDeclaration": 15932,
                          "src": "3744:8:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Timelock_$15932_storage_ptr",
                            "typeString": "struct IDrawCalculatorTimelock.Timelock"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3743:27:70"
                  },
                  "returnParameters": {
                    "id": 15516,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15515,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15533,
                        "src": "3794:4:70",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 15514,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "3794:4:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3793:6:70"
                  },
                  "scope": 15549,
                  "src": "3715:356:70",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 15547,
                    "nodeType": "Block",
                    "src": "4279:83:70",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 15542,
                                  "name": "_timelock",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 15537,
                                  "src": "4317:9:70",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Timelock_$15932_memory_ptr",
                                    "typeString": "struct IDrawCalculatorTimelock.Timelock memory"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_struct$_Timelock_$15932_memory_ptr",
                                    "typeString": "struct IDrawCalculatorTimelock.Timelock memory"
                                  }
                                ],
                                "id": 15541,
                                "name": "_timelockHasElapsed",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 15533,
                                "src": "4297:19:70",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$_t_struct$_Timelock_$15932_memory_ptr_$returns$_t_bool_$",
                                  "typeString": "function (struct IDrawCalculatorTimelock.Timelock memory) view returns (bool)"
                                }
                              },
                              "id": 15543,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "4297:30:70",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "4f4d2f74696d656c6f636b2d6e6f742d65787069726564",
                              "id": 15544,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "4329:25:70",
                              "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": 15540,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "4289:7:70",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 15545,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "4289:66:70",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 15546,
                        "nodeType": "ExpressionStatement",
                        "src": "4289:66:70"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 15534,
                    "nodeType": "StructuredDocumentation",
                    "src": "4077:123:70",
                    "text": " @notice Require the timelock \"cooldown\" period has elapsed\n @param _timelock the Timelock to check"
                  },
                  "id": 15548,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_requireTimelockElapsed",
                  "nameLocation": "4214:23:70",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15538,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15537,
                        "mutability": "mutable",
                        "name": "_timelock",
                        "nameLocation": "4254:9:70",
                        "nodeType": "VariableDeclaration",
                        "scope": 15548,
                        "src": "4238:25:70",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Timelock_$15932_memory_ptr",
                          "typeString": "struct IDrawCalculatorTimelock.Timelock"
                        },
                        "typeName": {
                          "id": 15536,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15535,
                            "name": "Timelock",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 15932,
                            "src": "4238:8:70"
                          },
                          "referencedDeclaration": 15932,
                          "src": "4238:8:70",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Timelock_$15932_storage_ptr",
                            "typeString": "struct IDrawCalculatorTimelock.Timelock"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4237:27:70"
                  },
                  "returnParameters": {
                    "id": 15539,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "4279:0:70"
                  },
                  "scope": 15549,
                  "src": "4205:157:70",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 15550,
              "src": "725:3639:70",
              "usedErrors": []
            }
          ],
          "src": "37:4328:70"
        },
        "id": 70
      },
      "@pooltogether/v4-timelocks/contracts/L1TimelockTrigger.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-timelocks/contracts/L1TimelockTrigger.sol",
          "exportedSymbols": {
            "Address": [
              1775
            ],
            "DrawRingBufferLib": [
              11966
            ],
            "ExtendedSafeCastLib": [
              12045
            ],
            "IControlledToken": [
              10681
            ],
            "IDrawBeacon": [
              10853
            ],
            "IDrawBuffer": [
              10930
            ],
            "IDrawCalculator": [
              11003
            ],
            "IDrawCalculatorTimelock": [
              15999
            ],
            "IERC20": [
              890
            ],
            "IPrizeDistributionBuffer": [
              11079
            ],
            "IPrizeDistributionSource": [
              11115
            ],
            "IPrizeDistributor": [
              11213
            ],
            "ITicket": [
              11825
            ],
            "L1TimelockTrigger": [
              15651
            ],
            "Manageable": [
              5200
            ],
            "ObservationLib": [
              12204
            ],
            "OverflowSafeComparatorLib": [
              12376
            ],
            "Ownable": [
              5355
            ],
            "PrizeDistributionBuffer": [
              8796
            ],
            "PrizeDistributor": [
              9169
            ],
            "RingBufferLib": [
              12461
            ],
            "SafeCast": [
              3225
            ],
            "SafeERC20": [
              1344
            ],
            "TwabLib": [
              13211
            ]
          },
          "id": 15652,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 15551,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "36:22:71"
            },
            {
              "absolutePath": "@pooltogether/owner-manager-contracts/contracts/Manageable.sol",
              "file": "@pooltogether/owner-manager-contracts/contracts/Manageable.sol",
              "id": 15552,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15652,
              "sourceUnit": 5201,
              "src": "59:72:71",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionBuffer.sol",
              "file": "@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionBuffer.sol",
              "id": 15553,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15652,
              "sourceUnit": 11080,
              "src": "132:81:71",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-timelocks/contracts/interfaces/IDrawCalculatorTimelock.sol",
              "file": "./interfaces/IDrawCalculatorTimelock.sol",
              "id": 15554,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15652,
              "sourceUnit": 16000,
              "src": "214:50:71",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 15556,
                    "name": "Manageable",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 5200,
                    "src": "843:10:71"
                  },
                  "id": 15557,
                  "nodeType": "InheritanceSpecifier",
                  "src": "843:10:71"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 15555,
                "nodeType": "StructuredDocumentation",
                "src": "266:546:71",
                "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": 15651,
              "linearizedBaseContracts": [
                15651,
                5200,
                5355
              ],
              "name": "L1TimelockTrigger",
              "nameLocation": "822:17:71",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 15558,
                    "nodeType": "StructuredDocumentation",
                    "src": "904:210:71",
                    "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": 15566,
                  "name": "Deployed",
                  "nameLocation": "1125:8:71",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 15565,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15561,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "prizeDistributionBuffer",
                        "nameLocation": "1176:23:71",
                        "nodeType": "VariableDeclaration",
                        "scope": 15566,
                        "src": "1143:56:71",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11079",
                          "typeString": "contract IPrizeDistributionBuffer"
                        },
                        "typeName": {
                          "id": 15560,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15559,
                            "name": "IPrizeDistributionBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11079,
                            "src": "1143:24:71"
                          },
                          "referencedDeclaration": 11079,
                          "src": "1143:24:71",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11079",
                            "typeString": "contract IPrizeDistributionBuffer"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15564,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "timelock",
                        "nameLocation": "1241:8:71",
                        "nodeType": "VariableDeclaration",
                        "scope": 15566,
                        "src": "1209:40:71",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$15999",
                          "typeString": "contract IDrawCalculatorTimelock"
                        },
                        "typeName": {
                          "id": 15563,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15562,
                            "name": "IDrawCalculatorTimelock",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 15999,
                            "src": "1209:23:71"
                          },
                          "referencedDeclaration": 15999,
                          "src": "1209:23:71",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$15999",
                            "typeString": "contract IDrawCalculatorTimelock"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1133:122:71"
                  },
                  "src": "1119:137:71"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 15567,
                    "nodeType": "StructuredDocumentation",
                    "src": "1262:158:71",
                    "text": " @notice Emitted when target prize distribution is pushed.\n @param drawId    Draw ID\n @param prizeDistribution PrizeDistribution"
                  },
                  "id": 15574,
                  "name": "PrizeDistributionPushed",
                  "nameLocation": "1431:23:71",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 15573,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15569,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "drawId",
                        "nameLocation": "1479:6:71",
                        "nodeType": "VariableDeclaration",
                        "scope": 15574,
                        "src": "1464:21:71",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 15568,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1464:6:71",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15572,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "prizeDistribution",
                        "nameLocation": "1538:17:71",
                        "nodeType": "VariableDeclaration",
                        "scope": 15574,
                        "src": "1495:60:71",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$11103_memory_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 15571,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15570,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11103,
                            "src": "1495:42:71"
                          },
                          "referencedDeclaration": 11103,
                          "src": "1495:42:71",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11103_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1454:107:71"
                  },
                  "src": "1425:137:71"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 15575,
                    "nodeType": "StructuredDocumentation",
                    "src": "1622:55:71",
                    "text": "@notice Internal PrizeDistributionBuffer reference."
                  },
                  "functionSelector": "0840bbdd",
                  "id": 15578,
                  "mutability": "immutable",
                  "name": "prizeDistributionBuffer",
                  "nameLocation": "1724:23:71",
                  "nodeType": "VariableDeclaration",
                  "scope": 15651,
                  "src": "1682:65:71",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11079",
                    "typeString": "contract IPrizeDistributionBuffer"
                  },
                  "typeName": {
                    "id": 15577,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 15576,
                      "name": "IPrizeDistributionBuffer",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 11079,
                      "src": "1682:24:71"
                    },
                    "referencedDeclaration": 11079,
                    "src": "1682:24:71",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11079",
                      "typeString": "contract IPrizeDistributionBuffer"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 15579,
                    "nodeType": "StructuredDocumentation",
                    "src": "1754:38:71",
                    "text": "@notice Timelock struct reference."
                  },
                  "functionSelector": "d33219b4",
                  "id": 15582,
                  "mutability": "mutable",
                  "name": "timelock",
                  "nameLocation": "1828:8:71",
                  "nodeType": "VariableDeclaration",
                  "scope": 15651,
                  "src": "1797:39:71",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$15999",
                    "typeString": "contract IDrawCalculatorTimelock"
                  },
                  "typeName": {
                    "id": 15581,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 15580,
                      "name": "IDrawCalculatorTimelock",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 15999,
                      "src": "1797:23:71"
                    },
                    "referencedDeclaration": 15999,
                    "src": "1797:23:71",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$15999",
                      "typeString": "contract IDrawCalculatorTimelock"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 15610,
                    "nodeType": "Block",
                    "src": "2359:158:71",
                    "statements": [
                      {
                        "expression": {
                          "id": 15599,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 15597,
                            "name": "prizeDistributionBuffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15578,
                            "src": "2369:23:71",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11079",
                              "typeString": "contract IPrizeDistributionBuffer"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 15598,
                            "name": "_prizeDistributionBuffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15588,
                            "src": "2395:24:71",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11079",
                              "typeString": "contract IPrizeDistributionBuffer"
                            }
                          },
                          "src": "2369:50:71",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11079",
                            "typeString": "contract IPrizeDistributionBuffer"
                          }
                        },
                        "id": 15600,
                        "nodeType": "ExpressionStatement",
                        "src": "2369:50:71"
                      },
                      {
                        "expression": {
                          "id": 15603,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 15601,
                            "name": "timelock",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15582,
                            "src": "2429:8:71",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$15999",
                              "typeString": "contract IDrawCalculatorTimelock"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 15602,
                            "name": "_timelock",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15591,
                            "src": "2440:9:71",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$15999",
                              "typeString": "contract IDrawCalculatorTimelock"
                            }
                          },
                          "src": "2429:20:71",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$15999",
                            "typeString": "contract IDrawCalculatorTimelock"
                          }
                        },
                        "id": 15604,
                        "nodeType": "ExpressionStatement",
                        "src": "2429:20:71"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 15606,
                              "name": "_prizeDistributionBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15588,
                              "src": "2474:24:71",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11079",
                                "typeString": "contract IPrizeDistributionBuffer"
                              }
                            },
                            {
                              "id": 15607,
                              "name": "_timelock",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15591,
                              "src": "2500:9:71",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$15999",
                                "typeString": "contract IDrawCalculatorTimelock"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11079",
                                "typeString": "contract IPrizeDistributionBuffer"
                              },
                              {
                                "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$15999",
                                "typeString": "contract IDrawCalculatorTimelock"
                              }
                            ],
                            "id": 15605,
                            "name": "Deployed",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15566,
                            "src": "2465:8:71",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_contract$_IPrizeDistributionBuffer_$11079_$_t_contract$_IDrawCalculatorTimelock_$15999_$returns$__$",
                              "typeString": "function (contract IPrizeDistributionBuffer,contract IDrawCalculatorTimelock)"
                            }
                          },
                          "id": 15608,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2465:45:71",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 15609,
                        "nodeType": "EmitStatement",
                        "src": "2460:50:71"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 15583,
                    "nodeType": "StructuredDocumentation",
                    "src": "1887:307:71",
                    "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": 15611,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 15594,
                          "name": "_owner",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 15585,
                          "src": "2351:6:71",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        }
                      ],
                      "id": 15595,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 15593,
                        "name": "Ownable",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5355,
                        "src": "2343:7:71"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "2343:15:71"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15592,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15585,
                        "mutability": "mutable",
                        "name": "_owner",
                        "nameLocation": "2228:6:71",
                        "nodeType": "VariableDeclaration",
                        "scope": 15611,
                        "src": "2220:14:71",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 15584,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2220:7:71",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15588,
                        "mutability": "mutable",
                        "name": "_prizeDistributionBuffer",
                        "nameLocation": "2269:24:71",
                        "nodeType": "VariableDeclaration",
                        "scope": 15611,
                        "src": "2244:49:71",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11079",
                          "typeString": "contract IPrizeDistributionBuffer"
                        },
                        "typeName": {
                          "id": 15587,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15586,
                            "name": "IPrizeDistributionBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11079,
                            "src": "2244:24:71"
                          },
                          "referencedDeclaration": 11079,
                          "src": "2244:24:71",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11079",
                            "typeString": "contract IPrizeDistributionBuffer"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15591,
                        "mutability": "mutable",
                        "name": "_timelock",
                        "nameLocation": "2327:9:71",
                        "nodeType": "VariableDeclaration",
                        "scope": 15611,
                        "src": "2303:33:71",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$15999",
                          "typeString": "contract IDrawCalculatorTimelock"
                        },
                        "typeName": {
                          "id": 15590,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15589,
                            "name": "IDrawCalculatorTimelock",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 15999,
                            "src": "2303:23:71"
                          },
                          "referencedDeclaration": 15999,
                          "src": "2303:23:71",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$15999",
                            "typeString": "contract IDrawCalculatorTimelock"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2210:132:71"
                  },
                  "returnParameters": {
                    "id": 15596,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2359:0:71"
                  },
                  "scope": 15651,
                  "src": "2199:318:71",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 15649,
                    "nodeType": "Block",
                    "src": "2916:324:71",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 15626,
                                "name": "_draw",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 15615,
                                "src": "3014:5:71",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Draw_$10697_calldata_ptr",
                                  "typeString": "struct IDrawBeacon.Draw calldata"
                                }
                              },
                              "id": 15627,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "drawId",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 10690,
                              "src": "3014:12:71",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              },
                              "id": 15632,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 15628,
                                  "name": "_draw",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 15615,
                                  "src": "3028:5:71",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Draw_$10697_calldata_ptr",
                                    "typeString": "struct IDrawBeacon.Draw calldata"
                                  }
                                },
                                "id": 15629,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "timestamp",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 10692,
                                "src": "3028:15:71",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "+",
                              "rightExpression": {
                                "expression": {
                                  "id": 15630,
                                  "name": "_draw",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 15615,
                                  "src": "3046:5:71",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Draw_$10697_calldata_ptr",
                                    "typeString": "struct IDrawBeacon.Draw calldata"
                                  }
                                },
                                "id": 15631,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "beaconPeriodSeconds",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 10696,
                                "src": "3046:25:71",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "src": "3028:43:71",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            ],
                            "expression": {
                              "id": 15623,
                              "name": "timelock",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15582,
                              "src": "3000:8:71",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$15999",
                                "typeString": "contract IDrawCalculatorTimelock"
                              }
                            },
                            "id": 15625,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "lock",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 15971,
                            "src": "3000:13:71",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_uint32_$_t_uint64_$returns$_t_bool_$",
                              "typeString": "function (uint32,uint64) external returns (bool)"
                            }
                          },
                          "id": 15633,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3000:72:71",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 15634,
                        "nodeType": "ExpressionStatement",
                        "src": "3000:72:71"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 15638,
                                "name": "_draw",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 15615,
                                "src": "3128:5:71",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Draw_$10697_calldata_ptr",
                                  "typeString": "struct IDrawBeacon.Draw calldata"
                                }
                              },
                              "id": 15639,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "drawId",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 10690,
                              "src": "3128:12:71",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 15640,
                              "name": "_prizeDistribution",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15618,
                              "src": "3142:18:71",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$11103_memory_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$11103_memory_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                              }
                            ],
                            "expression": {
                              "id": 15635,
                              "name": "prizeDistributionBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15578,
                              "src": "3082:23:71",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11079",
                                "typeString": "contract IPrizeDistributionBuffer"
                              }
                            },
                            "id": 15637,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "pushPrizeDistribution",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11067,
                            "src": "3082:45:71",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_uint32_$_t_struct$_PrizeDistribution_$11103_memory_ptr_$returns$_t_bool_$",
                              "typeString": "function (uint32,struct IPrizeDistributionSource.PrizeDistribution memory) external returns (bool)"
                            }
                          },
                          "id": 15641,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3082:79:71",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 15642,
                        "nodeType": "ExpressionStatement",
                        "src": "3082:79:71"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 15644,
                                "name": "_draw",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 15615,
                                "src": "3200:5:71",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Draw_$10697_calldata_ptr",
                                  "typeString": "struct IDrawBeacon.Draw calldata"
                                }
                              },
                              "id": 15645,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "drawId",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 10690,
                              "src": "3200:12:71",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 15646,
                              "name": "_prizeDistribution",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15618,
                              "src": "3214:18:71",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$11103_memory_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$11103_memory_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                              }
                            ],
                            "id": 15643,
                            "name": "PrizeDistributionPushed",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15574,
                            "src": "3176:23:71",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint32_$_t_struct$_PrizeDistribution_$11103_memory_ptr_$returns$__$",
                              "typeString": "function (uint32,struct IPrizeDistributionSource.PrizeDistribution memory)"
                            }
                          },
                          "id": 15647,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3176:57:71",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 15648,
                        "nodeType": "EmitStatement",
                        "src": "3171:62:71"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 15612,
                    "nodeType": "StructuredDocumentation",
                    "src": "2523:221:71",
                    "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": 15650,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 15621,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 15620,
                        "name": "onlyManagerOrOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5199,
                        "src": "2897:18:71"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "2897:18:71"
                    }
                  ],
                  "name": "push",
                  "nameLocation": "2758:4:71",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15619,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15615,
                        "mutability": "mutable",
                        "name": "_draw",
                        "nameLocation": "2798:5:71",
                        "nodeType": "VariableDeclaration",
                        "scope": 15650,
                        "src": "2772:31:71",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Draw_$10697_calldata_ptr",
                          "typeString": "struct IDrawBeacon.Draw"
                        },
                        "typeName": {
                          "id": 15614,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15613,
                            "name": "IDrawBeacon.Draw",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 10697,
                            "src": "2772:16:71"
                          },
                          "referencedDeclaration": 10697,
                          "src": "2772:16:71",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$10697_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15618,
                        "mutability": "mutable",
                        "name": "_prizeDistribution",
                        "nameLocation": "2863:18:71",
                        "nodeType": "VariableDeclaration",
                        "scope": 15650,
                        "src": "2813:68:71",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$11103_memory_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 15617,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15616,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11103,
                            "src": "2813:42:71"
                          },
                          "referencedDeclaration": 11103,
                          "src": "2813:42:71",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11103_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2762:125:71"
                  },
                  "returnParameters": {
                    "id": 15622,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2916:0:71"
                  },
                  "scope": 15651,
                  "src": "2749:491:71",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 15652,
              "src": "813:2429:71",
              "usedErrors": []
            }
          ],
          "src": "36:3207:71"
        },
        "id": 71
      },
      "@pooltogether/v4-timelocks/contracts/L2TimelockTrigger.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-timelocks/contracts/L2TimelockTrigger.sol",
          "exportedSymbols": {
            "Address": [
              1775
            ],
            "DrawRingBufferLib": [
              11966
            ],
            "ExtendedSafeCastLib": [
              12045
            ],
            "IControlledToken": [
              10681
            ],
            "IDrawBeacon": [
              10853
            ],
            "IDrawBuffer": [
              10930
            ],
            "IDrawCalculator": [
              11003
            ],
            "IDrawCalculatorTimelock": [
              15999
            ],
            "IERC20": [
              890
            ],
            "IPrizeDistributionBuffer": [
              11079
            ],
            "IPrizeDistributionSource": [
              11115
            ],
            "IPrizeDistributor": [
              11213
            ],
            "ITicket": [
              11825
            ],
            "L2TimelockTrigger": [
              15780
            ],
            "Manageable": [
              5200
            ],
            "ObservationLib": [
              12204
            ],
            "OverflowSafeComparatorLib": [
              12376
            ],
            "Ownable": [
              5355
            ],
            "PrizeDistributionBuffer": [
              8796
            ],
            "PrizeDistributor": [
              9169
            ],
            "RNGInterface": [
              5835
            ],
            "RingBufferLib": [
              12461
            ],
            "SafeCast": [
              3225
            ],
            "SafeERC20": [
              1344
            ],
            "TwabLib": [
              13211
            ]
          },
          "id": 15781,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 15653,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "36:22:72"
            },
            {
              "absolutePath": "@pooltogether/owner-manager-contracts/contracts/Manageable.sol",
              "file": "@pooltogether/owner-manager-contracts/contracts/Manageable.sol",
              "id": 15654,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15781,
              "sourceUnit": 5201,
              "src": "59:72:72",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol",
              "file": "@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol",
              "id": 15655,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15781,
              "sourceUnit": 10854,
              "src": "132:68:72",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionBuffer.sol",
              "file": "@pooltogether/v4-core/contracts/interfaces/IPrizeDistributionBuffer.sol",
              "id": 15656,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15781,
              "sourceUnit": 11080,
              "src": "201:81:72",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol",
              "file": "@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol",
              "id": 15657,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15781,
              "sourceUnit": 10931,
              "src": "283:68:72",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-timelocks/contracts/interfaces/IDrawCalculatorTimelock.sol",
              "file": "./interfaces/IDrawCalculatorTimelock.sol",
              "id": 15658,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15781,
              "sourceUnit": 16000,
              "src": "352:50:72",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 15660,
                    "name": "Manageable",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 5200,
                    "src": "981:10:72"
                  },
                  "id": 15661,
                  "nodeType": "InheritanceSpecifier",
                  "src": "981:10:72"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 15659,
                "nodeType": "StructuredDocumentation",
                "src": "404:546:72",
                "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": 15780,
              "linearizedBaseContracts": [
                15780,
                5200,
                5355
              ],
              "name": "L2TimelockTrigger",
              "nameLocation": "960:17:72",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 15662,
                    "nodeType": "StructuredDocumentation",
                    "src": "998:50:72",
                    "text": "@notice Emitted when the contract is deployed."
                  },
                  "id": 15673,
                  "name": "Deployed",
                  "nameLocation": "1059:8:72",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 15672,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15665,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "drawBuffer",
                        "nameLocation": "1097:10:72",
                        "nodeType": "VariableDeclaration",
                        "scope": 15673,
                        "src": "1077:30:72",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                          "typeString": "contract IDrawBuffer"
                        },
                        "typeName": {
                          "id": 15664,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15663,
                            "name": "IDrawBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 10930,
                            "src": "1077:11:72"
                          },
                          "referencedDeclaration": 10930,
                          "src": "1077:11:72",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15668,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "prizeDistributionBuffer",
                        "nameLocation": "1150:23:72",
                        "nodeType": "VariableDeclaration",
                        "scope": 15673,
                        "src": "1117:56:72",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11079",
                          "typeString": "contract IPrizeDistributionBuffer"
                        },
                        "typeName": {
                          "id": 15667,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15666,
                            "name": "IPrizeDistributionBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11079,
                            "src": "1117:24:72"
                          },
                          "referencedDeclaration": 11079,
                          "src": "1117:24:72",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11079",
                            "typeString": "contract IPrizeDistributionBuffer"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15671,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "timelock",
                        "nameLocation": "1215:8:72",
                        "nodeType": "VariableDeclaration",
                        "scope": 15673,
                        "src": "1183:40:72",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$15999",
                          "typeString": "contract IDrawCalculatorTimelock"
                        },
                        "typeName": {
                          "id": 15670,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15669,
                            "name": "IDrawCalculatorTimelock",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 15999,
                            "src": "1183:23:72"
                          },
                          "referencedDeclaration": 15999,
                          "src": "1183:23:72",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$15999",
                            "typeString": "contract IDrawCalculatorTimelock"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1067:162:72"
                  },
                  "src": "1053:177:72"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 15674,
                    "nodeType": "StructuredDocumentation",
                    "src": "1236:190:72",
                    "text": " @notice Emitted when Draw and PrizeDistribution are pushed to external contracts.\n @param drawId            Draw ID\n @param prizeDistribution PrizeDistribution"
                  },
                  "id": 15684,
                  "name": "DrawAndPrizeDistributionPushed",
                  "nameLocation": "1437:30:72",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 15683,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15676,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "drawId",
                        "nameLocation": "1492:6:72",
                        "nodeType": "VariableDeclaration",
                        "scope": 15684,
                        "src": "1477:21:72",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 15675,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1477:6:72",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15679,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "draw",
                        "nameLocation": "1525:4:72",
                        "nodeType": "VariableDeclaration",
                        "scope": 15684,
                        "src": "1508:21:72",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw"
                        },
                        "typeName": {
                          "id": 15678,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15677,
                            "name": "IDrawBeacon.Draw",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 10697,
                            "src": "1508:16:72"
                          },
                          "referencedDeclaration": 10697,
                          "src": "1508:16:72",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$10697_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15682,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "prizeDistribution",
                        "nameLocation": "1582:17:72",
                        "nodeType": "VariableDeclaration",
                        "scope": 15684,
                        "src": "1539:60:72",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$11103_memory_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 15681,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15680,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11103,
                            "src": "1539:42:72"
                          },
                          "referencedDeclaration": 11103,
                          "src": "1539:42:72",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11103_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1467:138:72"
                  },
                  "src": "1431:175:72"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 15685,
                    "nodeType": "StructuredDocumentation",
                    "src": "1666:44:72",
                    "text": "@notice The DrawBuffer contract address."
                  },
                  "functionSelector": "ce343bb6",
                  "id": 15688,
                  "mutability": "immutable",
                  "name": "drawBuffer",
                  "nameLocation": "1744:10:72",
                  "nodeType": "VariableDeclaration",
                  "scope": 15780,
                  "src": "1715:39:72",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                    "typeString": "contract IDrawBuffer"
                  },
                  "typeName": {
                    "id": 15687,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 15686,
                      "name": "IDrawBuffer",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 10930,
                      "src": "1715:11:72"
                    },
                    "referencedDeclaration": 10930,
                    "src": "1715:11:72",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                      "typeString": "contract IDrawBuffer"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 15689,
                    "nodeType": "StructuredDocumentation",
                    "src": "1761:55:72",
                    "text": "@notice Internal PrizeDistributionBuffer reference."
                  },
                  "functionSelector": "0840bbdd",
                  "id": 15692,
                  "mutability": "immutable",
                  "name": "prizeDistributionBuffer",
                  "nameLocation": "1863:23:72",
                  "nodeType": "VariableDeclaration",
                  "scope": 15780,
                  "src": "1821:65:72",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11079",
                    "typeString": "contract IPrizeDistributionBuffer"
                  },
                  "typeName": {
                    "id": 15691,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 15690,
                      "name": "IPrizeDistributionBuffer",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 11079,
                      "src": "1821:24:72"
                    },
                    "referencedDeclaration": 11079,
                    "src": "1821:24:72",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11079",
                      "typeString": "contract IPrizeDistributionBuffer"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 15693,
                    "nodeType": "StructuredDocumentation",
                    "src": "1893:38:72",
                    "text": "@notice Timelock struct reference."
                  },
                  "functionSelector": "d33219b4",
                  "id": 15696,
                  "mutability": "mutable",
                  "name": "timelock",
                  "nameLocation": "1967:8:72",
                  "nodeType": "VariableDeclaration",
                  "scope": 15780,
                  "src": "1936:39:72",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$15999",
                    "typeString": "contract IDrawCalculatorTimelock"
                  },
                  "typeName": {
                    "id": 15695,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 15694,
                      "name": "IDrawCalculatorTimelock",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 15999,
                      "src": "1936:23:72"
                    },
                    "referencedDeclaration": 15999,
                    "src": "1936:23:72",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$15999",
                      "typeString": "contract IDrawCalculatorTimelock"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 15732,
                    "nodeType": "Block",
                    "src": "2594:205:72",
                    "statements": [
                      {
                        "expression": {
                          "id": 15716,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 15714,
                            "name": "drawBuffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15688,
                            "src": "2604:10:72",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                              "typeString": "contract IDrawBuffer"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 15715,
                            "name": "_drawBuffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15702,
                            "src": "2617:11:72",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                              "typeString": "contract IDrawBuffer"
                            }
                          },
                          "src": "2604:24:72",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "id": 15717,
                        "nodeType": "ExpressionStatement",
                        "src": "2604:24:72"
                      },
                      {
                        "expression": {
                          "id": 15720,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 15718,
                            "name": "prizeDistributionBuffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15692,
                            "src": "2638:23:72",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11079",
                              "typeString": "contract IPrizeDistributionBuffer"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 15719,
                            "name": "_prizeDistributionBuffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15705,
                            "src": "2664:24:72",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11079",
                              "typeString": "contract IPrizeDistributionBuffer"
                            }
                          },
                          "src": "2638:50:72",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11079",
                            "typeString": "contract IPrizeDistributionBuffer"
                          }
                        },
                        "id": 15721,
                        "nodeType": "ExpressionStatement",
                        "src": "2638:50:72"
                      },
                      {
                        "expression": {
                          "id": 15724,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 15722,
                            "name": "timelock",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15696,
                            "src": "2698:8:72",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$15999",
                              "typeString": "contract IDrawCalculatorTimelock"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 15723,
                            "name": "_timelock",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15708,
                            "src": "2709:9:72",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$15999",
                              "typeString": "contract IDrawCalculatorTimelock"
                            }
                          },
                          "src": "2698:20:72",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$15999",
                            "typeString": "contract IDrawCalculatorTimelock"
                          }
                        },
                        "id": 15725,
                        "nodeType": "ExpressionStatement",
                        "src": "2698:20:72"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 15727,
                              "name": "_drawBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15702,
                              "src": "2743:11:72",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                                "typeString": "contract IDrawBuffer"
                              }
                            },
                            {
                              "id": 15728,
                              "name": "_prizeDistributionBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15705,
                              "src": "2756:24:72",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11079",
                                "typeString": "contract IPrizeDistributionBuffer"
                              }
                            },
                            {
                              "id": 15729,
                              "name": "_timelock",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15708,
                              "src": "2782:9:72",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$15999",
                                "typeString": "contract IDrawCalculatorTimelock"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                                "typeString": "contract IDrawBuffer"
                              },
                              {
                                "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11079",
                                "typeString": "contract IPrizeDistributionBuffer"
                              },
                              {
                                "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$15999",
                                "typeString": "contract IDrawCalculatorTimelock"
                              }
                            ],
                            "id": 15726,
                            "name": "Deployed",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15673,
                            "src": "2734:8:72",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_contract$_IDrawBuffer_$10930_$_t_contract$_IPrizeDistributionBuffer_$11079_$_t_contract$_IDrawCalculatorTimelock_$15999_$returns$__$",
                              "typeString": "function (contract IDrawBuffer,contract IPrizeDistributionBuffer,contract IDrawCalculatorTimelock)"
                            }
                          },
                          "id": 15730,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2734:58:72",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 15731,
                        "nodeType": "EmitStatement",
                        "src": "2729:63:72"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 15697,
                    "nodeType": "StructuredDocumentation",
                    "src": "2026:370:72",
                    "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": 15733,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 15711,
                          "name": "_owner",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 15699,
                          "src": "2586:6:72",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        }
                      ],
                      "id": 15712,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 15710,
                        "name": "Ownable",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5355,
                        "src": "2578:7:72"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "2578:15:72"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15709,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15699,
                        "mutability": "mutable",
                        "name": "_owner",
                        "nameLocation": "2430:6:72",
                        "nodeType": "VariableDeclaration",
                        "scope": 15733,
                        "src": "2422:14:72",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 15698,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2422:7:72",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15702,
                        "mutability": "mutable",
                        "name": "_drawBuffer",
                        "nameLocation": "2458:11:72",
                        "nodeType": "VariableDeclaration",
                        "scope": 15733,
                        "src": "2446:23:72",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                          "typeString": "contract IDrawBuffer"
                        },
                        "typeName": {
                          "id": 15701,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15700,
                            "name": "IDrawBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 10930,
                            "src": "2446:11:72"
                          },
                          "referencedDeclaration": 10930,
                          "src": "2446:11:72",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15705,
                        "mutability": "mutable",
                        "name": "_prizeDistributionBuffer",
                        "nameLocation": "2504:24:72",
                        "nodeType": "VariableDeclaration",
                        "scope": 15733,
                        "src": "2479:49:72",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11079",
                          "typeString": "contract IPrizeDistributionBuffer"
                        },
                        "typeName": {
                          "id": 15704,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15703,
                            "name": "IPrizeDistributionBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11079,
                            "src": "2479:24:72"
                          },
                          "referencedDeclaration": 11079,
                          "src": "2479:24:72",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11079",
                            "typeString": "contract IPrizeDistributionBuffer"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15708,
                        "mutability": "mutable",
                        "name": "_timelock",
                        "nameLocation": "2562:9:72",
                        "nodeType": "VariableDeclaration",
                        "scope": 15733,
                        "src": "2538:33:72",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$15999",
                          "typeString": "contract IDrawCalculatorTimelock"
                        },
                        "typeName": {
                          "id": 15707,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15706,
                            "name": "IDrawCalculatorTimelock",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 15999,
                            "src": "2538:23:72"
                          },
                          "referencedDeclaration": 15999,
                          "src": "2538:23:72",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$15999",
                            "typeString": "contract IDrawCalculatorTimelock"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2412:165:72"
                  },
                  "returnParameters": {
                    "id": 15713,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2594:0:72"
                  },
                  "scope": 15780,
                  "src": "2401:398:72",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 15778,
                    "nodeType": "Block",
                    "src": "3312:300:72",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 15748,
                                "name": "_draw",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 15737,
                                "src": "3336:5:72",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                                  "typeString": "struct IDrawBeacon.Draw memory"
                                }
                              },
                              "id": 15749,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "drawId",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 10690,
                              "src": "3336:12:72",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              },
                              "id": 15754,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 15750,
                                  "name": "_draw",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 15737,
                                  "src": "3350:5:72",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                                    "typeString": "struct IDrawBeacon.Draw memory"
                                  }
                                },
                                "id": 15751,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "timestamp",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 10692,
                                "src": "3350:15:72",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "+",
                              "rightExpression": {
                                "expression": {
                                  "id": 15752,
                                  "name": "_draw",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 15737,
                                  "src": "3368:5:72",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                                    "typeString": "struct IDrawBeacon.Draw memory"
                                  }
                                },
                                "id": 15753,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "beaconPeriodSeconds",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 10696,
                                "src": "3368:25:72",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "src": "3350:43:72",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            ],
                            "expression": {
                              "id": 15745,
                              "name": "timelock",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15696,
                              "src": "3322:8:72",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$15999",
                                "typeString": "contract IDrawCalculatorTimelock"
                              }
                            },
                            "id": 15747,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "lock",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 15971,
                            "src": "3322:13:72",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_uint32_$_t_uint64_$returns$_t_bool_$",
                              "typeString": "function (uint32,uint64) external returns (bool)"
                            }
                          },
                          "id": 15755,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3322:72:72",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 15756,
                        "nodeType": "ExpressionStatement",
                        "src": "3322:72:72"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 15760,
                              "name": "_draw",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15737,
                              "src": "3424:5:72",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory"
                              }
                            ],
                            "expression": {
                              "id": 15757,
                              "name": "drawBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15688,
                              "src": "3404:10:72",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                                "typeString": "contract IDrawBuffer"
                              }
                            },
                            "id": 15759,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "pushDraw",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 10920,
                            "src": "3404:19:72",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_struct$_Draw_$10697_memory_ptr_$returns$_t_uint32_$",
                              "typeString": "function (struct IDrawBeacon.Draw memory) external returns (uint32)"
                            }
                          },
                          "id": 15761,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3404:26:72",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "id": 15762,
                        "nodeType": "ExpressionStatement",
                        "src": "3404:26:72"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 15766,
                                "name": "_draw",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 15737,
                                "src": "3486:5:72",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                                  "typeString": "struct IDrawBeacon.Draw memory"
                                }
                              },
                              "id": 15767,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "drawId",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 10690,
                              "src": "3486:12:72",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 15768,
                              "name": "_prizeDistribution",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15740,
                              "src": "3500:18:72",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$11103_memory_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$11103_memory_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                              }
                            ],
                            "expression": {
                              "id": 15763,
                              "name": "prizeDistributionBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15692,
                              "src": "3440:23:72",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IPrizeDistributionBuffer_$11079",
                                "typeString": "contract IPrizeDistributionBuffer"
                              }
                            },
                            "id": 15765,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "pushPrizeDistribution",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11067,
                            "src": "3440:45:72",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_uint32_$_t_struct$_PrizeDistribution_$11103_memory_ptr_$returns$_t_bool_$",
                              "typeString": "function (uint32,struct IPrizeDistributionSource.PrizeDistribution memory) external returns (bool)"
                            }
                          },
                          "id": 15769,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3440:79:72",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 15770,
                        "nodeType": "ExpressionStatement",
                        "src": "3440:79:72"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 15772,
                                "name": "_draw",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 15737,
                                "src": "3565:5:72",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                                  "typeString": "struct IDrawBeacon.Draw memory"
                                }
                              },
                              "id": 15773,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "drawId",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 10690,
                              "src": "3565:12:72",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 15774,
                              "name": "_draw",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15737,
                              "src": "3579:5:72",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory"
                              }
                            },
                            {
                              "id": 15775,
                              "name": "_prizeDistribution",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15740,
                              "src": "3586:18:72",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$11103_memory_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory"
                              },
                              {
                                "typeIdentifier": "t_struct$_PrizeDistribution_$11103_memory_ptr",
                                "typeString": "struct IPrizeDistributionSource.PrizeDistribution memory"
                              }
                            ],
                            "id": 15771,
                            "name": "DrawAndPrizeDistributionPushed",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15684,
                            "src": "3534:30:72",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint32_$_t_struct$_Draw_$10697_memory_ptr_$_t_struct$_PrizeDistribution_$11103_memory_ptr_$returns$__$",
                              "typeString": "function (uint32,struct IDrawBeacon.Draw memory,struct IPrizeDistributionSource.PrizeDistribution memory)"
                            }
                          },
                          "id": 15776,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "3534:71:72",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 15777,
                        "nodeType": "EmitStatement",
                        "src": "3529:76:72"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 15734,
                    "nodeType": "StructuredDocumentation",
                    "src": "2861:281:72",
                    "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": 15779,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 15743,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 15742,
                        "name": "onlyManagerOrOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5199,
                        "src": "3293:18:72"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "3293:18:72"
                    }
                  ],
                  "name": "push",
                  "nameLocation": "3156:4:72",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15741,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15737,
                        "mutability": "mutable",
                        "name": "_draw",
                        "nameLocation": "3194:5:72",
                        "nodeType": "VariableDeclaration",
                        "scope": 15779,
                        "src": "3170:29:72",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw"
                        },
                        "typeName": {
                          "id": 15736,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15735,
                            "name": "IDrawBeacon.Draw",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 10697,
                            "src": "3170:16:72"
                          },
                          "referencedDeclaration": 10697,
                          "src": "3170:16:72",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$10697_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15740,
                        "mutability": "mutable",
                        "name": "_prizeDistribution",
                        "nameLocation": "3259:18:72",
                        "nodeType": "VariableDeclaration",
                        "scope": 15779,
                        "src": "3209:68:72",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_PrizeDistribution_$11103_memory_ptr",
                          "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                        },
                        "typeName": {
                          "id": 15739,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15738,
                            "name": "IPrizeDistributionBuffer.PrizeDistribution",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11103,
                            "src": "3209:42:72"
                          },
                          "referencedDeclaration": 11103,
                          "src": "3209:42:72",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_PrizeDistribution_$11103_storage_ptr",
                            "typeString": "struct IPrizeDistributionSource.PrizeDistribution"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3160:123:72"
                  },
                  "returnParameters": {
                    "id": 15744,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "3312:0:72"
                  },
                  "scope": 15780,
                  "src": "3147:465:72",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 15781,
              "src": "951:2663:72",
              "usedErrors": []
            }
          ],
          "src": "36:3579:72"
        },
        "id": 72
      },
      "@pooltogether/v4-timelocks/contracts/ReceiverTimelockTrigger.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-timelocks/contracts/ReceiverTimelockTrigger.sol",
          "exportedSymbols": {
            "Address": [
              1775
            ],
            "DrawRingBufferLib": [
              11966
            ],
            "ExtendedSafeCastLib": [
              12045
            ],
            "IControlledToken": [
              10681
            ],
            "IDrawBeacon": [
              10853
            ],
            "IDrawBuffer": [
              10930
            ],
            "IDrawCalculator": [
              11003
            ],
            "IDrawCalculatorTimelock": [
              15999
            ],
            "IERC20": [
              890
            ],
            "IPrizeDistributionBuffer": [
              11079
            ],
            "IPrizeDistributionFactory": [
              16009
            ],
            "IPrizeDistributionSource": [
              11115
            ],
            "IPrizeDistributor": [
              11213
            ],
            "IReceiverTimelockTrigger": [
              16048
            ],
            "ITicket": [
              11825
            ],
            "Manageable": [
              5200
            ],
            "ObservationLib": [
              12204
            ],
            "OverflowSafeComparatorLib": [
              12376
            ],
            "Ownable": [
              5355
            ],
            "PrizeDistributionBuffer": [
              8796
            ],
            "PrizeDistributor": [
              9169
            ],
            "RNGInterface": [
              5835
            ],
            "ReceiverTimelockTrigger": [
              15889
            ],
            "RingBufferLib": [
              12461
            ],
            "SafeCast": [
              3225
            ],
            "SafeERC20": [
              1344
            ],
            "TwabLib": [
              13211
            ]
          },
          "id": 15890,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 15782,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "36:22:73"
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol",
              "file": "@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol",
              "id": 15783,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15890,
              "sourceUnit": 10854,
              "src": "59:68:73",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol",
              "file": "@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol",
              "id": 15784,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15890,
              "sourceUnit": 10931,
              "src": "128:68:73",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/owner-manager-contracts/contracts/Manageable.sol",
              "file": "@pooltogether/owner-manager-contracts/contracts/Manageable.sol",
              "id": 15785,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15890,
              "sourceUnit": 5201,
              "src": "197:72:73",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-timelocks/contracts/interfaces/IReceiverTimelockTrigger.sol",
              "file": "./interfaces/IReceiverTimelockTrigger.sol",
              "id": 15786,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15890,
              "sourceUnit": 16049,
              "src": "270:51:73",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-timelocks/contracts/interfaces/IPrizeDistributionFactory.sol",
              "file": "./interfaces/IPrizeDistributionFactory.sol",
              "id": 15787,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15890,
              "sourceUnit": 16010,
              "src": "322:52:73",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-timelocks/contracts/interfaces/IDrawCalculatorTimelock.sol",
              "file": "./interfaces/IDrawCalculatorTimelock.sol",
              "id": 15788,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15890,
              "sourceUnit": 16000,
              "src": "375:50:73",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 15790,
                    "name": "IReceiverTimelockTrigger",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 16048,
                    "src": "914:24:73"
                  },
                  "id": 15791,
                  "nodeType": "InheritanceSpecifier",
                  "src": "914:24:73"
                },
                {
                  "baseName": {
                    "id": 15792,
                    "name": "Manageable",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 5200,
                    "src": "940:10:73"
                  },
                  "id": 15793,
                  "nodeType": "InheritanceSpecifier",
                  "src": "940:10:73"
                }
              ],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 15789,
                "nodeType": "StructuredDocumentation",
                "src": "427:450:73",
                "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": 15889,
              "linearizedBaseContracts": [
                15889,
                5200,
                5355,
                16048
              ],
              "name": "ReceiverTimelockTrigger",
              "nameLocation": "887:23:73",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "constant": false,
                  "documentation": {
                    "id": 15794,
                    "nodeType": "StructuredDocumentation",
                    "src": "1011:44:73",
                    "text": "@notice The DrawBuffer contract address."
                  },
                  "functionSelector": "ce343bb6",
                  "id": 15797,
                  "mutability": "immutable",
                  "name": "drawBuffer",
                  "nameLocation": "1089:10:73",
                  "nodeType": "VariableDeclaration",
                  "scope": 15889,
                  "src": "1060:39:73",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                    "typeString": "contract IDrawBuffer"
                  },
                  "typeName": {
                    "id": 15796,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 15795,
                      "name": "IDrawBuffer",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 10930,
                      "src": "1060:11:73"
                    },
                    "referencedDeclaration": 10930,
                    "src": "1060:11:73",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                      "typeString": "contract IDrawBuffer"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 15798,
                    "nodeType": "StructuredDocumentation",
                    "src": "1106:56:73",
                    "text": "@notice Internal PrizeDistributionFactory reference."
                  },
                  "functionSelector": "78e072a9",
                  "id": 15801,
                  "mutability": "immutable",
                  "name": "prizeDistributionFactory",
                  "nameLocation": "1210:24:73",
                  "nodeType": "VariableDeclaration",
                  "scope": 15889,
                  "src": "1167:67:73",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IPrizeDistributionFactory_$16009",
                    "typeString": "contract IPrizeDistributionFactory"
                  },
                  "typeName": {
                    "id": 15800,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 15799,
                      "name": "IPrizeDistributionFactory",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 16009,
                      "src": "1167:25:73"
                    },
                    "referencedDeclaration": 16009,
                    "src": "1167:25:73",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IPrizeDistributionFactory_$16009",
                      "typeString": "contract IPrizeDistributionFactory"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 15802,
                    "nodeType": "StructuredDocumentation",
                    "src": "1241:38:73",
                    "text": "@notice Timelock struct reference."
                  },
                  "functionSelector": "d33219b4",
                  "id": 15805,
                  "mutability": "immutable",
                  "name": "timelock",
                  "nameLocation": "1325:8:73",
                  "nodeType": "VariableDeclaration",
                  "scope": 15889,
                  "src": "1284:49:73",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$15999",
                    "typeString": "contract IDrawCalculatorTimelock"
                  },
                  "typeName": {
                    "id": 15804,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 15803,
                      "name": "IDrawCalculatorTimelock",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 15999,
                      "src": "1284:23:73"
                    },
                    "referencedDeclaration": 15999,
                    "src": "1284:23:73",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$15999",
                      "typeString": "contract IDrawCalculatorTimelock"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 15841,
                    "nodeType": "Block",
                    "src": "1885:207:73",
                    "statements": [
                      {
                        "expression": {
                          "id": 15825,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 15823,
                            "name": "drawBuffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15797,
                            "src": "1895:10:73",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                              "typeString": "contract IDrawBuffer"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 15824,
                            "name": "_drawBuffer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15811,
                            "src": "1908:11:73",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                              "typeString": "contract IDrawBuffer"
                            }
                          },
                          "src": "1895:24:73",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "id": 15826,
                        "nodeType": "ExpressionStatement",
                        "src": "1895:24:73"
                      },
                      {
                        "expression": {
                          "id": 15829,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 15827,
                            "name": "prizeDistributionFactory",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15801,
                            "src": "1929:24:73",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IPrizeDistributionFactory_$16009",
                              "typeString": "contract IPrizeDistributionFactory"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 15828,
                            "name": "_prizeDistributionFactory",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15814,
                            "src": "1956:25:73",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IPrizeDistributionFactory_$16009",
                              "typeString": "contract IPrizeDistributionFactory"
                            }
                          },
                          "src": "1929:52:73",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizeDistributionFactory_$16009",
                            "typeString": "contract IPrizeDistributionFactory"
                          }
                        },
                        "id": 15830,
                        "nodeType": "ExpressionStatement",
                        "src": "1929:52:73"
                      },
                      {
                        "expression": {
                          "id": 15833,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 15831,
                            "name": "timelock",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15805,
                            "src": "1991:8:73",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$15999",
                              "typeString": "contract IDrawCalculatorTimelock"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 15832,
                            "name": "_timelock",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 15817,
                            "src": "2002:9:73",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$15999",
                              "typeString": "contract IDrawCalculatorTimelock"
                            }
                          },
                          "src": "1991:20:73",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$15999",
                            "typeString": "contract IDrawCalculatorTimelock"
                          }
                        },
                        "id": 15834,
                        "nodeType": "ExpressionStatement",
                        "src": "1991:20:73"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 15836,
                              "name": "_drawBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15811,
                              "src": "2035:11:73",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                                "typeString": "contract IDrawBuffer"
                              }
                            },
                            {
                              "id": 15837,
                              "name": "_prizeDistributionFactory",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15814,
                              "src": "2048:25:73",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IPrizeDistributionFactory_$16009",
                                "typeString": "contract IPrizeDistributionFactory"
                              }
                            },
                            {
                              "id": 15838,
                              "name": "_timelock",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15817,
                              "src": "2075:9:73",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$15999",
                                "typeString": "contract IDrawCalculatorTimelock"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                                "typeString": "contract IDrawBuffer"
                              },
                              {
                                "typeIdentifier": "t_contract$_IPrizeDistributionFactory_$16009",
                                "typeString": "contract IPrizeDistributionFactory"
                              },
                              {
                                "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$15999",
                                "typeString": "contract IDrawCalculatorTimelock"
                              }
                            ],
                            "id": 15835,
                            "name": "Deployed",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16028,
                            "src": "2026:8:73",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_contract$_IDrawBuffer_$10930_$_t_contract$_IPrizeDistributionFactory_$16009_$_t_contract$_IDrawCalculatorTimelock_$15999_$returns$__$",
                              "typeString": "function (contract IDrawBuffer,contract IPrizeDistributionFactory,contract IDrawCalculatorTimelock)"
                            }
                          },
                          "id": 15839,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2026:59:73",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 15840,
                        "nodeType": "EmitStatement",
                        "src": "2021:64:73"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 15806,
                    "nodeType": "StructuredDocumentation",
                    "src": "1389:296:73",
                    "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": 15842,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [
                        {
                          "id": 15820,
                          "name": "_owner",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 15808,
                          "src": "1877:6:73",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        }
                      ],
                      "id": 15821,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 15819,
                        "name": "Ownable",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5355,
                        "src": "1869:7:73"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "1869:15:73"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15818,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15808,
                        "mutability": "mutable",
                        "name": "_owner",
                        "nameLocation": "1719:6:73",
                        "nodeType": "VariableDeclaration",
                        "scope": 15842,
                        "src": "1711:14:73",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 15807,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1711:7:73",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15811,
                        "mutability": "mutable",
                        "name": "_drawBuffer",
                        "nameLocation": "1747:11:73",
                        "nodeType": "VariableDeclaration",
                        "scope": 15842,
                        "src": "1735:23:73",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                          "typeString": "contract IDrawBuffer"
                        },
                        "typeName": {
                          "id": 15810,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15809,
                            "name": "IDrawBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 10930,
                            "src": "1735:11:73"
                          },
                          "referencedDeclaration": 10930,
                          "src": "1735:11:73",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15814,
                        "mutability": "mutable",
                        "name": "_prizeDistributionFactory",
                        "nameLocation": "1794:25:73",
                        "nodeType": "VariableDeclaration",
                        "scope": 15842,
                        "src": "1768:51:73",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IPrizeDistributionFactory_$16009",
                          "typeString": "contract IPrizeDistributionFactory"
                        },
                        "typeName": {
                          "id": 15813,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15812,
                            "name": "IPrizeDistributionFactory",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 16009,
                            "src": "1768:25:73"
                          },
                          "referencedDeclaration": 16009,
                          "src": "1768:25:73",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizeDistributionFactory_$16009",
                            "typeString": "contract IPrizeDistributionFactory"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15817,
                        "mutability": "mutable",
                        "name": "_timelock",
                        "nameLocation": "1853:9:73",
                        "nodeType": "VariableDeclaration",
                        "scope": 15842,
                        "src": "1829:33:73",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$15999",
                          "typeString": "contract IDrawCalculatorTimelock"
                        },
                        "typeName": {
                          "id": 15816,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15815,
                            "name": "IDrawCalculatorTimelock",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 15999,
                            "src": "1829:23:73"
                          },
                          "referencedDeclaration": 15999,
                          "src": "1829:23:73",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$15999",
                            "typeString": "contract IDrawCalculatorTimelock"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1701:167:73"
                  },
                  "returnParameters": {
                    "id": 15822,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1885:0:73"
                  },
                  "scope": 15889,
                  "src": "1690:402:73",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "baseFunctions": [
                    16047
                  ],
                  "body": {
                    "id": 15887,
                    "nodeType": "Block",
                    "src": "2288:380:73",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 15857,
                                "name": "_draw",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 15846,
                                "src": "2312:5:73",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                                  "typeString": "struct IDrawBeacon.Draw memory"
                                }
                              },
                              "id": 15858,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "drawId",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 10690,
                              "src": "2312:12:73",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              },
                              "id": 15863,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 15859,
                                  "name": "_draw",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 15846,
                                  "src": "2326:5:73",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                                    "typeString": "struct IDrawBeacon.Draw memory"
                                  }
                                },
                                "id": 15860,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "timestamp",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 10692,
                                "src": "2326:15:73",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint64",
                                  "typeString": "uint64"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "+",
                              "rightExpression": {
                                "expression": {
                                  "id": 15861,
                                  "name": "_draw",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 15846,
                                  "src": "2344:5:73",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                                    "typeString": "struct IDrawBeacon.Draw memory"
                                  }
                                },
                                "id": 15862,
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "beaconPeriodSeconds",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 10696,
                                "src": "2344:25:73",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint32",
                                  "typeString": "uint32"
                                }
                              },
                              "src": "2326:43:73",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint64",
                                "typeString": "uint64"
                              }
                            ],
                            "expression": {
                              "id": 15854,
                              "name": "timelock",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15805,
                              "src": "2298:8:73",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$15999",
                                "typeString": "contract IDrawCalculatorTimelock"
                              }
                            },
                            "id": 15856,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "lock",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 15971,
                            "src": "2298:13:73",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_uint32_$_t_uint64_$returns$_t_bool_$",
                              "typeString": "function (uint32,uint64) external returns (bool)"
                            }
                          },
                          "id": 15864,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2298:72:73",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 15865,
                        "nodeType": "ExpressionStatement",
                        "src": "2298:72:73"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 15869,
                              "name": "_draw",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15846,
                              "src": "2400:5:73",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory"
                              }
                            ],
                            "expression": {
                              "id": 15866,
                              "name": "drawBuffer",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15797,
                              "src": "2380:10:73",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                                "typeString": "contract IDrawBuffer"
                              }
                            },
                            "id": 15868,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "pushDraw",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 10920,
                            "src": "2380:19:73",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_struct$_Draw_$10697_memory_ptr_$returns$_t_uint32_$",
                              "typeString": "function (struct IDrawBeacon.Draw memory) external returns (uint32)"
                            }
                          },
                          "id": 15870,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2380:26:73",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "id": 15871,
                        "nodeType": "ExpressionStatement",
                        "src": "2380:26:73"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 15875,
                                "name": "_draw",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 15846,
                                "src": "2463:5:73",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                                  "typeString": "struct IDrawBeacon.Draw memory"
                                }
                              },
                              "id": 15876,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "drawId",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 10690,
                              "src": "2463:12:73",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 15877,
                              "name": "_totalNetworkTicketSupply",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15848,
                              "src": "2477:25:73",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "id": 15872,
                              "name": "prizeDistributionFactory",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15801,
                              "src": "2416:24:73",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IPrizeDistributionFactory_$16009",
                                "typeString": "contract IPrizeDistributionFactory"
                              }
                            },
                            "id": 15874,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "pushPrizeDistribution",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 16008,
                            "src": "2416:46:73",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_uint32_$_t_uint256_$returns$__$",
                              "typeString": "function (uint32,uint256) external"
                            }
                          },
                          "id": 15878,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2416:87:73",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 15879,
                        "nodeType": "ExpressionStatement",
                        "src": "2416:87:73"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 15881,
                                "name": "_draw",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 15846,
                                "src": "2581:5:73",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                                  "typeString": "struct IDrawBeacon.Draw memory"
                                }
                              },
                              "id": 15882,
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "drawId",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 10690,
                              "src": "2581:12:73",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              }
                            },
                            {
                              "id": 15883,
                              "name": "_draw",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15846,
                              "src": "2607:5:73",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory"
                              }
                            },
                            {
                              "id": 15884,
                              "name": "_totalNetworkTicketSupply",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 15848,
                              "src": "2626:25:73",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint32",
                                "typeString": "uint32"
                              },
                              {
                                "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                                "typeString": "struct IDrawBeacon.Draw memory"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 15880,
                            "name": "DrawLockedPushedAndTotalNetworkTicketSupplyPushed",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16038,
                            "src": "2518:49:73",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_uint32_$_t_struct$_Draw_$10697_memory_ptr_$_t_uint256_$returns$__$",
                              "typeString": "function (uint32,struct IDrawBeacon.Draw memory,uint256)"
                            }
                          },
                          "id": 15885,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2518:143:73",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 15886,
                        "nodeType": "EmitStatement",
                        "src": "2513:148:73"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 15843,
                    "nodeType": "StructuredDocumentation",
                    "src": "2098:40:73",
                    "text": "@inheritdoc IReceiverTimelockTrigger"
                  },
                  "functionSelector": "a913c9da",
                  "id": 15888,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 15852,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 15851,
                        "name": "onlyManagerOrOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 5199,
                        "src": "2265:18:73"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "2265:18:73"
                    }
                  ],
                  "name": "push",
                  "nameLocation": "2152:4:73",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 15850,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "2248:8:73"
                  },
                  "parameters": {
                    "id": 15849,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15846,
                        "mutability": "mutable",
                        "name": "_draw",
                        "nameLocation": "2181:5:73",
                        "nodeType": "VariableDeclaration",
                        "scope": 15888,
                        "src": "2157:29:73",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw"
                        },
                        "typeName": {
                          "id": 15845,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15844,
                            "name": "IDrawBeacon.Draw",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 10697,
                            "src": "2157:16:73"
                          },
                          "referencedDeclaration": 10697,
                          "src": "2157:16:73",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$10697_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15848,
                        "mutability": "mutable",
                        "name": "_totalNetworkTicketSupply",
                        "nameLocation": "2196:25:73",
                        "nodeType": "VariableDeclaration",
                        "scope": 15888,
                        "src": "2188:33:73",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 15847,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2188:7:73",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2156:66:73"
                  },
                  "returnParameters": {
                    "id": 15853,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2288:0:73"
                  },
                  "scope": 15889,
                  "src": "2143:525:73",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 15890,
              "src": "878:1792:73",
              "usedErrors": []
            }
          ],
          "src": "36:2635:73"
        },
        "id": 73
      },
      "@pooltogether/v4-timelocks/contracts/interfaces/IBeaconTimelockTrigger.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-timelocks/contracts/interfaces/IBeaconTimelockTrigger.sol",
          "exportedSymbols": {
            "Address": [
              1775
            ],
            "DrawRingBufferLib": [
              11966
            ],
            "ExtendedSafeCastLib": [
              12045
            ],
            "IBeaconTimelockTrigger": [
              15924
            ],
            "IControlledToken": [
              10681
            ],
            "IDrawBeacon": [
              10853
            ],
            "IDrawBuffer": [
              10930
            ],
            "IDrawCalculator": [
              11003
            ],
            "IDrawCalculatorTimelock": [
              15999
            ],
            "IERC20": [
              890
            ],
            "IPrizeDistributionBuffer": [
              11079
            ],
            "IPrizeDistributionFactory": [
              16009
            ],
            "IPrizeDistributionSource": [
              11115
            ],
            "IPrizeDistributor": [
              11213
            ],
            "ITicket": [
              11825
            ],
            "Manageable": [
              5200
            ],
            "ObservationLib": [
              12204
            ],
            "OverflowSafeComparatorLib": [
              12376
            ],
            "Ownable": [
              5355
            ],
            "PrizeDistributionBuffer": [
              8796
            ],
            "PrizeDistributor": [
              9169
            ],
            "RNGInterface": [
              5835
            ],
            "RingBufferLib": [
              12461
            ],
            "SafeCast": [
              3225
            ],
            "SafeERC20": [
              1344
            ],
            "TwabLib": [
              13211
            ]
          },
          "id": 15925,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 15891,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "36:22:74"
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol",
              "file": "@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol",
              "id": 15892,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15925,
              "sourceUnit": 10854,
              "src": "59:68:74",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-timelocks/contracts/interfaces/IPrizeDistributionFactory.sol",
              "file": "./IPrizeDistributionFactory.sol",
              "id": 15893,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15925,
              "sourceUnit": 16010,
              "src": "128:41:74",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-timelocks/contracts/interfaces/IDrawCalculatorTimelock.sol",
              "file": "./IDrawCalculatorTimelock.sol",
              "id": 15894,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 15925,
              "sourceUnit": 16000,
              "src": "170:39:74",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "documentation": {
                "id": 15895,
                "nodeType": "StructuredDocumentation",
                "src": "211:156:74",
                "text": " @title  PoolTogether V4 IBeaconTimelockTrigger\n @author PoolTogether Inc Team\n @notice The IBeaconTimelockTrigger smart contract interface..."
              },
              "fullyImplemented": false,
              "id": 15924,
              "linearizedBaseContracts": [
                15924
              ],
              "name": "IBeaconTimelockTrigger",
              "nameLocation": "378:22:74",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 15896,
                    "nodeType": "StructuredDocumentation",
                    "src": "407:50:74",
                    "text": "@notice Emitted when the contract is deployed."
                  },
                  "id": 15904,
                  "name": "Deployed",
                  "nameLocation": "468:8:74",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 15903,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15899,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "prizeDistributionFactory",
                        "nameLocation": "520:24:74",
                        "nodeType": "VariableDeclaration",
                        "scope": 15904,
                        "src": "486:58:74",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IPrizeDistributionFactory_$16009",
                          "typeString": "contract IPrizeDistributionFactory"
                        },
                        "typeName": {
                          "id": 15898,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15897,
                            "name": "IPrizeDistributionFactory",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 16009,
                            "src": "486:25:74"
                          },
                          "referencedDeclaration": 16009,
                          "src": "486:25:74",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizeDistributionFactory_$16009",
                            "typeString": "contract IPrizeDistributionFactory"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15902,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "timelock",
                        "nameLocation": "586:8:74",
                        "nodeType": "VariableDeclaration",
                        "scope": 15904,
                        "src": "554:40:74",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$15999",
                          "typeString": "contract IDrawCalculatorTimelock"
                        },
                        "typeName": {
                          "id": 15901,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15900,
                            "name": "IDrawCalculatorTimelock",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 15999,
                            "src": "554:23:74"
                          },
                          "referencedDeclaration": 15999,
                          "src": "554:23:74",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$15999",
                            "typeString": "contract IDrawCalculatorTimelock"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "476:124:74"
                  },
                  "src": "462:139:74"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 15905,
                    "nodeType": "StructuredDocumentation",
                    "src": "607:238:74",
                    "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": 15914,
                  "name": "DrawLockedAndTotalNetworkTicketSupplyPushed",
                  "nameLocation": "856:43:74",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 15913,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15907,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "drawId",
                        "nameLocation": "924:6:74",
                        "nodeType": "VariableDeclaration",
                        "scope": 15914,
                        "src": "909:21:74",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 15906,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "909:6:74",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15910,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "draw",
                        "nameLocation": "957:4:74",
                        "nodeType": "VariableDeclaration",
                        "scope": 15914,
                        "src": "940:21:74",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw"
                        },
                        "typeName": {
                          "id": 15909,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15908,
                            "name": "IDrawBeacon.Draw",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 10697,
                            "src": "940:16:74"
                          },
                          "referencedDeclaration": 10697,
                          "src": "940:16:74",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$10697_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15912,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "totalNetworkTicketSupply",
                        "nameLocation": "979:24:74",
                        "nodeType": "VariableDeclaration",
                        "scope": 15914,
                        "src": "971:32:74",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 15911,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "971:7:74",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "899:110:74"
                  },
                  "src": "850:160:74"
                },
                {
                  "documentation": {
                    "id": 15915,
                    "nodeType": "StructuredDocumentation",
                    "src": "1016:291:74",
                    "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": 15923,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "push",
                  "nameLocation": "1321:4:74",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15921,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15918,
                        "mutability": "mutable",
                        "name": "draw",
                        "nameLocation": "1350:4:74",
                        "nodeType": "VariableDeclaration",
                        "scope": 15923,
                        "src": "1326:28:74",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw"
                        },
                        "typeName": {
                          "id": 15917,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15916,
                            "name": "IDrawBeacon.Draw",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 10697,
                            "src": "1326:16:74"
                          },
                          "referencedDeclaration": 10697,
                          "src": "1326:16:74",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$10697_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15920,
                        "mutability": "mutable",
                        "name": "totalNetworkTicketSupply",
                        "nameLocation": "1364:24:74",
                        "nodeType": "VariableDeclaration",
                        "scope": 15923,
                        "src": "1356:32:74",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 15919,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1356:7:74",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1325:64:74"
                  },
                  "returnParameters": {
                    "id": 15922,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1398:0:74"
                  },
                  "scope": 15924,
                  "src": "1312:87:74",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 15925,
              "src": "368:1033:74",
              "usedErrors": []
            }
          ],
          "src": "36:1366:74"
        },
        "id": 74
      },
      "@pooltogether/v4-timelocks/contracts/interfaces/IDrawCalculatorTimelock.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-timelocks/contracts/interfaces/IDrawCalculatorTimelock.sol",
          "exportedSymbols": {
            "Address": [
              1775
            ],
            "DrawRingBufferLib": [
              11966
            ],
            "ExtendedSafeCastLib": [
              12045
            ],
            "IControlledToken": [
              10681
            ],
            "IDrawBeacon": [
              10853
            ],
            "IDrawBuffer": [
              10930
            ],
            "IDrawCalculator": [
              11003
            ],
            "IDrawCalculatorTimelock": [
              15999
            ],
            "IERC20": [
              890
            ],
            "IPrizeDistributionBuffer": [
              11079
            ],
            "IPrizeDistributionSource": [
              11115
            ],
            "IPrizeDistributor": [
              11213
            ],
            "ITicket": [
              11825
            ],
            "Manageable": [
              5200
            ],
            "ObservationLib": [
              12204
            ],
            "OverflowSafeComparatorLib": [
              12376
            ],
            "Ownable": [
              5355
            ],
            "PrizeDistributionBuffer": [
              8796
            ],
            "PrizeDistributor": [
              9169
            ],
            "RingBufferLib": [
              12461
            ],
            "SafeCast": [
              3225
            ],
            "SafeERC20": [
              1344
            ],
            "TwabLib": [
              13211
            ]
          },
          "id": 16000,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 15926,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:75"
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IDrawCalculator.sol",
              "file": "@pooltogether/v4-core/contracts/interfaces/IDrawCalculator.sol",
              "id": 15927,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 16000,
              "sourceUnit": 11004,
              "src": "61:72:75",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "fullyImplemented": false,
              "id": 15999,
              "linearizedBaseContracts": [
                15999
              ],
              "name": "IDrawCalculatorTimelock",
              "nameLocation": "145:23:75",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "canonicalName": "IDrawCalculatorTimelock.Timelock",
                  "id": 15932,
                  "members": [
                    {
                      "constant": false,
                      "id": 15929,
                      "mutability": "mutable",
                      "name": "timestamp",
                      "nameLocation": "399:9:75",
                      "nodeType": "VariableDeclaration",
                      "scope": 15932,
                      "src": "392:16:75",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint64",
                        "typeString": "uint64"
                      },
                      "typeName": {
                        "id": 15928,
                        "name": "uint64",
                        "nodeType": "ElementaryTypeName",
                        "src": "392:6:75",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 15931,
                      "mutability": "mutable",
                      "name": "drawId",
                      "nameLocation": "425:6:75",
                      "nodeType": "VariableDeclaration",
                      "scope": 15932,
                      "src": "418:13:75",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint32",
                        "typeString": "uint32"
                      },
                      "typeName": {
                        "id": 15930,
                        "name": "uint32",
                        "nodeType": "ElementaryTypeName",
                        "src": "418:6:75",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        }
                      },
                      "visibility": "internal"
                    }
                  ],
                  "name": "Timelock",
                  "nameLocation": "373:8:75",
                  "nodeType": "StructDefinition",
                  "scope": 15999,
                  "src": "366:72:75",
                  "visibility": "public"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 15933,
                    "nodeType": "StructuredDocumentation",
                    "src": "444:137:75",
                    "text": " @notice Emitted when target draw id is locked.\n @param drawId    Draw ID\n @param timestamp Block timestamp"
                  },
                  "id": 15939,
                  "name": "LockedDraw",
                  "nameLocation": "592:10:75",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 15938,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15935,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "drawId",
                        "nameLocation": "618:6:75",
                        "nodeType": "VariableDeclaration",
                        "scope": 15939,
                        "src": "603:21:75",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 15934,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "603:6:75",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15937,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "timestamp",
                        "nameLocation": "633:9:75",
                        "nodeType": "VariableDeclaration",
                        "scope": 15939,
                        "src": "626:16:75",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 15936,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "626:6:75",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "602:41:75"
                  },
                  "src": "586:58:75"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 15940,
                    "nodeType": "StructuredDocumentation",
                    "src": "650:119:75",
                    "text": " @notice Emitted event when the timelock struct is updated\n @param timelock Timelock struct set"
                  },
                  "id": 15945,
                  "name": "TimelockSet",
                  "nameLocation": "780:11:75",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 15944,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15943,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "timelock",
                        "nameLocation": "801:8:75",
                        "nodeType": "VariableDeclaration",
                        "scope": 15945,
                        "src": "792:17:75",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Timelock_$15932_memory_ptr",
                          "typeString": "struct IDrawCalculatorTimelock.Timelock"
                        },
                        "typeName": {
                          "id": 15942,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15941,
                            "name": "Timelock",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 15932,
                            "src": "792:8:75"
                          },
                          "referencedDeclaration": 15932,
                          "src": "792:8:75",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Timelock_$15932_storage_ptr",
                            "typeString": "struct IDrawCalculatorTimelock.Timelock"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "791:19:75"
                  },
                  "src": "774:37:75"
                },
                {
                  "documentation": {
                    "id": 15946,
                    "nodeType": "StructuredDocumentation",
                    "src": "817:373:75",
                    "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": 15961,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "calculate",
                  "nameLocation": "1204:9:75",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15954,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15948,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "1231:4:75",
                        "nodeType": "VariableDeclaration",
                        "scope": 15961,
                        "src": "1223:12:75",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 15947,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1223:7:75",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15951,
                        "mutability": "mutable",
                        "name": "drawIds",
                        "nameLocation": "1263:7:75",
                        "nodeType": "VariableDeclaration",
                        "scope": 15961,
                        "src": "1245:25:75",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint32_$dyn_calldata_ptr",
                          "typeString": "uint32[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 15949,
                            "name": "uint32",
                            "nodeType": "ElementaryTypeName",
                            "src": "1245:6:75",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint32",
                              "typeString": "uint32"
                            }
                          },
                          "id": 15950,
                          "nodeType": "ArrayTypeName",
                          "src": "1245:8:75",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint32_$dyn_storage_ptr",
                            "typeString": "uint32[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15953,
                        "mutability": "mutable",
                        "name": "data",
                        "nameLocation": "1295:4:75",
                        "nodeType": "VariableDeclaration",
                        "scope": 15961,
                        "src": "1280:19:75",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_calldata_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 15952,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "1280:5:75",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1213:92:75"
                  },
                  "returnParameters": {
                    "id": 15960,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15957,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15961,
                        "src": "1329:16:75",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr",
                          "typeString": "uint256[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 15955,
                            "name": "uint256",
                            "nodeType": "ElementaryTypeName",
                            "src": "1329:7:75",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 15956,
                          "nodeType": "ArrayTypeName",
                          "src": "1329:9:75",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                            "typeString": "uint256[]"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15959,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15961,
                        "src": "1347:12:75",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 15958,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "1347:5:75",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1328:32:75"
                  },
                  "scope": 15999,
                  "src": "1195:166:75",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 15962,
                    "nodeType": "StructuredDocumentation",
                    "src": "1367:290:75",
                    "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": 15971,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "lock",
                  "nameLocation": "1671:4:75",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15967,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15964,
                        "mutability": "mutable",
                        "name": "_drawId",
                        "nameLocation": "1683:7:75",
                        "nodeType": "VariableDeclaration",
                        "scope": 15971,
                        "src": "1676:14:75",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 15963,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1676:6:75",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 15966,
                        "mutability": "mutable",
                        "name": "_timestamp",
                        "nameLocation": "1699:10:75",
                        "nodeType": "VariableDeclaration",
                        "scope": 15971,
                        "src": "1692:17:75",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint64",
                          "typeString": "uint64"
                        },
                        "typeName": {
                          "id": 15965,
                          "name": "uint64",
                          "nodeType": "ElementaryTypeName",
                          "src": "1692:6:75",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint64",
                            "typeString": "uint64"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1675:35:75"
                  },
                  "returnParameters": {
                    "id": 15970,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15969,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15971,
                        "src": "1729:4:75",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 15968,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "1729:4:75",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1728:6:75"
                  },
                  "scope": 15999,
                  "src": "1662:73:75",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 15972,
                    "nodeType": "StructuredDocumentation",
                    "src": "1741:96:75",
                    "text": " @notice Read internal DrawCalculator variable.\n @return IDrawCalculator"
                  },
                  "functionSelector": "2d680cfa",
                  "id": 15978,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getDrawCalculator",
                  "nameLocation": "1851:17:75",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15973,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1868:2:75"
                  },
                  "returnParameters": {
                    "id": 15977,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15976,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15978,
                        "src": "1894:15:75",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawCalculator_$11003",
                          "typeString": "contract IDrawCalculator"
                        },
                        "typeName": {
                          "id": 15975,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15974,
                            "name": "IDrawCalculator",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11003,
                            "src": "1894:15:75"
                          },
                          "referencedDeclaration": 11003,
                          "src": "1894:15:75",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculator_$11003",
                            "typeString": "contract IDrawCalculator"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1893:17:75"
                  },
                  "scope": 15999,
                  "src": "1842:69:75",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 15979,
                    "nodeType": "StructuredDocumentation",
                    "src": "1917:81:75",
                    "text": " @notice Read internal Timelock struct.\n @return Timelock"
                  },
                  "functionSelector": "6221a54b",
                  "id": 15985,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getTimelock",
                  "nameLocation": "2012:11:75",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15980,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2023:2:75"
                  },
                  "returnParameters": {
                    "id": 15984,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15983,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15985,
                        "src": "2049:15:75",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Timelock_$15932_memory_ptr",
                          "typeString": "struct IDrawCalculatorTimelock.Timelock"
                        },
                        "typeName": {
                          "id": 15982,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15981,
                            "name": "Timelock",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 15932,
                            "src": "2049:8:75"
                          },
                          "referencedDeclaration": 15932,
                          "src": "2049:8:75",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Timelock_$15932_storage_ptr",
                            "typeString": "struct IDrawCalculatorTimelock.Timelock"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2048:17:75"
                  },
                  "scope": 15999,
                  "src": "2003:63:75",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 15986,
                    "nodeType": "StructuredDocumentation",
                    "src": "2072:136:75",
                    "text": " @notice Set the Timelock struct. Only callable by the contract owner.\n @param _timelock Timelock struct to set."
                  },
                  "functionSelector": "bdf28f5e",
                  "id": 15992,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setTimelock",
                  "nameLocation": "2222:11:75",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15990,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15989,
                        "mutability": "mutable",
                        "name": "_timelock",
                        "nameLocation": "2250:9:75",
                        "nodeType": "VariableDeclaration",
                        "scope": 15992,
                        "src": "2234:25:75",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Timelock_$15932_memory_ptr",
                          "typeString": "struct IDrawCalculatorTimelock.Timelock"
                        },
                        "typeName": {
                          "id": 15988,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 15987,
                            "name": "Timelock",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 15932,
                            "src": "2234:8:75"
                          },
                          "referencedDeclaration": 15932,
                          "src": "2234:8:75",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Timelock_$15932_storage_ptr",
                            "typeString": "struct IDrawCalculatorTimelock.Timelock"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2233:27:75"
                  },
                  "returnParameters": {
                    "id": 15991,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2269:0:75"
                  },
                  "scope": 15999,
                  "src": "2213:57:75",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 15993,
                    "nodeType": "StructuredDocumentation",
                    "src": "2276:161:75",
                    "text": " @notice Returns bool for timelockDuration elapsing.\n @return True if timelockDuration, since last timelock has elapsed, false otherwise."
                  },
                  "functionSelector": "d3a9c612",
                  "id": 15998,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "hasElapsed",
                  "nameLocation": "2451:10:75",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 15994,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2461:2:75"
                  },
                  "returnParameters": {
                    "id": 15997,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 15996,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 15998,
                        "src": "2487:4:75",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 15995,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "2487:4:75",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2486:6:75"
                  },
                  "scope": 15999,
                  "src": "2442:51:75",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 16000,
              "src": "135:2360:75",
              "usedErrors": []
            }
          ],
          "src": "37:2459:75"
        },
        "id": 75
      },
      "@pooltogether/v4-timelocks/contracts/interfaces/IPrizeDistributionFactory.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-timelocks/contracts/interfaces/IPrizeDistributionFactory.sol",
          "exportedSymbols": {
            "IPrizeDistributionFactory": [
              16009
            ]
          },
          "id": 16010,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 16001,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "36:22:76"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "fullyImplemented": false,
              "id": 16009,
              "linearizedBaseContracts": [
                16009
              ],
              "name": "IPrizeDistributionFactory",
              "nameLocation": "70:25:76",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "functionSelector": "0348b076",
                  "id": 16008,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "pushPrizeDistribution",
                  "nameLocation": "111:21:76",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16006,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16003,
                        "mutability": "mutable",
                        "name": "_drawId",
                        "nameLocation": "140:7:76",
                        "nodeType": "VariableDeclaration",
                        "scope": 16008,
                        "src": "133:14:76",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 16002,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "133:6:76",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16005,
                        "mutability": "mutable",
                        "name": "_totalNetworkTicketSupply",
                        "nameLocation": "157:25:76",
                        "nodeType": "VariableDeclaration",
                        "scope": 16008,
                        "src": "149:33:76",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16004,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "149:7:76",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "132:51:76"
                  },
                  "returnParameters": {
                    "id": 16007,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "192:0:76"
                  },
                  "scope": 16009,
                  "src": "102:91:76",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 16010,
              "src": "60:135:76",
              "usedErrors": []
            }
          ],
          "src": "36:160:76"
        },
        "id": 76
      },
      "@pooltogether/v4-timelocks/contracts/interfaces/IReceiverTimelockTrigger.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-timelocks/contracts/interfaces/IReceiverTimelockTrigger.sol",
          "exportedSymbols": {
            "Address": [
              1775
            ],
            "DrawRingBufferLib": [
              11966
            ],
            "ExtendedSafeCastLib": [
              12045
            ],
            "IControlledToken": [
              10681
            ],
            "IDrawBeacon": [
              10853
            ],
            "IDrawBuffer": [
              10930
            ],
            "IDrawCalculator": [
              11003
            ],
            "IDrawCalculatorTimelock": [
              15999
            ],
            "IERC20": [
              890
            ],
            "IPrizeDistributionBuffer": [
              11079
            ],
            "IPrizeDistributionFactory": [
              16009
            ],
            "IPrizeDistributionSource": [
              11115
            ],
            "IPrizeDistributor": [
              11213
            ],
            "IReceiverTimelockTrigger": [
              16048
            ],
            "ITicket": [
              11825
            ],
            "Manageable": [
              5200
            ],
            "ObservationLib": [
              12204
            ],
            "OverflowSafeComparatorLib": [
              12376
            ],
            "Ownable": [
              5355
            ],
            "PrizeDistributionBuffer": [
              8796
            ],
            "PrizeDistributor": [
              9169
            ],
            "RNGInterface": [
              5835
            ],
            "RingBufferLib": [
              12461
            ],
            "SafeCast": [
              3225
            ],
            "SafeERC20": [
              1344
            ],
            "TwabLib": [
              13211
            ]
          },
          "id": 16049,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 16011,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "36:22:77"
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol",
              "file": "@pooltogether/v4-core/contracts/interfaces/IDrawBeacon.sol",
              "id": 16012,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 16049,
              "sourceUnit": 10854,
              "src": "59:68:77",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol",
              "file": "@pooltogether/v4-core/contracts/interfaces/IDrawBuffer.sol",
              "id": 16013,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 16049,
              "sourceUnit": 10931,
              "src": "128:68:77",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-timelocks/contracts/interfaces/IPrizeDistributionFactory.sol",
              "file": "./IPrizeDistributionFactory.sol",
              "id": 16014,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 16049,
              "sourceUnit": 16010,
              "src": "197:41:77",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-timelocks/contracts/interfaces/IDrawCalculatorTimelock.sol",
              "file": "./IDrawCalculatorTimelock.sol",
              "id": 16015,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 16049,
              "sourceUnit": 16000,
              "src": "239:39:77",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "documentation": {
                "id": 16016,
                "nodeType": "StructuredDocumentation",
                "src": "280:160:77",
                "text": " @title  PoolTogether V4 IReceiverTimelockTrigger\n @author PoolTogether Inc Team\n @notice The IReceiverTimelockTrigger smart contract interface..."
              },
              "fullyImplemented": false,
              "id": 16048,
              "linearizedBaseContracts": [
                16048
              ],
              "name": "IReceiverTimelockTrigger",
              "nameLocation": "451:24:77",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 16017,
                    "nodeType": "StructuredDocumentation",
                    "src": "482:50:77",
                    "text": "@notice Emitted when the contract is deployed."
                  },
                  "id": 16028,
                  "name": "Deployed",
                  "nameLocation": "543:8:77",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 16027,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16020,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "drawBuffer",
                        "nameLocation": "581:10:77",
                        "nodeType": "VariableDeclaration",
                        "scope": 16028,
                        "src": "561:30:77",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                          "typeString": "contract IDrawBuffer"
                        },
                        "typeName": {
                          "id": 16019,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 16018,
                            "name": "IDrawBuffer",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 10930,
                            "src": "561:11:77"
                          },
                          "referencedDeclaration": 10930,
                          "src": "561:11:77",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawBuffer_$10930",
                            "typeString": "contract IDrawBuffer"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16023,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "prizeDistributionFactory",
                        "nameLocation": "635:24:77",
                        "nodeType": "VariableDeclaration",
                        "scope": 16028,
                        "src": "601:58:77",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IPrizeDistributionFactory_$16009",
                          "typeString": "contract IPrizeDistributionFactory"
                        },
                        "typeName": {
                          "id": 16022,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 16021,
                            "name": "IPrizeDistributionFactory",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 16009,
                            "src": "601:25:77"
                          },
                          "referencedDeclaration": 16009,
                          "src": "601:25:77",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IPrizeDistributionFactory_$16009",
                            "typeString": "contract IPrizeDistributionFactory"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16026,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "timelock",
                        "nameLocation": "701:8:77",
                        "nodeType": "VariableDeclaration",
                        "scope": 16028,
                        "src": "669:40:77",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$15999",
                          "typeString": "contract IDrawCalculatorTimelock"
                        },
                        "typeName": {
                          "id": 16025,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 16024,
                            "name": "IDrawCalculatorTimelock",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 15999,
                            "src": "669:23:77"
                          },
                          "referencedDeclaration": 15999,
                          "src": "669:23:77",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IDrawCalculatorTimelock_$15999",
                            "typeString": "contract IDrawCalculatorTimelock"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "551:164:77"
                  },
                  "src": "537:179:77"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 16029,
                    "nodeType": "StructuredDocumentation",
                    "src": "722:265:77",
                    "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": 16038,
                  "name": "DrawLockedPushedAndTotalNetworkTicketSupplyPushed",
                  "nameLocation": "998:49:77",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 16037,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16031,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "drawId",
                        "nameLocation": "1072:6:77",
                        "nodeType": "VariableDeclaration",
                        "scope": 16038,
                        "src": "1057:21:77",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint32",
                          "typeString": "uint32"
                        },
                        "typeName": {
                          "id": 16030,
                          "name": "uint32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1057:6:77",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint32",
                            "typeString": "uint32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16034,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "draw",
                        "nameLocation": "1105:4:77",
                        "nodeType": "VariableDeclaration",
                        "scope": 16038,
                        "src": "1088:21:77",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw"
                        },
                        "typeName": {
                          "id": 16033,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 16032,
                            "name": "IDrawBeacon.Draw",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 10697,
                            "src": "1088:16:77"
                          },
                          "referencedDeclaration": 10697,
                          "src": "1088:16:77",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$10697_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16036,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "totalNetworkTicketSupply",
                        "nameLocation": "1127:24:77",
                        "nodeType": "VariableDeclaration",
                        "scope": 16038,
                        "src": "1119:32:77",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16035,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1119:7:77",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1047:110:77"
                  },
                  "src": "992:166:77"
                },
                {
                  "documentation": {
                    "id": 16039,
                    "nodeType": "StructuredDocumentation",
                    "src": "1164:319:77",
                    "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": 16047,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "push",
                  "nameLocation": "1497:4:77",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16045,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16042,
                        "mutability": "mutable",
                        "name": "draw",
                        "nameLocation": "1526:4:77",
                        "nodeType": "VariableDeclaration",
                        "scope": 16047,
                        "src": "1502:28:77",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Draw_$10697_memory_ptr",
                          "typeString": "struct IDrawBeacon.Draw"
                        },
                        "typeName": {
                          "id": 16041,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 16040,
                            "name": "IDrawBeacon.Draw",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 10697,
                            "src": "1502:16:77"
                          },
                          "referencedDeclaration": 10697,
                          "src": "1502:16:77",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Draw_$10697_storage_ptr",
                            "typeString": "struct IDrawBeacon.Draw"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16044,
                        "mutability": "mutable",
                        "name": "totalNetworkTicketSupply",
                        "nameLocation": "1540:24:77",
                        "nodeType": "VariableDeclaration",
                        "scope": 16047,
                        "src": "1532:32:77",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16043,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1532:7:77",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1501:64:77"
                  },
                  "returnParameters": {
                    "id": 16046,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1574:0:77"
                  },
                  "scope": 16048,
                  "src": "1488:87:77",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 16049,
              "src": "441:1136:77",
              "usedErrors": []
            }
          ],
          "src": "36:1542:77"
        },
        "id": 77
      },
      "@pooltogether/v4-twab-delegator/contracts/Delegation.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-twab-delegator/contracts/Delegation.sol",
          "exportedSymbols": {
            "Delegation": [
              16211
            ]
          },
          "id": 16212,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 16050,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:78"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 16051,
                "nodeType": "StructuredDocumentation",
                "src": "61:398:78",
                "text": " @title Contract instantiated via CREATE2 to handle a Delegation by a delegator to a delegatee.\n @notice A Delegation allows his owner to execute calls on behalf of the contract.\n @dev This contract is intended to be counterfactually instantiated via CREATE2 through the LowLevelDelegator contract.\n @dev This contract will hold tickets that will be delegated to a chosen delegatee."
              },
              "fullyImplemented": true,
              "id": 16211,
              "linearizedBaseContracts": [
                16211
              ],
              "name": "Delegation",
              "nameLocation": "469:10:78",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "canonicalName": "Delegation.Call",
                  "id": 16056,
                  "members": [
                    {
                      "constant": false,
                      "id": 16053,
                      "mutability": "mutable",
                      "name": "to",
                      "nameLocation": "649:2:78",
                      "nodeType": "VariableDeclaration",
                      "scope": 16056,
                      "src": "641:10:78",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_address",
                        "typeString": "address"
                      },
                      "typeName": {
                        "id": 16052,
                        "name": "address",
                        "nodeType": "ElementaryTypeName",
                        "src": "641:7:78",
                        "stateMutability": "nonpayable",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 16055,
                      "mutability": "mutable",
                      "name": "data",
                      "nameLocation": "663:4:78",
                      "nodeType": "VariableDeclaration",
                      "scope": 16056,
                      "src": "657:10:78",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_bytes_storage_ptr",
                        "typeString": "bytes"
                      },
                      "typeName": {
                        "id": 16054,
                        "name": "bytes",
                        "nodeType": "ElementaryTypeName",
                        "src": "657:5:78",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_storage_ptr",
                          "typeString": "bytes"
                        }
                      },
                      "visibility": "internal"
                    }
                  ],
                  "name": "Call",
                  "nameLocation": "630:4:78",
                  "nodeType": "StructDefinition",
                  "scope": 16211,
                  "src": "623:49:78",
                  "visibility": "public"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 16057,
                    "nodeType": "StructuredDocumentation",
                    "src": "676:27:78",
                    "text": "@notice Contract owner."
                  },
                  "id": 16059,
                  "mutability": "mutable",
                  "name": "_owner",
                  "nameLocation": "722:6:78",
                  "nodeType": "VariableDeclaration",
                  "scope": 16211,
                  "src": "706:22:78",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 16058,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "706:7:78",
                    "stateMutability": "nonpayable",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "visibility": "private"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 16060,
                    "nodeType": "StructuredDocumentation",
                    "src": "733:59:78",
                    "text": "@notice Timestamp until which the delegation is locked."
                  },
                  "functionSelector": "3c78929e",
                  "id": 16062,
                  "mutability": "mutable",
                  "name": "lockUntil",
                  "nameLocation": "809:9:78",
                  "nodeType": "VariableDeclaration",
                  "scope": 16211,
                  "src": "795:23:78",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint96",
                    "typeString": "uint96"
                  },
                  "typeName": {
                    "id": 16061,
                    "name": "uint96",
                    "nodeType": "ElementaryTypeName",
                    "src": "795:6:78",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint96",
                      "typeString": "uint96"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 16087,
                    "nodeType": "Block",
                    "src": "994:120:78",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 16074,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 16069,
                                "name": "_owner",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 16059,
                                "src": "1008:6:78",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "==",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 16072,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "1026:1:78",
                                    "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": 16071,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "1018:7:78",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 16070,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "1018:7:78",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 16073,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "1018:10:78",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "1008:20:78",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "44656c65676174696f6e2f616c72656164792d696e6974",
                              "id": 16075,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "1030:25:78",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_59bc4f6190e70950564ee99327b9a593c48dd2bda28cfe491f5a34a9ef85820e",
                                "typeString": "literal_string \"Delegation/already-init\""
                              },
                              "value": "Delegation/already-init"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_59bc4f6190e70950564ee99327b9a593c48dd2bda28cfe491f5a34a9ef85820e",
                                "typeString": "literal_string \"Delegation/already-init\""
                              }
                            ],
                            "id": 16068,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "1000:7:78",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 16076,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1000:56:78",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16077,
                        "nodeType": "ExpressionStatement",
                        "src": "1000:56:78"
                      },
                      {
                        "expression": {
                          "id": 16081,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 16078,
                            "name": "_owner",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16059,
                            "src": "1062:6:78",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "expression": {
                              "id": 16079,
                              "name": "msg",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": -15,
                              "src": "1071:3:78",
                              "typeDescriptions": {
                                "typeIdentifier": "t_magic_message",
                                "typeString": "msg"
                              }
                            },
                            "id": 16080,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "sender",
                            "nodeType": "MemberAccess",
                            "src": "1071:10:78",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "1062:19:78",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "id": 16082,
                        "nodeType": "ExpressionStatement",
                        "src": "1062:19:78"
                      },
                      {
                        "expression": {
                          "id": 16085,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 16083,
                            "name": "lockUntil",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16062,
                            "src": "1087:9:78",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint96",
                              "typeString": "uint96"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 16084,
                            "name": "_lockUntil",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16065,
                            "src": "1099:10:78",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint96",
                              "typeString": "uint96"
                            }
                          },
                          "src": "1087:22:78",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint96",
                            "typeString": "uint96"
                          }
                        },
                        "id": 16086,
                        "nodeType": "ExpressionStatement",
                        "src": "1087:22:78"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 16063,
                    "nodeType": "StructuredDocumentation",
                    "src": "823:120:78",
                    "text": " @notice Initializes the delegation.\n @param _lockUntil Timestamp until which the delegation is locked"
                  },
                  "functionSelector": "909f1cad",
                  "id": 16088,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "initialize",
                  "nameLocation": "955:10:78",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16066,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16065,
                        "mutability": "mutable",
                        "name": "_lockUntil",
                        "nameLocation": "973:10:78",
                        "nodeType": "VariableDeclaration",
                        "scope": 16088,
                        "src": "966:17:78",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint96",
                          "typeString": "uint96"
                        },
                        "typeName": {
                          "id": 16064,
                          "name": "uint96",
                          "nodeType": "ElementaryTypeName",
                          "src": "966:6:78",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint96",
                            "typeString": "uint96"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "965:19:78"
                  },
                  "returnParameters": {
                    "id": 16067,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "994:0:78"
                  },
                  "scope": 16211,
                  "src": "946:168:78",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 16151,
                    "nodeType": "Block",
                    "src": "1392:276:78",
                    "statements": [
                      {
                        "assignments": [
                          16102
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 16102,
                            "mutability": "mutable",
                            "name": "_callsLength",
                            "nameLocation": "1406:12:78",
                            "nodeType": "VariableDeclaration",
                            "scope": 16151,
                            "src": "1398:20:78",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 16101,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "1398:7:78",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 16105,
                        "initialValue": {
                          "expression": {
                            "id": 16103,
                            "name": "calls",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16093,
                            "src": "1421:5:78",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_Call_$16056_calldata_ptr_$dyn_calldata_ptr",
                              "typeString": "struct Delegation.Call calldata[] calldata"
                            }
                          },
                          "id": 16104,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "length",
                          "nodeType": "MemberAccess",
                          "src": "1421:12:78",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1398:35:78"
                      },
                      {
                        "assignments": [
                          16110
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 16110,
                            "mutability": "mutable",
                            "name": "response",
                            "nameLocation": "1454:8:78",
                            "nodeType": "VariableDeclaration",
                            "scope": 16151,
                            "src": "1439:23:78",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_bytes_memory_ptr_$dyn_memory_ptr",
                              "typeString": "bytes[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 16108,
                                "name": "bytes",
                                "nodeType": "ElementaryTypeName",
                                "src": "1439:5:78",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bytes_storage_ptr",
                                  "typeString": "bytes"
                                }
                              },
                              "id": 16109,
                              "nodeType": "ArrayTypeName",
                              "src": "1439:7:78",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_bytes_storage_$dyn_storage_ptr",
                                "typeString": "bytes[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 16116,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 16114,
                              "name": "_callsLength",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16102,
                              "src": "1477:12:78",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 16113,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "1465:11:78",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_$",
                              "typeString": "function (uint256) pure returns (bytes memory[] memory)"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 16111,
                                "name": "bytes",
                                "nodeType": "ElementaryTypeName",
                                "src": "1469:5:78",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bytes_storage_ptr",
                                  "typeString": "bytes"
                                }
                              },
                              "id": 16112,
                              "nodeType": "ArrayTypeName",
                              "src": "1469:7:78",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_bytes_storage_$dyn_storage_ptr",
                                "typeString": "bytes[]"
                              }
                            }
                          },
                          "id": 16115,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1465:25:78",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_bytes_memory_ptr_$dyn_memory_ptr",
                            "typeString": "bytes memory[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1439:51:78"
                      },
                      {
                        "assignments": [
                          16119
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 16119,
                            "mutability": "mutable",
                            "name": "call",
                            "nameLocation": "1508:4:78",
                            "nodeType": "VariableDeclaration",
                            "scope": 16151,
                            "src": "1496:16:78",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Call_$16056_memory_ptr",
                              "typeString": "struct Delegation.Call"
                            },
                            "typeName": {
                              "id": 16118,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 16117,
                                "name": "Call",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 16056,
                                "src": "1496:4:78"
                              },
                              "referencedDeclaration": 16056,
                              "src": "1496:4:78",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Call_$16056_storage_ptr",
                                "typeString": "struct Delegation.Call"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 16120,
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1496:16:78"
                      },
                      {
                        "body": {
                          "id": 16147,
                          "nodeType": "Block",
                          "src": "1558:84:78",
                          "statements": [
                            {
                              "expression": {
                                "id": 16134,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 16130,
                                  "name": "call",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 16119,
                                  "src": "1566:4:78",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Call_$16056_memory_ptr",
                                    "typeString": "struct Delegation.Call memory"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "baseExpression": {
                                    "id": 16131,
                                    "name": "calls",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 16093,
                                    "src": "1573:5:78",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_struct$_Call_$16056_calldata_ptr_$dyn_calldata_ptr",
                                      "typeString": "struct Delegation.Call calldata[] calldata"
                                    }
                                  },
                                  "id": 16133,
                                  "indexExpression": {
                                    "id": 16132,
                                    "name": "i",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 16122,
                                    "src": "1579:1:78",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "IndexAccess",
                                  "src": "1573:8:78",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_struct$_Call_$16056_calldata_ptr",
                                    "typeString": "struct Delegation.Call calldata"
                                  }
                                },
                                "src": "1566:15:78",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Call_$16056_memory_ptr",
                                  "typeString": "struct Delegation.Call memory"
                                }
                              },
                              "id": 16135,
                              "nodeType": "ExpressionStatement",
                              "src": "1566:15:78"
                            },
                            {
                              "expression": {
                                "id": 16145,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "baseExpression": {
                                    "id": 16136,
                                    "name": "response",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 16110,
                                    "src": "1589:8:78",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_bytes_memory_ptr_$dyn_memory_ptr",
                                      "typeString": "bytes memory[] memory"
                                    }
                                  },
                                  "id": 16138,
                                  "indexExpression": {
                                    "id": 16137,
                                    "name": "i",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 16122,
                                    "src": "1598:1:78",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": true,
                                  "nodeType": "IndexAccess",
                                  "src": "1589:11:78",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes_memory_ptr",
                                    "typeString": "bytes memory"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "arguments": [
                                    {
                                      "expression": {
                                        "id": 16140,
                                        "name": "call",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 16119,
                                        "src": "1616:4:78",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_Call_$16056_memory_ptr",
                                          "typeString": "struct Delegation.Call memory"
                                        }
                                      },
                                      "id": 16141,
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "memberName": "to",
                                      "nodeType": "MemberAccess",
                                      "referencedDeclaration": 16053,
                                      "src": "1616:7:78",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_address",
                                        "typeString": "address"
                                      }
                                    },
                                    {
                                      "expression": {
                                        "id": 16142,
                                        "name": "call",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 16119,
                                        "src": "1625:4:78",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_struct$_Call_$16056_memory_ptr",
                                          "typeString": "struct Delegation.Call memory"
                                        }
                                      },
                                      "id": 16143,
                                      "isConstant": false,
                                      "isLValue": true,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "memberName": "data",
                                      "nodeType": "MemberAccess",
                                      "referencedDeclaration": 16055,
                                      "src": "1625:9:78",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_bytes_memory_ptr",
                                        "typeString": "bytes memory"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_address",
                                        "typeString": "address"
                                      },
                                      {
                                        "typeIdentifier": "t_bytes_memory_ptr",
                                        "typeString": "bytes memory"
                                      }
                                    ],
                                    "id": 16139,
                                    "name": "_executeCall",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 16197,
                                    "src": "1603:12:78",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$returns$_t_bytes_memory_ptr_$",
                                      "typeString": "function (address,bytes memory) returns (bytes memory)"
                                    }
                                  },
                                  "id": 16144,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "1603:32:78",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes_memory_ptr",
                                    "typeString": "bytes memory"
                                  }
                                },
                                "src": "1589:46:78",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bytes_memory_ptr",
                                  "typeString": "bytes memory"
                                }
                              },
                              "id": 16146,
                              "nodeType": "ExpressionStatement",
                              "src": "1589:46:78"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 16126,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 16124,
                            "name": "i",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16122,
                            "src": "1535:1:78",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "id": 16125,
                            "name": "_callsLength",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16102,
                            "src": "1539:12:78",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "1535:16:78",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 16148,
                        "initializationExpression": {
                          "assignments": [
                            16122
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 16122,
                              "mutability": "mutable",
                              "name": "i",
                              "nameLocation": "1532:1:78",
                              "nodeType": "VariableDeclaration",
                              "scope": 16148,
                              "src": "1524:9:78",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "typeName": {
                                "id": 16121,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "1524:7:78",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 16123,
                          "nodeType": "VariableDeclarationStatement",
                          "src": "1524:9:78"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 16128,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "1553:3:78",
                            "subExpression": {
                              "id": 16127,
                              "name": "i",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16122,
                              "src": "1553:1:78",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 16129,
                          "nodeType": "ExpressionStatement",
                          "src": "1553:3:78"
                        },
                        "nodeType": "ForStatement",
                        "src": "1519:123:78"
                      },
                      {
                        "expression": {
                          "id": 16149,
                          "name": "response",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 16110,
                          "src": "1655:8:78",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_bytes_memory_ptr_$dyn_memory_ptr",
                            "typeString": "bytes memory[] memory"
                          }
                        },
                        "functionReturnParameters": 16100,
                        "id": 16150,
                        "nodeType": "Return",
                        "src": "1648:15:78"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 16089,
                    "nodeType": "StructuredDocumentation",
                    "src": "1118:182:78",
                    "text": " @notice Executes calls on behalf of this contract.\n @param calls The array of calls to be executed\n @return An array of the return values for each of the calls"
                  },
                  "functionSelector": "de9443bf",
                  "id": 16152,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 16096,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 16095,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 16210,
                        "src": "1357:9:78"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "1357:9:78"
                    }
                  ],
                  "name": "executeCalls",
                  "nameLocation": "1312:12:78",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16094,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16093,
                        "mutability": "mutable",
                        "name": "calls",
                        "nameLocation": "1341:5:78",
                        "nodeType": "VariableDeclaration",
                        "scope": 16152,
                        "src": "1325:21:78",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_struct$_Call_$16056_calldata_ptr_$dyn_calldata_ptr",
                          "typeString": "struct Delegation.Call[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 16091,
                            "nodeType": "UserDefinedTypeName",
                            "pathNode": {
                              "id": 16090,
                              "name": "Call",
                              "nodeType": "IdentifierPath",
                              "referencedDeclaration": 16056,
                              "src": "1325:4:78"
                            },
                            "referencedDeclaration": 16056,
                            "src": "1325:4:78",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Call_$16056_storage_ptr",
                              "typeString": "struct Delegation.Call"
                            }
                          },
                          "id": 16092,
                          "nodeType": "ArrayTypeName",
                          "src": "1325:6:78",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Call_$16056_storage_$dyn_storage_ptr",
                            "typeString": "struct Delegation.Call[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1324:23:78"
                  },
                  "returnParameters": {
                    "id": 16100,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16099,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 16152,
                        "src": "1376:14:78",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_bytes_memory_ptr_$dyn_memory_ptr",
                          "typeString": "bytes[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 16097,
                            "name": "bytes",
                            "nodeType": "ElementaryTypeName",
                            "src": "1376:5:78",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes_storage_ptr",
                              "typeString": "bytes"
                            }
                          },
                          "id": 16098,
                          "nodeType": "ArrayTypeName",
                          "src": "1376:7:78",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_bytes_storage_$dyn_storage_ptr",
                            "typeString": "bytes[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1375:16:78"
                  },
                  "scope": 16211,
                  "src": "1303:365:78",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 16164,
                    "nodeType": "Block",
                    "src": "1887:33:78",
                    "statements": [
                      {
                        "expression": {
                          "id": 16162,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 16160,
                            "name": "lockUntil",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16062,
                            "src": "1893:9:78",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint96",
                              "typeString": "uint96"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 16161,
                            "name": "_lockUntil",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16155,
                            "src": "1905:10:78",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint96",
                              "typeString": "uint96"
                            }
                          },
                          "src": "1893:22:78",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint96",
                            "typeString": "uint96"
                          }
                        },
                        "id": 16163,
                        "nodeType": "ExpressionStatement",
                        "src": "1893:22:78"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 16153,
                    "nodeType": "StructuredDocumentation",
                    "src": "1672:152:78",
                    "text": " @notice Set the timestamp until which the delegation is locked.\n @param _lockUntil The timestamp until which the delegation is locked"
                  },
                  "functionSelector": "ac2293af",
                  "id": 16165,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [
                    {
                      "id": 16158,
                      "kind": "modifierInvocation",
                      "modifierName": {
                        "id": 16157,
                        "name": "onlyOwner",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 16210,
                        "src": "1877:9:78"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "1877:9:78"
                    }
                  ],
                  "name": "setLockUntil",
                  "nameLocation": "1836:12:78",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16156,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16155,
                        "mutability": "mutable",
                        "name": "_lockUntil",
                        "nameLocation": "1856:10:78",
                        "nodeType": "VariableDeclaration",
                        "scope": 16165,
                        "src": "1849:17:78",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint96",
                          "typeString": "uint96"
                        },
                        "typeName": {
                          "id": 16154,
                          "name": "uint96",
                          "nodeType": "ElementaryTypeName",
                          "src": "1849:6:78",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint96",
                            "typeString": "uint96"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1848:19:78"
                  },
                  "returnParameters": {
                    "id": 16159,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1887:0:78"
                  },
                  "scope": 16211,
                  "src": "1827:93:78",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 16196,
                    "nodeType": "Block",
                    "src": "2180:150:78",
                    "statements": [
                      {
                        "assignments": [
                          16176,
                          16178
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 16176,
                            "mutability": "mutable",
                            "name": "succeeded",
                            "nameLocation": "2192:9:78",
                            "nodeType": "VariableDeclaration",
                            "scope": 16196,
                            "src": "2187:14:78",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            },
                            "typeName": {
                              "id": 16175,
                              "name": "bool",
                              "nodeType": "ElementaryTypeName",
                              "src": "2187:4:78",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            "visibility": "internal"
                          },
                          {
                            "constant": false,
                            "id": 16178,
                            "mutability": "mutable",
                            "name": "returnValue",
                            "nameLocation": "2216:11:78",
                            "nodeType": "VariableDeclaration",
                            "scope": 16196,
                            "src": "2203:24:78",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes_memory_ptr",
                              "typeString": "bytes"
                            },
                            "typeName": {
                              "id": 16177,
                              "name": "bytes",
                              "nodeType": "ElementaryTypeName",
                              "src": "2203:5:78",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_storage_ptr",
                                "typeString": "bytes"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 16185,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 16183,
                              "name": "data",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16170,
                              "src": "2251:4:78",
                              "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": 16179,
                                "name": "to",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 16168,
                                "src": "2231:2:78",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "id": 16180,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "call",
                              "nodeType": "MemberAccess",
                              "src": "2231:7:78",
                              "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": 16182,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "names": [
                              "value"
                            ],
                            "nodeType": "FunctionCallOptions",
                            "options": [
                              {
                                "hexValue": "30",
                                "id": 16181,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "2247:1:78",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              }
                            ],
                            "src": "2231:19:78",
                            "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": 16184,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2231:25:78",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$_t_bool_$_t_bytes_memory_ptr_$",
                            "typeString": "tuple(bool,bytes memory)"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "2186:70:78"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16187,
                              "name": "succeeded",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16176,
                              "src": "2270:9:78",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "id": 16190,
                                  "name": "returnValue",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 16178,
                                  "src": "2288:11:78",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes_memory_ptr",
                                    "typeString": "bytes memory"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_bytes_memory_ptr",
                                    "typeString": "bytes memory"
                                  }
                                ],
                                "id": 16189,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "2281:6:78",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_string_storage_ptr_$",
                                  "typeString": "type(string storage pointer)"
                                },
                                "typeName": {
                                  "id": 16188,
                                  "name": "string",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "2281:6:78",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 16191,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "2281:19:78",
                              "tryCall": false,
                              "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": 16186,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2262:7:78",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 16192,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2262:39:78",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16193,
                        "nodeType": "ExpressionStatement",
                        "src": "2262:39:78"
                      },
                      {
                        "expression": {
                          "id": 16194,
                          "name": "returnValue",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 16178,
                          "src": "2314:11:78",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_memory_ptr",
                            "typeString": "bytes memory"
                          }
                        },
                        "functionReturnParameters": 16174,
                        "id": 16195,
                        "nodeType": "Return",
                        "src": "2307:18:78"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 16166,
                    "nodeType": "StructuredDocumentation",
                    "src": "1924:168:78",
                    "text": " @notice Executes a call to another contract.\n @param to The address to call\n @param data The call data\n @return The return data from the call"
                  },
                  "id": 16197,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_executeCall",
                  "nameLocation": "2104:12:78",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16171,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16168,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "2125:2:78",
                        "nodeType": "VariableDeclaration",
                        "scope": 16197,
                        "src": "2117:10:78",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16167,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2117:7:78",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16170,
                        "mutability": "mutable",
                        "name": "data",
                        "nameLocation": "2142:4:78",
                        "nodeType": "VariableDeclaration",
                        "scope": 16197,
                        "src": "2129:17:78",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 16169,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "2129:5:78",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2116:31:78"
                  },
                  "returnParameters": {
                    "id": 16174,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16173,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 16197,
                        "src": "2166:12:78",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 16172,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "2166:5:78",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2165:14:78"
                  },
                  "scope": 16211,
                  "src": "2095:235:78",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 16209,
                    "nodeType": "Block",
                    "src": "2430:72:78",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 16204,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 16201,
                                  "name": "msg",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -15,
                                  "src": "2444:3:78",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_message",
                                    "typeString": "msg"
                                  }
                                },
                                "id": 16202,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "sender",
                                "nodeType": "MemberAccess",
                                "src": "2444:10:78",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "==",
                              "rightExpression": {
                                "id": 16203,
                                "name": "_owner",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 16059,
                                "src": "2458:6:78",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "2444:20:78",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "44656c65676174696f6e2f6f6e6c792d6f776e6572",
                              "id": 16205,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "2466:23:78",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_2d657cb79229bf20859ea9b667c19e92844868aff41d53fda835adff40078666",
                                "typeString": "literal_string \"Delegation/only-owner\""
                              },
                              "value": "Delegation/only-owner"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_2d657cb79229bf20859ea9b667c19e92844868aff41d53fda835adff40078666",
                                "typeString": "literal_string \"Delegation/only-owner\""
                              }
                            ],
                            "id": 16200,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "2436:7:78",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 16206,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "2436:54:78",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16207,
                        "nodeType": "ExpressionStatement",
                        "src": "2436:54:78"
                      },
                      {
                        "id": 16208,
                        "nodeType": "PlaceholderStatement",
                        "src": "2496:1:78"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 16198,
                    "nodeType": "StructuredDocumentation",
                    "src": "2334:72:78",
                    "text": "@notice Modifier to only allow the contract owner to call a function"
                  },
                  "id": 16210,
                  "name": "onlyOwner",
                  "nameLocation": "2418:9:78",
                  "nodeType": "ModifierDefinition",
                  "parameters": {
                    "id": 16199,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "2427:2:78"
                  },
                  "src": "2409:93:78",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 16212,
              "src": "460:2044:78",
              "usedErrors": []
            }
          ],
          "src": "37:2468:78"
        },
        "id": 78
      },
      "@pooltogether/v4-twab-delegator/contracts/LowLevelDelegator.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-twab-delegator/contracts/LowLevelDelegator.sol",
          "exportedSymbols": {
            "Clones": [
              226
            ],
            "Delegation": [
              16211
            ],
            "LowLevelDelegator": [
              16318
            ]
          },
          "id": 16319,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 16213,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:79"
            },
            {
              "absolutePath": "@openzeppelin/contracts/proxy/Clones.sol",
              "file": "@openzeppelin/contracts/proxy/Clones.sol",
              "id": 16214,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 16319,
              "sourceUnit": 227,
              "src": "61:50:79",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-twab-delegator/contracts/Delegation.sol",
              "file": "./Delegation.sol",
              "id": 16215,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 16319,
              "sourceUnit": 16212,
              "src": "113:26:79",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [
                16211
              ],
              "contractKind": "contract",
              "documentation": {
                "id": 16216,
                "nodeType": "StructuredDocumentation",
                "src": "141:82:79",
                "text": "@title The LowLevelDelegator allows users to create delegations very cheaply."
              },
              "fullyImplemented": true,
              "id": 16318,
              "linearizedBaseContracts": [
                16318
              ],
              "name": "LowLevelDelegator",
              "nameLocation": "232:17:79",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "id": 16219,
                  "libraryName": {
                    "id": 16217,
                    "name": "Clones",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 226,
                    "src": "260:6:79"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "254:25:79",
                  "typeName": {
                    "id": 16218,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "271:7:79",
                    "stateMutability": "nonpayable",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  }
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 16220,
                    "nodeType": "StructuredDocumentation",
                    "src": "283:57:79",
                    "text": "@notice The instance to which all proxies will point."
                  },
                  "functionSelector": "63fc611f",
                  "id": 16223,
                  "mutability": "mutable",
                  "name": "delegationInstance",
                  "nameLocation": "361:18:79",
                  "nodeType": "VariableDeclaration",
                  "scope": 16318,
                  "src": "343:36:79",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_Delegation_$16211",
                    "typeString": "contract Delegation"
                  },
                  "typeName": {
                    "id": 16222,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 16221,
                      "name": "Delegation",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 16211,
                      "src": "343:10:79"
                    },
                    "referencedDeclaration": 16211,
                    "src": "343:10:79",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_Delegation_$16211",
                      "typeString": "contract Delegation"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 16243,
                    "nodeType": "Block",
                    "src": "434:94:79",
                    "statements": [
                      {
                        "expression": {
                          "id": 16232,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 16227,
                            "name": "delegationInstance",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16223,
                            "src": "440:18:79",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_Delegation_$16211",
                              "typeString": "contract Delegation"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [],
                            "expression": {
                              "argumentTypes": [],
                              "id": 16230,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "nodeType": "NewExpression",
                              "src": "461:14:79",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_creation_nonpayable$__$returns$_t_contract$_Delegation_$16211_$",
                                "typeString": "function () returns (contract Delegation)"
                              },
                              "typeName": {
                                "id": 16229,
                                "nodeType": "UserDefinedTypeName",
                                "pathNode": {
                                  "id": 16228,
                                  "name": "Delegation",
                                  "nodeType": "IdentifierPath",
                                  "referencedDeclaration": 16211,
                                  "src": "465:10:79"
                                },
                                "referencedDeclaration": 16211,
                                "src": "465:10:79",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_contract$_Delegation_$16211",
                                  "typeString": "contract Delegation"
                                }
                              }
                            },
                            "id": 16231,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "461:16:79",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_Delegation_$16211",
                              "typeString": "contract Delegation"
                            }
                          },
                          "src": "440:37:79",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_Delegation_$16211",
                            "typeString": "contract Delegation"
                          }
                        },
                        "id": 16233,
                        "nodeType": "ExpressionStatement",
                        "src": "440:37:79"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "hexValue": "30",
                                  "id": 16239,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "kind": "number",
                                  "lValueRequested": false,
                                  "nodeType": "Literal",
                                  "src": "520:1:79",
                                  "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": 16238,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "513:6:79",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_uint96_$",
                                  "typeString": "type(uint96)"
                                },
                                "typeName": {
                                  "id": 16237,
                                  "name": "uint96",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "513:6:79",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 16240,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "513:9:79",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint96",
                                "typeString": "uint96"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint96",
                                "typeString": "uint96"
                              }
                            ],
                            "expression": {
                              "id": 16234,
                              "name": "delegationInstance",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16223,
                              "src": "483:18:79",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_Delegation_$16211",
                                "typeString": "contract Delegation"
                              }
                            },
                            "id": 16236,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "initialize",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 16088,
                            "src": "483:29:79",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_uint96_$returns$__$",
                              "typeString": "function (uint96) external"
                            }
                          },
                          "id": 16241,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "483:40:79",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16242,
                        "nodeType": "ExpressionStatement",
                        "src": "483:40:79"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 16224,
                    "nodeType": "StructuredDocumentation",
                    "src": "384:33:79",
                    "text": "@notice Contract constructor."
                  },
                  "id": 16244,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16225,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "431:2:79"
                  },
                  "returnParameters": {
                    "id": 16226,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "434:0:79"
                  },
                  "scope": 16318,
                  "src": "420:108:79",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 16276,
                    "nodeType": "Block",
                    "src": "870:165:79",
                    "statements": [
                      {
                        "assignments": [
                          16257
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 16257,
                            "mutability": "mutable",
                            "name": "_delegation",
                            "nameLocation": "887:11:79",
                            "nodeType": "VariableDeclaration",
                            "scope": 16276,
                            "src": "876:22:79",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_Delegation_$16211",
                              "typeString": "contract Delegation"
                            },
                            "typeName": {
                              "id": 16256,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 16255,
                                "name": "Delegation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 16211,
                                "src": "876:10:79"
                              },
                              "referencedDeclaration": 16211,
                              "src": "876:10:79",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_Delegation_$16211",
                                "typeString": "contract Delegation"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 16267,
                        "initialValue": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 16264,
                                  "name": "_salt",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 16247,
                                  "src": "959:5:79",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes32",
                                    "typeString": "bytes32"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_bytes32",
                                    "typeString": "bytes32"
                                  }
                                ],
                                "expression": {
                                  "arguments": [
                                    {
                                      "id": 16261,
                                      "name": "delegationInstance",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 16223,
                                      "src": "920:18:79",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_contract$_Delegation_$16211",
                                        "typeString": "contract Delegation"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_contract$_Delegation_$16211",
                                        "typeString": "contract Delegation"
                                      }
                                    ],
                                    "id": 16260,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "ElementaryTypeNameExpression",
                                    "src": "912:7:79",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_address_$",
                                      "typeString": "type(address)"
                                    },
                                    "typeName": {
                                      "id": 16259,
                                      "name": "address",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "912:7:79",
                                      "typeDescriptions": {}
                                    }
                                  },
                                  "id": 16262,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "typeConversion",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "912:27:79",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "id": 16263,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "cloneDeterministic",
                                "nodeType": "MemberAccess",
                                "referencedDeclaration": 191,
                                "src": "912:46:79",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_bytes32_$returns$_t_address_$bound_to$_t_address_$",
                                  "typeString": "function (address,bytes32) returns (address)"
                                }
                              },
                              "id": 16265,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "912:53:79",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 16258,
                            "name": "Delegation",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16211,
                            "src": "901:10:79",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_contract$_Delegation_$16211_$",
                              "typeString": "type(contract Delegation)"
                            }
                          },
                          "id": 16266,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "901:65:79",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_Delegation_$16211",
                            "typeString": "contract Delegation"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "876:90:79"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16271,
                              "name": "_lockUntil",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16249,
                              "src": "995:10:79",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint96",
                                "typeString": "uint96"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint96",
                                "typeString": "uint96"
                              }
                            ],
                            "expression": {
                              "id": 16268,
                              "name": "_delegation",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16257,
                              "src": "972:11:79",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_Delegation_$16211",
                                "typeString": "contract Delegation"
                              }
                            },
                            "id": 16270,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "initialize",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 16088,
                            "src": "972:22:79",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_uint96_$returns$__$",
                              "typeString": "function (uint96) external"
                            }
                          },
                          "id": 16272,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "972:34:79",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16273,
                        "nodeType": "ExpressionStatement",
                        "src": "972:34:79"
                      },
                      {
                        "expression": {
                          "id": 16274,
                          "name": "_delegation",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 16257,
                          "src": "1019:11:79",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_Delegation_$16211",
                            "typeString": "contract Delegation"
                          }
                        },
                        "functionReturnParameters": 16254,
                        "id": 16275,
                        "nodeType": "Return",
                        "src": "1012:18:79"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 16245,
                    "nodeType": "StructuredDocumentation",
                    "src": "532:244:79",
                    "text": " @notice Creates a clone of the delegation.\n @param _salt Random number used to deterministically deploy the clone\n @param _lockUntil Timestamp until which the delegation is locked\n @return The newly created delegation"
                  },
                  "id": 16277,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_createDelegation",
                  "nameLocation": "788:17:79",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16250,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16247,
                        "mutability": "mutable",
                        "name": "_salt",
                        "nameLocation": "814:5:79",
                        "nodeType": "VariableDeclaration",
                        "scope": 16277,
                        "src": "806:13:79",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 16246,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "806:7:79",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16249,
                        "mutability": "mutable",
                        "name": "_lockUntil",
                        "nameLocation": "828:10:79",
                        "nodeType": "VariableDeclaration",
                        "scope": 16277,
                        "src": "821:17:79",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint96",
                          "typeString": "uint96"
                        },
                        "typeName": {
                          "id": 16248,
                          "name": "uint96",
                          "nodeType": "ElementaryTypeName",
                          "src": "821:6:79",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint96",
                            "typeString": "uint96"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "805:34:79"
                  },
                  "returnParameters": {
                    "id": 16254,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16253,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 16277,
                        "src": "858:10:79",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_Delegation_$16211",
                          "typeString": "contract Delegation"
                        },
                        "typeName": {
                          "id": 16252,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 16251,
                            "name": "Delegation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 16211,
                            "src": "858:10:79"
                          },
                          "referencedDeclaration": 16211,
                          "src": "858:10:79",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_Delegation_$16211",
                            "typeString": "contract Delegation"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "857:12:79"
                  },
                  "scope": 16318,
                  "src": "779:256:79",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 16297,
                    "nodeType": "Block",
                    "src": "1324:95:79",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16290,
                              "name": "_salt",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16280,
                              "src": "1393:5:79",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "id": 16293,
                                  "name": "this",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -28,
                                  "src": "1408:4:79",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_LowLevelDelegator_$16318",
                                    "typeString": "contract LowLevelDelegator"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_LowLevelDelegator_$16318",
                                    "typeString": "contract LowLevelDelegator"
                                  }
                                ],
                                "id": 16292,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "1400:7:79",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 16291,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "1400:7:79",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 16294,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "1400:13:79",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "expression": {
                              "arguments": [
                                {
                                  "id": 16287,
                                  "name": "delegationInstance",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 16223,
                                  "src": "1345:18:79",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_Delegation_$16211",
                                    "typeString": "contract Delegation"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_Delegation_$16211",
                                    "typeString": "contract Delegation"
                                  }
                                ],
                                "id": 16286,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "1337:7:79",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 16285,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "1337:7:79",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 16288,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "1337:27:79",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "id": 16289,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "predictDeterministicAddress",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 205,
                            "src": "1337:55:79",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_address_$_t_bytes32_$_t_address_$returns$_t_address_$bound_to$_t_address_$",
                              "typeString": "function (address,bytes32,address) pure returns (address)"
                            }
                          },
                          "id": 16295,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1337:77:79",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "functionReturnParameters": 16284,
                        "id": 16296,
                        "nodeType": "Return",
                        "src": "1330:84:79"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 16278,
                    "nodeType": "StructuredDocumentation",
                    "src": "1039:210:79",
                    "text": " @notice Computes the address of a clone, also known as minimal proxy contract.\n @param _salt Random number used to compute the address\n @return Address at which the clone will be deployed"
                  },
                  "id": 16298,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_computeAddress",
                  "nameLocation": "1261:15:79",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16281,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16280,
                        "mutability": "mutable",
                        "name": "_salt",
                        "nameLocation": "1285:5:79",
                        "nodeType": "VariableDeclaration",
                        "scope": 16298,
                        "src": "1277:13:79",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 16279,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1277:7:79",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1276:15:79"
                  },
                  "returnParameters": {
                    "id": 16284,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16283,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 16298,
                        "src": "1315:7:79",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16282,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1315:7:79",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1314:9:79"
                  },
                  "scope": 16318,
                  "src": "1252:167:79",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 16316,
                    "nodeType": "Block",
                    "src": "1742:64:79",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 16311,
                                  "name": "_delegator",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 16301,
                                  "src": "1782:10:79",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "id": 16312,
                                  "name": "_slot",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 16303,
                                  "src": "1794:5:79",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes32",
                                    "typeString": "bytes32"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  {
                                    "typeIdentifier": "t_bytes32",
                                    "typeString": "bytes32"
                                  }
                                ],
                                "expression": {
                                  "id": 16309,
                                  "name": "abi",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -1,
                                  "src": "1765:3:79",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_abi",
                                    "typeString": "abi"
                                  }
                                },
                                "id": 16310,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "memberName": "encodePacked",
                                "nodeType": "MemberAccess",
                                "src": "1765:16:79",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$",
                                  "typeString": "function () pure returns (bytes memory)"
                                }
                              },
                              "id": 16313,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "1765:35:79",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "id": 16308,
                            "name": "keccak256",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": -8,
                            "src": "1755:9:79",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$",
                              "typeString": "function (bytes memory) pure returns (bytes32)"
                            }
                          },
                          "id": 16314,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1755:46:79",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "functionReturnParameters": 16307,
                        "id": 16315,
                        "nodeType": "Return",
                        "src": "1748:53:79"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 16299,
                    "nodeType": "StructuredDocumentation",
                    "src": "1423:227:79",
                    "text": " @notice Computes salt used to deterministically deploy a clone.\n @param _delegator Address of the delegator\n @param _slot Slot of the delegation\n @return Salt used to deterministically deploy a clone."
                  },
                  "id": 16317,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_computeSalt",
                  "nameLocation": "1662:12:79",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16304,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16301,
                        "mutability": "mutable",
                        "name": "_delegator",
                        "nameLocation": "1683:10:79",
                        "nodeType": "VariableDeclaration",
                        "scope": 16317,
                        "src": "1675:18:79",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16300,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1675:7:79",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16303,
                        "mutability": "mutable",
                        "name": "_slot",
                        "nameLocation": "1703:5:79",
                        "nodeType": "VariableDeclaration",
                        "scope": 16317,
                        "src": "1695:13:79",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 16302,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1695:7:79",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1674:35:79"
                  },
                  "returnParameters": {
                    "id": 16307,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16306,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 16317,
                        "src": "1733:7:79",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        },
                        "typeName": {
                          "id": 16305,
                          "name": "bytes32",
                          "nodeType": "ElementaryTypeName",
                          "src": "1733:7:79",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes32",
                            "typeString": "bytes32"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1732:9:79"
                  },
                  "scope": 16318,
                  "src": "1653:153:79",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 16319,
              "src": "223:1585:79",
              "usedErrors": []
            }
          ],
          "src": "37:1772:79"
        },
        "id": 79
      },
      "@pooltogether/v4-twab-delegator/contracts/PermitAndMulticall.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-twab-delegator/contracts/PermitAndMulticall.sol",
          "exportedSymbols": {
            "Address": [
              1775
            ],
            "IERC20Permit": [
              1120
            ],
            "PermitAndMulticall": [
              16428
            ]
          },
          "id": 16429,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 16320,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:80"
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol",
              "file": "@openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol",
              "id": 16321,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 16429,
              "sourceUnit": 1121,
              "src": "61:79:80",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/utils/Address.sol",
              "file": "@openzeppelin/contracts/utils/Address.sol",
              "id": 16322,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 16429,
              "sourceUnit": 1776,
              "src": "141:51:80",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "contract",
              "documentation": {
                "id": 16323,
                "nodeType": "StructuredDocumentation",
                "src": "194:102:80",
                "text": " @notice Allows a user to permit token spend and then call multiple functions on a contract."
              },
              "fullyImplemented": true,
              "id": 16428,
              "linearizedBaseContracts": [
                16428
              ],
              "name": "PermitAndMulticall",
              "nameLocation": "306:18:80",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "canonicalName": "PermitAndMulticall.Signature",
                  "id": 16332,
                  "members": [
                    {
                      "constant": false,
                      "id": 16325,
                      "mutability": "mutable",
                      "name": "deadline",
                      "nameLocation": "604:8:80",
                      "nodeType": "VariableDeclaration",
                      "scope": 16332,
                      "src": "596:16:80",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint256",
                        "typeString": "uint256"
                      },
                      "typeName": {
                        "id": 16324,
                        "name": "uint256",
                        "nodeType": "ElementaryTypeName",
                        "src": "596:7:80",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 16327,
                      "mutability": "mutable",
                      "name": "v",
                      "nameLocation": "624:1:80",
                      "nodeType": "VariableDeclaration",
                      "scope": 16332,
                      "src": "618:7:80",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint8",
                        "typeString": "uint8"
                      },
                      "typeName": {
                        "id": 16326,
                        "name": "uint8",
                        "nodeType": "ElementaryTypeName",
                        "src": "618:5:80",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 16329,
                      "mutability": "mutable",
                      "name": "r",
                      "nameLocation": "639:1:80",
                      "nodeType": "VariableDeclaration",
                      "scope": 16332,
                      "src": "631:9:80",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_bytes32",
                        "typeString": "bytes32"
                      },
                      "typeName": {
                        "id": 16328,
                        "name": "bytes32",
                        "nodeType": "ElementaryTypeName",
                        "src": "631:7:80",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        }
                      },
                      "visibility": "internal"
                    },
                    {
                      "constant": false,
                      "id": 16331,
                      "mutability": "mutable",
                      "name": "s",
                      "nameLocation": "654:1:80",
                      "nodeType": "VariableDeclaration",
                      "scope": 16332,
                      "src": "646:9:80",
                      "stateVariable": false,
                      "storageLocation": "default",
                      "typeDescriptions": {
                        "typeIdentifier": "t_bytes32",
                        "typeString": "bytes32"
                      },
                      "typeName": {
                        "id": 16330,
                        "name": "bytes32",
                        "nodeType": "ElementaryTypeName",
                        "src": "646:7:80",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes32",
                          "typeString": "bytes32"
                        }
                      },
                      "visibility": "internal"
                    }
                  ],
                  "name": "Signature",
                  "nameLocation": "580:9:80",
                  "nodeType": "StructDefinition",
                  "scope": 16428,
                  "src": "573:87:80",
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 16386,
                    "nodeType": "Block",
                    "src": "1044:246:80",
                    "statements": [
                      {
                        "assignments": [
                          16343
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 16343,
                            "mutability": "mutable",
                            "name": "_dataLength",
                            "nameLocation": "1058:11:80",
                            "nodeType": "VariableDeclaration",
                            "scope": 16386,
                            "src": "1050:19:80",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            },
                            "typeName": {
                              "id": 16342,
                              "name": "uint256",
                              "nodeType": "ElementaryTypeName",
                              "src": "1050:7:80",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 16346,
                        "initialValue": {
                          "expression": {
                            "id": 16344,
                            "name": "_data",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16336,
                            "src": "1072:5:80",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr",
                              "typeString": "bytes calldata[] calldata"
                            }
                          },
                          "id": 16345,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "length",
                          "nodeType": "MemberAccess",
                          "src": "1072:12:80",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1050:34:80"
                      },
                      {
                        "assignments": [
                          16351
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 16351,
                            "mutability": "mutable",
                            "name": "results",
                            "nameLocation": "1105:7:80",
                            "nodeType": "VariableDeclaration",
                            "scope": 16386,
                            "src": "1090:22:80",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_bytes_memory_ptr_$dyn_memory_ptr",
                              "typeString": "bytes[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 16349,
                                "name": "bytes",
                                "nodeType": "ElementaryTypeName",
                                "src": "1090:5:80",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bytes_storage_ptr",
                                  "typeString": "bytes"
                                }
                              },
                              "id": 16350,
                              "nodeType": "ArrayTypeName",
                              "src": "1090:7:80",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_bytes_storage_$dyn_storage_ptr",
                                "typeString": "bytes[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 16357,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 16355,
                              "name": "_dataLength",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16343,
                              "src": "1127:11:80",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 16354,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "1115:11:80",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_$",
                              "typeString": "function (uint256) pure returns (bytes memory[] memory)"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 16352,
                                "name": "bytes",
                                "nodeType": "ElementaryTypeName",
                                "src": "1119:5:80",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bytes_storage_ptr",
                                  "typeString": "bytes"
                                }
                              },
                              "id": 16353,
                              "nodeType": "ArrayTypeName",
                              "src": "1119:7:80",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_bytes_storage_$dyn_storage_ptr",
                                "typeString": "bytes[]"
                              }
                            }
                          },
                          "id": 16356,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1115:24:80",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_bytes_memory_ptr_$dyn_memory_ptr",
                            "typeString": "bytes memory[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "1090:49:80"
                      },
                      {
                        "body": {
                          "id": 16382,
                          "nodeType": "Block",
                          "src": "1184:81:80",
                          "statements": [
                            {
                              "expression": {
                                "id": 16380,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "baseExpression": {
                                    "id": 16367,
                                    "name": "results",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 16351,
                                    "src": "1192:7:80",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_array$_t_bytes_memory_ptr_$dyn_memory_ptr",
                                      "typeString": "bytes memory[] memory"
                                    }
                                  },
                                  "id": 16369,
                                  "indexExpression": {
                                    "id": 16368,
                                    "name": "i",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 16359,
                                    "src": "1200:1:80",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": true,
                                  "nodeType": "IndexAccess",
                                  "src": "1192:10:80",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes_memory_ptr",
                                    "typeString": "bytes memory"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "arguments": [
                                    {
                                      "arguments": [
                                        {
                                          "id": 16374,
                                          "name": "this",
                                          "nodeType": "Identifier",
                                          "overloadedDeclarations": [],
                                          "referencedDeclaration": -28,
                                          "src": "1242:4:80",
                                          "typeDescriptions": {
                                            "typeIdentifier": "t_contract$_PermitAndMulticall_$16428",
                                            "typeString": "contract PermitAndMulticall"
                                          }
                                        }
                                      ],
                                      "expression": {
                                        "argumentTypes": [
                                          {
                                            "typeIdentifier": "t_contract$_PermitAndMulticall_$16428",
                                            "typeString": "contract PermitAndMulticall"
                                          }
                                        ],
                                        "id": 16373,
                                        "isConstant": false,
                                        "isLValue": false,
                                        "isPure": true,
                                        "lValueRequested": false,
                                        "nodeType": "ElementaryTypeNameExpression",
                                        "src": "1234:7:80",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_type$_t_address_$",
                                          "typeString": "type(address)"
                                        },
                                        "typeName": {
                                          "id": 16372,
                                          "name": "address",
                                          "nodeType": "ElementaryTypeName",
                                          "src": "1234:7:80",
                                          "typeDescriptions": {}
                                        }
                                      },
                                      "id": 16375,
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "kind": "typeConversion",
                                      "lValueRequested": false,
                                      "names": [],
                                      "nodeType": "FunctionCall",
                                      "src": "1234:13:80",
                                      "tryCall": false,
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_address",
                                        "typeString": "address"
                                      }
                                    },
                                    {
                                      "baseExpression": {
                                        "id": 16376,
                                        "name": "_data",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 16336,
                                        "src": "1249:5:80",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr",
                                          "typeString": "bytes calldata[] calldata"
                                        }
                                      },
                                      "id": 16378,
                                      "indexExpression": {
                                        "id": 16377,
                                        "name": "i",
                                        "nodeType": "Identifier",
                                        "overloadedDeclarations": [],
                                        "referencedDeclaration": 16359,
                                        "src": "1255:1:80",
                                        "typeDescriptions": {
                                          "typeIdentifier": "t_uint256",
                                          "typeString": "uint256"
                                        }
                                      },
                                      "isConstant": false,
                                      "isLValue": false,
                                      "isPure": false,
                                      "lValueRequested": false,
                                      "nodeType": "IndexAccess",
                                      "src": "1249:8:80",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_bytes_calldata_ptr",
                                        "typeString": "bytes calldata"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_address",
                                        "typeString": "address"
                                      },
                                      {
                                        "typeIdentifier": "t_bytes_calldata_ptr",
                                        "typeString": "bytes calldata"
                                      }
                                    ],
                                    "expression": {
                                      "id": 16370,
                                      "name": "Address",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 1775,
                                      "src": "1205:7:80",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_type$_t_contract$_Address_$1775_$",
                                        "typeString": "type(library Address)"
                                      }
                                    },
                                    "id": 16371,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "functionDelegateCall",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 1708,
                                    "src": "1205:28:80",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$returns$_t_bytes_memory_ptr_$",
                                      "typeString": "function (address,bytes memory) returns (bytes memory)"
                                    }
                                  },
                                  "id": 16379,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "1205:53:80",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes_memory_ptr",
                                    "typeString": "bytes memory"
                                  }
                                },
                                "src": "1192:66:80",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bytes_memory_ptr",
                                  "typeString": "bytes memory"
                                }
                              },
                              "id": 16381,
                              "nodeType": "ExpressionStatement",
                              "src": "1192:66:80"
                            }
                          ]
                        },
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          },
                          "id": 16363,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 16361,
                            "name": "i",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16359,
                            "src": "1162:1:80",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": "<",
                          "rightExpression": {
                            "id": 16362,
                            "name": "_dataLength",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16343,
                            "src": "1166:11:80",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "1162:15:80",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 16383,
                        "initializationExpression": {
                          "assignments": [
                            16359
                          ],
                          "declarations": [
                            {
                              "constant": false,
                              "id": 16359,
                              "mutability": "mutable",
                              "name": "i",
                              "nameLocation": "1159:1:80",
                              "nodeType": "VariableDeclaration",
                              "scope": 16383,
                              "src": "1151:9:80",
                              "stateVariable": false,
                              "storageLocation": "default",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "typeName": {
                                "id": 16358,
                                "name": "uint256",
                                "nodeType": "ElementaryTypeName",
                                "src": "1151:7:80",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "visibility": "internal"
                            }
                          ],
                          "id": 16360,
                          "nodeType": "VariableDeclarationStatement",
                          "src": "1151:9:80"
                        },
                        "loopExpression": {
                          "expression": {
                            "id": 16365,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "UnaryOperation",
                            "operator": "++",
                            "prefix": false,
                            "src": "1179:3:80",
                            "subExpression": {
                              "id": 16364,
                              "name": "i",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16359,
                              "src": "1179:1:80",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "id": 16366,
                          "nodeType": "ExpressionStatement",
                          "src": "1179:3:80"
                        },
                        "nodeType": "ForStatement",
                        "src": "1146:119:80"
                      },
                      {
                        "expression": {
                          "id": 16384,
                          "name": "results",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 16351,
                          "src": "1278:7:80",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_bytes_memory_ptr_$dyn_memory_ptr",
                            "typeString": "bytes memory[] memory"
                          }
                        },
                        "functionReturnParameters": 16341,
                        "id": 16385,
                        "nodeType": "Return",
                        "src": "1271:14:80"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 16333,
                    "nodeType": "StructuredDocumentation",
                    "src": "664:291:80",
                    "text": " @notice Allows a user to call multiple functions on the same contract.  Useful for EOA who want to batch transactions.\n @param _data An array of encoded function calls.  The calls must be abi-encoded calls to this contract.\n @return The results from each function call"
                  },
                  "id": 16387,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_multicall",
                  "nameLocation": "967:10:80",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16337,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16336,
                        "mutability": "mutable",
                        "name": "_data",
                        "nameLocation": "995:5:80",
                        "nodeType": "VariableDeclaration",
                        "scope": 16387,
                        "src": "978:22:80",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr",
                          "typeString": "bytes[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 16334,
                            "name": "bytes",
                            "nodeType": "ElementaryTypeName",
                            "src": "978:5:80",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes_storage_ptr",
                              "typeString": "bytes"
                            }
                          },
                          "id": 16335,
                          "nodeType": "ArrayTypeName",
                          "src": "978:7:80",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_bytes_storage_$dyn_storage_ptr",
                            "typeString": "bytes[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "977:24:80"
                  },
                  "returnParameters": {
                    "id": 16341,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16340,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 16387,
                        "src": "1028:14:80",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_bytes_memory_ptr_$dyn_memory_ptr",
                          "typeString": "bytes[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 16338,
                            "name": "bytes",
                            "nodeType": "ElementaryTypeName",
                            "src": "1028:5:80",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes_storage_ptr",
                              "typeString": "bytes"
                            }
                          },
                          "id": 16339,
                          "nodeType": "ArrayTypeName",
                          "src": "1028:7:80",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_bytes_storage_$dyn_storage_ptr",
                            "typeString": "bytes[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1027:16:80"
                  },
                  "scope": 16428,
                  "src": "958:332:80",
                  "stateMutability": "nonpayable",
                  "virtual": true,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 16426,
                    "nodeType": "Block",
                    "src": "1770:225:80",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 16405,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "1803:3:80",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 16406,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "1803:10:80",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "id": 16409,
                                  "name": "this",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -28,
                                  "src": "1829:4:80",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_PermitAndMulticall_$16428",
                                    "typeString": "contract PermitAndMulticall"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_PermitAndMulticall_$16428",
                                    "typeString": "contract PermitAndMulticall"
                                  }
                                ],
                                "id": 16408,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "1821:7:80",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 16407,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "1821:7:80",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 16410,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "1821:13:80",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16411,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16393,
                              "src": "1842:7:80",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "expression": {
                                "id": 16412,
                                "name": "_permitSignature",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 16396,
                                "src": "1857:16:80",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Signature_$16332_calldata_ptr",
                                  "typeString": "struct PermitAndMulticall.Signature calldata"
                                }
                              },
                              "id": 16413,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "deadline",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 16325,
                              "src": "1857:25:80",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "expression": {
                                "id": 16414,
                                "name": "_permitSignature",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 16396,
                                "src": "1890:16:80",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Signature_$16332_calldata_ptr",
                                  "typeString": "struct PermitAndMulticall.Signature calldata"
                                }
                              },
                              "id": 16415,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "v",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 16327,
                              "src": "1890:18:80",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint8",
                                "typeString": "uint8"
                              }
                            },
                            {
                              "expression": {
                                "id": 16416,
                                "name": "_permitSignature",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 16396,
                                "src": "1916:16:80",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Signature_$16332_calldata_ptr",
                                  "typeString": "struct PermitAndMulticall.Signature calldata"
                                }
                              },
                              "id": 16417,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "r",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 16329,
                              "src": "1916:18:80",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            {
                              "expression": {
                                "id": 16418,
                                "name": "_permitSignature",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 16396,
                                "src": "1942:16:80",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Signature_$16332_calldata_ptr",
                                  "typeString": "struct PermitAndMulticall.Signature calldata"
                                }
                              },
                              "id": 16419,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "s",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 16331,
                              "src": "1942:18:80",
                              "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": {
                              "id": 16402,
                              "name": "_permitToken",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16391,
                              "src": "1776:12:80",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20Permit_$1120",
                                "typeString": "contract IERC20Permit"
                              }
                            },
                            "id": 16404,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "permit",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 1105,
                            "src": "1776:19:80",
                            "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": 16420,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1776:190:80",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16421,
                        "nodeType": "ExpressionStatement",
                        "src": "1776:190:80"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16423,
                              "name": "_data",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16399,
                              "src": "1984:5:80",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr",
                                "typeString": "bytes calldata[] calldata"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr",
                                "typeString": "bytes calldata[] calldata"
                              }
                            ],
                            "id": 16422,
                            "name": "_multicall",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16387,
                            "src": "1973:10:80",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr_$returns$_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_$",
                              "typeString": "function (bytes calldata[] calldata) returns (bytes memory[] memory)"
                            }
                          },
                          "id": 16424,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "1973:17:80",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_bytes_memory_ptr_$dyn_memory_ptr",
                            "typeString": "bytes memory[] memory"
                          }
                        },
                        "id": 16425,
                        "nodeType": "ExpressionStatement",
                        "src": "1973:17:80"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 16388,
                    "nodeType": "StructuredDocumentation",
                    "src": "1294:310:80",
                    "text": " @notice Allow a user to approve an ERC20 token and run various calls in one transaction.\n @param _permitToken Address of the ERC20 token\n @param _amount Amount of tickets to approve\n @param _permitSignature Permit signature\n @param _data Datas to call with `functionDelegateCall`"
                  },
                  "id": 16427,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_permitAndMulticall",
                  "nameLocation": "1616:19:80",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16400,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16391,
                        "mutability": "mutable",
                        "name": "_permitToken",
                        "nameLocation": "1654:12:80",
                        "nodeType": "VariableDeclaration",
                        "scope": 16427,
                        "src": "1641:25:80",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_IERC20Permit_$1120",
                          "typeString": "contract IERC20Permit"
                        },
                        "typeName": {
                          "id": 16390,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 16389,
                            "name": "IERC20Permit",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 1120,
                            "src": "1641:12:80"
                          },
                          "referencedDeclaration": 1120,
                          "src": "1641:12:80",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_IERC20Permit_$1120",
                            "typeString": "contract IERC20Permit"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16393,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "1680:7:80",
                        "nodeType": "VariableDeclaration",
                        "scope": 16427,
                        "src": "1672:15:80",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16392,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1672:7:80",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16396,
                        "mutability": "mutable",
                        "name": "_permitSignature",
                        "nameLocation": "1712:16:80",
                        "nodeType": "VariableDeclaration",
                        "scope": 16427,
                        "src": "1693:35:80",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Signature_$16332_calldata_ptr",
                          "typeString": "struct PermitAndMulticall.Signature"
                        },
                        "typeName": {
                          "id": 16395,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 16394,
                            "name": "Signature",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 16332,
                            "src": "1693:9:80"
                          },
                          "referencedDeclaration": 16332,
                          "src": "1693:9:80",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Signature_$16332_storage_ptr",
                            "typeString": "struct PermitAndMulticall.Signature"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16399,
                        "mutability": "mutable",
                        "name": "_data",
                        "nameLocation": "1751:5:80",
                        "nodeType": "VariableDeclaration",
                        "scope": 16427,
                        "src": "1734:22:80",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr",
                          "typeString": "bytes[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 16397,
                            "name": "bytes",
                            "nodeType": "ElementaryTypeName",
                            "src": "1734:5:80",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes_storage_ptr",
                              "typeString": "bytes"
                            }
                          },
                          "id": 16398,
                          "nodeType": "ArrayTypeName",
                          "src": "1734:7:80",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_bytes_storage_$dyn_storage_ptr",
                            "typeString": "bytes[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1635:125:80"
                  },
                  "returnParameters": {
                    "id": 16401,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1770:0:80"
                  },
                  "scope": 16428,
                  "src": "1607:388:80",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 16429,
              "src": "297:1700:80",
              "usedErrors": []
            }
          ],
          "src": "37:1961:80"
        },
        "id": 80
      },
      "@pooltogether/v4-twab-delegator/contracts/TWABDelegator.sol": {
        "ast": {
          "absolutePath": "@pooltogether/v4-twab-delegator/contracts/TWABDelegator.sol",
          "exportedSymbols": {
            "Address": [
              1775
            ],
            "Clones": [
              226
            ],
            "Context": [
              1797
            ],
            "Delegation": [
              16211
            ],
            "ERC20": [
              812
            ],
            "ExtendedSafeCastLib": [
              12045
            ],
            "IControlledToken": [
              10681
            ],
            "IERC20": [
              890
            ],
            "IERC20Metadata": [
              915
            ],
            "IERC20Permit": [
              1120
            ],
            "ITicket": [
              11825
            ],
            "LowLevelDelegator": [
              16318
            ],
            "ObservationLib": [
              12204
            ],
            "OverflowSafeComparatorLib": [
              12376
            ],
            "PermitAndMulticall": [
              16428
            ],
            "RingBufferLib": [
              12461
            ],
            "SafeCast": [
              3225
            ],
            "SafeERC20": [
              1344
            ],
            "TWABDelegator": [
              17508
            ],
            "TwabLib": [
              13211
            ]
          },
          "id": 17509,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 16430,
              "literals": [
                "solidity",
                "0.8",
                ".6"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:22:81"
            },
            {
              "absolutePath": "@openzeppelin/contracts/proxy/Clones.sol",
              "file": "@openzeppelin/contracts/proxy/Clones.sol",
              "id": 16431,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 17509,
              "sourceUnit": 227,
              "src": "61:50:81",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/IERC20.sol",
              "id": 16432,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 17509,
              "sourceUnit": 891,
              "src": "112:56:81",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/ERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/ERC20.sol",
              "id": 16433,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 17509,
              "sourceUnit": 813,
              "src": "169:55:81",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol",
              "file": "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol",
              "id": 16434,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 17509,
              "sourceUnit": 1345,
              "src": "225:65:81",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/interfaces/ITicket.sol",
              "file": "@pooltogether/v4-core/contracts/interfaces/ITicket.sol",
              "id": 16435,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 17509,
              "sourceUnit": 11826,
              "src": "291:64:81",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-twab-delegator/contracts/Delegation.sol",
              "file": "./Delegation.sol",
              "id": 16436,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 17509,
              "sourceUnit": 16212,
              "src": "357:26:81",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-twab-delegator/contracts/LowLevelDelegator.sol",
              "file": "./LowLevelDelegator.sol",
              "id": 16437,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 17509,
              "sourceUnit": 16319,
              "src": "384:33:81",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "absolutePath": "@pooltogether/v4-twab-delegator/contracts/PermitAndMulticall.sol",
              "file": "./PermitAndMulticall.sol",
              "id": 16438,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 17509,
              "sourceUnit": 16429,
              "src": "418:34:81",
              "symbolAliases": [],
              "unitAlias": ""
            },
            {
              "abstract": false,
              "baseContracts": [
                {
                  "baseName": {
                    "id": 16440,
                    "name": "ERC20",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 812,
                    "src": "866:5:81"
                  },
                  "id": 16441,
                  "nodeType": "InheritanceSpecifier",
                  "src": "866:5:81"
                },
                {
                  "baseName": {
                    "id": 16442,
                    "name": "LowLevelDelegator",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 16318,
                    "src": "873:17:81"
                  },
                  "id": 16443,
                  "nodeType": "InheritanceSpecifier",
                  "src": "873:17:81"
                },
                {
                  "baseName": {
                    "id": 16444,
                    "name": "PermitAndMulticall",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 16428,
                    "src": "892:18:81"
                  },
                  "id": 16445,
                  "nodeType": "InheritanceSpecifier",
                  "src": "892:18:81"
                }
              ],
              "contractDependencies": [
                16211
              ],
              "contractKind": "contract",
              "documentation": {
                "id": 16439,
                "nodeType": "StructuredDocumentation",
                "src": "454:385:81",
                "text": " @title Delegate chances to win to multiple accounts.\n @notice This contract allows accounts to easily delegate a portion of their tickets to multiple delegatees.\nThe delegatees chance of winning prizes is increased by the delegated amount.\nIf a delegator doesn't want to actively manage the delegations, then they can stake on the contract and appoint representatives."
              },
              "fullyImplemented": true,
              "id": 17508,
              "linearizedBaseContracts": [
                17508,
                16428,
                16318,
                812,
                915,
                890,
                1797
              ],
              "name": "TWABDelegator",
              "nameLocation": "849:13:81",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "id": 16448,
                  "libraryName": {
                    "id": 16446,
                    "name": "Address",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 1775,
                    "src": "921:7:81"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "915:26:81",
                  "typeName": {
                    "id": 16447,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "933:7:81",
                    "stateMutability": "nonpayable",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  }
                },
                {
                  "id": 16451,
                  "libraryName": {
                    "id": 16449,
                    "name": "Clones",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 226,
                    "src": "950:6:81"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "944:25:81",
                  "typeName": {
                    "id": 16450,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "961:7:81",
                    "stateMutability": "nonpayable",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  }
                },
                {
                  "id": 16455,
                  "libraryName": {
                    "id": 16452,
                    "name": "SafeERC20",
                    "nodeType": "IdentifierPath",
                    "referencedDeclaration": 1344,
                    "src": "978:9:81"
                  },
                  "nodeType": "UsingForDirective",
                  "src": "972:27:81",
                  "typeName": {
                    "id": 16454,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 16453,
                      "name": "IERC20",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 890,
                      "src": "992:6:81"
                    },
                    "referencedDeclaration": 890,
                    "src": "992:6:81",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_IERC20_$890",
                      "typeString": "contract IERC20"
                    }
                  }
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 16456,
                    "nodeType": "StructuredDocumentation",
                    "src": "1045:127:81",
                    "text": " @notice Emitted when ticket associated with this contract has been set.\n @param ticket Address of the ticket"
                  },
                  "id": 16461,
                  "name": "TicketSet",
                  "nameLocation": "1181:9:81",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 16460,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16459,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "ticket",
                        "nameLocation": "1207:6:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16461,
                        "src": "1191:22:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ITicket_$11825",
                          "typeString": "contract ITicket"
                        },
                        "typeName": {
                          "id": 16458,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 16457,
                            "name": "ITicket",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11825,
                            "src": "1191:7:81"
                          },
                          "referencedDeclaration": 11825,
                          "src": "1191:7:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$11825",
                            "typeString": "contract ITicket"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1190:24:81"
                  },
                  "src": "1175:40:81"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 16462,
                    "nodeType": "StructuredDocumentation",
                    "src": "1219:152:81",
                    "text": " @notice Emitted when tickets have been staked.\n @param delegator Address of the delegator\n @param amount Amount of tickets staked"
                  },
                  "id": 16468,
                  "name": "TicketsStaked",
                  "nameLocation": "1380:13:81",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 16467,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16464,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "delegator",
                        "nameLocation": "1410:9:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16468,
                        "src": "1394:25:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16463,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1394:7:81",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16466,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "1429:6:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16468,
                        "src": "1421:14:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16465,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1421:7:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1393:43:81"
                  },
                  "src": "1374:63:81"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 16469,
                    "nodeType": "StructuredDocumentation",
                    "src": "1441:233:81",
                    "text": " @notice Emitted when tickets have been unstaked.\n @param delegator Address of the delegator\n @param recipient Address of the recipient that will receive the tickets\n @param amount Amount of tickets unstaked"
                  },
                  "id": 16477,
                  "name": "TicketsUnstaked",
                  "nameLocation": "1683:15:81",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 16476,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16471,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "delegator",
                        "nameLocation": "1715:9:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16477,
                        "src": "1699:25:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16470,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1699:7:81",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16473,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "recipient",
                        "nameLocation": "1742:9:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16477,
                        "src": "1726:25:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16472,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1726:7:81",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16475,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "1761:6:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16477,
                        "src": "1753:14:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16474,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1753:7:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1698:70:81"
                  },
                  "src": "1677:92:81"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 16478,
                    "nodeType": "StructuredDocumentation",
                    "src": "1773:400:81",
                    "text": " @notice Emitted when a new delegation is created.\n @param delegator Delegator of the delegation\n @param slot Slot of the delegation\n @param lockUntil Timestamp until which the delegation is locked\n @param delegatee Address of the delegatee\n @param delegation Address of the delegation that was created\n @param user Address of the user who created the delegation"
                  },
                  "id": 16493,
                  "name": "DelegationCreated",
                  "nameLocation": "2182:17:81",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 16492,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16480,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "delegator",
                        "nameLocation": "2221:9:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16493,
                        "src": "2205:25:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16479,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2205:7:81",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16482,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "slot",
                        "nameLocation": "2252:4:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16493,
                        "src": "2236:20:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16481,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2236:7:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16484,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "lockUntil",
                        "nameLocation": "2269:9:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16493,
                        "src": "2262:16:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint96",
                          "typeString": "uint96"
                        },
                        "typeName": {
                          "id": 16483,
                          "name": "uint96",
                          "nodeType": "ElementaryTypeName",
                          "src": "2262:6:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint96",
                            "typeString": "uint96"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16486,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "delegatee",
                        "nameLocation": "2300:9:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16493,
                        "src": "2284:25:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16485,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2284:7:81",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16489,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "delegation",
                        "nameLocation": "2326:10:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16493,
                        "src": "2315:21:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_Delegation_$16211",
                          "typeString": "contract Delegation"
                        },
                        "typeName": {
                          "id": 16488,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 16487,
                            "name": "Delegation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 16211,
                            "src": "2315:10:81"
                          },
                          "referencedDeclaration": 16211,
                          "src": "2315:10:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_Delegation_$16211",
                            "typeString": "contract Delegation"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16491,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "2350:4:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16493,
                        "src": "2342:12:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16490,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2342:7:81",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2199:159:81"
                  },
                  "src": "2176:183:81"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 16494,
                    "nodeType": "StructuredDocumentation",
                    "src": "2363:325:81",
                    "text": " @notice Emitted when a delegatee is updated.\n @param delegator Address of the delegator\n @param slot Slot of the delegation\n @param delegatee Address of the delegatee\n @param lockUntil Timestamp until which the delegation is locked\n @param user Address of the user who updated the delegatee"
                  },
                  "id": 16506,
                  "name": "DelegateeUpdated",
                  "nameLocation": "2697:16:81",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 16505,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16496,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "delegator",
                        "nameLocation": "2735:9:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16506,
                        "src": "2719:25:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16495,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2719:7:81",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16498,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "slot",
                        "nameLocation": "2766:4:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16506,
                        "src": "2750:20:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16497,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "2750:7:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16500,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "delegatee",
                        "nameLocation": "2792:9:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16506,
                        "src": "2776:25:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16499,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2776:7:81",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16502,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "lockUntil",
                        "nameLocation": "2814:9:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16506,
                        "src": "2807:16:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint96",
                          "typeString": "uint96"
                        },
                        "typeName": {
                          "id": 16501,
                          "name": "uint96",
                          "nodeType": "ElementaryTypeName",
                          "src": "2807:6:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint96",
                            "typeString": "uint96"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16504,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "2837:4:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16506,
                        "src": "2829:12:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16503,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "2829:7:81",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "2713:132:81"
                  },
                  "src": "2691:155:81"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 16507,
                    "nodeType": "StructuredDocumentation",
                    "src": "2850:279:81",
                    "text": " @notice Emitted when a delegation is funded.\n @param delegator Address of the delegator\n @param slot Slot of the delegation\n @param amount Amount of tickets that were sent to the delegation\n @param user Address of the user who funded the delegation"
                  },
                  "id": 16517,
                  "name": "DelegationFunded",
                  "nameLocation": "3138:16:81",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 16516,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16509,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "delegator",
                        "nameLocation": "3176:9:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16517,
                        "src": "3160:25:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16508,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3160:7:81",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16511,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "slot",
                        "nameLocation": "3207:4:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16517,
                        "src": "3191:20:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16510,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3191:7:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16513,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "3225:6:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16517,
                        "src": "3217:14:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16512,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3217:7:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16515,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "3253:4:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16517,
                        "src": "3237:20:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16514,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3237:7:81",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3154:107:81"
                  },
                  "src": "3132:130:81"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 16518,
                    "nodeType": "StructuredDocumentation",
                    "src": "3266:336:81",
                    "text": " @notice Emitted when a delegation is funded from the staked amount.\n @param delegator Address of the delegator\n @param slot Slot of the delegation\n @param amount Amount of tickets that were sent to the delegation\n @param user Address of the user who pulled funds from the delegator stake to the delegation"
                  },
                  "id": 16528,
                  "name": "DelegationFundedFromStake",
                  "nameLocation": "3611:25:81",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 16527,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16520,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "delegator",
                        "nameLocation": "3658:9:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16528,
                        "src": "3642:25:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16519,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3642:7:81",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16522,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "slot",
                        "nameLocation": "3689:4:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16528,
                        "src": "3673:20:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16521,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3673:7:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16524,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "3707:6:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16528,
                        "src": "3699:14:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16523,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "3699:7:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16526,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "3735:4:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16528,
                        "src": "3719:20:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16525,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "3719:7:81",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "3636:107:81"
                  },
                  "src": "3605:139:81"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 16529,
                    "nodeType": "StructuredDocumentation",
                    "src": "3748:366:81",
                    "text": " @notice Emitted when an amount of tickets has been withdrawn from a delegation. The tickets are held by this contract and the delegator stake is increased.\n @param delegator Address of the delegator\n @param slot Slot of the delegation\n @param amount Amount of tickets withdrawn\n @param user Address of the user who withdrew the tickets"
                  },
                  "id": 16539,
                  "name": "WithdrewDelegationToStake",
                  "nameLocation": "4123:25:81",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 16538,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16531,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "delegator",
                        "nameLocation": "4170:9:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16539,
                        "src": "4154:25:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16530,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4154:7:81",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16533,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "slot",
                        "nameLocation": "4201:4:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16539,
                        "src": "4185:20:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16532,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4185:7:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16535,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "4219:6:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16539,
                        "src": "4211:14:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16534,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4211:7:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16537,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "user",
                        "nameLocation": "4247:4:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16539,
                        "src": "4231:20:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16536,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4231:7:81",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4148:107:81"
                  },
                  "src": "4117:139:81"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 16540,
                    "nodeType": "StructuredDocumentation",
                    "src": "4260:308:81",
                    "text": " @notice Emitted when a delegator withdraws an amount of tickets from a delegation to a specified wallet.\n @param delegator Address of the delegator\n @param slot  Slot of the delegation\n @param amount Amount of tickets withdrawn\n @param to Recipient address of withdrawn tickets"
                  },
                  "id": 16550,
                  "name": "TransferredDelegation",
                  "nameLocation": "4577:21:81",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 16549,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16542,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "delegator",
                        "nameLocation": "4620:9:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16550,
                        "src": "4604:25:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16541,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4604:7:81",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16544,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "slot",
                        "nameLocation": "4651:4:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16550,
                        "src": "4635:20:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16543,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4635:7:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16546,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "4669:6:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16550,
                        "src": "4661:14:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16545,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "4661:7:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16548,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "4697:2:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16550,
                        "src": "4681:18:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16547,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4681:7:81",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4598:105:81"
                  },
                  "src": "4571:133:81"
                },
                {
                  "anonymous": false,
                  "documentation": {
                    "id": 16551,
                    "nodeType": "StructuredDocumentation",
                    "src": "4708:238:81",
                    "text": " @notice Emitted when a representative is set.\n @param delegator Address of the delegator\n @param representative Address of the representative\n @param set Boolean indicating if the representative was set or unset"
                  },
                  "id": 16559,
                  "name": "RepresentativeSet",
                  "nameLocation": "4955:17:81",
                  "nodeType": "EventDefinition",
                  "parameters": {
                    "id": 16558,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16553,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "delegator",
                        "nameLocation": "4989:9:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16559,
                        "src": "4973:25:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16552,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "4973:7:81",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16555,
                        "indexed": true,
                        "mutability": "mutable",
                        "name": "representative",
                        "nameLocation": "5016:14:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16559,
                        "src": "5000:30:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16554,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "5000:7:81",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16557,
                        "indexed": false,
                        "mutability": "mutable",
                        "name": "set",
                        "nameLocation": "5037:3:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16559,
                        "src": "5032:8:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 16556,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "5032:4:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "4972:69:81"
                  },
                  "src": "4949:93:81"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 16560,
                    "nodeType": "StructuredDocumentation",
                    "src": "5091:64:81",
                    "text": "@notice Prize pool ticket to which this contract is tied to."
                  },
                  "functionSelector": "6cc25db7",
                  "id": 16563,
                  "mutability": "immutable",
                  "name": "ticket",
                  "nameLocation": "5183:6:81",
                  "nodeType": "VariableDeclaration",
                  "scope": 17508,
                  "src": "5158:31:81",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_contract$_ITicket_$11825",
                    "typeString": "contract ITicket"
                  },
                  "typeName": {
                    "id": 16562,
                    "nodeType": "UserDefinedTypeName",
                    "pathNode": {
                      "id": 16561,
                      "name": "ITicket",
                      "nodeType": "IdentifierPath",
                      "referencedDeclaration": 11825,
                      "src": "5158:7:81"
                    },
                    "referencedDeclaration": 11825,
                    "src": "5158:7:81",
                    "typeDescriptions": {
                      "typeIdentifier": "t_contract$_ITicket_$11825",
                      "typeString": "contract ITicket"
                    }
                  },
                  "visibility": "public"
                },
                {
                  "constant": true,
                  "documentation": {
                    "id": 16564,
                    "nodeType": "StructuredDocumentation",
                    "src": "5194:70:81",
                    "text": "@notice Max lock time during which a delegation cannot be updated."
                  },
                  "functionSelector": "65a5d5f0",
                  "id": 16567,
                  "mutability": "constant",
                  "name": "MAX_LOCK",
                  "nameLocation": "5291:8:81",
                  "nodeType": "VariableDeclaration",
                  "scope": 17508,
                  "src": "5267:43:81",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 16565,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "5267:7:81",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": {
                    "hexValue": "313830",
                    "id": 16566,
                    "isConstant": false,
                    "isLValue": false,
                    "isPure": true,
                    "kind": "number",
                    "lValueRequested": false,
                    "nodeType": "Literal",
                    "src": "5302:8:81",
                    "subdenomination": "days",
                    "typeDescriptions": {
                      "typeIdentifier": "t_rational_15552000_by_1",
                      "typeString": "int_const 15552000"
                    },
                    "value": "180"
                  },
                  "visibility": "public"
                },
                {
                  "constant": false,
                  "documentation": {
                    "id": 16568,
                    "nodeType": "StructuredDocumentation",
                    "src": "5315:278:81",
                    "text": " @notice Representative elected by the delegator to handle delegation.\n @dev Representative can only handle delegation and cannot withdraw tickets to their wallet.\n @dev delegator => representative => bool allowing representative to represent the delegator"
                  },
                  "id": 16574,
                  "mutability": "mutable",
                  "name": "representatives",
                  "nameLocation": "5650:15:81",
                  "nodeType": "VariableDeclaration",
                  "scope": 17508,
                  "src": "5596:69:81",
                  "stateVariable": true,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_address_$_t_bool_$_$",
                    "typeString": "mapping(address => mapping(address => bool))"
                  },
                  "typeName": {
                    "id": 16573,
                    "keyType": {
                      "id": 16569,
                      "name": "address",
                      "nodeType": "ElementaryTypeName",
                      "src": "5604:7:81",
                      "typeDescriptions": {
                        "typeIdentifier": "t_address",
                        "typeString": "address"
                      }
                    },
                    "nodeType": "Mapping",
                    "src": "5596:44:81",
                    "typeDescriptions": {
                      "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_address_$_t_bool_$_$",
                      "typeString": "mapping(address => mapping(address => bool))"
                    },
                    "valueType": {
                      "id": 16572,
                      "keyType": {
                        "id": 16570,
                        "name": "address",
                        "nodeType": "ElementaryTypeName",
                        "src": "5623:7:81",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        }
                      },
                      "nodeType": "Mapping",
                      "src": "5615:24:81",
                      "typeDescriptions": {
                        "typeIdentifier": "t_mapping$_t_address_$_t_bool_$",
                        "typeString": "mapping(address => bool)"
                      },
                      "valueType": {
                        "id": 16571,
                        "name": "bool",
                        "nodeType": "ElementaryTypeName",
                        "src": "5634:4:81",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        }
                      }
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 16612,
                    "nodeType": "Block",
                    "src": "6111:138:81",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 16600,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "id": 16594,
                                    "name": "_ticket",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 16582,
                                    "src": "6133:7:81",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_ITicket_$11825",
                                      "typeString": "contract ITicket"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_ITicket_$11825",
                                      "typeString": "contract ITicket"
                                    }
                                  ],
                                  "id": 16593,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "6125:7:81",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 16592,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "6125:7:81",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 16595,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "6125:16:81",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 16598,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "6153:1:81",
                                    "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": 16597,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "6145:7:81",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 16596,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "6145:7:81",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 16599,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "6145:10:81",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "6125:30:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5457414244656c656761746f722f7469636b2d6e6f742d7a65726f2d61646472",
                              "id": 16601,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "6157:34:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_14248b6711d89932767a5427e7cd94fe90decff5abea78a2107ca02ac8677a5c",
                                "typeString": "literal_string \"TWABDelegator/tick-not-zero-addr\""
                              },
                              "value": "TWABDelegator/tick-not-zero-addr"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_14248b6711d89932767a5427e7cd94fe90decff5abea78a2107ca02ac8677a5c",
                                "typeString": "literal_string \"TWABDelegator/tick-not-zero-addr\""
                              }
                            ],
                            "id": 16591,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "6117:7:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 16602,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6117:75:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16603,
                        "nodeType": "ExpressionStatement",
                        "src": "6117:75:81"
                      },
                      {
                        "expression": {
                          "id": 16606,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 16604,
                            "name": "ticket",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16563,
                            "src": "6198:6:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_ITicket_$11825",
                              "typeString": "contract ITicket"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 16605,
                            "name": "_ticket",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16582,
                            "src": "6207:7:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_ITicket_$11825",
                              "typeString": "contract ITicket"
                            }
                          },
                          "src": "6198:16:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$11825",
                            "typeString": "contract ITicket"
                          }
                        },
                        "id": 16607,
                        "nodeType": "ExpressionStatement",
                        "src": "6198:16:81"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 16609,
                              "name": "_ticket",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16582,
                              "src": "6236:7:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$11825",
                                "typeString": "contract ITicket"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_ITicket_$11825",
                                "typeString": "contract ITicket"
                              }
                            ],
                            "id": 16608,
                            "name": "TicketSet",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16461,
                            "src": "6226:9:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_contract$_ITicket_$11825_$returns$__$",
                              "typeString": "function (contract ITicket)"
                            }
                          },
                          "id": 16610,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6226:18:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16611,
                        "nodeType": "EmitStatement",
                        "src": "6221:23:81"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 16575,
                    "nodeType": "StructuredDocumentation",
                    "src": "5717:260:81",
                    "text": " @notice Creates a new TWAB Delegator that is bound to the given ticket contract.\n @param name_ The name for the staked ticket token\n @param symbol_ The symbol for the staked ticket token\n @param _ticket Address of the ticket contract"
                  },
                  "id": 16613,
                  "implemented": true,
                  "kind": "constructor",
                  "modifiers": [
                    {
                      "arguments": [],
                      "id": 16585,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 16584,
                        "name": "LowLevelDelegator",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 16318,
                        "src": "6069:17:81"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "6069:19:81"
                    },
                    {
                      "arguments": [
                        {
                          "id": 16587,
                          "name": "name_",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 16577,
                          "src": "6095:5:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_memory_ptr",
                            "typeString": "string memory"
                          }
                        },
                        {
                          "id": 16588,
                          "name": "symbol_",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 16579,
                          "src": "6102:7:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_memory_ptr",
                            "typeString": "string memory"
                          }
                        }
                      ],
                      "id": 16589,
                      "kind": "baseConstructorSpecifier",
                      "modifierName": {
                        "id": 16586,
                        "name": "ERC20",
                        "nodeType": "IdentifierPath",
                        "referencedDeclaration": 812,
                        "src": "6089:5:81"
                      },
                      "nodeType": "ModifierInvocation",
                      "src": "6089:21:81"
                    }
                  ],
                  "name": "",
                  "nameLocation": "-1:-1:-1",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16583,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16577,
                        "mutability": "mutable",
                        "name": "name_",
                        "nameLocation": "6011:5:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16613,
                        "src": "5997:19:81",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 16576,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "5997:6:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16579,
                        "mutability": "mutable",
                        "name": "symbol_",
                        "nameLocation": "6036:7:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16613,
                        "src": "6022:21:81",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_string_memory_ptr",
                          "typeString": "string"
                        },
                        "typeName": {
                          "id": 16578,
                          "name": "string",
                          "nodeType": "ElementaryTypeName",
                          "src": "6022:6:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_string_storage_ptr",
                            "typeString": "string"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16582,
                        "mutability": "mutable",
                        "name": "_ticket",
                        "nameLocation": "6057:7:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16613,
                        "src": "6049:15:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_ITicket_$11825",
                          "typeString": "contract ITicket"
                        },
                        "typeName": {
                          "id": 16581,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 16580,
                            "name": "ITicket",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 11825,
                            "src": "6049:7:81"
                          },
                          "referencedDeclaration": 11825,
                          "src": "6049:7:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_ITicket_$11825",
                            "typeString": "contract ITicket"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "5991:77:81"
                  },
                  "returnParameters": {
                    "id": 16590,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "6111:0:81"
                  },
                  "scope": 17508,
                  "src": "5980:269:81",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 16648,
                    "nodeType": "Block",
                    "src": "6599:178:81",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16622,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16618,
                              "src": "6626:7:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 16621,
                            "name": "_requireAmountGtZero",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 17458,
                            "src": "6605:20:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint256_$returns$__$",
                              "typeString": "function (uint256) pure"
                            }
                          },
                          "id": 16623,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6605:29:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16624,
                        "nodeType": "ExpressionStatement",
                        "src": "6605:29:81"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 16629,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "6673:3:81",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 16630,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "6673:10:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "id": 16633,
                                  "name": "this",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -28,
                                  "src": "6693:4:81",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_TWABDelegator_$17508",
                                    "typeString": "contract TWABDelegator"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_TWABDelegator_$17508",
                                    "typeString": "contract TWABDelegator"
                                  }
                                ],
                                "id": 16632,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "6685:7:81",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 16631,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "6685:7:81",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 16634,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "6685:13:81",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16635,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16618,
                              "src": "6700:7:81",
                              "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": 16626,
                                  "name": "ticket",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 16563,
                                  "src": "6648:6:81",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_ITicket_$11825",
                                    "typeString": "contract ITicket"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_ITicket_$11825",
                                    "typeString": "contract ITicket"
                                  }
                                ],
                                "id": 16625,
                                "name": "IERC20",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 890,
                                "src": "6641:6:81",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_contract$_IERC20_$890_$",
                                  "typeString": "type(contract IERC20)"
                                }
                              },
                              "id": 16627,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "6641:14:81",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$890",
                                "typeString": "contract IERC20"
                              }
                            },
                            "id": 16628,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "safeTransferFrom",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 1177,
                            "src": "6641:31:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20_$890_$_t_address_$_t_address_$_t_uint256_$returns$__$bound_to$_t_contract$_IERC20_$890_$",
                              "typeString": "function (contract IERC20,address,address,uint256)"
                            }
                          },
                          "id": 16636,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6641:67:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16637,
                        "nodeType": "ExpressionStatement",
                        "src": "6641:67:81"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16639,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16616,
                              "src": "6720:3:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16640,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16618,
                              "src": "6725:7:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 16638,
                            "name": "_mint",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 672,
                            "src": "6714:5:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256)"
                            }
                          },
                          "id": 16641,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6714:19:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16642,
                        "nodeType": "ExpressionStatement",
                        "src": "6714:19:81"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 16644,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16616,
                              "src": "6759:3:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16645,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16618,
                              "src": "6764:7:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 16643,
                            "name": "TicketsStaked",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16468,
                            "src": "6745:13:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256)"
                            }
                          },
                          "id": 16646,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "6745:27:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16647,
                        "nodeType": "EmitStatement",
                        "src": "6740:32:81"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 16614,
                    "nodeType": "StructuredDocumentation",
                    "src": "6307:235:81",
                    "text": " @notice Stake `_amount` of tickets in this contract.\n @dev Tickets can be staked on behalf of a `_to` user.\n @param _to Address to which the stake will be attributed\n @param _amount Amount of tickets to stake"
                  },
                  "functionSelector": "adc9772e",
                  "id": 16649,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "stake",
                  "nameLocation": "6554:5:81",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16619,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16616,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "6568:3:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16649,
                        "src": "6560:11:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16615,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "6560:7:81",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16618,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "6581:7:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16649,
                        "src": "6573:15:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16617,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "6573:7:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "6559:30:81"
                  },
                  "returnParameters": {
                    "id": 16620,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "6599:0:81"
                  },
                  "scope": 17508,
                  "src": "6545:232:81",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 16686,
                    "nodeType": "Block",
                    "src": "7203:216:81",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16658,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16652,
                              "src": "7241:3:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 16657,
                            "name": "_requireRecipientNotZeroAddress",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 17475,
                            "src": "7209:31:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_address_$returns$__$",
                              "typeString": "function (address) pure"
                            }
                          },
                          "id": 16659,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7209:36:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16660,
                        "nodeType": "ExpressionStatement",
                        "src": "7209:36:81"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16662,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16654,
                              "src": "7272:7:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 16661,
                            "name": "_requireAmountGtZero",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 17458,
                            "src": "7251:20:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint256_$returns$__$",
                              "typeString": "function (uint256) pure"
                            }
                          },
                          "id": 16663,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7251:29:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16664,
                        "nodeType": "ExpressionStatement",
                        "src": "7251:29:81"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 16666,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "7293:3:81",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 16667,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "7293:10:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16668,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16654,
                              "src": "7305:7:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 16665,
                            "name": "_burn",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 744,
                            "src": "7287:5:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256)"
                            }
                          },
                          "id": 16669,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7287:26:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16670,
                        "nodeType": "ExpressionStatement",
                        "src": "7287:26:81"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16675,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16652,
                              "src": "7348:3:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16676,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16654,
                              "src": "7353:7:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "arguments": [
                                {
                                  "id": 16672,
                                  "name": "ticket",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 16563,
                                  "src": "7327:6:81",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_ITicket_$11825",
                                    "typeString": "contract ITicket"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_ITicket_$11825",
                                    "typeString": "contract ITicket"
                                  }
                                ],
                                "id": 16671,
                                "name": "IERC20",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 890,
                                "src": "7320:6:81",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_contract$_IERC20_$890_$",
                                  "typeString": "type(contract IERC20)"
                                }
                              },
                              "id": 16673,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "7320:14:81",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$890",
                                "typeString": "contract IERC20"
                              }
                            },
                            "id": 16674,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "safeTransfer",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 1151,
                            "src": "7320:27:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20_$890_$_t_address_$_t_uint256_$returns$__$bound_to$_t_contract$_IERC20_$890_$",
                              "typeString": "function (contract IERC20,address,uint256)"
                            }
                          },
                          "id": 16677,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7320:41:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16678,
                        "nodeType": "ExpressionStatement",
                        "src": "7320:41:81"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 16680,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "7389:3:81",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 16681,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "7389:10:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16682,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16652,
                              "src": "7401:3:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16683,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16654,
                              "src": "7406:7:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 16679,
                            "name": "TicketsUnstaked",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16477,
                            "src": "7373:15:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,address,uint256)"
                            }
                          },
                          "id": 16684,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "7373:41:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16685,
                        "nodeType": "EmitStatement",
                        "src": "7368:46:81"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 16650,
                    "nodeType": "StructuredDocumentation",
                    "src": "6781:363:81",
                    "text": " @notice Unstake `_amount` of tickets from this contract. Transfers ticket to the passed `_to` address.\n @dev If delegator has delegated his whole stake, he will first have to withdraw from a delegation to be able to unstake.\n @param _to Address of the recipient that will receive the tickets\n @param _amount Amount of tickets to unstake"
                  },
                  "functionSelector": "c2a672e0",
                  "id": 16687,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "unstake",
                  "nameLocation": "7156:7:81",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16655,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16652,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "7172:3:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16687,
                        "src": "7164:11:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16651,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "7164:7:81",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16654,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "7185:7:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16687,
                        "src": "7177:15:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16653,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "7177:7:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "7163:30:81"
                  },
                  "returnParameters": {
                    "id": 16656,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "7203:0:81"
                  },
                  "scope": 17508,
                  "src": "7147:272:81",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 16751,
                    "nodeType": "Block",
                    "src": "8355:497:81",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16703,
                              "name": "_delegator",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16690,
                              "src": "8395:10:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 16702,
                            "name": "_requireDelegatorOrRepresentative",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 17427,
                            "src": "8361:33:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_address_$returns$__$",
                              "typeString": "function (address) view"
                            }
                          },
                          "id": 16704,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8361:45:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16705,
                        "nodeType": "ExpressionStatement",
                        "src": "8361:45:81"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16707,
                              "name": "_delegatee",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16694,
                              "src": "8444:10:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 16706,
                            "name": "_requireDelegateeNotZeroAddress",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 17444,
                            "src": "8412:31:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_address_$returns$__$",
                              "typeString": "function (address) pure"
                            }
                          },
                          "id": 16708,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8412:43:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16709,
                        "nodeType": "ExpressionStatement",
                        "src": "8412:43:81"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16711,
                              "name": "_lockDuration",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16696,
                              "src": "8482:13:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint96",
                                "typeString": "uint96"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint96",
                                "typeString": "uint96"
                              }
                            ],
                            "id": 16710,
                            "name": "_requireLockDuration",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 17507,
                            "src": "8461:20:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint256_$returns$__$",
                              "typeString": "function (uint256) pure"
                            }
                          },
                          "id": 16712,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8461:35:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16713,
                        "nodeType": "ExpressionStatement",
                        "src": "8461:35:81"
                      },
                      {
                        "assignments": [
                          16715
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 16715,
                            "mutability": "mutable",
                            "name": "_lockUntil",
                            "nameLocation": "8510:10:81",
                            "nodeType": "VariableDeclaration",
                            "scope": 16751,
                            "src": "8503:17:81",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint96",
                              "typeString": "uint96"
                            },
                            "typeName": {
                              "id": 16714,
                              "name": "uint96",
                              "nodeType": "ElementaryTypeName",
                              "src": "8503:6:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint96",
                                "typeString": "uint96"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 16719,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 16717,
                              "name": "_lockDuration",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16696,
                              "src": "8541:13:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint96",
                                "typeString": "uint96"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint96",
                                "typeString": "uint96"
                              }
                            ],
                            "id": 16716,
                            "name": "_computeLockUntil",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 17274,
                            "src": "8523:17:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_uint96_$returns$_t_uint96_$",
                              "typeString": "function (uint96) view returns (uint96)"
                            }
                          },
                          "id": 16718,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8523:32:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint96",
                            "typeString": "uint96"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "8503:52:81"
                      },
                      {
                        "assignments": [
                          16722
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 16722,
                            "mutability": "mutable",
                            "name": "_delegation",
                            "nameLocation": "8573:11:81",
                            "nodeType": "VariableDeclaration",
                            "scope": 16751,
                            "src": "8562:22:81",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_Delegation_$16211",
                              "typeString": "contract Delegation"
                            },
                            "typeName": {
                              "id": 16721,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 16720,
                                "name": "Delegation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 16211,
                                "src": "8562:10:81"
                              },
                              "referencedDeclaration": 16211,
                              "src": "8562:10:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_Delegation_$16211",
                                "typeString": "contract Delegation"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 16733,
                        "initialValue": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 16725,
                                  "name": "_delegator",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 16690,
                                  "src": "8625:10:81",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "arguments": [
                                    {
                                      "id": 16728,
                                      "name": "_slot",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 16692,
                                      "src": "8645:5:81",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    ],
                                    "id": 16727,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "ElementaryTypeNameExpression",
                                    "src": "8637:7:81",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_bytes32_$",
                                      "typeString": "type(bytes32)"
                                    },
                                    "typeName": {
                                      "id": 16726,
                                      "name": "bytes32",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "8637:7:81",
                                      "typeDescriptions": {}
                                    }
                                  },
                                  "id": 16729,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "typeConversion",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "8637:14:81",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes32",
                                    "typeString": "bytes32"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  {
                                    "typeIdentifier": "t_bytes32",
                                    "typeString": "bytes32"
                                  }
                                ],
                                "id": 16724,
                                "name": "_computeSalt",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 16317,
                                "src": "8612:12:81",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_pure$_t_address_$_t_bytes32_$returns$_t_bytes32_$",
                                  "typeString": "function (address,bytes32) pure returns (bytes32)"
                                }
                              },
                              "id": 16730,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "8612:40:81",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            },
                            {
                              "id": 16731,
                              "name": "_lockUntil",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16715,
                              "src": "8660:10:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint96",
                                "typeString": "uint96"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              },
                              {
                                "typeIdentifier": "t_uint96",
                                "typeString": "uint96"
                              }
                            ],
                            "id": 16723,
                            "name": "_createDelegation",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16277,
                            "src": "8587:17:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_bytes32_$_t_uint96_$returns$_t_contract$_Delegation_$16211_$",
                              "typeString": "function (bytes32,uint96) returns (contract Delegation)"
                            }
                          },
                          "id": 16732,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8587:89:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_Delegation_$16211",
                            "typeString": "contract Delegation"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "8562:114:81"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16735,
                              "name": "_delegation",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16722,
                              "src": "8701:11:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_Delegation_$16211",
                                "typeString": "contract Delegation"
                              }
                            },
                            {
                              "id": 16736,
                              "name": "_delegatee",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16694,
                              "src": "8714:10:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_Delegation_$16211",
                                "typeString": "contract Delegation"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 16734,
                            "name": "_setDelegateeCall",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 17303,
                            "src": "8683:17:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_Delegation_$16211_$_t_address_$returns$__$",
                              "typeString": "function (contract Delegation,address)"
                            }
                          },
                          "id": 16737,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8683:42:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16738,
                        "nodeType": "ExpressionStatement",
                        "src": "8683:42:81"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 16740,
                              "name": "_delegator",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16690,
                              "src": "8755:10:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16741,
                              "name": "_slot",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16692,
                              "src": "8767:5:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 16742,
                              "name": "_lockUntil",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16715,
                              "src": "8774:10:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint96",
                                "typeString": "uint96"
                              }
                            },
                            {
                              "id": 16743,
                              "name": "_delegatee",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16694,
                              "src": "8786:10:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16744,
                              "name": "_delegation",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16722,
                              "src": "8798:11:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_Delegation_$16211",
                                "typeString": "contract Delegation"
                              }
                            },
                            {
                              "expression": {
                                "id": 16745,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "8811:3:81",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 16746,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "8811:10:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_uint96",
                                "typeString": "uint96"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_contract$_Delegation_$16211",
                                "typeString": "contract Delegation"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 16739,
                            "name": "DelegationCreated",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16493,
                            "src": "8737:17:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_uint256_$_t_uint96_$_t_address_$_t_contract$_Delegation_$16211_$_t_address_$returns$__$",
                              "typeString": "function (address,uint256,uint96,address,contract Delegation,address)"
                            }
                          },
                          "id": 16747,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "8737:85:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16748,
                        "nodeType": "EmitStatement",
                        "src": "8732:90:81"
                      },
                      {
                        "expression": {
                          "id": 16749,
                          "name": "_delegation",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 16722,
                          "src": "8836:11:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_Delegation_$16211",
                            "typeString": "contract Delegation"
                          }
                        },
                        "functionReturnParameters": 16701,
                        "id": 16750,
                        "nodeType": "Return",
                        "src": "8829:18:81"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 16688,
                    "nodeType": "StructuredDocumentation",
                    "src": "7423:776:81",
                    "text": " @notice Creates a new delegation.\nThis will create a new Delegation contract for the given slot and have it delegate its tickets to the given delegatee.\nIf a non-zero lock duration is passed, then the delegatee cannot be changed, nor funding withdrawn, until the lock has expired.\n @dev The `_delegator` and `_slot` params are used to compute the salt of the delegation\n @param _delegator Address of the delegator that will be able to handle the delegation\n @param _slot Slot of the delegation\n @param _delegatee Address of the delegatee\n @param _lockDuration Duration of time for which the delegation is locked. Must be less than the max duration.\n @return Returns the address of the Delegation contract that will hold the tickets"
                  },
                  "functionSelector": "889de805",
                  "id": 16752,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "createDelegation",
                  "nameLocation": "8211:16:81",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16697,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16690,
                        "mutability": "mutable",
                        "name": "_delegator",
                        "nameLocation": "8241:10:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16752,
                        "src": "8233:18:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16689,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "8233:7:81",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16692,
                        "mutability": "mutable",
                        "name": "_slot",
                        "nameLocation": "8265:5:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16752,
                        "src": "8257:13:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16691,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "8257:7:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16694,
                        "mutability": "mutable",
                        "name": "_delegatee",
                        "nameLocation": "8284:10:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16752,
                        "src": "8276:18:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16693,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "8276:7:81",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16696,
                        "mutability": "mutable",
                        "name": "_lockDuration",
                        "nameLocation": "8307:13:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16752,
                        "src": "8300:20:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint96",
                          "typeString": "uint96"
                        },
                        "typeName": {
                          "id": 16695,
                          "name": "uint96",
                          "nodeType": "ElementaryTypeName",
                          "src": "8300:6:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint96",
                            "typeString": "uint96"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8227:97:81"
                  },
                  "returnParameters": {
                    "id": 16701,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16700,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 16752,
                        "src": "8343:10:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_Delegation_$16211",
                          "typeString": "contract Delegation"
                        },
                        "typeName": {
                          "id": 16699,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 16698,
                            "name": "Delegation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 16211,
                            "src": "8343:10:81"
                          },
                          "referencedDeclaration": 16211,
                          "src": "8343:10:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_Delegation_$16211",
                            "typeString": "contract Delegation"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "8342:12:81"
                  },
                  "scope": 17508,
                  "src": "8202:650:81",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 16826,
                    "nodeType": "Block",
                    "src": "9500:565:81",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16768,
                              "name": "_delegator",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16755,
                              "src": "9540:10:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 16767,
                            "name": "_requireDelegatorOrRepresentative",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 17427,
                            "src": "9506:33:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_address_$returns$__$",
                              "typeString": "function (address) view"
                            }
                          },
                          "id": 16769,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9506:45:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16770,
                        "nodeType": "ExpressionStatement",
                        "src": "9506:45:81"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16772,
                              "name": "_delegatee",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16759,
                              "src": "9589:10:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 16771,
                            "name": "_requireDelegateeNotZeroAddress",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 17444,
                            "src": "9557:31:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_address_$returns$__$",
                              "typeString": "function (address) pure"
                            }
                          },
                          "id": 16773,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9557:43:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16774,
                        "nodeType": "ExpressionStatement",
                        "src": "9557:43:81"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16776,
                              "name": "_lockDuration",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16761,
                              "src": "9627:13:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint96",
                                "typeString": "uint96"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint96",
                                "typeString": "uint96"
                              }
                            ],
                            "id": 16775,
                            "name": "_requireLockDuration",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 17507,
                            "src": "9606:20:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint256_$returns$__$",
                              "typeString": "function (uint256) pure"
                            }
                          },
                          "id": 16777,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9606:35:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16778,
                        "nodeType": "ExpressionStatement",
                        "src": "9606:35:81"
                      },
                      {
                        "assignments": [
                          16781
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 16781,
                            "mutability": "mutable",
                            "name": "_delegation",
                            "nameLocation": "9659:11:81",
                            "nodeType": "VariableDeclaration",
                            "scope": 16826,
                            "src": "9648:22:81",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_Delegation_$16211",
                              "typeString": "contract Delegation"
                            },
                            "typeName": {
                              "id": 16780,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 16779,
                                "name": "Delegation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 16211,
                                "src": "9648:10:81"
                              },
                              "referencedDeclaration": 16211,
                              "src": "9648:10:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_Delegation_$16211",
                                "typeString": "contract Delegation"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 16788,
                        "initialValue": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 16784,
                                  "name": "_delegator",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 16755,
                                  "src": "9700:10:81",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "id": 16785,
                                  "name": "_slot",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 16757,
                                  "src": "9712:5:81",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 16783,
                                "name": "_computeAddress",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [
                                  17256,
                                  16298
                                ],
                                "referencedDeclaration": 17256,
                                "src": "9684:15:81",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$_t_address_$_t_uint256_$returns$_t_address_$",
                                  "typeString": "function (address,uint256) view returns (address)"
                                }
                              },
                              "id": 16786,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "9684:34:81",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 16782,
                            "name": "Delegation",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16211,
                            "src": "9673:10:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_contract$_Delegation_$16211_$",
                              "typeString": "type(contract Delegation)"
                            }
                          },
                          "id": 16787,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9673:46:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_Delegation_$16211",
                            "typeString": "contract Delegation"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "9648:71:81"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16790,
                              "name": "_delegation",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16781,
                              "src": "9752:11:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_Delegation_$16211",
                                "typeString": "contract Delegation"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_Delegation_$16211",
                                "typeString": "contract Delegation"
                              }
                            ],
                            "id": 16789,
                            "name": "_requireDelegationUnlocked",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 17493,
                            "src": "9725:26:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_contract$_Delegation_$16211_$returns$__$",
                              "typeString": "function (contract Delegation) view"
                            }
                          },
                          "id": 16791,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9725:39:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16792,
                        "nodeType": "ExpressionStatement",
                        "src": "9725:39:81"
                      },
                      {
                        "assignments": [
                          16794
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 16794,
                            "mutability": "mutable",
                            "name": "_lockUntil",
                            "nameLocation": "9778:10:81",
                            "nodeType": "VariableDeclaration",
                            "scope": 16826,
                            "src": "9771:17:81",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint96",
                              "typeString": "uint96"
                            },
                            "typeName": {
                              "id": 16793,
                              "name": "uint96",
                              "nodeType": "ElementaryTypeName",
                              "src": "9771:6:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint96",
                                "typeString": "uint96"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 16798,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 16796,
                              "name": "_lockDuration",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16761,
                              "src": "9809:13:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint96",
                                "typeString": "uint96"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint96",
                                "typeString": "uint96"
                              }
                            ],
                            "id": 16795,
                            "name": "_computeLockUntil",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 17274,
                            "src": "9791:17:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_uint96_$returns$_t_uint96_$",
                              "typeString": "function (uint96) view returns (uint96)"
                            }
                          },
                          "id": 16797,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9791:32:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint96",
                            "typeString": "uint96"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "9771:52:81"
                      },
                      {
                        "condition": {
                          "commonType": {
                            "typeIdentifier": "t_uint96",
                            "typeString": "uint96"
                          },
                          "id": 16801,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftExpression": {
                            "id": 16799,
                            "name": "_lockDuration",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16761,
                            "src": "9834:13:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint96",
                              "typeString": "uint96"
                            }
                          },
                          "nodeType": "BinaryOperation",
                          "operator": ">",
                          "rightExpression": {
                            "hexValue": "30",
                            "id": 16800,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "kind": "number",
                            "lValueRequested": false,
                            "nodeType": "Literal",
                            "src": "9850:1:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_rational_0_by_1",
                              "typeString": "int_const 0"
                            },
                            "value": "0"
                          },
                          "src": "9834:17:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 16809,
                        "nodeType": "IfStatement",
                        "src": "9830:74:81",
                        "trueBody": {
                          "id": 16808,
                          "nodeType": "Block",
                          "src": "9853:51:81",
                          "statements": [
                            {
                              "expression": {
                                "arguments": [
                                  {
                                    "id": 16805,
                                    "name": "_lockUntil",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 16794,
                                    "src": "9886:10:81",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint96",
                                      "typeString": "uint96"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_uint96",
                                      "typeString": "uint96"
                                    }
                                  ],
                                  "expression": {
                                    "id": 16802,
                                    "name": "_delegation",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 16781,
                                    "src": "9861:11:81",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_Delegation_$16211",
                                      "typeString": "contract Delegation"
                                    }
                                  },
                                  "id": 16804,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "setLockUntil",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 16165,
                                  "src": "9861:24:81",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_external_nonpayable$_t_uint96_$returns$__$",
                                    "typeString": "function (uint96) external"
                                  }
                                },
                                "id": 16806,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "9861:36:81",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_tuple$__$",
                                  "typeString": "tuple()"
                                }
                              },
                              "id": 16807,
                              "nodeType": "ExpressionStatement",
                              "src": "9861:36:81"
                            }
                          ]
                        }
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16811,
                              "name": "_delegation",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16781,
                              "src": "9928:11:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_Delegation_$16211",
                                "typeString": "contract Delegation"
                              }
                            },
                            {
                              "id": 16812,
                              "name": "_delegatee",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16759,
                              "src": "9941:10:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_Delegation_$16211",
                                "typeString": "contract Delegation"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 16810,
                            "name": "_setDelegateeCall",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 17303,
                            "src": "9910:17:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_Delegation_$16211_$_t_address_$returns$__$",
                              "typeString": "function (contract Delegation,address)"
                            }
                          },
                          "id": 16813,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9910:42:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16814,
                        "nodeType": "ExpressionStatement",
                        "src": "9910:42:81"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 16816,
                              "name": "_delegator",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16755,
                              "src": "9981:10:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16817,
                              "name": "_slot",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16757,
                              "src": "9993:5:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 16818,
                              "name": "_delegatee",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16759,
                              "src": "10000:10:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16819,
                              "name": "_lockUntil",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16794,
                              "src": "10012:10:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint96",
                                "typeString": "uint96"
                              }
                            },
                            {
                              "expression": {
                                "id": 16820,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "10024:3:81",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 16821,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "10024:10:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint96",
                                "typeString": "uint96"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 16815,
                            "name": "DelegateeUpdated",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16506,
                            "src": "9964:16:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_uint256_$_t_address_$_t_uint96_$_t_address_$returns$__$",
                              "typeString": "function (address,uint256,address,uint96,address)"
                            }
                          },
                          "id": 16822,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "9964:71:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16823,
                        "nodeType": "EmitStatement",
                        "src": "9959:76:81"
                      },
                      {
                        "expression": {
                          "id": 16824,
                          "name": "_delegation",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 16781,
                          "src": "10049:11:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_Delegation_$16211",
                            "typeString": "contract Delegation"
                          }
                        },
                        "functionReturnParameters": 16766,
                        "id": 16825,
                        "nodeType": "Return",
                        "src": "10042:18:81"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 16753,
                    "nodeType": "StructuredDocumentation",
                    "src": "8856:489:81",
                    "text": " @notice Updates the delegatee and lock duration for a delegation slot.\n @dev Only callable by the `_delegator` or their representative.\n @dev Will revert if delegation is still locked.\n @param _delegator Address of the delegator\n @param _slot Slot of the delegation\n @param _delegatee Address of the delegatee\n @param _lockDuration Duration of time during which the delegatee cannot be changed nor withdrawn\n @return The address of the Delegation"
                  },
                  "functionSelector": "6c59f295",
                  "id": 16827,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "updateDelegatee",
                  "nameLocation": "9357:15:81",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16762,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16755,
                        "mutability": "mutable",
                        "name": "_delegator",
                        "nameLocation": "9386:10:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16827,
                        "src": "9378:18:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16754,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "9378:7:81",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16757,
                        "mutability": "mutable",
                        "name": "_slot",
                        "nameLocation": "9410:5:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16827,
                        "src": "9402:13:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16756,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "9402:7:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16759,
                        "mutability": "mutable",
                        "name": "_delegatee",
                        "nameLocation": "9429:10:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16827,
                        "src": "9421:18:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16758,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "9421:7:81",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16761,
                        "mutability": "mutable",
                        "name": "_lockDuration",
                        "nameLocation": "9452:13:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16827,
                        "src": "9445:20:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint96",
                          "typeString": "uint96"
                        },
                        "typeName": {
                          "id": 16760,
                          "name": "uint96",
                          "nodeType": "ElementaryTypeName",
                          "src": "9445:6:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint96",
                            "typeString": "uint96"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9372:97:81"
                  },
                  "returnParameters": {
                    "id": 16766,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16765,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 16827,
                        "src": "9488:10:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_Delegation_$16211",
                          "typeString": "contract Delegation"
                        },
                        "typeName": {
                          "id": 16764,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 16763,
                            "name": "Delegation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 16211,
                            "src": "9488:10:81"
                          },
                          "referencedDeclaration": 16211,
                          "src": "9488:10:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_Delegation_$16211",
                            "typeString": "contract Delegation"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "9487:12:81"
                  },
                  "scope": 17508,
                  "src": "9348:717:81",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 16887,
                    "nodeType": "Block",
                    "src": "10557:366:81",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 16846,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 16841,
                                "name": "_delegator",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 16830,
                                "src": "10571:10:81",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 16844,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "10593:1:81",
                                    "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": 16843,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "10585:7:81",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 16842,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "10585:7:81",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 16845,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "10585:10:81",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "10571:24:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5457414244656c656761746f722f646c6774722d6e6f742d7a65726f2d616472",
                              "id": 16847,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "10597:34:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_7b1e4d9c68be54f93266d18bd63dee22dcdce3db6a6e54d0608da75da236be7a",
                                "typeString": "literal_string \"TWABDelegator/dlgtr-not-zero-adr\""
                              },
                              "value": "TWABDelegator/dlgtr-not-zero-adr"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_7b1e4d9c68be54f93266d18bd63dee22dcdce3db6a6e54d0608da75da236be7a",
                                "typeString": "literal_string \"TWABDelegator/dlgtr-not-zero-adr\""
                              }
                            ],
                            "id": 16840,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "10563:7:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 16848,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10563:69:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16849,
                        "nodeType": "ExpressionStatement",
                        "src": "10563:69:81"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16851,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16834,
                              "src": "10659:7:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 16850,
                            "name": "_requireAmountGtZero",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 17458,
                            "src": "10638:20:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint256_$returns$__$",
                              "typeString": "function (uint256) pure"
                            }
                          },
                          "id": 16852,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10638:29:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16853,
                        "nodeType": "ExpressionStatement",
                        "src": "10638:29:81"
                      },
                      {
                        "assignments": [
                          16856
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 16856,
                            "mutability": "mutable",
                            "name": "_delegation",
                            "nameLocation": "10685:11:81",
                            "nodeType": "VariableDeclaration",
                            "scope": 16887,
                            "src": "10674:22:81",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_Delegation_$16211",
                              "typeString": "contract Delegation"
                            },
                            "typeName": {
                              "id": 16855,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 16854,
                                "name": "Delegation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 16211,
                                "src": "10674:10:81"
                              },
                              "referencedDeclaration": 16211,
                              "src": "10674:10:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_Delegation_$16211",
                                "typeString": "contract Delegation"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 16863,
                        "initialValue": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 16859,
                                  "name": "_delegator",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 16830,
                                  "src": "10726:10:81",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "id": 16860,
                                  "name": "_slot",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 16832,
                                  "src": "10738:5:81",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 16858,
                                "name": "_computeAddress",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [
                                  17256,
                                  16298
                                ],
                                "referencedDeclaration": 17256,
                                "src": "10710:15:81",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$_t_address_$_t_uint256_$returns$_t_address_$",
                                  "typeString": "function (address,uint256) view returns (address)"
                                }
                              },
                              "id": 16861,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "10710:34:81",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 16857,
                            "name": "Delegation",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16211,
                            "src": "10699:10:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_contract$_Delegation_$16211_$",
                              "typeString": "type(contract Delegation)"
                            }
                          },
                          "id": 16862,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10699:46:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_Delegation_$16211",
                            "typeString": "contract Delegation"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "10674:71:81"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 16868,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "10783:3:81",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 16869,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "10783:10:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "id": 16872,
                                  "name": "_delegation",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 16856,
                                  "src": "10803:11:81",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_Delegation_$16211",
                                    "typeString": "contract Delegation"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_Delegation_$16211",
                                    "typeString": "contract Delegation"
                                  }
                                ],
                                "id": 16871,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "10795:7:81",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 16870,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "10795:7:81",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 16873,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "10795:20:81",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16874,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16834,
                              "src": "10817:7:81",
                              "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": 16865,
                                  "name": "ticket",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 16563,
                                  "src": "10758:6:81",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_ITicket_$11825",
                                    "typeString": "contract ITicket"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_ITicket_$11825",
                                    "typeString": "contract ITicket"
                                  }
                                ],
                                "id": 16864,
                                "name": "IERC20",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 890,
                                "src": "10751:6:81",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_contract$_IERC20_$890_$",
                                  "typeString": "type(contract IERC20)"
                                }
                              },
                              "id": 16866,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "10751:14:81",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$890",
                                "typeString": "contract IERC20"
                              }
                            },
                            "id": 16867,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "safeTransferFrom",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 1177,
                            "src": "10751:31:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20_$890_$_t_address_$_t_address_$_t_uint256_$returns$__$bound_to$_t_contract$_IERC20_$890_$",
                              "typeString": "function (contract IERC20,address,address,uint256)"
                            }
                          },
                          "id": 16875,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10751:74:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16876,
                        "nodeType": "ExpressionStatement",
                        "src": "10751:74:81"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 16878,
                              "name": "_delegator",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16830,
                              "src": "10854:10:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16879,
                              "name": "_slot",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16832,
                              "src": "10866:5:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 16880,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16834,
                              "src": "10873:7:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "expression": {
                                "id": 16881,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "10882:3:81",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 16882,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "10882:10:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 16877,
                            "name": "DelegationFunded",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16517,
                            "src": "10837:16:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_uint256_$_t_uint256_$_t_address_$returns$__$",
                              "typeString": "function (address,uint256,uint256,address)"
                            }
                          },
                          "id": 16883,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "10837:56:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16884,
                        "nodeType": "EmitStatement",
                        "src": "10832:61:81"
                      },
                      {
                        "expression": {
                          "id": 16885,
                          "name": "_delegation",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 16856,
                          "src": "10907:11:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_Delegation_$16211",
                            "typeString": "contract Delegation"
                          }
                        },
                        "functionReturnParameters": 16839,
                        "id": 16886,
                        "nodeType": "Return",
                        "src": "10900:18:81"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 16828,
                    "nodeType": "StructuredDocumentation",
                    "src": "10069:363:81",
                    "text": " @notice Fund a delegation by transferring tickets from the caller to the delegation.\n @dev Callable by anyone.\n @dev Will revert if delegation does not exist.\n @param _delegator Address of the delegator\n @param _slot Slot of the delegation\n @param _amount Amount of tickets to transfer\n @return The address of the Delegation"
                  },
                  "functionSelector": "666f7af6",
                  "id": 16888,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "fundDelegation",
                  "nameLocation": "10444:14:81",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16835,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16830,
                        "mutability": "mutable",
                        "name": "_delegator",
                        "nameLocation": "10472:10:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16888,
                        "src": "10464:18:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16829,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "10464:7:81",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16832,
                        "mutability": "mutable",
                        "name": "_slot",
                        "nameLocation": "10496:5:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16888,
                        "src": "10488:13:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16831,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "10488:7:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16834,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "10515:7:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16888,
                        "src": "10507:15:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16833,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "10507:7:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "10458:68:81"
                  },
                  "returnParameters": {
                    "id": 16839,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16838,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 16888,
                        "src": "10545:10:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_Delegation_$16211",
                          "typeString": "contract Delegation"
                        },
                        "typeName": {
                          "id": 16837,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 16836,
                            "name": "Delegation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 16211,
                            "src": "10545:10:81"
                          },
                          "referencedDeclaration": 16211,
                          "src": "10545:10:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_Delegation_$16211",
                            "typeString": "contract Delegation"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "10544:12:81"
                  },
                  "scope": 17508,
                  "src": "10435:488:81",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 16945,
                    "nodeType": "Block",
                    "src": "11537:369:81",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16902,
                              "name": "_delegator",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16891,
                              "src": "11577:10:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 16901,
                            "name": "_requireDelegatorOrRepresentative",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 17427,
                            "src": "11543:33:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_address_$returns$__$",
                              "typeString": "function (address) view"
                            }
                          },
                          "id": 16903,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "11543:45:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16904,
                        "nodeType": "ExpressionStatement",
                        "src": "11543:45:81"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16906,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16895,
                              "src": "11615:7:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 16905,
                            "name": "_requireAmountGtZero",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 17458,
                            "src": "11594:20:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint256_$returns$__$",
                              "typeString": "function (uint256) pure"
                            }
                          },
                          "id": 16907,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "11594:29:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16908,
                        "nodeType": "ExpressionStatement",
                        "src": "11594:29:81"
                      },
                      {
                        "assignments": [
                          16911
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 16911,
                            "mutability": "mutable",
                            "name": "_delegation",
                            "nameLocation": "11641:11:81",
                            "nodeType": "VariableDeclaration",
                            "scope": 16945,
                            "src": "11630:22:81",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_Delegation_$16211",
                              "typeString": "contract Delegation"
                            },
                            "typeName": {
                              "id": 16910,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 16909,
                                "name": "Delegation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 16211,
                                "src": "11630:10:81"
                              },
                              "referencedDeclaration": 16211,
                              "src": "11630:10:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_Delegation_$16211",
                                "typeString": "contract Delegation"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 16918,
                        "initialValue": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 16914,
                                  "name": "_delegator",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 16891,
                                  "src": "11682:10:81",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "id": 16915,
                                  "name": "_slot",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 16893,
                                  "src": "11694:5:81",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 16913,
                                "name": "_computeAddress",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [
                                  17256,
                                  16298
                                ],
                                "referencedDeclaration": 17256,
                                "src": "11666:15:81",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$_t_address_$_t_uint256_$returns$_t_address_$",
                                  "typeString": "function (address,uint256) view returns (address)"
                                }
                              },
                              "id": 16916,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "11666:34:81",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 16912,
                            "name": "Delegation",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16211,
                            "src": "11655:10:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_contract$_Delegation_$16211_$",
                              "typeString": "type(contract Delegation)"
                            }
                          },
                          "id": 16917,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "11655:46:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_Delegation_$16211",
                            "typeString": "contract Delegation"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "11630:71:81"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16920,
                              "name": "_delegator",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16891,
                              "src": "11714:10:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16921,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16895,
                              "src": "11726:7:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 16919,
                            "name": "_burn",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 744,
                            "src": "11708:5:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256)"
                            }
                          },
                          "id": 16922,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "11708:26:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16923,
                        "nodeType": "ExpressionStatement",
                        "src": "11708:26:81"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 16930,
                                  "name": "_delegation",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 16911,
                                  "src": "11777:11:81",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_Delegation_$16211",
                                    "typeString": "contract Delegation"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_Delegation_$16211",
                                    "typeString": "contract Delegation"
                                  }
                                ],
                                "id": 16929,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "11769:7:81",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 16928,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "11769:7:81",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 16931,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "11769:20:81",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16932,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16895,
                              "src": "11791:7:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "expression": {
                              "arguments": [
                                {
                                  "id": 16925,
                                  "name": "ticket",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 16563,
                                  "src": "11748:6:81",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_ITicket_$11825",
                                    "typeString": "contract ITicket"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_ITicket_$11825",
                                    "typeString": "contract ITicket"
                                  }
                                ],
                                "id": 16924,
                                "name": "IERC20",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 890,
                                "src": "11741:6:81",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_contract$_IERC20_$890_$",
                                  "typeString": "type(contract IERC20)"
                                }
                              },
                              "id": 16926,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "11741:14:81",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20_$890",
                                "typeString": "contract IERC20"
                              }
                            },
                            "id": 16927,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "safeTransfer",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 1151,
                            "src": "11741:27:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20_$890_$_t_address_$_t_uint256_$returns$__$bound_to$_t_contract$_IERC20_$890_$",
                              "typeString": "function (contract IERC20,address,uint256)"
                            }
                          },
                          "id": 16933,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "11741:58:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16934,
                        "nodeType": "ExpressionStatement",
                        "src": "11741:58:81"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 16936,
                              "name": "_delegator",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16891,
                              "src": "11837:10:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16937,
                              "name": "_slot",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16893,
                              "src": "11849:5:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 16938,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16895,
                              "src": "11856:7:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "expression": {
                                "id": 16939,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "11865:3:81",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 16940,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "11865:10:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 16935,
                            "name": "DelegationFundedFromStake",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16528,
                            "src": "11811:25:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_uint256_$_t_uint256_$_t_address_$returns$__$",
                              "typeString": "function (address,uint256,uint256,address)"
                            }
                          },
                          "id": 16941,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "11811:65:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16942,
                        "nodeType": "EmitStatement",
                        "src": "11806:70:81"
                      },
                      {
                        "expression": {
                          "id": 16943,
                          "name": "_delegation",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 16911,
                          "src": "11890:11:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_Delegation_$16211",
                            "typeString": "contract Delegation"
                          }
                        },
                        "functionReturnParameters": 16900,
                        "id": 16944,
                        "nodeType": "Return",
                        "src": "11883:18:81"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 16889,
                    "nodeType": "StructuredDocumentation",
                    "src": "10927:476:81",
                    "text": " @notice Fund a delegation using the `_delegator` stake.\n @dev Callable only by the `_delegator` or a representative.\n @dev Will revert if delegation does not exist.\n @dev Will revert if `_amount` is greater than the staked amount.\n @param _delegator Address of the delegator\n @param _slot Slot of the delegation\n @param _amount Amount of tickets to send to the delegation from the staked amount\n @return The address of the Delegation"
                  },
                  "functionSelector": "e18fa6eb",
                  "id": 16946,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "fundDelegationFromStake",
                  "nameLocation": "11415:23:81",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16896,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16891,
                        "mutability": "mutable",
                        "name": "_delegator",
                        "nameLocation": "11452:10:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16946,
                        "src": "11444:18:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16890,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "11444:7:81",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16893,
                        "mutability": "mutable",
                        "name": "_slot",
                        "nameLocation": "11476:5:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16946,
                        "src": "11468:13:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16892,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "11468:7:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16895,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "11495:7:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16946,
                        "src": "11487:15:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16894,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "11487:7:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "11438:68:81"
                  },
                  "returnParameters": {
                    "id": 16900,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16899,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 16946,
                        "src": "11525:10:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_Delegation_$16211",
                          "typeString": "contract Delegation"
                        },
                        "typeName": {
                          "id": 16898,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 16897,
                            "name": "Delegation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 16211,
                            "src": "11525:10:81"
                          },
                          "referencedDeclaration": 16211,
                          "src": "11525:10:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_Delegation_$16211",
                            "typeString": "contract Delegation"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "11524:12:81"
                  },
                  "scope": 17508,
                  "src": "11406:500:81",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 16997,
                    "nodeType": "Block",
                    "src": "12581:322:81",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16960,
                              "name": "_delegator",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16949,
                              "src": "12621:10:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 16959,
                            "name": "_requireDelegatorOrRepresentative",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 17427,
                            "src": "12587:33:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_address_$returns$__$",
                              "typeString": "function (address) view"
                            }
                          },
                          "id": 16961,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "12587:45:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16962,
                        "nodeType": "ExpressionStatement",
                        "src": "12587:45:81"
                      },
                      {
                        "assignments": [
                          16965
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 16965,
                            "mutability": "mutable",
                            "name": "_delegation",
                            "nameLocation": "12650:11:81",
                            "nodeType": "VariableDeclaration",
                            "scope": 16997,
                            "src": "12639:22:81",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_Delegation_$16211",
                              "typeString": "contract Delegation"
                            },
                            "typeName": {
                              "id": 16964,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 16963,
                                "name": "Delegation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 16211,
                                "src": "12639:10:81"
                              },
                              "referencedDeclaration": 16211,
                              "src": "12639:10:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_Delegation_$16211",
                                "typeString": "contract Delegation"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 16972,
                        "initialValue": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 16968,
                                  "name": "_delegator",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 16949,
                                  "src": "12691:10:81",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "id": 16969,
                                  "name": "_slot",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 16951,
                                  "src": "12703:5:81",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 16967,
                                "name": "_computeAddress",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [
                                  17256,
                                  16298
                                ],
                                "referencedDeclaration": 17256,
                                "src": "12675:15:81",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$_t_address_$_t_uint256_$returns$_t_address_$",
                                  "typeString": "function (address,uint256) view returns (address)"
                                }
                              },
                              "id": 16970,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "12675:34:81",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 16966,
                            "name": "Delegation",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16211,
                            "src": "12664:10:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_contract$_Delegation_$16211_$",
                              "typeString": "type(contract Delegation)"
                            }
                          },
                          "id": 16971,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "12664:46:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_Delegation_$16211",
                            "typeString": "contract Delegation"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "12639:71:81"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16974,
                              "name": "_delegation",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16965,
                              "src": "12727:11:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_Delegation_$16211",
                                "typeString": "contract Delegation"
                              }
                            },
                            {
                              "arguments": [
                                {
                                  "id": 16977,
                                  "name": "this",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -28,
                                  "src": "12748:4:81",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_contract$_TWABDelegator_$17508",
                                    "typeString": "contract TWABDelegator"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_contract$_TWABDelegator_$17508",
                                    "typeString": "contract TWABDelegator"
                                  }
                                ],
                                "id": 16976,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "lValueRequested": false,
                                "nodeType": "ElementaryTypeNameExpression",
                                "src": "12740:7:81",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_address_$",
                                  "typeString": "type(address)"
                                },
                                "typeName": {
                                  "id": 16975,
                                  "name": "address",
                                  "nodeType": "ElementaryTypeName",
                                  "src": "12740:7:81",
                                  "typeDescriptions": {}
                                }
                              },
                              "id": 16978,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "12740:13:81",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16979,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16953,
                              "src": "12755:7:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_Delegation_$16211",
                                "typeString": "contract Delegation"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 16973,
                            "name": "_transfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              17405,
                              616
                            ],
                            "referencedDeclaration": 17405,
                            "src": "12717:9:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_Delegation_$16211_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (contract Delegation,address,uint256)"
                            }
                          },
                          "id": 16980,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "12717:46:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16981,
                        "nodeType": "ExpressionStatement",
                        "src": "12717:46:81"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 16983,
                              "name": "_delegator",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16949,
                              "src": "12776:10:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16984,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16953,
                              "src": "12788:7:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 16982,
                            "name": "_mint",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 672,
                            "src": "12770:5:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (address,uint256)"
                            }
                          },
                          "id": 16985,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "12770:26:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16986,
                        "nodeType": "ExpressionStatement",
                        "src": "12770:26:81"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "id": 16988,
                              "name": "_delegator",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16949,
                              "src": "12834:10:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 16989,
                              "name": "_slot",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16951,
                              "src": "12846:5:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 16990,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16953,
                              "src": "12853:7:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "expression": {
                                "id": 16991,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "12862:3:81",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 16992,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "12862:10:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 16987,
                            "name": "WithdrewDelegationToStake",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16539,
                            "src": "12808:25:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_uint256_$_t_uint256_$_t_address_$returns$__$",
                              "typeString": "function (address,uint256,uint256,address)"
                            }
                          },
                          "id": 16993,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "12808:65:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 16994,
                        "nodeType": "EmitStatement",
                        "src": "12803:70:81"
                      },
                      {
                        "expression": {
                          "id": 16995,
                          "name": "_delegation",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 16965,
                          "src": "12887:11:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_Delegation_$16211",
                            "typeString": "contract Delegation"
                          }
                        },
                        "functionReturnParameters": 16958,
                        "id": 16996,
                        "nodeType": "Return",
                        "src": "12880:18:81"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 16947,
                    "nodeType": "StructuredDocumentation",
                    "src": "11910:535:81",
                    "text": " @notice Withdraw tickets from a delegation. The tickets will be held by this contract and the delegator's stake will increase.\n @dev Only callable by the `_delegator` or a representative.\n @dev Will send the tickets to this contract and increase the `_delegator` staked amount.\n @dev Will revert if delegation is still locked.\n @param _delegator Address of the delegator\n @param _slot Slot of the delegation\n @param _amount Amount of tickets to withdraw\n @return The address of the Delegation"
                  },
                  "functionSelector": "5f665011",
                  "id": 16998,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "withdrawDelegationToStake",
                  "nameLocation": "12457:25:81",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 16954,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16949,
                        "mutability": "mutable",
                        "name": "_delegator",
                        "nameLocation": "12496:10:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16998,
                        "src": "12488:18:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 16948,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "12488:7:81",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16951,
                        "mutability": "mutable",
                        "name": "_slot",
                        "nameLocation": "12520:5:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16998,
                        "src": "12512:13:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16950,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "12512:7:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 16953,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "12539:7:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 16998,
                        "src": "12531:15:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 16952,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "12531:7:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "12482:68:81"
                  },
                  "returnParameters": {
                    "id": 16958,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 16957,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 16998,
                        "src": "12569:10:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_Delegation_$16211",
                          "typeString": "contract Delegation"
                        },
                        "typeName": {
                          "id": 16956,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 16955,
                            "name": "Delegation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 16211,
                            "src": "12569:10:81"
                          },
                          "referencedDeclaration": 16211,
                          "src": "12569:10:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_Delegation_$16211",
                            "typeString": "contract Delegation"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "12568:12:81"
                  },
                  "scope": 17508,
                  "src": "12448:455:81",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 17042,
                    "nodeType": "Block",
                    "src": "13450:258:81",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 17012,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17005,
                              "src": "13488:3:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 17011,
                            "name": "_requireRecipientNotZeroAddress",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 17475,
                            "src": "13456:31:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_address_$returns$__$",
                              "typeString": "function (address) pure"
                            }
                          },
                          "id": 17013,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "13456:36:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 17014,
                        "nodeType": "ExpressionStatement",
                        "src": "13456:36:81"
                      },
                      {
                        "assignments": [
                          17017
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 17017,
                            "mutability": "mutable",
                            "name": "_delegation",
                            "nameLocation": "13510:11:81",
                            "nodeType": "VariableDeclaration",
                            "scope": 17042,
                            "src": "13499:22:81",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_Delegation_$16211",
                              "typeString": "contract Delegation"
                            },
                            "typeName": {
                              "id": 17016,
                              "nodeType": "UserDefinedTypeName",
                              "pathNode": {
                                "id": 17015,
                                "name": "Delegation",
                                "nodeType": "IdentifierPath",
                                "referencedDeclaration": 16211,
                                "src": "13499:10:81"
                              },
                              "referencedDeclaration": 16211,
                              "src": "13499:10:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_Delegation_$16211",
                                "typeString": "contract Delegation"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 17025,
                        "initialValue": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "expression": {
                                    "id": 17020,
                                    "name": "msg",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -15,
                                    "src": "13551:3:81",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_message",
                                      "typeString": "msg"
                                    }
                                  },
                                  "id": 17021,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "sender",
                                  "nodeType": "MemberAccess",
                                  "src": "13551:10:81",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "id": 17022,
                                  "name": "_slot",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 17001,
                                  "src": "13563:5:81",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                ],
                                "id": 17019,
                                "name": "_computeAddress",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [
                                  17256,
                                  16298
                                ],
                                "referencedDeclaration": 17256,
                                "src": "13535:15:81",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_view$_t_address_$_t_uint256_$returns$_t_address_$",
                                  "typeString": "function (address,uint256) view returns (address)"
                                }
                              },
                              "id": 17023,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "13535:34:81",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 17018,
                            "name": "Delegation",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16211,
                            "src": "13524:10:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_type$_t_contract$_Delegation_$16211_$",
                              "typeString": "type(contract Delegation)"
                            }
                          },
                          "id": 17024,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "typeConversion",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "13524:46:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_Delegation_$16211",
                            "typeString": "contract Delegation"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "13499:71:81"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 17027,
                              "name": "_delegation",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17017,
                              "src": "13586:11:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_Delegation_$16211",
                                "typeString": "contract Delegation"
                              }
                            },
                            {
                              "id": 17028,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17005,
                              "src": "13599:3:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 17029,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17003,
                              "src": "13604:7:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_Delegation_$16211",
                                "typeString": "contract Delegation"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 17026,
                            "name": "_transfer",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              17405,
                              616
                            ],
                            "referencedDeclaration": 17405,
                            "src": "13576:9:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_Delegation_$16211_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (contract Delegation,address,uint256)"
                            }
                          },
                          "id": 17030,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "13576:36:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 17031,
                        "nodeType": "ExpressionStatement",
                        "src": "13576:36:81"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 17033,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "13646:3:81",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 17034,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "13646:10:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 17035,
                              "name": "_slot",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17001,
                              "src": "13658:5:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 17036,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17003,
                              "src": "13665:7:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 17037,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17005,
                              "src": "13674:3:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "id": 17032,
                            "name": "TransferredDelegation",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16550,
                            "src": "13624:21:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_uint256_$_t_uint256_$_t_address_$returns$__$",
                              "typeString": "function (address,uint256,uint256,address)"
                            }
                          },
                          "id": 17038,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "13624:54:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 17039,
                        "nodeType": "EmitStatement",
                        "src": "13619:59:81"
                      },
                      {
                        "expression": {
                          "id": 17040,
                          "name": "_delegation",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 17017,
                          "src": "13692:11:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_Delegation_$16211",
                            "typeString": "contract Delegation"
                          }
                        },
                        "functionReturnParameters": 17010,
                        "id": 17041,
                        "nodeType": "Return",
                        "src": "13685:18:81"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 16999,
                    "nodeType": "StructuredDocumentation",
                    "src": "12907:419:81",
                    "text": " @notice Withdraw an `_amount` of tickets from a delegation. The delegator is assumed to be the caller.\n @dev Tickets are sent directly to the passed `_to` address.\n @dev Will revert if delegation is still locked.\n @param _slot Slot of the delegation\n @param _amount Amount to withdraw\n @param _to Account to transfer the withdrawn tickets to\n @return The address of the Delegation"
                  },
                  "functionSelector": "8b4b4ec9",
                  "id": 17043,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "transferDelegationTo",
                  "nameLocation": "13338:20:81",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 17006,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17001,
                        "mutability": "mutable",
                        "name": "_slot",
                        "nameLocation": "13372:5:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 17043,
                        "src": "13364:13:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 17000,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "13364:7:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 17003,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "13391:7:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 17043,
                        "src": "13383:15:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 17002,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "13383:7:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 17005,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "13412:3:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 17043,
                        "src": "13404:11:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 17004,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "13404:7:81",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "13358:61:81"
                  },
                  "returnParameters": {
                    "id": 17010,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17009,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 17043,
                        "src": "13438:10:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_Delegation_$16211",
                          "typeString": "contract Delegation"
                        },
                        "typeName": {
                          "id": 17008,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 17007,
                            "name": "Delegation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 16211,
                            "src": "13438:10:81"
                          },
                          "referencedDeclaration": 16211,
                          "src": "13438:10:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_Delegation_$16211",
                            "typeString": "contract Delegation"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "13437:12:81"
                  },
                  "scope": 17508,
                  "src": "13329:379:81",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 17077,
                    "nodeType": "Block",
                    "src": "14186:206:81",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 17057,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 17052,
                                "name": "_representative",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 17046,
                                "src": "14200:15:81",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 17055,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "14227:1:81",
                                    "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": 17054,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "14219:7:81",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 17053,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "14219:7:81",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 17056,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "14219:10:81",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "14200:29:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5457414244656c656761746f722f7265702d6e6f742d7a65726f2d61646472",
                              "id": 17058,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "14231:33:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_bbd9f52add0df87fe0a1181387627334f86175a8345db35a3f3f0173bf642327",
                                "typeString": "literal_string \"TWABDelegator/rep-not-zero-addr\""
                              },
                              "value": "TWABDelegator/rep-not-zero-addr"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_bbd9f52add0df87fe0a1181387627334f86175a8345db35a3f3f0173bf642327",
                                "typeString": "literal_string \"TWABDelegator/rep-not-zero-addr\""
                              }
                            ],
                            "id": 17051,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "14192:7:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 17059,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "14192:73:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 17060,
                        "nodeType": "ExpressionStatement",
                        "src": "14192:73:81"
                      },
                      {
                        "expression": {
                          "id": 17068,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "baseExpression": {
                                "id": 17061,
                                "name": "representatives",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 16574,
                                "src": "14272:15:81",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_address_$_t_bool_$_$",
                                  "typeString": "mapping(address => mapping(address => bool))"
                                }
                              },
                              "id": 17065,
                              "indexExpression": {
                                "expression": {
                                  "id": 17062,
                                  "name": "msg",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -15,
                                  "src": "14288:3:81",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_message",
                                    "typeString": "msg"
                                  }
                                },
                                "id": 17063,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "sender",
                                "nodeType": "MemberAccess",
                                "src": "14288:10:81",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "isConstant": false,
                              "isLValue": true,
                              "isPure": false,
                              "lValueRequested": false,
                              "nodeType": "IndexAccess",
                              "src": "14272:27:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_address_$_t_bool_$",
                                "typeString": "mapping(address => bool)"
                              }
                            },
                            "id": 17066,
                            "indexExpression": {
                              "id": 17064,
                              "name": "_representative",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17046,
                              "src": "14300:15:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "14272:44:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "id": 17067,
                            "name": "_set",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 17048,
                            "src": "14319:4:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "src": "14272:51:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 17069,
                        "nodeType": "ExpressionStatement",
                        "src": "14272:51:81"
                      },
                      {
                        "eventCall": {
                          "arguments": [
                            {
                              "expression": {
                                "id": 17071,
                                "name": "msg",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": -15,
                                "src": "14353:3:81",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_magic_message",
                                  "typeString": "msg"
                                }
                              },
                              "id": 17072,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "sender",
                              "nodeType": "MemberAccess",
                              "src": "14353:10:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 17073,
                              "name": "_representative",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17046,
                              "src": "14365:15:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 17074,
                              "name": "_set",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17048,
                              "src": "14382:4:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            ],
                            "id": 17070,
                            "name": "RepresentativeSet",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16559,
                            "src": "14335:17:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$_t_bool_$returns$__$",
                              "typeString": "function (address,address,bool)"
                            }
                          },
                          "id": 17075,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "14335:52:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 17076,
                        "nodeType": "EmitStatement",
                        "src": "14330:57:81"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 17044,
                    "nodeType": "StructuredDocumentation",
                    "src": "13712:399:81",
                    "text": " @notice Allow an account to set or unset a `_representative` to handle delegation.\n @dev If `_set` is `true`, `_representative` will be set as representative of `msg.sender`.\n @dev If `_set` is `false`, `_representative` will be unset as representative of `msg.sender`.\n @param _representative Address of the representative\n @param _set Set or unset the representative"
                  },
                  "functionSelector": "982b1f2f",
                  "id": 17078,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "setRepresentative",
                  "nameLocation": "14123:17:81",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 17049,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17046,
                        "mutability": "mutable",
                        "name": "_representative",
                        "nameLocation": "14149:15:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 17078,
                        "src": "14141:23:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 17045,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "14141:7:81",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 17048,
                        "mutability": "mutable",
                        "name": "_set",
                        "nameLocation": "14171:4:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 17078,
                        "src": "14166:9:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 17047,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "14166:4:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "14140:36:81"
                  },
                  "returnParameters": {
                    "id": 17050,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "14186:0:81"
                  },
                  "scope": 17508,
                  "src": "14114:278:81",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 17094,
                    "nodeType": "Block",
                    "src": "14764:62:81",
                    "statements": [
                      {
                        "expression": {
                          "baseExpression": {
                            "baseExpression": {
                              "id": 17088,
                              "name": "representatives",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16574,
                              "src": "14777:15:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_address_$_t_bool_$_$",
                                "typeString": "mapping(address => mapping(address => bool))"
                              }
                            },
                            "id": 17090,
                            "indexExpression": {
                              "id": 17089,
                              "name": "_delegator",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17081,
                              "src": "14793:10:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": false,
                            "nodeType": "IndexAccess",
                            "src": "14777:27:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_mapping$_t_address_$_t_bool_$",
                              "typeString": "mapping(address => bool)"
                            }
                          },
                          "id": 17092,
                          "indexExpression": {
                            "id": 17091,
                            "name": "_representative",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 17083,
                            "src": "14805:15:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "isConstant": false,
                          "isLValue": true,
                          "isPure": false,
                          "lValueRequested": false,
                          "nodeType": "IndexAccess",
                          "src": "14777:44:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "functionReturnParameters": 17087,
                        "id": 17093,
                        "nodeType": "Return",
                        "src": "14770:51:81"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 17079,
                    "nodeType": "StructuredDocumentation",
                    "src": "14396:249:81",
                    "text": " @notice Returns whether or not the given rep is a representative of the delegator.\n @param _delegator The delegator\n @param _representative The representative to check for\n @return True if the rep is a rep, false otherwise"
                  },
                  "functionSelector": "90ab0885",
                  "id": 17095,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "isRepresentativeOf",
                  "nameLocation": "14657:18:81",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 17084,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17081,
                        "mutability": "mutable",
                        "name": "_delegator",
                        "nameLocation": "14684:10:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 17095,
                        "src": "14676:18:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 17080,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "14676:7:81",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 17083,
                        "mutability": "mutable",
                        "name": "_representative",
                        "nameLocation": "14704:15:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 17095,
                        "src": "14696:23:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 17082,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "14696:7:81",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "14675:45:81"
                  },
                  "returnParameters": {
                    "id": 17087,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17086,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 17095,
                        "src": "14756:4:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 17085,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "14756:4:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "14755:6:81"
                  },
                  "scope": 17508,
                  "src": "14648:178:81",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 17109,
                    "nodeType": "Block",
                    "src": "15202:35:81",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 17106,
                              "name": "_data",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17099,
                              "src": "15226:5:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr",
                                "typeString": "bytes calldata[] calldata"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr",
                                "typeString": "bytes calldata[] calldata"
                              }
                            ],
                            "id": 17105,
                            "name": "_multicall",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16387,
                            "src": "15215:10:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr_$returns$_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_$",
                              "typeString": "function (bytes calldata[] calldata) returns (bytes memory[] memory)"
                            }
                          },
                          "id": 17107,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "15215:17:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_bytes_memory_ptr_$dyn_memory_ptr",
                            "typeString": "bytes memory[] memory"
                          }
                        },
                        "functionReturnParameters": 17104,
                        "id": 17108,
                        "nodeType": "Return",
                        "src": "15208:24:81"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 17096,
                    "nodeType": "StructuredDocumentation",
                    "src": "14830:292:81",
                    "text": " @notice Allows a user to call multiple functions on the same contract.  Useful for EOA who wants to batch transactions.\n @param _data An array of encoded function calls.  The calls must be abi-encoded calls to this contract.\n @return The results from each function call"
                  },
                  "functionSelector": "ac9650d8",
                  "id": 17110,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "multicall",
                  "nameLocation": "15134:9:81",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 17100,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17099,
                        "mutability": "mutable",
                        "name": "_data",
                        "nameLocation": "15161:5:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 17110,
                        "src": "15144:22:81",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr",
                          "typeString": "bytes[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 17097,
                            "name": "bytes",
                            "nodeType": "ElementaryTypeName",
                            "src": "15144:5:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes_storage_ptr",
                              "typeString": "bytes"
                            }
                          },
                          "id": 17098,
                          "nodeType": "ArrayTypeName",
                          "src": "15144:7:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_bytes_storage_$dyn_storage_ptr",
                            "typeString": "bytes[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "15143:24:81"
                  },
                  "returnParameters": {
                    "id": 17104,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17103,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 17110,
                        "src": "15186:14:81",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_bytes_memory_ptr_$dyn_memory_ptr",
                          "typeString": "bytes[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 17101,
                            "name": "bytes",
                            "nodeType": "ElementaryTypeName",
                            "src": "15186:5:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes_storage_ptr",
                              "typeString": "bytes"
                            }
                          },
                          "id": 17102,
                          "nodeType": "ArrayTypeName",
                          "src": "15186:7:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_bytes_storage_$dyn_storage_ptr",
                            "typeString": "bytes[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "15185:16:81"
                  },
                  "scope": 17508,
                  "src": "15125:112:81",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 17134,
                    "nodeType": "Block",
                    "src": "15624:95:81",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "arguments": [
                                    {
                                      "id": 17126,
                                      "name": "ticket",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 16563,
                                      "src": "15671:6:81",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_contract$_ITicket_$11825",
                                        "typeString": "contract ITicket"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_contract$_ITicket_$11825",
                                        "typeString": "contract ITicket"
                                      }
                                    ],
                                    "id": 17125,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "ElementaryTypeNameExpression",
                                    "src": "15663:7:81",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_address_$",
                                      "typeString": "type(address)"
                                    },
                                    "typeName": {
                                      "id": 17124,
                                      "name": "address",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "15663:7:81",
                                      "typeDescriptions": {}
                                    }
                                  },
                                  "id": 17127,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "typeConversion",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "15663:15:81",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                ],
                                "id": 17123,
                                "name": "IERC20Permit",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 1120,
                                "src": "15650:12:81",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_contract$_IERC20Permit_$1120_$",
                                  "typeString": "type(contract IERC20Permit)"
                                }
                              },
                              "id": 17128,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "15650:29:81",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_IERC20Permit_$1120",
                                "typeString": "contract IERC20Permit"
                              }
                            },
                            {
                              "id": 17129,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17113,
                              "src": "15681:7:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            },
                            {
                              "id": 17130,
                              "name": "_permitSignature",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17116,
                              "src": "15690:16:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_struct$_Signature_$16332_calldata_ptr",
                                "typeString": "struct PermitAndMulticall.Signature calldata"
                              }
                            },
                            {
                              "id": 17131,
                              "name": "_data",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17119,
                              "src": "15708:5:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr",
                                "typeString": "bytes calldata[] calldata"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_IERC20Permit_$1120",
                                "typeString": "contract IERC20Permit"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              {
                                "typeIdentifier": "t_struct$_Signature_$16332_calldata_ptr",
                                "typeString": "struct PermitAndMulticall.Signature calldata"
                              },
                              {
                                "typeIdentifier": "t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr",
                                "typeString": "bytes calldata[] calldata"
                              }
                            ],
                            "id": 17122,
                            "name": "_permitAndMulticall",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 16427,
                            "src": "15630:19:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_IERC20Permit_$1120_$_t_uint256_$_t_struct$_Signature_$16332_calldata_ptr_$_t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr_$returns$__$",
                              "typeString": "function (contract IERC20Permit,uint256,struct PermitAndMulticall.Signature calldata,bytes calldata[] calldata)"
                            }
                          },
                          "id": 17132,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "15630:84:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 17133,
                        "nodeType": "ExpressionStatement",
                        "src": "15630:84:81"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 17111,
                    "nodeType": "StructuredDocumentation",
                    "src": "15241:249:81",
                    "text": " @notice Alow a user to approve ticket and run various calls in one transaction.\n @param _amount Amount of tickets to approve\n @param _permitSignature Permit signature\n @param _data Datas to call with `functionDelegateCall`"
                  },
                  "functionSelector": "06452792",
                  "id": 17135,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "permitAndMulticall",
                  "nameLocation": "15502:18:81",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 17120,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17113,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "15534:7:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 17135,
                        "src": "15526:15:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 17112,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "15526:7:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 17116,
                        "mutability": "mutable",
                        "name": "_permitSignature",
                        "nameLocation": "15566:16:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 17135,
                        "src": "15547:35:81",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_struct$_Signature_$16332_calldata_ptr",
                          "typeString": "struct PermitAndMulticall.Signature"
                        },
                        "typeName": {
                          "id": 17115,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 17114,
                            "name": "Signature",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 16332,
                            "src": "15547:9:81"
                          },
                          "referencedDeclaration": 16332,
                          "src": "15547:9:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Signature_$16332_storage_ptr",
                            "typeString": "struct PermitAndMulticall.Signature"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 17119,
                        "mutability": "mutable",
                        "name": "_data",
                        "nameLocation": "15605:5:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 17135,
                        "src": "15588:22:81",
                        "stateVariable": false,
                        "storageLocation": "calldata",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr",
                          "typeString": "bytes[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 17117,
                            "name": "bytes",
                            "nodeType": "ElementaryTypeName",
                            "src": "15588:5:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes_storage_ptr",
                              "typeString": "bytes"
                            }
                          },
                          "id": 17118,
                          "nodeType": "ArrayTypeName",
                          "src": "15588:7:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_bytes_storage_$dyn_storage_ptr",
                            "typeString": "bytes[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "15520:94:81"
                  },
                  "returnParameters": {
                    "id": 17121,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "15624:0:81"
                  },
                  "scope": 17508,
                  "src": "15493:226:81",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 17201,
                    "nodeType": "Block",
                    "src": "16481:301:81",
                    "statements": [
                      {
                        "expression": {
                          "id": 17161,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 17154,
                            "name": "delegation",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 17144,
                            "src": "16487:10:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_Delegation_$16211",
                              "typeString": "contract Delegation"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "arguments": [
                                  {
                                    "id": 17157,
                                    "name": "_delegator",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 17138,
                                    "src": "16527:10:81",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  {
                                    "id": 17158,
                                    "name": "_slot",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 17140,
                                    "src": "16539:5:81",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    },
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  ],
                                  "id": 17156,
                                  "name": "_computeAddress",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [
                                    17256,
                                    16298
                                  ],
                                  "referencedDeclaration": 17256,
                                  "src": "16511:15:81",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_internal_view$_t_address_$_t_uint256_$returns$_t_address_$",
                                    "typeString": "function (address,uint256) view returns (address)"
                                  }
                                },
                                "id": 17159,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "16511:34:81",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              ],
                              "id": 17155,
                              "name": "Delegation",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16211,
                              "src": "16500:10:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_contract$_Delegation_$16211_$",
                                "typeString": "type(contract Delegation)"
                              }
                            },
                            "id": 17160,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "typeConversion",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "16500:46:81",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_contract$_Delegation_$16211",
                              "typeString": "contract Delegation"
                            }
                          },
                          "src": "16487:59:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_Delegation_$16211",
                            "typeString": "contract Delegation"
                          }
                        },
                        "id": 17162,
                        "nodeType": "ExpressionStatement",
                        "src": "16487:59:81"
                      },
                      {
                        "expression": {
                          "id": 17170,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 17163,
                            "name": "wasCreated",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 17152,
                            "src": "16552:10:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [],
                            "expression": {
                              "argumentTypes": [],
                              "expression": {
                                "arguments": [
                                  {
                                    "id": 17166,
                                    "name": "delegation",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 17144,
                                    "src": "16573:10:81",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_Delegation_$16211",
                                      "typeString": "contract Delegation"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_Delegation_$16211",
                                      "typeString": "contract Delegation"
                                    }
                                  ],
                                  "id": 17165,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "16565:7:81",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 17164,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "16565:7:81",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 17167,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "16565:19:81",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "id": 17168,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "isContract",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 1498,
                              "src": "16565:30:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_internal_view$_t_address_$returns$_t_bool_$bound_to$_t_address_$",
                                "typeString": "function (address) view returns (bool)"
                              }
                            },
                            "id": 17169,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "16565:32:81",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_bool",
                              "typeString": "bool"
                            }
                          },
                          "src": "16552:45:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 17171,
                        "nodeType": "ExpressionStatement",
                        "src": "16552:45:81"
                      },
                      {
                        "expression": {
                          "id": 17180,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 17172,
                            "name": "delegatee",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 17146,
                            "src": "16603:9:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "arguments": [
                                  {
                                    "id": 17177,
                                    "name": "delegation",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 17144,
                                    "src": "16641:10:81",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_Delegation_$16211",
                                      "typeString": "contract Delegation"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_Delegation_$16211",
                                      "typeString": "contract Delegation"
                                    }
                                  ],
                                  "id": 17176,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "16633:7:81",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 17175,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "16633:7:81",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 17178,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "16633:19:81",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              ],
                              "expression": {
                                "id": 17173,
                                "name": "ticket",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 16563,
                                "src": "16615:6:81",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_contract$_ITicket_$11825",
                                  "typeString": "contract ITicket"
                                }
                              },
                              "id": 17174,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "delegateOf",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 11694,
                              "src": "16615:17:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_external_view$_t_address_$returns$_t_address_$",
                                "typeString": "function (address) view external returns (address)"
                              }
                            },
                            "id": 17179,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "16615:38:81",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_address",
                              "typeString": "address"
                            }
                          },
                          "src": "16603:50:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "id": 17181,
                        "nodeType": "ExpressionStatement",
                        "src": "16603:50:81"
                      },
                      {
                        "expression": {
                          "id": 17190,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "id": 17182,
                            "name": "balance",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 17148,
                            "src": "16659:7:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "arguments": [
                                  {
                                    "id": 17187,
                                    "name": "delegation",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 17144,
                                    "src": "16694:10:81",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_Delegation_$16211",
                                      "typeString": "contract Delegation"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_Delegation_$16211",
                                      "typeString": "contract Delegation"
                                    }
                                  ],
                                  "id": 17186,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "16686:7:81",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 17185,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "16686:7:81",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 17188,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "16686:19:81",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              ],
                              "expression": {
                                "id": 17183,
                                "name": "ticket",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 16563,
                                "src": "16669:6:81",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_contract$_ITicket_$11825",
                                  "typeString": "contract ITicket"
                                }
                              },
                              "id": 17184,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "balanceOf",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 829,
                              "src": "16669:16:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_function_external_view$_t_address_$returns$_t_uint256_$",
                                "typeString": "function (address) view external returns (uint256)"
                              }
                            },
                            "id": 17189,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "functionCall",
                            "lValueRequested": false,
                            "names": [],
                            "nodeType": "FunctionCall",
                            "src": "16669:37:81",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_uint256",
                              "typeString": "uint256"
                            }
                          },
                          "src": "16659:47:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "id": 17191,
                        "nodeType": "ExpressionStatement",
                        "src": "16659:47:81"
                      },
                      {
                        "condition": {
                          "id": 17192,
                          "name": "wasCreated",
                          "nodeType": "Identifier",
                          "overloadedDeclarations": [],
                          "referencedDeclaration": 17152,
                          "src": "16717:10:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "id": 17200,
                        "nodeType": "IfStatement",
                        "src": "16713:65:81",
                        "trueBody": {
                          "id": 17199,
                          "nodeType": "Block",
                          "src": "16729:49:81",
                          "statements": [
                            {
                              "expression": {
                                "id": 17197,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftHandSide": {
                                  "id": 17193,
                                  "name": "lockUntil",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 17150,
                                  "src": "16737:9:81",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint256",
                                    "typeString": "uint256"
                                  }
                                },
                                "nodeType": "Assignment",
                                "operator": "=",
                                "rightHandSide": {
                                  "arguments": [],
                                  "expression": {
                                    "argumentTypes": [],
                                    "expression": {
                                      "id": 17194,
                                      "name": "delegation",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 17144,
                                      "src": "16749:10:81",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_contract$_Delegation_$16211",
                                        "typeString": "contract Delegation"
                                      }
                                    },
                                    "id": 17195,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "lockUntil",
                                    "nodeType": "MemberAccess",
                                    "referencedDeclaration": 16062,
                                    "src": "16749:20:81",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_function_external_view$__$returns$_t_uint96_$",
                                      "typeString": "function () view external returns (uint96)"
                                    }
                                  },
                                  "id": 17196,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "functionCall",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "16749:22:81",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_uint96",
                                    "typeString": "uint96"
                                  }
                                },
                                "src": "16737:34:81",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "id": 17198,
                              "nodeType": "ExpressionStatement",
                              "src": "16737:34:81"
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "documentation": {
                    "id": 17136,
                    "nodeType": "StructuredDocumentation",
                    "src": "15723:529:81",
                    "text": " @notice Allows the caller to easily get the details for a delegation.\n @param _delegator The delegator address\n @param _slot The delegation slot they are using\n @return delegation The address that holds tickets for the delegation\n @return delegatee The address that tickets are being delegated to\n @return balance The balance of tickets in the delegation\n @return lockUntil The timestamp at which the delegation unlocks\n @return wasCreated Whether or not the delegation has been created"
                  },
                  "functionSelector": "ca40edf1",
                  "id": 17202,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "getDelegation",
                  "nameLocation": "16264:13:81",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 17141,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17138,
                        "mutability": "mutable",
                        "name": "_delegator",
                        "nameLocation": "16286:10:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 17202,
                        "src": "16278:18:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 17137,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "16278:7:81",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 17140,
                        "mutability": "mutable",
                        "name": "_slot",
                        "nameLocation": "16306:5:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 17202,
                        "src": "16298:13:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 17139,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "16298:7:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "16277:35:81"
                  },
                  "returnParameters": {
                    "id": 17153,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17144,
                        "mutability": "mutable",
                        "name": "delegation",
                        "nameLocation": "16366:10:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 17202,
                        "src": "16355:21:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_Delegation_$16211",
                          "typeString": "contract Delegation"
                        },
                        "typeName": {
                          "id": 17143,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 17142,
                            "name": "Delegation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 16211,
                            "src": "16355:10:81"
                          },
                          "referencedDeclaration": 16211,
                          "src": "16355:10:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_Delegation_$16211",
                            "typeString": "contract Delegation"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 17146,
                        "mutability": "mutable",
                        "name": "delegatee",
                        "nameLocation": "16392:9:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 17202,
                        "src": "16384:17:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 17145,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "16384:7:81",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 17148,
                        "mutability": "mutable",
                        "name": "balance",
                        "nameLocation": "16417:7:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 17202,
                        "src": "16409:15:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 17147,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "16409:7:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 17150,
                        "mutability": "mutable",
                        "name": "lockUntil",
                        "nameLocation": "16440:9:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 17202,
                        "src": "16432:17:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 17149,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "16432:7:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 17152,
                        "mutability": "mutable",
                        "name": "wasCreated",
                        "nameLocation": "16462:10:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 17202,
                        "src": "16457:15:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bool",
                          "typeString": "bool"
                        },
                        "typeName": {
                          "id": 17151,
                          "name": "bool",
                          "nodeType": "ElementaryTypeName",
                          "src": "16457:4:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bool",
                            "typeString": "bool"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "16347:131:81"
                  },
                  "scope": 17508,
                  "src": "16255:527:81",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "body": {
                    "id": 17217,
                    "nodeType": "Block",
                    "src": "17199:52:81",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 17213,
                              "name": "_delegator",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17205,
                              "src": "17228:10:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 17214,
                              "name": "_slot",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17207,
                              "src": "17240:5:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 17212,
                            "name": "_computeAddress",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              17256,
                              16298
                            ],
                            "referencedDeclaration": 17256,
                            "src": "17212:15:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_address_$_t_uint256_$returns$_t_address_$",
                              "typeString": "function (address,uint256) view returns (address)"
                            }
                          },
                          "id": 17215,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "17212:34:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "functionReturnParameters": 17211,
                        "id": 17216,
                        "nodeType": "Return",
                        "src": "17205:41:81"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 17203,
                    "nodeType": "StructuredDocumentation",
                    "src": "16786:295:81",
                    "text": " @notice Computes the address of the delegation for the delegator + slot combination.\n @param _delegator The user who is delegating tickets\n @param _slot The delegation slot\n @return The address of the delegation.  This is the address that holds the balance of tickets."
                  },
                  "functionSelector": "e7880ae1",
                  "id": 17218,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "computeDelegationAddress",
                  "nameLocation": "17093:24:81",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 17208,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17205,
                        "mutability": "mutable",
                        "name": "_delegator",
                        "nameLocation": "17126:10:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 17218,
                        "src": "17118:18:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 17204,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "17118:7:81",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 17207,
                        "mutability": "mutable",
                        "name": "_slot",
                        "nameLocation": "17146:5:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 17218,
                        "src": "17138:13:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 17206,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "17138:7:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "17117:35:81"
                  },
                  "returnParameters": {
                    "id": 17211,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17210,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 17218,
                        "src": "17188:7:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 17209,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "17188:7:81",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "17187:9:81"
                  },
                  "scope": 17508,
                  "src": "17084:167:81",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "baseFunctions": [
                    341
                  ],
                  "body": {
                    "id": 17234,
                    "nodeType": "Block",
                    "src": "17490:51:81",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [],
                          "expression": {
                            "argumentTypes": [],
                            "expression": {
                              "arguments": [
                                {
                                  "arguments": [
                                    {
                                      "id": 17228,
                                      "name": "ticket",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 16563,
                                      "src": "17517:6:81",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_contract$_ITicket_$11825",
                                        "typeString": "contract ITicket"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_contract$_ITicket_$11825",
                                        "typeString": "contract ITicket"
                                      }
                                    ],
                                    "id": 17227,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "ElementaryTypeNameExpression",
                                    "src": "17509:7:81",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_address_$",
                                      "typeString": "type(address)"
                                    },
                                    "typeName": {
                                      "id": 17226,
                                      "name": "address",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "17509:7:81",
                                      "typeDescriptions": {}
                                    }
                                  },
                                  "id": 17229,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "typeConversion",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "17509:15:81",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                ],
                                "id": 17225,
                                "name": "ERC20",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 812,
                                "src": "17503:5:81",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_contract$_ERC20_$812_$",
                                  "typeString": "type(contract ERC20)"
                                }
                              },
                              "id": 17230,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "typeConversion",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "17503:22:81",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ERC20_$812",
                                "typeString": "contract ERC20"
                              }
                            },
                            "id": 17231,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "decimals",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 341,
                            "src": "17503:31:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_view$__$returns$_t_uint8_$",
                              "typeString": "function () view external returns (uint8)"
                            }
                          },
                          "id": 17232,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "17503:33:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "functionReturnParameters": 17224,
                        "id": 17233,
                        "nodeType": "Return",
                        "src": "17496:40:81"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 17219,
                    "nodeType": "StructuredDocumentation",
                    "src": "17255:167:81",
                    "text": " @notice Returns the ERC20 token decimals.\n @dev This value is equal to the decimals of the ticket being delegated.\n @return ERC20 token decimals"
                  },
                  "functionSelector": "313ce567",
                  "id": 17235,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "decimals",
                  "nameLocation": "17434:8:81",
                  "nodeType": "FunctionDefinition",
                  "overrides": {
                    "id": 17221,
                    "nodeType": "OverrideSpecifier",
                    "overrides": [],
                    "src": "17465:8:81"
                  },
                  "parameters": {
                    "id": 17220,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "17442:2:81"
                  },
                  "returnParameters": {
                    "id": 17224,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17223,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 17235,
                        "src": "17483:5:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint8",
                          "typeString": "uint8"
                        },
                        "typeName": {
                          "id": 17222,
                          "name": "uint8",
                          "nodeType": "ElementaryTypeName",
                          "src": "17483:5:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint8",
                            "typeString": "uint8"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "17482:7:81"
                  },
                  "scope": 17508,
                  "src": "17425:116:81",
                  "stateMutability": "view",
                  "virtual": true,
                  "visibility": "public"
                },
                {
                  "body": {
                    "id": 17255,
                    "nodeType": "Block",
                    "src": "18028:75:81",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "arguments": [
                                {
                                  "id": 17247,
                                  "name": "_delegator",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 17238,
                                  "src": "18070:10:81",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                {
                                  "arguments": [
                                    {
                                      "id": 17250,
                                      "name": "_slot",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": 17240,
                                      "src": "18090:5:81",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    }
                                  ],
                                  "expression": {
                                    "argumentTypes": [
                                      {
                                        "typeIdentifier": "t_uint256",
                                        "typeString": "uint256"
                                      }
                                    ],
                                    "id": 17249,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "lValueRequested": false,
                                    "nodeType": "ElementaryTypeNameExpression",
                                    "src": "18082:7:81",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_type$_t_bytes32_$",
                                      "typeString": "type(bytes32)"
                                    },
                                    "typeName": {
                                      "id": 17248,
                                      "name": "bytes32",
                                      "nodeType": "ElementaryTypeName",
                                      "src": "18082:7:81",
                                      "typeDescriptions": {}
                                    }
                                  },
                                  "id": 17251,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "kind": "typeConversion",
                                  "lValueRequested": false,
                                  "names": [],
                                  "nodeType": "FunctionCall",
                                  "src": "18082:14:81",
                                  "tryCall": false,
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_bytes32",
                                    "typeString": "bytes32"
                                  }
                                }
                              ],
                              "expression": {
                                "argumentTypes": [
                                  {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  },
                                  {
                                    "typeIdentifier": "t_bytes32",
                                    "typeString": "bytes32"
                                  }
                                ],
                                "id": 17246,
                                "name": "_computeSalt",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 16317,
                                "src": "18057:12:81",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_function_internal_pure$_t_address_$_t_bytes32_$returns$_t_bytes32_$",
                                  "typeString": "function (address,bytes32) pure returns (bytes32)"
                                }
                              },
                              "id": 17252,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "kind": "functionCall",
                              "lValueRequested": false,
                              "names": [],
                              "nodeType": "FunctionCall",
                              "src": "18057:40:81",
                              "tryCall": false,
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes32",
                                "typeString": "bytes32"
                              }
                            ],
                            "id": 17245,
                            "name": "_computeAddress",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              17256,
                              16298
                            ],
                            "referencedDeclaration": 16298,
                            "src": "18041:15:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_bytes32_$returns$_t_address_$",
                              "typeString": "function (bytes32) view returns (address)"
                            }
                          },
                          "id": 17253,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "18041:57:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "functionReturnParameters": 17244,
                        "id": 17254,
                        "nodeType": "Return",
                        "src": "18034:64:81"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 17236,
                    "nodeType": "StructuredDocumentation",
                    "src": "17599:334:81",
                    "text": " @notice Computes the address of a delegation contract using the delegator and slot as a salt.\nThe contract is a clone, also known as minimal proxy contract.\n @param _delegator Address of the delegator\n @param _slot Slot of the delegation\n @return Address at which the delegation contract will be deployed"
                  },
                  "id": 17256,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_computeAddress",
                  "nameLocation": "17945:15:81",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 17241,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17238,
                        "mutability": "mutable",
                        "name": "_delegator",
                        "nameLocation": "17969:10:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 17256,
                        "src": "17961:18:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 17237,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "17961:7:81",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 17240,
                        "mutability": "mutable",
                        "name": "_slot",
                        "nameLocation": "17989:5:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 17256,
                        "src": "17981:13:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 17239,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "17981:7:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "17960:35:81"
                  },
                  "returnParameters": {
                    "id": 17244,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17243,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 17256,
                        "src": "18019:7:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 17242,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "18019:7:81",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "18018:9:81"
                  },
                  "scope": 17508,
                  "src": "17936:167:81",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 17273,
                    "nodeType": "Block",
                    "src": "18426:81:81",
                    "statements": [
                      {
                        "id": 17272,
                        "nodeType": "UncheckedBlock",
                        "src": "18432:71:81",
                        "statements": [
                          {
                            "expression": {
                              "commonType": {
                                "typeIdentifier": "t_uint96",
                                "typeString": "uint96"
                              },
                              "id": 17270,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "arguments": [
                                  {
                                    "expression": {
                                      "id": 17266,
                                      "name": "block",
                                      "nodeType": "Identifier",
                                      "overloadedDeclarations": [],
                                      "referencedDeclaration": -4,
                                      "src": "18464:5:81",
                                      "typeDescriptions": {
                                        "typeIdentifier": "t_magic_block",
                                        "typeString": "block"
                                      }
                                    },
                                    "id": 17267,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": false,
                                    "lValueRequested": false,
                                    "memberName": "timestamp",
                                    "nodeType": "MemberAccess",
                                    "src": "18464:15:81",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_uint256",
                                      "typeString": "uint256"
                                    }
                                  ],
                                  "id": 17265,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "18457:6:81",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_uint96_$",
                                    "typeString": "type(uint96)"
                                  },
                                  "typeName": {
                                    "id": 17264,
                                    "name": "uint96",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "18457:6:81",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 17268,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "18457:23:81",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint96",
                                  "typeString": "uint96"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "+",
                              "rightExpression": {
                                "id": 17269,
                                "name": "_lockDuration",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 17259,
                                "src": "18483:13:81",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint96",
                                  "typeString": "uint96"
                                }
                              },
                              "src": "18457:39:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint96",
                                "typeString": "uint96"
                              }
                            },
                            "functionReturnParameters": 17263,
                            "id": 17271,
                            "nodeType": "Return",
                            "src": "18450:46:81"
                          }
                        ]
                      }
                    ]
                  },
                  "documentation": {
                    "id": 17257,
                    "nodeType": "StructuredDocumentation",
                    "src": "18107:236:81",
                    "text": " @notice Computes the timestamp at which the delegation unlocks, after which the delegatee can be changed and tickets withdrawn.\n @param _lockDuration The duration of the lock\n @return The lock expiration timestamp"
                  },
                  "id": 17274,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_computeLockUntil",
                  "nameLocation": "18355:17:81",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 17260,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17259,
                        "mutability": "mutable",
                        "name": "_lockDuration",
                        "nameLocation": "18380:13:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 17274,
                        "src": "18373:20:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint96",
                          "typeString": "uint96"
                        },
                        "typeName": {
                          "id": 17258,
                          "name": "uint96",
                          "nodeType": "ElementaryTypeName",
                          "src": "18373:6:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint96",
                            "typeString": "uint96"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "18372:22:81"
                  },
                  "returnParameters": {
                    "id": 17263,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17262,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 17274,
                        "src": "18418:6:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint96",
                          "typeString": "uint96"
                        },
                        "typeName": {
                          "id": 17261,
                          "name": "uint96",
                          "nodeType": "ElementaryTypeName",
                          "src": "18418:6:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint96",
                            "typeString": "uint96"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "18417:8:81"
                  },
                  "scope": 17508,
                  "src": "18346:161:81",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 17302,
                    "nodeType": "Block",
                    "src": "18802:165:81",
                    "statements": [
                      {
                        "assignments": [
                          17284
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 17284,
                            "mutability": "mutable",
                            "name": "_selector",
                            "nameLocation": "18815:9:81",
                            "nodeType": "VariableDeclaration",
                            "scope": 17302,
                            "src": "18808:16:81",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes4",
                              "typeString": "bytes4"
                            },
                            "typeName": {
                              "id": 17283,
                              "name": "bytes4",
                              "nodeType": "ElementaryTypeName",
                              "src": "18808:6:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes4",
                                "typeString": "bytes4"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 17288,
                        "initialValue": {
                          "expression": {
                            "expression": {
                              "id": 17285,
                              "name": "ticket",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16563,
                              "src": "18827:6:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$11825",
                                "typeString": "contract ITicket"
                              }
                            },
                            "id": 17286,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "delegate",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 11700,
                            "src": "18827:15:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_address_$returns$__$",
                              "typeString": "function (address) external"
                            }
                          },
                          "id": 17287,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "selector",
                          "nodeType": "MemberAccess",
                          "src": "18827:24:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes4",
                            "typeString": "bytes4"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "18808:43:81"
                      },
                      {
                        "assignments": [
                          17290
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 17290,
                            "mutability": "mutable",
                            "name": "_data",
                            "nameLocation": "18870:5:81",
                            "nodeType": "VariableDeclaration",
                            "scope": 17302,
                            "src": "18857:18:81",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes_memory_ptr",
                              "typeString": "bytes"
                            },
                            "typeName": {
                              "id": 17289,
                              "name": "bytes",
                              "nodeType": "ElementaryTypeName",
                              "src": "18857:5:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_storage_ptr",
                                "typeString": "bytes"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 17296,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 17293,
                              "name": "_selector",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17284,
                              "src": "18901:9:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes4",
                                "typeString": "bytes4"
                              }
                            },
                            {
                              "id": 17294,
                              "name": "_delegatee",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17280,
                              "src": "18912:10:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bytes4",
                                "typeString": "bytes4"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            ],
                            "expression": {
                              "id": 17291,
                              "name": "abi",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": -1,
                              "src": "18878:3:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_magic_abi",
                                "typeString": "abi"
                              }
                            },
                            "id": 17292,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "memberName": "encodeWithSelector",
                            "nodeType": "MemberAccess",
                            "src": "18878:22:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_abiencodewithselector_pure$_t_bytes4_$returns$_t_bytes_memory_ptr_$",
                              "typeString": "function (bytes4) pure returns (bytes memory)"
                            }
                          },
                          "id": 17295,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "18878:45:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_memory_ptr",
                            "typeString": "bytes memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "18857:66:81"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 17298,
                              "name": "_delegation",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17278,
                              "src": "18943:11:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_Delegation_$16211",
                                "typeString": "contract Delegation"
                              }
                            },
                            {
                              "id": 17299,
                              "name": "_data",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17290,
                              "src": "18956:5:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_Delegation_$16211",
                                "typeString": "contract Delegation"
                              },
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "id": 17297,
                            "name": "_executeCall",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 17379,
                            "src": "18930:12:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_Delegation_$16211_$_t_bytes_memory_ptr_$returns$_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_$",
                              "typeString": "function (contract Delegation,bytes memory) returns (bytes memory[] memory)"
                            }
                          },
                          "id": 17300,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "18930:32:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_bytes_memory_ptr_$dyn_memory_ptr",
                            "typeString": "bytes memory[] memory"
                          }
                        },
                        "id": 17301,
                        "nodeType": "ExpressionStatement",
                        "src": "18930:32:81"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 17275,
                    "nodeType": "StructuredDocumentation",
                    "src": "18511:208:81",
                    "text": " @notice Delegates tickets from the `_delegation` contract to the `_delegatee` address.\n @param _delegation Address of the delegation contract\n @param _delegatee Address of the delegatee"
                  },
                  "id": 17303,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_setDelegateeCall",
                  "nameLocation": "18731:17:81",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 17281,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17278,
                        "mutability": "mutable",
                        "name": "_delegation",
                        "nameLocation": "18760:11:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 17303,
                        "src": "18749:22:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_Delegation_$16211",
                          "typeString": "contract Delegation"
                        },
                        "typeName": {
                          "id": 17277,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 17276,
                            "name": "Delegation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 16211,
                            "src": "18749:10:81"
                          },
                          "referencedDeclaration": 16211,
                          "src": "18749:10:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_Delegation_$16211",
                            "typeString": "contract Delegation"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 17280,
                        "mutability": "mutable",
                        "name": "_delegatee",
                        "nameLocation": "18781:10:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 17303,
                        "src": "18773:18:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 17279,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "18773:7:81",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "18748:44:81"
                  },
                  "returnParameters": {
                    "id": 17282,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "18802:0:81"
                  },
                  "scope": 17508,
                  "src": "18722:245:81",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 17334,
                    "nodeType": "Block",
                    "src": "19316:167:81",
                    "statements": [
                      {
                        "assignments": [
                          17315
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 17315,
                            "mutability": "mutable",
                            "name": "_selector",
                            "nameLocation": "19329:9:81",
                            "nodeType": "VariableDeclaration",
                            "scope": 17334,
                            "src": "19322:16:81",
                            "stateVariable": false,
                            "storageLocation": "default",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes4",
                              "typeString": "bytes4"
                            },
                            "typeName": {
                              "id": 17314,
                              "name": "bytes4",
                              "nodeType": "ElementaryTypeName",
                              "src": "19322:6:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes4",
                                "typeString": "bytes4"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 17319,
                        "initialValue": {
                          "expression": {
                            "expression": {
                              "id": 17316,
                              "name": "ticket",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 16563,
                              "src": "19341:6:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_ITicket_$11825",
                                "typeString": "contract ITicket"
                              }
                            },
                            "id": 17317,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "transfer",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 839,
                            "src": "19341:15:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$",
                              "typeString": "function (address,uint256) external returns (bool)"
                            }
                          },
                          "id": 17318,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "memberName": "selector",
                          "nodeType": "MemberAccess",
                          "src": "19341:24:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes4",
                            "typeString": "bytes4"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "19322:43:81"
                      },
                      {
                        "assignments": [
                          17321
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 17321,
                            "mutability": "mutable",
                            "name": "_data",
                            "nameLocation": "19384:5:81",
                            "nodeType": "VariableDeclaration",
                            "scope": 17334,
                            "src": "19371:18:81",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes_memory_ptr",
                              "typeString": "bytes"
                            },
                            "typeName": {
                              "id": 17320,
                              "name": "bytes",
                              "nodeType": "ElementaryTypeName",
                              "src": "19371:5:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_storage_ptr",
                                "typeString": "bytes"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 17328,
                        "initialValue": {
                          "arguments": [
                            {
                              "id": 17324,
                              "name": "_selector",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17315,
                              "src": "19415:9:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes4",
                                "typeString": "bytes4"
                              }
                            },
                            {
                              "id": 17325,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17309,
                              "src": "19426:3:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 17326,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17311,
                              "src": "19431:7:81",
                              "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": 17322,
                              "name": "abi",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": -1,
                              "src": "19392:3:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_magic_abi",
                                "typeString": "abi"
                              }
                            },
                            "id": 17323,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "memberName": "encodeWithSelector",
                            "nodeType": "MemberAccess",
                            "src": "19392:22:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_abiencodewithselector_pure$_t_bytes4_$returns$_t_bytes_memory_ptr_$",
                              "typeString": "function (bytes4) pure returns (bytes memory)"
                            }
                          },
                          "id": 17327,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "19392:47:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_memory_ptr",
                            "typeString": "bytes memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "19371:68:81"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 17330,
                              "name": "_delegation",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17307,
                              "src": "19459:11:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_Delegation_$16211",
                                "typeString": "contract Delegation"
                              }
                            },
                            {
                              "id": 17331,
                              "name": "_data",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17321,
                              "src": "19472:5:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_Delegation_$16211",
                                "typeString": "contract Delegation"
                              },
                              {
                                "typeIdentifier": "t_bytes_memory_ptr",
                                "typeString": "bytes memory"
                              }
                            ],
                            "id": 17329,
                            "name": "_executeCall",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 17379,
                            "src": "19446:12:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_Delegation_$16211_$_t_bytes_memory_ptr_$returns$_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_$",
                              "typeString": "function (contract Delegation,bytes memory) returns (bytes memory[] memory)"
                            }
                          },
                          "id": 17332,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "19446:32:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_bytes_memory_ptr_$dyn_memory_ptr",
                            "typeString": "bytes memory[] memory"
                          }
                        },
                        "id": 17333,
                        "nodeType": "ExpressionStatement",
                        "src": "19446:32:81"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 17304,
                    "nodeType": "StructuredDocumentation",
                    "src": "18971:240:81",
                    "text": " @notice Tranfers tickets from the Delegation contract to the `_to` address.\n @param _delegation Address of the delegation contract\n @param _to Address of the recipient\n @param _amount Amount of tickets to transfer"
                  },
                  "id": 17335,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_transferCall",
                  "nameLocation": "19223:13:81",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 17312,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17307,
                        "mutability": "mutable",
                        "name": "_delegation",
                        "nameLocation": "19253:11:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 17335,
                        "src": "19242:22:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_Delegation_$16211",
                          "typeString": "contract Delegation"
                        },
                        "typeName": {
                          "id": 17306,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 17305,
                            "name": "Delegation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 16211,
                            "src": "19242:10:81"
                          },
                          "referencedDeclaration": 16211,
                          "src": "19242:10:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_Delegation_$16211",
                            "typeString": "contract Delegation"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 17309,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "19278:3:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 17335,
                        "src": "19270:11:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 17308,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "19270:7:81",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 17311,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "19295:7:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 17335,
                        "src": "19287:15:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 17310,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "19287:7:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "19236:70:81"
                  },
                  "returnParameters": {
                    "id": 17313,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "19316:0:81"
                  },
                  "scope": 17508,
                  "src": "19214:269:81",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 17378,
                    "nodeType": "Block",
                    "src": "19832:186:81",
                    "statements": [
                      {
                        "assignments": [
                          17352
                        ],
                        "declarations": [
                          {
                            "constant": false,
                            "id": 17352,
                            "mutability": "mutable",
                            "name": "_calls",
                            "nameLocation": "19863:6:81",
                            "nodeType": "VariableDeclaration",
                            "scope": 17378,
                            "src": "19838:31:81",
                            "stateVariable": false,
                            "storageLocation": "memory",
                            "typeDescriptions": {
                              "typeIdentifier": "t_array$_t_struct$_Call_$16056_memory_ptr_$dyn_memory_ptr",
                              "typeString": "struct Delegation.Call[]"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 17350,
                                "nodeType": "UserDefinedTypeName",
                                "pathNode": {
                                  "id": 17349,
                                  "name": "Delegation.Call",
                                  "nodeType": "IdentifierPath",
                                  "referencedDeclaration": 16056,
                                  "src": "19838:15:81"
                                },
                                "referencedDeclaration": 16056,
                                "src": "19838:15:81",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Call_$16056_storage_ptr",
                                  "typeString": "struct Delegation.Call"
                                }
                              },
                              "id": 17351,
                              "nodeType": "ArrayTypeName",
                              "src": "19838:17:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Call_$16056_storage_$dyn_storage_ptr",
                                "typeString": "struct Delegation.Call[]"
                              }
                            },
                            "visibility": "internal"
                          }
                        ],
                        "id": 17359,
                        "initialValue": {
                          "arguments": [
                            {
                              "hexValue": "31",
                              "id": 17357,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "19894:1:81",
                              "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": 17356,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": true,
                            "lValueRequested": false,
                            "nodeType": "NewExpression",
                            "src": "19872:21:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_struct$_Call_$16056_memory_ptr_$dyn_memory_ptr_$",
                              "typeString": "function (uint256) pure returns (struct Delegation.Call memory[] memory)"
                            },
                            "typeName": {
                              "baseType": {
                                "id": 17354,
                                "nodeType": "UserDefinedTypeName",
                                "pathNode": {
                                  "id": 17353,
                                  "name": "Delegation.Call",
                                  "nodeType": "IdentifierPath",
                                  "referencedDeclaration": 16056,
                                  "src": "19876:15:81"
                                },
                                "referencedDeclaration": 16056,
                                "src": "19876:15:81",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_struct$_Call_$16056_storage_ptr",
                                  "typeString": "struct Delegation.Call"
                                }
                              },
                              "id": 17355,
                              "nodeType": "ArrayTypeName",
                              "src": "19876:17:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Call_$16056_storage_$dyn_storage_ptr",
                                "typeString": "struct Delegation.Call[]"
                              }
                            }
                          },
                          "id": 17358,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": true,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "19872:24:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_struct$_Call_$16056_memory_ptr_$dyn_memory_ptr",
                            "typeString": "struct Delegation.Call memory[] memory"
                          }
                        },
                        "nodeType": "VariableDeclarationStatement",
                        "src": "19838:58:81"
                      },
                      {
                        "expression": {
                          "id": 17371,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "lValueRequested": false,
                          "leftHandSide": {
                            "baseExpression": {
                              "id": 17360,
                              "name": "_calls",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17352,
                              "src": "19902:6:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Call_$16056_memory_ptr_$dyn_memory_ptr",
                                "typeString": "struct Delegation.Call memory[] memory"
                              }
                            },
                            "id": 17362,
                            "indexExpression": {
                              "hexValue": "30",
                              "id": 17361,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "number",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "19909:1:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_rational_0_by_1",
                                "typeString": "int_const 0"
                              },
                              "value": "0"
                            },
                            "isConstant": false,
                            "isLValue": true,
                            "isPure": false,
                            "lValueRequested": true,
                            "nodeType": "IndexAccess",
                            "src": "19902:9:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Call_$16056_memory_ptr",
                              "typeString": "struct Delegation.Call memory"
                            }
                          },
                          "nodeType": "Assignment",
                          "operator": "=",
                          "rightHandSide": {
                            "arguments": [
                              {
                                "arguments": [
                                  {
                                    "id": 17367,
                                    "name": "ticket",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 16563,
                                    "src": "19944:6:81",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_ITicket_$11825",
                                      "typeString": "contract ITicket"
                                    }
                                  }
                                ],
                                "expression": {
                                  "argumentTypes": [
                                    {
                                      "typeIdentifier": "t_contract$_ITicket_$11825",
                                      "typeString": "contract ITicket"
                                    }
                                  ],
                                  "id": 17366,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "19936:7:81",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 17365,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "19936:7:81",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 17368,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "19936:15:81",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              {
                                "id": 17369,
                                "name": "_data",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 17341,
                                "src": "19959:5:81",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bytes_memory_ptr",
                                  "typeString": "bytes memory"
                                }
                              }
                            ],
                            "expression": {
                              "argumentTypes": [
                                {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                },
                                {
                                  "typeIdentifier": "t_bytes_memory_ptr",
                                  "typeString": "bytes memory"
                                }
                              ],
                              "expression": {
                                "id": 17363,
                                "name": "Delegation",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 16211,
                                "src": "19914:10:81",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_type$_t_contract$_Delegation_$16211_$",
                                  "typeString": "type(contract Delegation)"
                                }
                              },
                              "id": 17364,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "memberName": "Call",
                              "nodeType": "MemberAccess",
                              "referencedDeclaration": 16056,
                              "src": "19914:15:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_type$_t_struct$_Call_$16056_storage_ptr_$",
                                "typeString": "type(struct Delegation.Call storage pointer)"
                              }
                            },
                            "id": 17370,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "kind": "structConstructorCall",
                            "lValueRequested": false,
                            "names": [
                              "to",
                              "data"
                            ],
                            "nodeType": "FunctionCall",
                            "src": "19914:53:81",
                            "tryCall": false,
                            "typeDescriptions": {
                              "typeIdentifier": "t_struct$_Call_$16056_memory_ptr",
                              "typeString": "struct Delegation.Call memory"
                            }
                          },
                          "src": "19902:65:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_struct$_Call_$16056_memory_ptr",
                            "typeString": "struct Delegation.Call memory"
                          }
                        },
                        "id": 17372,
                        "nodeType": "ExpressionStatement",
                        "src": "19902:65:81"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 17375,
                              "name": "_calls",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17352,
                              "src": "20006:6:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_array$_t_struct$_Call_$16056_memory_ptr_$dyn_memory_ptr",
                                "typeString": "struct Delegation.Call memory[] memory"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_array$_t_struct$_Call_$16056_memory_ptr_$dyn_memory_ptr",
                                "typeString": "struct Delegation.Call memory[] memory"
                              }
                            ],
                            "expression": {
                              "id": 17373,
                              "name": "_delegation",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17339,
                              "src": "19981:11:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_Delegation_$16211",
                                "typeString": "contract Delegation"
                              }
                            },
                            "id": 17374,
                            "isConstant": false,
                            "isLValue": false,
                            "isPure": false,
                            "lValueRequested": false,
                            "memberName": "executeCalls",
                            "nodeType": "MemberAccess",
                            "referencedDeclaration": 16152,
                            "src": "19981:24:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_external_nonpayable$_t_array$_t_struct$_Call_$16056_memory_ptr_$dyn_memory_ptr_$returns$_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_$",
                              "typeString": "function (struct Delegation.Call memory[] memory) external returns (bytes memory[] memory)"
                            }
                          },
                          "id": 17376,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "19981:32:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_bytes_memory_ptr_$dyn_memory_ptr",
                            "typeString": "bytes memory[] memory"
                          }
                        },
                        "functionReturnParameters": 17346,
                        "id": 17377,
                        "nodeType": "Return",
                        "src": "19974:39:81"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 17336,
                    "nodeType": "StructuredDocumentation",
                    "src": "19487:232:81",
                    "text": " @notice Execute a function call on the delegation contract.\n @param _delegation Address of the delegation contract\n @param _data The call data that will be executed\n @return The return datas from the calls"
                  },
                  "id": 17379,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_executeCall",
                  "nameLocation": "19731:12:81",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 17342,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17339,
                        "mutability": "mutable",
                        "name": "_delegation",
                        "nameLocation": "19755:11:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 17379,
                        "src": "19744:22:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_Delegation_$16211",
                          "typeString": "contract Delegation"
                        },
                        "typeName": {
                          "id": 17338,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 17337,
                            "name": "Delegation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 16211,
                            "src": "19744:10:81"
                          },
                          "referencedDeclaration": 16211,
                          "src": "19744:10:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_Delegation_$16211",
                            "typeString": "contract Delegation"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 17341,
                        "mutability": "mutable",
                        "name": "_data",
                        "nameLocation": "19781:5:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 17379,
                        "src": "19768:18:81",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_bytes_memory_ptr",
                          "typeString": "bytes"
                        },
                        "typeName": {
                          "id": 17340,
                          "name": "bytes",
                          "nodeType": "ElementaryTypeName",
                          "src": "19768:5:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_bytes_storage_ptr",
                            "typeString": "bytes"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "19743:44:81"
                  },
                  "returnParameters": {
                    "id": 17346,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17345,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 17379,
                        "src": "19814:14:81",
                        "stateVariable": false,
                        "storageLocation": "memory",
                        "typeDescriptions": {
                          "typeIdentifier": "t_array$_t_bytes_memory_ptr_$dyn_memory_ptr",
                          "typeString": "bytes[]"
                        },
                        "typeName": {
                          "baseType": {
                            "id": 17343,
                            "name": "bytes",
                            "nodeType": "ElementaryTypeName",
                            "src": "19814:5:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_bytes_storage_ptr",
                              "typeString": "bytes"
                            }
                          },
                          "id": 17344,
                          "nodeType": "ArrayTypeName",
                          "src": "19814:7:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_array$_t_bytes_storage_$dyn_storage_ptr",
                            "typeString": "bytes[]"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "19813:16:81"
                  },
                  "scope": 17508,
                  "src": "19722:296:81",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 17404,
                    "nodeType": "Block",
                    "src": "20350:132:81",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 17391,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17387,
                              "src": "20377:7:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 17390,
                            "name": "_requireAmountGtZero",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 17458,
                            "src": "20356:20:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_pure$_t_uint256_$returns$__$",
                              "typeString": "function (uint256) pure"
                            }
                          },
                          "id": 17392,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "20356:29:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 17393,
                        "nodeType": "ExpressionStatement",
                        "src": "20356:29:81"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 17395,
                              "name": "_delegation",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17383,
                              "src": "20418:11:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_Delegation_$16211",
                                "typeString": "contract Delegation"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_Delegation_$16211",
                                "typeString": "contract Delegation"
                              }
                            ],
                            "id": 17394,
                            "name": "_requireDelegationUnlocked",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 17493,
                            "src": "20391:26:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_view$_t_contract$_Delegation_$16211_$returns$__$",
                              "typeString": "function (contract Delegation) view"
                            }
                          },
                          "id": 17396,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "20391:39:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 17397,
                        "nodeType": "ExpressionStatement",
                        "src": "20391:39:81"
                      },
                      {
                        "expression": {
                          "arguments": [
                            {
                              "id": 17399,
                              "name": "_delegation",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17383,
                              "src": "20451:11:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_contract$_Delegation_$16211",
                                "typeString": "contract Delegation"
                              }
                            },
                            {
                              "id": 17400,
                              "name": "_to",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17385,
                              "src": "20464:3:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              }
                            },
                            {
                              "id": 17401,
                              "name": "_amount",
                              "nodeType": "Identifier",
                              "overloadedDeclarations": [],
                              "referencedDeclaration": 17387,
                              "src": "20469:7:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_contract$_Delegation_$16211",
                                "typeString": "contract Delegation"
                              },
                              {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              }
                            ],
                            "id": 17398,
                            "name": "_transferCall",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [],
                            "referencedDeclaration": 17335,
                            "src": "20437:13:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_internal_nonpayable$_t_contract$_Delegation_$16211_$_t_address_$_t_uint256_$returns$__$",
                              "typeString": "function (contract Delegation,address,uint256)"
                            }
                          },
                          "id": 17402,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "20437:40:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 17403,
                        "nodeType": "ExpressionStatement",
                        "src": "20437:40:81"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 17380,
                    "nodeType": "StructuredDocumentation",
                    "src": "20022:227:81",
                    "text": " @notice Transfers tickets from a delegation contract to `_to`.\n @param _delegation Address of the delegation contract\n @param _to Address of the recipient\n @param _amount Amount of tickets to transfer"
                  },
                  "id": 17405,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_transfer",
                  "nameLocation": "20261:9:81",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 17388,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17383,
                        "mutability": "mutable",
                        "name": "_delegation",
                        "nameLocation": "20287:11:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 17405,
                        "src": "20276:22:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_Delegation_$16211",
                          "typeString": "contract Delegation"
                        },
                        "typeName": {
                          "id": 17382,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 17381,
                            "name": "Delegation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 16211,
                            "src": "20276:10:81"
                          },
                          "referencedDeclaration": 16211,
                          "src": "20276:10:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_Delegation_$16211",
                            "typeString": "contract Delegation"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 17385,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "20312:3:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 17405,
                        "src": "20304:11:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 17384,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "20304:7:81",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 17387,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "20329:7:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 17405,
                        "src": "20321:15:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 17386,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "20321:7:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "20270:70:81"
                  },
                  "returnParameters": {
                    "id": 17389,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "20350:0:81"
                  },
                  "scope": 17508,
                  "src": "20252:230:81",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 17426,
                    "nodeType": "Block",
                    "src": "20772:139:81",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              "id": 17422,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "commonType": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                },
                                "id": 17415,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "leftExpression": {
                                  "id": 17412,
                                  "name": "_delegator",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": 17408,
                                  "src": "20793:10:81",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "nodeType": "BinaryOperation",
                                "operator": "==",
                                "rightExpression": {
                                  "expression": {
                                    "id": 17413,
                                    "name": "msg",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -15,
                                    "src": "20807:3:81",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_message",
                                      "typeString": "msg"
                                    }
                                  },
                                  "id": 17414,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "sender",
                                  "nodeType": "MemberAccess",
                                  "src": "20807:10:81",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "src": "20793:24:81",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "||",
                              "rightExpression": {
                                "baseExpression": {
                                  "baseExpression": {
                                    "id": 17416,
                                    "name": "representatives",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 16574,
                                    "src": "20821:15:81",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_mapping$_t_address_$_t_mapping$_t_address_$_t_bool_$_$",
                                      "typeString": "mapping(address => mapping(address => bool))"
                                    }
                                  },
                                  "id": 17418,
                                  "indexExpression": {
                                    "id": 17417,
                                    "name": "_delegator",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 17408,
                                    "src": "20837:10:81",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_address",
                                      "typeString": "address"
                                    }
                                  },
                                  "isConstant": false,
                                  "isLValue": true,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "nodeType": "IndexAccess",
                                  "src": "20821:27:81",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_mapping$_t_address_$_t_bool_$",
                                    "typeString": "mapping(address => bool)"
                                  }
                                },
                                "id": 17421,
                                "indexExpression": {
                                  "expression": {
                                    "id": 17419,
                                    "name": "msg",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": -15,
                                    "src": "20849:3:81",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_magic_message",
                                      "typeString": "msg"
                                    }
                                  },
                                  "id": 17420,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "sender",
                                  "nodeType": "MemberAccess",
                                  "src": "20849:10:81",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_address",
                                    "typeString": "address"
                                  }
                                },
                                "isConstant": false,
                                "isLValue": true,
                                "isPure": false,
                                "lValueRequested": false,
                                "nodeType": "IndexAccess",
                                "src": "20821:39:81",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_bool",
                                  "typeString": "bool"
                                }
                              },
                              "src": "20793:67:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5457414244656c656761746f722f6e6f742d646c6774722d6f722d726570",
                              "id": 17423,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "20868:32:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_b9475c0db4e43a5ce94c192da7d69b2f5549305fd1edeeab17cf1a4c5f30175e",
                                "typeString": "literal_string \"TWABDelegator/not-dlgtr-or-rep\""
                              },
                              "value": "TWABDelegator/not-dlgtr-or-rep"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_b9475c0db4e43a5ce94c192da7d69b2f5549305fd1edeeab17cf1a4c5f30175e",
                                "typeString": "literal_string \"TWABDelegator/not-dlgtr-or-rep\""
                              }
                            ],
                            "id": 17411,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "20778:7:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 17424,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "20778:128:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 17425,
                        "nodeType": "ExpressionStatement",
                        "src": "20778:128:81"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 17406,
                    "nodeType": "StructuredDocumentation",
                    "src": "20548:144:81",
                    "text": " @notice Require to only allow the delegator or representative to call a function.\n @param _delegator Address of the delegator"
                  },
                  "id": 17427,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_requireDelegatorOrRepresentative",
                  "nameLocation": "20704:33:81",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 17409,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17408,
                        "mutability": "mutable",
                        "name": "_delegator",
                        "nameLocation": "20746:10:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 17427,
                        "src": "20738:18:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 17407,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "20738:7:81",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "20737:20:81"
                  },
                  "returnParameters": {
                    "id": 17410,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "20772:0:81"
                  },
                  "scope": 17508,
                  "src": "20695:216:81",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 17443,
                    "nodeType": "Block",
                    "src": "21120:80:81",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 17439,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 17434,
                                "name": "_delegatee",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 17430,
                                "src": "21134:10:81",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 17437,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "21156:1:81",
                                    "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": 17436,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "21148:7:81",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 17435,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "21148:7:81",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 17438,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "21148:10:81",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "21134:24:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5457414244656c656761746f722f646c67742d6e6f742d7a65726f2d61646472",
                              "id": 17440,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "21160:34:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_edcbe2d8057a5c49dd38e11752299617c45e19376faabbb0740b28e1175f3300",
                                "typeString": "literal_string \"TWABDelegator/dlgt-not-zero-addr\""
                              },
                              "value": "TWABDelegator/dlgt-not-zero-addr"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_edcbe2d8057a5c49dd38e11752299617c45e19376faabbb0740b28e1175f3300",
                                "typeString": "literal_string \"TWABDelegator/dlgt-not-zero-addr\""
                              }
                            ],
                            "id": 17433,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "21126:7:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 17441,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "21126:69:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 17442,
                        "nodeType": "ExpressionStatement",
                        "src": "21126:69:81"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 17428,
                    "nodeType": "StructuredDocumentation",
                    "src": "20915:127:81",
                    "text": " @notice Require to verify that `_delegatee` is not address zero.\n @param _delegatee Address of the delegatee"
                  },
                  "id": 17444,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_requireDelegateeNotZeroAddress",
                  "nameLocation": "21054:31:81",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 17431,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17430,
                        "mutability": "mutable",
                        "name": "_delegatee",
                        "nameLocation": "21094:10:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 17444,
                        "src": "21086:18:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 17429,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "21086:7:81",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "21085:20:81"
                  },
                  "returnParameters": {
                    "id": 17432,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "21120:0:81"
                  },
                  "scope": 17508,
                  "src": "21045:155:81",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 17457,
                    "nodeType": "Block",
                    "src": "21378:63:81",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 17453,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 17451,
                                "name": "_amount",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 17447,
                                "src": "21392:7:81",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">",
                              "rightExpression": {
                                "hexValue": "30",
                                "id": 17452,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "number",
                                "lValueRequested": false,
                                "nodeType": "Literal",
                                "src": "21402:1:81",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_rational_0_by_1",
                                  "typeString": "int_const 0"
                                },
                                "value": "0"
                              },
                              "src": "21392:11:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5457414244656c656761746f722f616d6f756e742d67742d7a65726f",
                              "id": 17454,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "21405:30:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_7725f8f64c49a89f472e8061de639e3c42149e4fe0ed809c0166675ba81b5fc5",
                                "typeString": "literal_string \"TWABDelegator/amount-gt-zero\""
                              },
                              "value": "TWABDelegator/amount-gt-zero"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_7725f8f64c49a89f472e8061de639e3c42149e4fe0ed809c0166675ba81b5fc5",
                                "typeString": "literal_string \"TWABDelegator/amount-gt-zero\""
                              }
                            ],
                            "id": 17450,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "21384:7:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 17455,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "21384:52:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 17456,
                        "nodeType": "ExpressionStatement",
                        "src": "21384:52:81"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 17445,
                    "nodeType": "StructuredDocumentation",
                    "src": "21204:110:81",
                    "text": " @notice Require to verify that `_amount` is greater than 0.\n @param _amount Amount to check"
                  },
                  "id": 17458,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_requireAmountGtZero",
                  "nameLocation": "21326:20:81",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 17448,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17447,
                        "mutability": "mutable",
                        "name": "_amount",
                        "nameLocation": "21355:7:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 17458,
                        "src": "21347:15:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 17446,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "21347:7:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "21346:17:81"
                  },
                  "returnParameters": {
                    "id": 17449,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "21378:0:81"
                  },
                  "scope": 17508,
                  "src": "21317:124:81",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 17474,
                    "nodeType": "Block",
                    "src": "21621:71:81",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_address",
                                "typeString": "address"
                              },
                              "id": 17470,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 17465,
                                "name": "_to",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 17461,
                                "src": "21635:3:81",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "!=",
                              "rightExpression": {
                                "arguments": [
                                  {
                                    "hexValue": "30",
                                    "id": 17468,
                                    "isConstant": false,
                                    "isLValue": false,
                                    "isPure": true,
                                    "kind": "number",
                                    "lValueRequested": false,
                                    "nodeType": "Literal",
                                    "src": "21650:1:81",
                                    "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": 17467,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": true,
                                  "lValueRequested": false,
                                  "nodeType": "ElementaryTypeNameExpression",
                                  "src": "21642:7:81",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_type$_t_address_$",
                                    "typeString": "type(address)"
                                  },
                                  "typeName": {
                                    "id": 17466,
                                    "name": "address",
                                    "nodeType": "ElementaryTypeName",
                                    "src": "21642:7:81",
                                    "typeDescriptions": {}
                                  }
                                },
                                "id": 17469,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": true,
                                "kind": "typeConversion",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "21642:10:81",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_address",
                                  "typeString": "address"
                                }
                              },
                              "src": "21635:17:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5457414244656c656761746f722f746f2d6e6f742d7a65726f2d61646472",
                              "id": 17471,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "21654:32:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_a366586648dca8242a9181d59d8242052347a96da254271ac1597aaf99605cd9",
                                "typeString": "literal_string \"TWABDelegator/to-not-zero-addr\""
                              },
                              "value": "TWABDelegator/to-not-zero-addr"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_a366586648dca8242a9181d59d8242052347a96da254271ac1597aaf99605cd9",
                                "typeString": "literal_string \"TWABDelegator/to-not-zero-addr\""
                              }
                            ],
                            "id": 17464,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "21627:7:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 17472,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "21627:60:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 17473,
                        "nodeType": "ExpressionStatement",
                        "src": "21627:60:81"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 17459,
                    "nodeType": "StructuredDocumentation",
                    "src": "21445:105:81",
                    "text": " @notice Require to verify that `_to` is not address zero.\n @param _to Address to check"
                  },
                  "id": 17475,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_requireRecipientNotZeroAddress",
                  "nameLocation": "21562:31:81",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 17462,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17461,
                        "mutability": "mutable",
                        "name": "_to",
                        "nameLocation": "21602:3:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 17475,
                        "src": "21594:11:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 17460,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "21594:7:81",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "21593:13:81"
                  },
                  "returnParameters": {
                    "id": 17463,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "21621:0:81"
                  },
                  "scope": 17508,
                  "src": "21553:139:81",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 17492,
                    "nodeType": "Block",
                    "src": "21887:97:81",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 17488,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "expression": {
                                  "id": 17483,
                                  "name": "block",
                                  "nodeType": "Identifier",
                                  "overloadedDeclarations": [],
                                  "referencedDeclaration": -4,
                                  "src": "21901:5:81",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_magic_block",
                                    "typeString": "block"
                                  }
                                },
                                "id": 17484,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "lValueRequested": false,
                                "memberName": "timestamp",
                                "nodeType": "MemberAccess",
                                "src": "21901:15:81",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": ">=",
                              "rightExpression": {
                                "arguments": [],
                                "expression": {
                                  "argumentTypes": [],
                                  "expression": {
                                    "id": 17485,
                                    "name": "_delegation",
                                    "nodeType": "Identifier",
                                    "overloadedDeclarations": [],
                                    "referencedDeclaration": 17479,
                                    "src": "21920:11:81",
                                    "typeDescriptions": {
                                      "typeIdentifier": "t_contract$_Delegation_$16211",
                                      "typeString": "contract Delegation"
                                    }
                                  },
                                  "id": 17486,
                                  "isConstant": false,
                                  "isLValue": false,
                                  "isPure": false,
                                  "lValueRequested": false,
                                  "memberName": "lockUntil",
                                  "nodeType": "MemberAccess",
                                  "referencedDeclaration": 16062,
                                  "src": "21920:21:81",
                                  "typeDescriptions": {
                                    "typeIdentifier": "t_function_external_view$__$returns$_t_uint96_$",
                                    "typeString": "function () view external returns (uint96)"
                                  }
                                },
                                "id": 17487,
                                "isConstant": false,
                                "isLValue": false,
                                "isPure": false,
                                "kind": "functionCall",
                                "lValueRequested": false,
                                "names": [],
                                "nodeType": "FunctionCall",
                                "src": "21920:23:81",
                                "tryCall": false,
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint96",
                                  "typeString": "uint96"
                                }
                              },
                              "src": "21901:42:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5457414244656c656761746f722f64656c65676174696f6e2d6c6f636b6564",
                              "id": 17489,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "21945:33:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_8a1220b5b5ba748b49dab03f5d91f8037092348f6b0858a02dd6d6b662ff8a28",
                                "typeString": "literal_string \"TWABDelegator/delegation-locked\""
                              },
                              "value": "TWABDelegator/delegation-locked"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_8a1220b5b5ba748b49dab03f5d91f8037092348f6b0858a02dd6d6b662ff8a28",
                                "typeString": "literal_string \"TWABDelegator/delegation-locked\""
                              }
                            ],
                            "id": 17482,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "21893:7:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 17490,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "21893:86:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 17491,
                        "nodeType": "ExpressionStatement",
                        "src": "21893:86:81"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 17476,
                    "nodeType": "StructuredDocumentation",
                    "src": "21696:114:81",
                    "text": " @notice Require to verify if a `_delegation` is locked.\n @param _delegation Delegation to check"
                  },
                  "id": 17493,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_requireDelegationUnlocked",
                  "nameLocation": "21822:26:81",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 17480,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17479,
                        "mutability": "mutable",
                        "name": "_delegation",
                        "nameLocation": "21860:11:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 17493,
                        "src": "21849:22:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_contract$_Delegation_$16211",
                          "typeString": "contract Delegation"
                        },
                        "typeName": {
                          "id": 17478,
                          "nodeType": "UserDefinedTypeName",
                          "pathNode": {
                            "id": 17477,
                            "name": "Delegation",
                            "nodeType": "IdentifierPath",
                            "referencedDeclaration": 16211,
                            "src": "21849:10:81"
                          },
                          "referencedDeclaration": 16211,
                          "src": "21849:10:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_contract$_Delegation_$16211",
                            "typeString": "contract Delegation"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "21848:24:81"
                  },
                  "returnParameters": {
                    "id": 17481,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "21887:0:81"
                  },
                  "scope": 17508,
                  "src": "21813:171:81",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "internal"
                },
                {
                  "body": {
                    "id": 17506,
                    "nodeType": "Block",
                    "src": "22213:76:81",
                    "statements": [
                      {
                        "expression": {
                          "arguments": [
                            {
                              "commonType": {
                                "typeIdentifier": "t_uint256",
                                "typeString": "uint256"
                              },
                              "id": 17502,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": false,
                              "lValueRequested": false,
                              "leftExpression": {
                                "id": 17500,
                                "name": "_lockDuration",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 17496,
                                "src": "22227:13:81",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "nodeType": "BinaryOperation",
                              "operator": "<=",
                              "rightExpression": {
                                "id": 17501,
                                "name": "MAX_LOCK",
                                "nodeType": "Identifier",
                                "overloadedDeclarations": [],
                                "referencedDeclaration": 16567,
                                "src": "22244:8:81",
                                "typeDescriptions": {
                                  "typeIdentifier": "t_uint256",
                                  "typeString": "uint256"
                                }
                              },
                              "src": "22227:25:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              }
                            },
                            {
                              "hexValue": "5457414244656c656761746f722f6c6f636b2d746f6f2d6c6f6e67",
                              "id": 17503,
                              "isConstant": false,
                              "isLValue": false,
                              "isPure": true,
                              "kind": "string",
                              "lValueRequested": false,
                              "nodeType": "Literal",
                              "src": "22254:29:81",
                              "typeDescriptions": {
                                "typeIdentifier": "t_stringliteral_07573097221cd546d4e24cc9a4671c1dbda3cd30c002cc700828bee691a10a9a",
                                "typeString": "literal_string \"TWABDelegator/lock-too-long\""
                              },
                              "value": "TWABDelegator/lock-too-long"
                            }
                          ],
                          "expression": {
                            "argumentTypes": [
                              {
                                "typeIdentifier": "t_bool",
                                "typeString": "bool"
                              },
                              {
                                "typeIdentifier": "t_stringliteral_07573097221cd546d4e24cc9a4671c1dbda3cd30c002cc700828bee691a10a9a",
                                "typeString": "literal_string \"TWABDelegator/lock-too-long\""
                              }
                            ],
                            "id": 17499,
                            "name": "require",
                            "nodeType": "Identifier",
                            "overloadedDeclarations": [
                              -18,
                              -18
                            ],
                            "referencedDeclaration": -18,
                            "src": "22219:7:81",
                            "typeDescriptions": {
                              "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
                              "typeString": "function (bool,string memory) pure"
                            }
                          },
                          "id": 17504,
                          "isConstant": false,
                          "isLValue": false,
                          "isPure": false,
                          "kind": "functionCall",
                          "lValueRequested": false,
                          "names": [],
                          "nodeType": "FunctionCall",
                          "src": "22219:65:81",
                          "tryCall": false,
                          "typeDescriptions": {
                            "typeIdentifier": "t_tuple$__$",
                            "typeString": "tuple()"
                          }
                        },
                        "id": 17505,
                        "nodeType": "ExpressionStatement",
                        "src": "22219:65:81"
                      }
                    ]
                  },
                  "documentation": {
                    "id": 17494,
                    "nodeType": "StructuredDocumentation",
                    "src": "21988:155:81",
                    "text": " @notice Require to verify that a `_lockDuration` does not exceed the maximum lock duration.\n @param _lockDuration Lock duration to check"
                  },
                  "id": 17507,
                  "implemented": true,
                  "kind": "function",
                  "modifiers": [],
                  "name": "_requireLockDuration",
                  "nameLocation": "22155:20:81",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 17497,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17496,
                        "mutability": "mutable",
                        "name": "_lockDuration",
                        "nameLocation": "22184:13:81",
                        "nodeType": "VariableDeclaration",
                        "scope": 17507,
                        "src": "22176:21:81",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 17495,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "22176:7:81",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "22175:23:81"
                  },
                  "returnParameters": {
                    "id": 17498,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "22213:0:81"
                  },
                  "scope": 17508,
                  "src": "22146:143:81",
                  "stateMutability": "pure",
                  "virtual": false,
                  "visibility": "internal"
                }
              ],
              "scope": 17509,
              "src": "840:21451:81",
              "usedErrors": []
            }
          ],
          "src": "37:22255:81"
        },
        "id": 81
      },
      "@pooltogether/yield-source-interface/contracts/IYieldSource.sol": {
        "ast": {
          "absolutePath": "@pooltogether/yield-source-interface/contracts/IYieldSource.sol",
          "exportedSymbols": {
            "IYieldSource": [
              17542
            ]
          },
          "id": 17543,
          "license": "GPL-3.0",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 17510,
              "literals": [
                "solidity",
                ">=",
                "0.6",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "37:24:82"
            },
            {
              "abstract": false,
              "baseContracts": [],
              "contractDependencies": [],
              "contractKind": "interface",
              "documentation": {
                "id": 17511,
                "nodeType": "StructuredDocumentation",
                "src": "63:211:82",
                "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": 17542,
              "linearizedBaseContracts": [
                17542
              ],
              "name": "IYieldSource",
              "nameLocation": "284:12:82",
              "nodeType": "ContractDefinition",
              "nodes": [
                {
                  "documentation": {
                    "id": 17512,
                    "nodeType": "StructuredDocumentation",
                    "src": "303:107:82",
                    "text": "@notice Returns the ERC20 asset token used for deposits.\n @return The ERC20 asset token address."
                  },
                  "functionSelector": "c89039c5",
                  "id": 17517,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "depositToken",
                  "nameLocation": "424:12:82",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 17513,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "436:2:82"
                  },
                  "returnParameters": {
                    "id": 17516,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17515,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 17517,
                        "src": "462:7:82",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 17514,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "462:7:82",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "461:9:82"
                  },
                  "scope": 17542,
                  "src": "415:56:82",
                  "stateMutability": "view",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 17518,
                    "nodeType": "StructuredDocumentation",
                    "src": "477:154:82",
                    "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": 17525,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "balanceOfToken",
                  "nameLocation": "645:14:82",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 17521,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17520,
                        "mutability": "mutable",
                        "name": "addr",
                        "nameLocation": "668:4:82",
                        "nodeType": "VariableDeclaration",
                        "scope": 17525,
                        "src": "660:12:82",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 17519,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "660:7:82",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "659:14:82"
                  },
                  "returnParameters": {
                    "id": 17524,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17523,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 17525,
                        "src": "692:7:82",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 17522,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "692:7:82",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "691:9:82"
                  },
                  "scope": 17542,
                  "src": "636:65:82",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 17526,
                    "nodeType": "StructuredDocumentation",
                    "src": "707:296:82",
                    "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": 17533,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "supplyTokenTo",
                  "nameLocation": "1017:13:82",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 17531,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17528,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "1039:6:82",
                        "nodeType": "VariableDeclaration",
                        "scope": 17533,
                        "src": "1031:14:82",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 17527,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1031:7:82",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      },
                      {
                        "constant": false,
                        "id": 17530,
                        "mutability": "mutable",
                        "name": "to",
                        "nameLocation": "1055:2:82",
                        "nodeType": "VariableDeclaration",
                        "scope": 17533,
                        "src": "1047:10:82",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_address",
                          "typeString": "address"
                        },
                        "typeName": {
                          "id": 17529,
                          "name": "address",
                          "nodeType": "ElementaryTypeName",
                          "src": "1047:7:82",
                          "stateMutability": "nonpayable",
                          "typeDescriptions": {
                            "typeIdentifier": "t_address",
                            "typeString": "address"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1030:28:82"
                  },
                  "returnParameters": {
                    "id": 17532,
                    "nodeType": "ParameterList",
                    "parameters": [],
                    "src": "1067:0:82"
                  },
                  "scope": 17542,
                  "src": "1008:60:82",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                },
                {
                  "documentation": {
                    "id": 17534,
                    "nodeType": "StructuredDocumentation",
                    "src": "1074:234:82",
                    "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": 17541,
                  "implemented": false,
                  "kind": "function",
                  "modifiers": [],
                  "name": "redeemToken",
                  "nameLocation": "1322:11:82",
                  "nodeType": "FunctionDefinition",
                  "parameters": {
                    "id": 17537,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17536,
                        "mutability": "mutable",
                        "name": "amount",
                        "nameLocation": "1342:6:82",
                        "nodeType": "VariableDeclaration",
                        "scope": 17541,
                        "src": "1334:14:82",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 17535,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1334:7:82",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1333:16:82"
                  },
                  "returnParameters": {
                    "id": 17540,
                    "nodeType": "ParameterList",
                    "parameters": [
                      {
                        "constant": false,
                        "id": 17539,
                        "mutability": "mutable",
                        "name": "",
                        "nameLocation": "-1:-1:-1",
                        "nodeType": "VariableDeclaration",
                        "scope": 17541,
                        "src": "1368:7:82",
                        "stateVariable": false,
                        "storageLocation": "default",
                        "typeDescriptions": {
                          "typeIdentifier": "t_uint256",
                          "typeString": "uint256"
                        },
                        "typeName": {
                          "id": 17538,
                          "name": "uint256",
                          "nodeType": "ElementaryTypeName",
                          "src": "1368:7:82",
                          "typeDescriptions": {
                            "typeIdentifier": "t_uint256",
                            "typeString": "uint256"
                          }
                        },
                        "visibility": "internal"
                      }
                    ],
                    "src": "1367:9:82"
                  },
                  "scope": 17542,
                  "src": "1313:64:82",
                  "stateMutability": "nonpayable",
                  "virtual": false,
                  "visibility": "external"
                }
              ],
              "scope": 17543,
              "src": "274:1105:82",
              "usedErrors": []
            }
          ],
          "src": "37:1343:82"
        },
        "id": 82
      },
      "contracts/hardhat-dependency-compiler/@pooltogether/aave-yield-source/contracts/yield-source/ATokenYieldSource.sol": {
        "ast": {
          "absolutePath": "contracts/hardhat-dependency-compiler/@pooltogether/aave-yield-source/contracts/yield-source/ATokenYieldSource.sol",
          "exportedSymbols": {
            "ATokenInterface": [
              3549
            ],
            "ATokenYieldSource": [
              4807
            ],
            "Address": [
              1775
            ],
            "Context": [
              1797
            ],
            "ERC20": [
              812
            ],
            "FixedPoint": [
              4899
            ],
            "IAToken": [
              3639
            ],
            "IAaveIncentivesController": [
              3785
            ],
            "IERC20": [
              890
            ],
            "IERC20Metadata": [
              915
            ],
            "ILendingPool": [
              3812
            ],
            "ILendingPoolAddressesProvider": [
              3963
            ],
            "ILendingPoolAddressesProviderRegistry": [
              4000
            ],
            "IProtocolYieldSource": [
              4025
            ],
            "IYieldSource": [
              17542
            ],
            "Manageable": [
              5200
            ],
            "OpenZeppelinSafeMath_V3_3_0": [
              5095
            ],
            "Ownable": [
              5355
            ],
            "ReentrancyGuard": [
              266
            ],
            "SafeERC20": [
              1344
            ],
            "SafeMath": [
              3537
            ]
          },
          "id": 17546,
          "license": "UNLICENSED",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 17544,
              "literals": [
                "solidity",
                ">",
                "0.0",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "39:23:83"
            },
            {
              "absolutePath": "@pooltogether/aave-yield-source/contracts/yield-source/ATokenYieldSource.sol",
              "file": "@pooltogether/aave-yield-source/contracts/yield-source/ATokenYieldSource.sol",
              "id": 17545,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 17546,
              "sourceUnit": 4808,
              "src": "63:86:83",
              "symbolAliases": [],
              "unitAlias": ""
            }
          ],
          "src": "39:111:83"
        },
        "id": 83
      },
      "contracts/hardhat-dependency-compiler/@pooltogether/pooltogether-rng-contracts/contracts/RNGChainlinkV2.sol": {
        "ast": {
          "absolutePath": "contracts/hardhat-dependency-compiler/@pooltogether/pooltogether-rng-contracts/contracts/RNGChainlinkV2.sol",
          "exportedSymbols": {
            "Manageable": [
              5200
            ],
            "Ownable": [
              5355
            ],
            "RNGChainlinkV2": [
              5740
            ],
            "RNGChainlinkV2Interface": [
              5779
            ],
            "RNGInterface": [
              5835
            ],
            "VRFConsumerBaseV2": [
              57
            ],
            "VRFCoordinatorV2Interface": [
              146
            ]
          },
          "id": 17549,
          "license": "UNLICENSED",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 17547,
              "literals": [
                "solidity",
                ">",
                "0.0",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "39:23:84"
            },
            {
              "absolutePath": "@pooltogether/pooltogether-rng-contracts/contracts/RNGChainlinkV2.sol",
              "file": "@pooltogether/pooltogether-rng-contracts/contracts/RNGChainlinkV2.sol",
              "id": 17548,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 17549,
              "sourceUnit": 5741,
              "src": "63:79:84",
              "symbolAliases": [],
              "unitAlias": ""
            }
          ],
          "src": "39:104:84"
        },
        "id": 84
      },
      "contracts/hardhat-dependency-compiler/@pooltogether/v4-core/contracts/DrawBeacon.sol": {
        "ast": {
          "absolutePath": "contracts/hardhat-dependency-compiler/@pooltogether/v4-core/contracts/DrawBeacon.sol",
          "exportedSymbols": {
            "Address": [
              1775
            ],
            "DrawBeacon": [
              6892
            ],
            "IDrawBeacon": [
              10853
            ],
            "IDrawBuffer": [
              10930
            ],
            "IERC20": [
              890
            ],
            "Ownable": [
              5355
            ],
            "RNGInterface": [
              5835
            ],
            "SafeCast": [
              3225
            ],
            "SafeERC20": [
              1344
            ]
          },
          "id": 17552,
          "license": "UNLICENSED",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 17550,
              "literals": [
                "solidity",
                ">",
                "0.0",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "39:23:85"
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/DrawBeacon.sol",
              "file": "@pooltogether/v4-core/contracts/DrawBeacon.sol",
              "id": 17551,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 17552,
              "sourceUnit": 6893,
              "src": "63:56:85",
              "symbolAliases": [],
              "unitAlias": ""
            }
          ],
          "src": "39:81:85"
        },
        "id": 85
      },
      "contracts/hardhat-dependency-compiler/@pooltogether/v4-core/contracts/DrawBuffer.sol": {
        "ast": {
          "absolutePath": "contracts/hardhat-dependency-compiler/@pooltogether/v4-core/contracts/DrawBuffer.sol",
          "exportedSymbols": {
            "DrawBuffer": [
              7263
            ],
            "DrawRingBufferLib": [
              11966
            ],
            "IDrawBeacon": [
              10853
            ],
            "IDrawBuffer": [
              10930
            ],
            "Manageable": [
              5200
            ],
            "Ownable": [
              5355
            ],
            "RNGInterface": [
              5835
            ],
            "RingBufferLib": [
              12461
            ]
          },
          "id": 17555,
          "license": "UNLICENSED",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 17553,
              "literals": [
                "solidity",
                ">",
                "0.0",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "39:23:86"
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/DrawBuffer.sol",
              "file": "@pooltogether/v4-core/contracts/DrawBuffer.sol",
              "id": 17554,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 17555,
              "sourceUnit": 7264,
              "src": "63:56:86",
              "symbolAliases": [],
              "unitAlias": ""
            }
          ],
          "src": "39:81:86"
        },
        "id": 86
      },
      "contracts/hardhat-dependency-compiler/@pooltogether/v4-core/contracts/DrawCalculator.sol": {
        "ast": {
          "absolutePath": "contracts/hardhat-dependency-compiler/@pooltogether/v4-core/contracts/DrawCalculator.sol",
          "exportedSymbols": {
            "Address": [
              1775
            ],
            "DrawCalculator": [
              8293
            ],
            "DrawRingBufferLib": [
              11966
            ],
            "ExtendedSafeCastLib": [
              12045
            ],
            "IControlledToken": [
              10681
            ],
            "IDrawBeacon": [
              10853
            ],
            "IDrawBuffer": [
              10930
            ],
            "IDrawCalculator": [
              11003
            ],
            "IERC20": [
              890
            ],
            "IPrizeDistributionBuffer": [
              11079
            ],
            "IPrizeDistributionSource": [
              11115
            ],
            "IPrizeDistributor": [
              11213
            ],
            "ITicket": [
              11825
            ],
            "Manageable": [
              5200
            ],
            "ObservationLib": [
              12204
            ],
            "OverflowSafeComparatorLib": [
              12376
            ],
            "Ownable": [
              5355
            ],
            "PrizeDistributionBuffer": [
              8796
            ],
            "PrizeDistributor": [
              9169
            ],
            "RNGInterface": [
              5835
            ],
            "RingBufferLib": [
              12461
            ],
            "SafeCast": [
              3225
            ],
            "SafeERC20": [
              1344
            ],
            "TwabLib": [
              13211
            ]
          },
          "id": 17558,
          "license": "UNLICENSED",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 17556,
              "literals": [
                "solidity",
                ">",
                "0.0",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "39:23:87"
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/DrawCalculator.sol",
              "file": "@pooltogether/v4-core/contracts/DrawCalculator.sol",
              "id": 17557,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 17558,
              "sourceUnit": 8294,
              "src": "63:60:87",
              "symbolAliases": [],
              "unitAlias": ""
            }
          ],
          "src": "39:85:87"
        },
        "id": 87
      },
      "contracts/hardhat-dependency-compiler/@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol": {
        "ast": {
          "absolutePath": "contracts/hardhat-dependency-compiler/@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol",
          "exportedSymbols": {
            "DrawRingBufferLib": [
              11966
            ],
            "IPrizeDistributionBuffer": [
              11079
            ],
            "IPrizeDistributionSource": [
              11115
            ],
            "Manageable": [
              5200
            ],
            "Ownable": [
              5355
            ],
            "PrizeDistributionBuffer": [
              8796
            ],
            "RingBufferLib": [
              12461
            ]
          },
          "id": 17561,
          "license": "UNLICENSED",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 17559,
              "literals": [
                "solidity",
                ">",
                "0.0",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "39:23:88"
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol",
              "file": "@pooltogether/v4-core/contracts/PrizeDistributionBuffer.sol",
              "id": 17560,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 17561,
              "sourceUnit": 8797,
              "src": "63:69:88",
              "symbolAliases": [],
              "unitAlias": ""
            }
          ],
          "src": "39:94:88"
        },
        "id": 88
      },
      "contracts/hardhat-dependency-compiler/@pooltogether/v4-core/contracts/PrizeDistributor.sol": {
        "ast": {
          "absolutePath": "contracts/hardhat-dependency-compiler/@pooltogether/v4-core/contracts/PrizeDistributor.sol",
          "exportedSymbols": {
            "Address": [
              1775
            ],
            "IDrawBeacon": [
              10853
            ],
            "IDrawBuffer": [
              10930
            ],
            "IDrawCalculator": [
              11003
            ],
            "IERC20": [
              890
            ],
            "IPrizeDistributor": [
              11213
            ],
            "Ownable": [
              5355
            ],
            "PrizeDistributor": [
              9169
            ],
            "SafeERC20": [
              1344
            ]
          },
          "id": 17564,
          "license": "UNLICENSED",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 17562,
              "literals": [
                "solidity",
                ">",
                "0.0",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "39:23:89"
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/PrizeDistributor.sol",
              "file": "@pooltogether/v4-core/contracts/PrizeDistributor.sol",
              "id": 17563,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 17564,
              "sourceUnit": 9170,
              "src": "63:62:89",
              "symbolAliases": [],
              "unitAlias": ""
            }
          ],
          "src": "39:87:89"
        },
        "id": 89
      },
      "contracts/hardhat-dependency-compiler/@pooltogether/v4-core/contracts/Reserve.sol": {
        "ast": {
          "absolutePath": "contracts/hardhat-dependency-compiler/@pooltogether/v4-core/contracts/Reserve.sol",
          "exportedSymbols": {
            "Address": [
              1775
            ],
            "IERC20": [
              890
            ],
            "IReserve": [
              11618
            ],
            "Manageable": [
              5200
            ],
            "ObservationLib": [
              12204
            ],
            "OverflowSafeComparatorLib": [
              12376
            ],
            "Ownable": [
              5355
            ],
            "Reserve": [
              9625
            ],
            "RingBufferLib": [
              12461
            ],
            "SafeCast": [
              3225
            ],
            "SafeERC20": [
              1344
            ]
          },
          "id": 17567,
          "license": "UNLICENSED",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 17565,
              "literals": [
                "solidity",
                ">",
                "0.0",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "39:23:90"
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/Reserve.sol",
              "file": "@pooltogether/v4-core/contracts/Reserve.sol",
              "id": 17566,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 17567,
              "sourceUnit": 9626,
              "src": "63:53:90",
              "symbolAliases": [],
              "unitAlias": ""
            }
          ],
          "src": "39:78:90"
        },
        "id": 90
      },
      "contracts/hardhat-dependency-compiler/@pooltogether/v4-core/contracts/Ticket.sol": {
        "ast": {
          "absolutePath": "contracts/hardhat-dependency-compiler/@pooltogether/v4-core/contracts/Ticket.sol",
          "exportedSymbols": {
            "Address": [
              1775
            ],
            "Context": [
              1797
            ],
            "ControlledToken": [
              6013
            ],
            "Counters": [
              1871
            ],
            "ECDSA": [
              2464
            ],
            "EIP712": [
              2618
            ],
            "ERC20": [
              812
            ],
            "ERC20Permit": [
              1084
            ],
            "ExtendedSafeCastLib": [
              12045
            ],
            "IControlledToken": [
              10681
            ],
            "IERC20": [
              890
            ],
            "IERC20Metadata": [
              915
            ],
            "IERC20Permit": [
              1120
            ],
            "ITicket": [
              11825
            ],
            "ObservationLib": [
              12204
            ],
            "OverflowSafeComparatorLib": [
              12376
            ],
            "RingBufferLib": [
              12461
            ],
            "SafeCast": [
              3225
            ],
            "SafeERC20": [
              1344
            ],
            "Strings": [
              2074
            ],
            "Ticket": [
              10624
            ],
            "TwabLib": [
              13211
            ]
          },
          "id": 17570,
          "license": "UNLICENSED",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 17568,
              "literals": [
                "solidity",
                ">",
                "0.0",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "39:23:91"
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/Ticket.sol",
              "file": "@pooltogether/v4-core/contracts/Ticket.sol",
              "id": 17569,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 17570,
              "sourceUnit": 10625,
              "src": "63:52:91",
              "symbolAliases": [],
              "unitAlias": ""
            }
          ],
          "src": "39:77:91"
        },
        "id": 91
      },
      "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": [
              1775
            ],
            "DelegateSignature": [
              13233
            ],
            "EIP2612PermitAndDeposit": [
              13436
            ],
            "ExtendedSafeCastLib": [
              12045
            ],
            "ICompLike": [
              10642
            ],
            "IControlledToken": [
              10681
            ],
            "IERC20": [
              890
            ],
            "IERC20Permit": [
              1120
            ],
            "IPrizePool": [
              11495
            ],
            "ITicket": [
              11825
            ],
            "ObservationLib": [
              12204
            ],
            "OverflowSafeComparatorLib": [
              12376
            ],
            "RingBufferLib": [
              12461
            ],
            "SafeCast": [
              3225
            ],
            "SafeERC20": [
              1344
            ],
            "Signature": [
              13227
            ],
            "TwabLib": [
              13211
            ]
          },
          "id": 17573,
          "license": "UNLICENSED",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 17571,
              "literals": [
                "solidity",
                ">",
                "0.0",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "39:23:92"
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/permit/EIP2612PermitAndDeposit.sol",
              "file": "@pooltogether/v4-core/contracts/permit/EIP2612PermitAndDeposit.sol",
              "id": 17572,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 17573,
              "sourceUnit": 13437,
              "src": "63:76:92",
              "symbolAliases": [],
              "unitAlias": ""
            }
          ],
          "src": "39:101:92"
        },
        "id": 92
      },
      "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": [
              1775
            ],
            "ERC165Checker": [
              2820
            ],
            "ExtendedSafeCastLib": [
              12045
            ],
            "ICompLike": [
              10642
            ],
            "IControlledToken": [
              10681
            ],
            "IERC165": [
              2832
            ],
            "IERC20": [
              890
            ],
            "IERC721": [
              1460
            ],
            "IERC721Receiver": [
              1478
            ],
            "IPrizePool": [
              11495
            ],
            "ITicket": [
              11825
            ],
            "IYieldSource": [
              17542
            ],
            "ObservationLib": [
              12204
            ],
            "OverflowSafeComparatorLib": [
              12376
            ],
            "Ownable": [
              5355
            ],
            "PrizePool": [
              14487
            ],
            "ReentrancyGuard": [
              266
            ],
            "RingBufferLib": [
              12461
            ],
            "SafeCast": [
              3225
            ],
            "SafeERC20": [
              1344
            ],
            "TwabLib": [
              13211
            ],
            "YieldSourcePrizePool": [
              14735
            ]
          },
          "id": 17576,
          "license": "UNLICENSED",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 17574,
              "literals": [
                "solidity",
                ">",
                "0.0",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "39:23:93"
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/prize-pool/YieldSourcePrizePool.sol",
              "file": "@pooltogether/v4-core/contracts/prize-pool/YieldSourcePrizePool.sol",
              "id": 17575,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 17576,
              "sourceUnit": 14736,
              "src": "63:77:93",
              "symbolAliases": [],
              "unitAlias": ""
            }
          ],
          "src": "39:102:93"
        },
        "id": 93
      },
      "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": [
              12045
            ],
            "ICompLike": [
              10642
            ],
            "IControlledToken": [
              10681
            ],
            "IERC20": [
              890
            ],
            "IPrizePool": [
              11495
            ],
            "IPrizeSplit": [
              11571
            ],
            "IStrategy": [
              11632
            ],
            "ITicket": [
              11825
            ],
            "ObservationLib": [
              12204
            ],
            "OverflowSafeComparatorLib": [
              12376
            ],
            "Ownable": [
              5355
            ],
            "PrizeSplit": [
              15085
            ],
            "PrizeSplitStrategy": [
              15218
            ],
            "RingBufferLib": [
              12461
            ],
            "SafeCast": [
              3225
            ],
            "TwabLib": [
              13211
            ]
          },
          "id": 17579,
          "license": "UNLICENSED",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 17577,
              "literals": [
                "solidity",
                ">",
                "0.0",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "39:23:94"
            },
            {
              "absolutePath": "@pooltogether/v4-core/contracts/prize-strategy/PrizeSplitStrategy.sol",
              "file": "@pooltogether/v4-core/contracts/prize-strategy/PrizeSplitStrategy.sol",
              "id": 17578,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 17579,
              "sourceUnit": 15219,
              "src": "63:79:94",
              "symbolAliases": [],
              "unitAlias": ""
            }
          ],
          "src": "39:104:94"
        },
        "id": 94
      },
      "contracts/hardhat-dependency-compiler/@pooltogether/v4-timelocks/contracts/BeaconTimelockTrigger.sol": {
        "ast": {
          "absolutePath": "contracts/hardhat-dependency-compiler/@pooltogether/v4-timelocks/contracts/BeaconTimelockTrigger.sol",
          "exportedSymbols": {
            "Address": [
              1775
            ],
            "BeaconTimelockTrigger": [
              15309
            ],
            "DrawRingBufferLib": [
              11966
            ],
            "ExtendedSafeCastLib": [
              12045
            ],
            "IBeaconTimelockTrigger": [
              15924
            ],
            "IControlledToken": [
              10681
            ],
            "IDrawBeacon": [
              10853
            ],
            "IDrawBuffer": [
              10930
            ],
            "IDrawCalculator": [
              11003
            ],
            "IDrawCalculatorTimelock": [
              15999
            ],
            "IERC20": [
              890
            ],
            "IPrizeDistributionBuffer": [
              11079
            ],
            "IPrizeDistributionFactory": [
              16009
            ],
            "IPrizeDistributionSource": [
              11115
            ],
            "IPrizeDistributor": [
              11213
            ],
            "ITicket": [
              11825
            ],
            "Manageable": [
              5200
            ],
            "ObservationLib": [
              12204
            ],
            "OverflowSafeComparatorLib": [
              12376
            ],
            "Ownable": [
              5355
            ],
            "PrizeDistributionBuffer": [
              8796
            ],
            "PrizeDistributor": [
              9169
            ],
            "RNGInterface": [
              5835
            ],
            "RingBufferLib": [
              12461
            ],
            "SafeCast": [
              3225
            ],
            "SafeERC20": [
              1344
            ],
            "TwabLib": [
              13211
            ]
          },
          "id": 17582,
          "license": "UNLICENSED",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 17580,
              "literals": [
                "solidity",
                ">",
                "0.0",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "39:23:95"
            },
            {
              "absolutePath": "@pooltogether/v4-timelocks/contracts/BeaconTimelockTrigger.sol",
              "file": "@pooltogether/v4-timelocks/contracts/BeaconTimelockTrigger.sol",
              "id": 17581,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 17582,
              "sourceUnit": 15310,
              "src": "63:72:95",
              "symbolAliases": [],
              "unitAlias": ""
            }
          ],
          "src": "39:97:95"
        },
        "id": 95
      },
      "contracts/hardhat-dependency-compiler/@pooltogether/v4-timelocks/contracts/DrawCalculatorTimelock.sol": {
        "ast": {
          "absolutePath": "contracts/hardhat-dependency-compiler/@pooltogether/v4-timelocks/contracts/DrawCalculatorTimelock.sol",
          "exportedSymbols": {
            "Address": [
              1775
            ],
            "DrawCalculatorTimelock": [
              15549
            ],
            "DrawRingBufferLib": [
              11966
            ],
            "ExtendedSafeCastLib": [
              12045
            ],
            "IControlledToken": [
              10681
            ],
            "IDrawBeacon": [
              10853
            ],
            "IDrawBuffer": [
              10930
            ],
            "IDrawCalculator": [
              11003
            ],
            "IDrawCalculatorTimelock": [
              15999
            ],
            "IERC20": [
              890
            ],
            "IPrizeDistributionBuffer": [
              11079
            ],
            "IPrizeDistributionSource": [
              11115
            ],
            "IPrizeDistributor": [
              11213
            ],
            "ITicket": [
              11825
            ],
            "Manageable": [
              5200
            ],
            "ObservationLib": [
              12204
            ],
            "OverflowSafeComparatorLib": [
              12376
            ],
            "Ownable": [
              5355
            ],
            "PrizeDistributionBuffer": [
              8796
            ],
            "PrizeDistributor": [
              9169
            ],
            "RingBufferLib": [
              12461
            ],
            "SafeCast": [
              3225
            ],
            "SafeERC20": [
              1344
            ],
            "TwabLib": [
              13211
            ]
          },
          "id": 17585,
          "license": "UNLICENSED",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 17583,
              "literals": [
                "solidity",
                ">",
                "0.0",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "39:23:96"
            },
            {
              "absolutePath": "@pooltogether/v4-timelocks/contracts/DrawCalculatorTimelock.sol",
              "file": "@pooltogether/v4-timelocks/contracts/DrawCalculatorTimelock.sol",
              "id": 17584,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 17585,
              "sourceUnit": 15550,
              "src": "63:73:96",
              "symbolAliases": [],
              "unitAlias": ""
            }
          ],
          "src": "39:98:96"
        },
        "id": 96
      },
      "contracts/hardhat-dependency-compiler/@pooltogether/v4-timelocks/contracts/L1TimelockTrigger.sol": {
        "ast": {
          "absolutePath": "contracts/hardhat-dependency-compiler/@pooltogether/v4-timelocks/contracts/L1TimelockTrigger.sol",
          "exportedSymbols": {
            "Address": [
              1775
            ],
            "DrawRingBufferLib": [
              11966
            ],
            "ExtendedSafeCastLib": [
              12045
            ],
            "IControlledToken": [
              10681
            ],
            "IDrawBeacon": [
              10853
            ],
            "IDrawBuffer": [
              10930
            ],
            "IDrawCalculator": [
              11003
            ],
            "IDrawCalculatorTimelock": [
              15999
            ],
            "IERC20": [
              890
            ],
            "IPrizeDistributionBuffer": [
              11079
            ],
            "IPrizeDistributionSource": [
              11115
            ],
            "IPrizeDistributor": [
              11213
            ],
            "ITicket": [
              11825
            ],
            "L1TimelockTrigger": [
              15651
            ],
            "Manageable": [
              5200
            ],
            "ObservationLib": [
              12204
            ],
            "OverflowSafeComparatorLib": [
              12376
            ],
            "Ownable": [
              5355
            ],
            "PrizeDistributionBuffer": [
              8796
            ],
            "PrizeDistributor": [
              9169
            ],
            "RingBufferLib": [
              12461
            ],
            "SafeCast": [
              3225
            ],
            "SafeERC20": [
              1344
            ],
            "TwabLib": [
              13211
            ]
          },
          "id": 17588,
          "license": "UNLICENSED",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 17586,
              "literals": [
                "solidity",
                ">",
                "0.0",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "39:23:97"
            },
            {
              "absolutePath": "@pooltogether/v4-timelocks/contracts/L1TimelockTrigger.sol",
              "file": "@pooltogether/v4-timelocks/contracts/L1TimelockTrigger.sol",
              "id": 17587,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 17588,
              "sourceUnit": 15652,
              "src": "63:68:97",
              "symbolAliases": [],
              "unitAlias": ""
            }
          ],
          "src": "39:93:97"
        },
        "id": 97
      },
      "contracts/hardhat-dependency-compiler/@pooltogether/v4-timelocks/contracts/L2TimelockTrigger.sol": {
        "ast": {
          "absolutePath": "contracts/hardhat-dependency-compiler/@pooltogether/v4-timelocks/contracts/L2TimelockTrigger.sol",
          "exportedSymbols": {
            "Address": [
              1775
            ],
            "DrawRingBufferLib": [
              11966
            ],
            "ExtendedSafeCastLib": [
              12045
            ],
            "IControlledToken": [
              10681
            ],
            "IDrawBeacon": [
              10853
            ],
            "IDrawBuffer": [
              10930
            ],
            "IDrawCalculator": [
              11003
            ],
            "IDrawCalculatorTimelock": [
              15999
            ],
            "IERC20": [
              890
            ],
            "IPrizeDistributionBuffer": [
              11079
            ],
            "IPrizeDistributionSource": [
              11115
            ],
            "IPrizeDistributor": [
              11213
            ],
            "ITicket": [
              11825
            ],
            "L2TimelockTrigger": [
              15780
            ],
            "Manageable": [
              5200
            ],
            "ObservationLib": [
              12204
            ],
            "OverflowSafeComparatorLib": [
              12376
            ],
            "Ownable": [
              5355
            ],
            "PrizeDistributionBuffer": [
              8796
            ],
            "PrizeDistributor": [
              9169
            ],
            "RNGInterface": [
              5835
            ],
            "RingBufferLib": [
              12461
            ],
            "SafeCast": [
              3225
            ],
            "SafeERC20": [
              1344
            ],
            "TwabLib": [
              13211
            ]
          },
          "id": 17591,
          "license": "UNLICENSED",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 17589,
              "literals": [
                "solidity",
                ">",
                "0.0",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "39:23:98"
            },
            {
              "absolutePath": "@pooltogether/v4-timelocks/contracts/L2TimelockTrigger.sol",
              "file": "@pooltogether/v4-timelocks/contracts/L2TimelockTrigger.sol",
              "id": 17590,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 17591,
              "sourceUnit": 15781,
              "src": "63:68:98",
              "symbolAliases": [],
              "unitAlias": ""
            }
          ],
          "src": "39:93:98"
        },
        "id": 98
      },
      "contracts/hardhat-dependency-compiler/@pooltogether/v4-timelocks/contracts/ReceiverTimelockTrigger.sol": {
        "ast": {
          "absolutePath": "contracts/hardhat-dependency-compiler/@pooltogether/v4-timelocks/contracts/ReceiverTimelockTrigger.sol",
          "exportedSymbols": {
            "Address": [
              1775
            ],
            "DrawRingBufferLib": [
              11966
            ],
            "ExtendedSafeCastLib": [
              12045
            ],
            "IControlledToken": [
              10681
            ],
            "IDrawBeacon": [
              10853
            ],
            "IDrawBuffer": [
              10930
            ],
            "IDrawCalculator": [
              11003
            ],
            "IDrawCalculatorTimelock": [
              15999
            ],
            "IERC20": [
              890
            ],
            "IPrizeDistributionBuffer": [
              11079
            ],
            "IPrizeDistributionFactory": [
              16009
            ],
            "IPrizeDistributionSource": [
              11115
            ],
            "IPrizeDistributor": [
              11213
            ],
            "IReceiverTimelockTrigger": [
              16048
            ],
            "ITicket": [
              11825
            ],
            "Manageable": [
              5200
            ],
            "ObservationLib": [
              12204
            ],
            "OverflowSafeComparatorLib": [
              12376
            ],
            "Ownable": [
              5355
            ],
            "PrizeDistributionBuffer": [
              8796
            ],
            "PrizeDistributor": [
              9169
            ],
            "RNGInterface": [
              5835
            ],
            "ReceiverTimelockTrigger": [
              15889
            ],
            "RingBufferLib": [
              12461
            ],
            "SafeCast": [
              3225
            ],
            "SafeERC20": [
              1344
            ],
            "TwabLib": [
              13211
            ]
          },
          "id": 17594,
          "license": "UNLICENSED",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 17592,
              "literals": [
                "solidity",
                ">",
                "0.0",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "39:23:99"
            },
            {
              "absolutePath": "@pooltogether/v4-timelocks/contracts/ReceiverTimelockTrigger.sol",
              "file": "@pooltogether/v4-timelocks/contracts/ReceiverTimelockTrigger.sol",
              "id": 17593,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 17594,
              "sourceUnit": 15890,
              "src": "63:74:99",
              "symbolAliases": [],
              "unitAlias": ""
            }
          ],
          "src": "39:99:99"
        },
        "id": 99
      },
      "contracts/hardhat-dependency-compiler/@pooltogether/v4-twab-delegator/contracts/TWABDelegator.sol": {
        "ast": {
          "absolutePath": "contracts/hardhat-dependency-compiler/@pooltogether/v4-twab-delegator/contracts/TWABDelegator.sol",
          "exportedSymbols": {
            "Address": [
              1775
            ],
            "Clones": [
              226
            ],
            "Context": [
              1797
            ],
            "Delegation": [
              16211
            ],
            "ERC20": [
              812
            ],
            "ExtendedSafeCastLib": [
              12045
            ],
            "IControlledToken": [
              10681
            ],
            "IERC20": [
              890
            ],
            "IERC20Metadata": [
              915
            ],
            "IERC20Permit": [
              1120
            ],
            "ITicket": [
              11825
            ],
            "LowLevelDelegator": [
              16318
            ],
            "ObservationLib": [
              12204
            ],
            "OverflowSafeComparatorLib": [
              12376
            ],
            "PermitAndMulticall": [
              16428
            ],
            "RingBufferLib": [
              12461
            ],
            "SafeCast": [
              3225
            ],
            "SafeERC20": [
              1344
            ],
            "TWABDelegator": [
              17508
            ],
            "TwabLib": [
              13211
            ]
          },
          "id": 17597,
          "license": "UNLICENSED",
          "nodeType": "SourceUnit",
          "nodes": [
            {
              "id": 17595,
              "literals": [
                "solidity",
                ">",
                "0.0",
                ".0"
              ],
              "nodeType": "PragmaDirective",
              "src": "39:23:100"
            },
            {
              "absolutePath": "@pooltogether/v4-twab-delegator/contracts/TWABDelegator.sol",
              "file": "@pooltogether/v4-twab-delegator/contracts/TWABDelegator.sol",
              "id": 17596,
              "nameLocation": "-1:-1:-1",
              "nodeType": "ImportDirective",
              "scope": 17597,
              "sourceUnit": 17509,
              "src": "63:69:100",
              "symbolAliases": [],
              "unitAlias": ""
            }
          ],
          "src": "39:94:100"
        },
        "id": 100
      }
    }
  }
}
